* [PATCH v9] tests/intel/xe_exec_capture: Add xe_exec_capture test
@ 2024-12-06 22:59 Zhanjun Dong
2024-12-06 23:38 ` ✓ Xe.CI.BAT: success for tests/intel/xe_exec_capture: Add xe_exec_capture test (rev8) Patchwork
` (5 more replies)
0 siblings, 6 replies; 9+ messages in thread
From: Zhanjun Dong @ 2024-12-06 22:59 UTC (permalink / raw)
To: igt-dev; +Cc: Zhanjun Dong, Alan Previn, 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: Kamil Konieczny <kamil.konieczny@linux.intel.com>
---
Changes from prior revs:
v9:- Reduced job timeout to 2 seconds to speedup test
Add info print to show test is running on single/multiple GPU
v8:- Move change list below ---
v7:- Fix typo and removed unused macros
v6:- Adjust start_line to start from 0
Use 7 bit engine_cid, start with random number
Add ioerror detect on fgets
Reorgnize the regular expression
Remove unnecessary radom seed init
v5:- Detect devcoredump matches the testing engine
Engine will run with random cid
v4:- Support runs on multiple GPU
Load all devcoredump content to buffer
Alloc line buffer dynamic vs static global memory
Changed to igt_assert_f to provide more info if failed
v3:- Remove call to bash and awk
Add regular express parse
Detect devcoredump through card index
Add devcoredump removal check
v2:- Fix CI.build error
Add multiple GPU card support
tests/intel/xe_exec_capture.c | 510 ++++++++++++++++++++++++++++++++++
tests/meson.build | 1 +
2 files changed, 511 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..6123df7b4
--- /dev/null
+++ b/tests/intel/xe_exec_capture.c
@@ -0,0 +1,510 @@
+// SPDX-License-Identifier: MIT
+/*
+ * Copyright © 2024 Intel Corporation
+ */
+
+/**
+ * TEST: Basic tests for GuC based register capture
+ * Category: Core
+ * Mega feature: General Core features
+ * Sub-category: CMD submission
+ * Functionality: Debug
+ * Test category: functionality test
+ */
+
+#include <ctype.h>
+#include <fcntl.h>
+#include <regex.h>
+#include <stdio.h>
+#include <string.h>
+
+#include "igt.h"
+#include "igt_device.h"
+#include "igt_sysfs.h"
+#include "lib/igt_syncobj.h"
+#include "lib/intel_reg.h"
+#include "linux_scaffold.h"
+#include "xe_drm.h"
+#include "xe/xe_ioctl.h"
+#include "xe/xe_query.h"
+#include "xe/xe_spin.h"
+
+#define MAX_N_EXECQUEUES 16
+#define CAPTURE_JOB_TIMEOUT 2000
+#define JOB_TIMOUT_ENTRY "job_timeout_ms"
+
+#define BASE_ADDRESS 0x1a0000
+#define ADDRESS_SHIFT 39
+#define CID_ADDRESS_MASK 0x7F
+/* Batch buffer element count, in number of dwords(u32) */
+#define BATCH_DW_COUNT 16
+
+#define MAX_TEMP_LEN 80
+#define MAX_SYSFS_PATH_LEN 128
+#define MAX_LINES 4096
+/* Max line buffer size (includes last '\0') */
+#define MAX_LINE_LEN 1024
+#define MAIN_BUF_SIZE (MAX_LINES * MAX_LINE_LEN * sizeof(char))
+/*
+ * Devcoredump might have long line this test don't care.
+ * This buffer size used when load dump content
+ */
+#define LINE_BUF_SIZE (64 * 1024)
+
+#define DUMP_PATH "/sys/class/drm/card%d/device/devcoredump/data"
+#define START_TAG "**** Job ****"
+#define END_TAG "**** VM state ****"
+
+/* Optional Space */
+#define SPC_O "[ \t]*"
+/* Required Space */
+#define SPC "[ \t]+"
+/* Optional Non-Space */
+#define NSPC_O "([^ \t]*)"
+/* Required Non-Space */
+#define NSPC "([^ \t]+)"
+#define BEG "^" SPC_O
+#define REQ_FIELD NSPC SPC
+#define REQ_FIELD_LAST NSPC SPC_O
+#define OPT_FIELD NSPC_O SPC_O
+#define END SPC_O "$"
+
+#define REGEX_NON_SPACE_GROUPS BEG REQ_FIELD REQ_FIELD_LAST OPT_FIELD OPT_FIELD OPT_FIELD END
+#define REGEX_NON_SPACE_GROUPS_COUNT 6
+
+#define INDEX_KEY 1
+#define INDEX_VALUE 2
+#define INDEX_ENGINE_PHYSICAL 2
+#define INDEX_ENGINE_NAME 1
+#define INDEX_ENGINE_INSTANCE 4
+
+static u64
+xe_sysfs_get_job_timeout_ms(int fd, struct drm_xe_engine_class_instance *eci)
+{
+ int engine_fd = -1;
+ u64 ret;
+
+ engine_fd = xe_sysfs_engine_open(fd, eci->gt_id, eci->engine_class);
+ ret = igt_sysfs_get_u64(engine_fd, JOB_TIMOUT_ENTRY);
+ close(engine_fd);
+
+ return ret;
+}
+
+static void xe_sysfs_set_job_timeout_ms(int fd, struct drm_xe_engine_class_instance *eci,
+ u64 timeout)
+{
+ int engine_fd = -1;
+
+ engine_fd = xe_sysfs_engine_open(fd, eci->gt_id, eci->engine_class);
+ igt_sysfs_set_u64(engine_fd, JOB_TIMOUT_ENTRY, CAPTURE_JOB_TIMEOUT);
+ close(engine_fd);
+}
+
+static char *safe_strncpy(char *dst, const char *src, int n)
+{
+ char *s;
+
+ igt_assert(n > 0);
+ igt_assert(dst && src);
+
+ s = strncpy(dst, src, n - 1);
+ s[n - 1] = '\0';
+
+ return s;
+}
+
+static const char *xe_engine_class_name(u32 engine_class)
+{
+ switch (engine_class) {
+ case DRM_XE_ENGINE_CLASS_RENDER:
+ return "rcs";
+ case DRM_XE_ENGINE_CLASS_COPY:
+ return "bcs";
+ case DRM_XE_ENGINE_CLASS_VIDEO_DECODE:
+ return "vcs";
+ case DRM_XE_ENGINE_CLASS_VIDEO_ENHANCE:
+ return "vecs";
+ case DRM_XE_ENGINE_CLASS_COMPUTE:
+ return "ccs";
+ default:
+ igt_warn("Engine class 0x%x unknown\n", engine_class);
+ return "unknown";
+ }
+}
+
+static void
+test_legacy_mode(int fd, struct drm_xe_engine_class_instance *eci, int n_exec_queues, int n_execs,
+ unsigned int flags, u64 addr)
+{
+ u32 vm;
+ struct drm_xe_sync sync[2] = {
+ { .type = DRM_XE_SYNC_TYPE_SYNCOBJ, .flags = DRM_XE_SYNC_FLAG_SIGNAL, },
+ { .type = DRM_XE_SYNC_TYPE_SYNCOBJ, .flags = DRM_XE_SYNC_FLAG_SIGNAL, },
+ };
+ struct drm_xe_exec exec = {
+ .num_batch_buffer = 1,
+ .num_syncs = 2,
+ .syncs = to_user_pointer(sync),
+ };
+ u32 exec_queues[MAX_N_EXECQUEUES];
+ u32 syncobjs[MAX_N_EXECQUEUES];
+ size_t bo_size;
+ u32 bo = 0;
+ struct {
+ struct xe_spin spin;
+ u32 batch[BATCH_DW_COUNT];
+ u64 pad;
+ u32 data;
+ } *data;
+ struct xe_spin_opts spin_opts = { .preempt = false };
+ int i, b;
+
+ igt_assert_lte(n_exec_queues, MAX_N_EXECQUEUES);
+
+ vm = xe_vm_create(fd, 0, 0);
+ bo_size = sizeof(*data) * n_execs;
+ bo_size = xe_bb_size(fd, bo_size);
+
+ bo = xe_bo_create(fd, vm, bo_size,
+ vram_if_possible(fd, eci->gt_id),
+ DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM);
+ data = xe_bo_map(fd, bo, bo_size);
+
+ for (i = 0; i < n_exec_queues; i++) {
+ exec_queues[i] = xe_exec_queue_create(fd, vm, eci, 0);
+ syncobjs[i] = syncobj_create(fd, 0);
+ };
+
+ sync[0].handle = syncobj_create(fd, 0);
+ xe_vm_bind_async(fd, vm, 0, bo, 0, addr, bo_size, sync, 1);
+
+ for (i = 0; i < n_execs; i++) {
+ u64 base_addr = addr;
+ u64 batch_offset = (char *)&data[i].batch - (char *)data;
+ u64 batch_addr = base_addr + batch_offset;
+ u64 spin_offset = (char *)&data[i].spin - (char *)data;
+ u64 sdi_offset = (char *)&data[i].data - (char *)data;
+ u64 sdi_addr = base_addr + sdi_offset;
+ u64 exec_addr;
+ int e = i % n_exec_queues;
+
+ if (!i) {
+ spin_opts.addr = base_addr + spin_offset;
+ xe_spin_init(&data[i].spin, &spin_opts);
+ exec_addr = spin_opts.addr;
+ } else {
+ b = 0;
+ data[i].batch[b++] = MI_STORE_DWORD_IMM_GEN4;
+ data[i].batch[b++] = sdi_addr;
+ data[i].batch[b++] = sdi_addr >> 32;
+ data[i].batch[b++] = 0xc0ffee;
+ data[i].batch[b++] = MI_BATCH_BUFFER_END;
+ igt_assert(b <= ARRAY_SIZE(data[i].batch));
+
+ exec_addr = batch_addr;
+ }
+
+ sync[0].flags &= ~DRM_XE_SYNC_FLAG_SIGNAL;
+ sync[1].flags |= DRM_XE_SYNC_FLAG_SIGNAL;
+ sync[1].handle = syncobjs[e];
+
+ exec.exec_queue_id = exec_queues[e];
+ exec.address = exec_addr;
+ if (e != i)
+ syncobj_reset(fd, &syncobjs[e], 1);
+ xe_exec(fd, &exec);
+ }
+
+ for (i = 0; i < n_exec_queues && n_execs; i++)
+ igt_assert(syncobj_wait(fd, &syncobjs[i], 1, INT64_MAX, 0,
+ NULL));
+ igt_assert(syncobj_wait(fd, &sync[0].handle, 1, INT64_MAX, 0, NULL));
+
+ sync[0].flags |= DRM_XE_SYNC_FLAG_SIGNAL;
+ xe_vm_unbind_async(fd, vm, 0, 0, addr, bo_size, sync, 1);
+ igt_assert(syncobj_wait(fd, &sync[0].handle, 1, INT64_MAX, 0, NULL));
+
+ syncobj_destroy(fd, sync[0].handle);
+ for (i = 0; i < n_exec_queues; i++) {
+ syncobj_destroy(fd, syncobjs[i]);
+ xe_exec_queue_destroy(fd, exec_queues[i]);
+ }
+
+ munmap(data, bo_size);
+ gem_close(fd, bo);
+ xe_vm_destroy(fd, vm);
+}
+
+static char **alloc_lines_buffer(void)
+{
+ int i;
+ char **lines = (char **)malloc(MAX_LINES * sizeof(char *));
+ char *main_buf = (char *)malloc(MAIN_BUF_SIZE);
+
+ igt_assert_f(lines, "Out of memory.\n");
+ igt_assert_f(main_buf, "Out of memory.\n");
+
+ /* set string array pointers */
+ for (i = 0; i < MAX_LINES; i++)
+ lines[i] = main_buf + i * MAX_LINE_LEN;
+
+ return lines;
+}
+
+static char *get_devcoredump_path(int card_id, char *buf)
+{
+ sprintf(buf, DUMP_PATH, card_id);
+ return buf;
+}
+
+static int load_all(FILE *fd, char **lines, char *buf)
+{
+ int start_line = 0, i = 0;
+ bool skip = true;
+
+ memset(lines[0], 0, MAIN_BUF_SIZE);
+ while (!feof(fd) && i < MAX_LINES) {
+ /*
+ * Devcoredump might have long lines, load up to
+ * LINE_BUF_SIZE for a single line
+ */
+ if (!fgets(buf, LINE_BUF_SIZE, fd))
+ if (ferror(fd) != 0) {
+ igt_warn("Failed to read devcoredump file, error: %d\n",
+ ferror(fd));
+ break;
+ }
+
+ if (skip) {
+ start_line++;
+ /* Skip all lines before START_TAG */
+ if (strncmp(START_TAG, buf, strlen(START_TAG)))
+ continue;
+ else
+ skip = false;
+ }
+
+ /* Only save up to MAX_LINE_LEN to buffer */
+ safe_strncpy(lines[i++], buf, MAX_LINE_LEN);
+
+ /* Stop on END_TAG */
+ if (!strncmp(END_TAG, buf, strlen(END_TAG)))
+ break;
+ }
+ return start_line;
+}
+
+static int access_devcoredump(char *path, char **lines, char *line_buf)
+{
+ int start_line = -1;
+ FILE *fd = fopen(path, "r");
+
+ if (!fd)
+ return false;
+
+ igt_debug("Devcoredump found: %s\n", path);
+
+ /* Clear memory before load file */
+ if (lines)
+ start_line = load_all(fd, lines, line_buf);
+
+ fclose(fd);
+ return start_line;
+}
+
+static bool rm_devcoredump(char *path)
+{
+ int fd = open(path, O_WRONLY);
+
+ if (fd != -1) {
+ igt_debug("Clearing devcoredump.\n");
+ write(fd, "0", 1);
+ close(fd);
+ return true;
+ }
+
+ return false;
+}
+
+static char
+*get_coredump_item(regex_t *regex, char **lines, const char *tag, int tag_index, int target_index)
+{
+ int i;
+ regmatch_t match[REGEX_NON_SPACE_GROUPS_COUNT];
+
+ for (i = 0; i < MAX_LINES; i++) {
+ char *line = lines[i];
+
+ /* Skip lines without tag */
+ if (!strstr(line, tag))
+ continue;
+
+ if ((regexec(regex, line, REGEX_NON_SPACE_GROUPS_COUNT, match, 0)) == 0) {
+ char *key = NULL, *value = NULL;
+
+ if (match[tag_index].rm_so >= 0) {
+ key = &line[match[tag_index].rm_so];
+ line[match[tag_index].rm_eo] = '\0';
+ }
+ if (match[target_index].rm_so >= 0) {
+ value = &line[match[target_index].rm_so];
+ line[match[target_index].rm_eo] = '\0';
+ }
+
+ if (key && value && strcmp(tag, key) == 0)
+ return value;
+ /* if key != tag, keep searching and loop to next line */
+ }
+ }
+
+ return NULL;
+}
+
+static void
+check_item_u64(regex_t *regex, char **lines, const char *tag, u64 addr_lo, u64 addr_hi)
+{
+ u64 result;
+ char *output;
+
+ igt_assert_f((output = get_coredump_item(regex, lines, tag, INDEX_KEY, INDEX_VALUE)),
+ "Target not found:%s\n", tag);
+ result = strtoul(output, NULL, 16);
+ igt_debug("Compare %s %s vs [0x%lX-0x%lX]\n", tag, output, addr_lo, addr_hi);
+ igt_assert_f((addr_lo <= result) && (result <= addr_hi),
+ "value %lX out of range[0x%lX-0x%lX]\n", result, addr_lo, addr_hi);
+}
+
+static void
+check_item_str(regex_t *regex, char **lines, const char *tag, int tag_index, int target_index,
+ const char *target, bool up_to_target_len)
+{
+ char buf[MAX_TEMP_LEN] = {0};
+ char *output;
+ int code;
+
+ igt_assert_f(output = get_coredump_item(regex, lines, tag, tag_index, target_index),
+ "Target not found:%s\n", tag);
+
+ if (up_to_target_len) {
+ igt_assert_f(strlen(target) < MAX_TEMP_LEN, "Target too long.\n");
+ safe_strncpy(buf, output, MAX_TEMP_LEN);
+ buf[strlen(target)] = 0;
+ output = buf;
+ }
+ code = strncmp(output, target, strlen(target));
+ igt_debug("From tag '%s' found %s vs %s\n", tag, output, target);
+ igt_assert_f(code == 0, "Expected value:%s, received:%s\n", target, output);
+}
+
+/**
+ * SUBTEST: reset
+ * Description: Reset GuC, check devcoredump output values
+ */
+static void test_card(int fd)
+{
+ struct drm_xe_engine_class_instance *hwe;
+ regex_t regex;
+ int start_line;
+ int engine_cid = rand();
+ char **lines;
+ char *single_line_buf = (char *)malloc(LINE_BUF_SIZE);
+ char temp[MAX_TEMP_LEN];
+ char path[MAX_SYSFS_PATH_LEN];
+
+ igt_assert_f(single_line_buf, "Out of memory.\n");
+
+ regcomp(®ex, REGEX_NON_SPACE_GROUPS, REG_EXTENDED | REG_NEWLINE);
+ get_devcoredump_path(igt_device_get_card_index(fd), path);
+ lines = alloc_lines_buffer();
+
+ /* clear old devcoredump, if any */
+ rm_devcoredump(path);
+
+ xe_for_each_engine(fd, hwe) {
+ /*
+ * To test devcoredump register data, the test batch address is
+ * used to compare with the dump, address bit 40 to 46 act as
+ * context id, which start with an random number, increased 1
+ * per engine. By this way, the address is unique for each
+ * engine, and start with an random number on each run.
+ */
+ const u64 addr = BASE_ADDRESS | ((u64)(engine_cid++ % CID_ADDRESS_MASK) <<
+ ADDRESS_SHIFT);
+ u64 job_timeout = xe_sysfs_get_job_timeout_ms(fd, hwe);
+
+ igt_debug("Running on engine class: %x instance: %x\n", hwe->engine_class,
+ hwe->engine_instance);
+
+ /* Reduce timeout value to speedup test */
+ xe_sysfs_set_job_timeout_ms(fd, hwe, CAPTURE_JOB_TIMEOUT);
+
+ test_legacy_mode(fd, hwe, 1, 1, 0, addr);
+
+ /* Restore timeout value */
+ xe_sysfs_set_job_timeout_ms(fd, hwe, job_timeout);
+
+ /* assert devcoredump created */
+ igt_assert_f((start_line = access_devcoredump(path, lines, single_line_buf)) > 0,
+ "Devcoredump not exist, errno=%d.\n", errno);
+
+ sprintf(temp, "instance=%d", hwe->engine_instance);
+ check_item_str(®ex, lines, "(physical),", INDEX_ENGINE_PHYSICAL,
+ INDEX_ENGINE_INSTANCE, temp, false);
+ check_item_str(®ex, lines, "(physical),", INDEX_ENGINE_PHYSICAL,
+ INDEX_ENGINE_NAME, xe_engine_class_name(hwe->engine_class), true);
+
+ check_item_str(®ex, lines, "Capture_source:", INDEX_KEY, INDEX_VALUE,
+ "GuC", false);
+ check_item_u64(®ex, lines, "ACTHD:", addr,
+ addr + BATCH_DW_COUNT * sizeof(u32));
+ check_item_u64(®ex, lines, "RING_BBADDR:", addr,
+ addr + BATCH_DW_COUNT * sizeof(u32));
+
+ /* clear devcoredump */
+ rm_devcoredump(path);
+ sleep(1);
+ /* Assert devcoredump removed */
+ igt_assert_f(!access_devcoredump(path, NULL, NULL), "Devcoredump not removed\n");
+ }
+ /* Free lines buffer */
+ free(lines);
+ free(single_line_buf);
+ regfree(®ex);
+}
+
+igt_main
+{
+ int xe;
+
+ igt_fixture
+ xe = drm_open_driver(DRIVER_XE);
+
+ igt_subtest("reset") {
+ int gpu_count = drm_prepare_filtered_multigpu(DRIVER_XE);
+
+ igt_require(xe > 0);
+ if (gpu_count >= 2) {
+ igt_info("Running test on multiple GPU\n");
+
+ 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 {
+ igt_info("Running test on single GPU\n");
+ 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] 9+ messages in thread
* ✓ Xe.CI.BAT: success for tests/intel/xe_exec_capture: Add xe_exec_capture test (rev8)
2024-12-06 22:59 [PATCH v9] tests/intel/xe_exec_capture: Add xe_exec_capture test Zhanjun Dong
@ 2024-12-06 23:38 ` Patchwork
2024-12-06 23:52 ` ✓ i915.CI.BAT: " Patchwork
` (4 subsequent siblings)
5 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2024-12-06 23:38 UTC (permalink / raw)
To: Zhanjun Dong; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 1648 bytes --]
== Series Details ==
Series: tests/intel/xe_exec_capture: Add xe_exec_capture test (rev8)
URL : https://patchwork.freedesktop.org/series/140007/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8143_BAT -> XEIGTPW_12274_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (8 -> 8)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in XEIGTPW_12274_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_flip@basic-flip-vs-dpms@a-edp1:
- bat-lnl-1: [PASS][1] -> [DMESG-WARN][2] ([Intel XE#3729]) +1 other test dmesg-warn
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/bat-lnl-1/igt@kms_flip@basic-flip-vs-dpms@a-edp1.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/bat-lnl-1/igt@kms_flip@basic-flip-vs-dpms@a-edp1.html
[Intel XE#3729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3729
Build changes
-------------
* IGT: IGT_8143 -> IGTPW_12274
* Linux: xe-2335-261a0301bda5af29477bd710465a8886e8609a4d -> xe-2336-21f6d267c4a3e02cd75de5641f8786e427ce8fa8
IGTPW_12274: 12274
IGT_8143: 515351a02a01f459212197f47ff91053551dcfab @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-2335-261a0301bda5af29477bd710465a8886e8609a4d: 261a0301bda5af29477bd710465a8886e8609a4d
xe-2336-21f6d267c4a3e02cd75de5641f8786e427ce8fa8: 21f6d267c4a3e02cd75de5641f8786e427ce8fa8
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/index.html
[-- Attachment #2: Type: text/html, Size: 2224 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* ✓ i915.CI.BAT: success for tests/intel/xe_exec_capture: Add xe_exec_capture test (rev8)
2024-12-06 22:59 [PATCH v9] tests/intel/xe_exec_capture: Add xe_exec_capture test Zhanjun Dong
2024-12-06 23:38 ` ✓ Xe.CI.BAT: success for tests/intel/xe_exec_capture: Add xe_exec_capture test (rev8) Patchwork
@ 2024-12-06 23:52 ` Patchwork
2024-12-07 1:11 ` ✗ i915.CI.Full: failure " Patchwork
` (3 subsequent siblings)
5 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2024-12-06 23:52 UTC (permalink / raw)
To: Zhanjun Dong; +Cc: igt-dev
== Series Details ==
Series: tests/intel/xe_exec_capture: Add xe_exec_capture test (rev8)
URL : https://patchwork.freedesktop.org/series/140007/
State : success
== Summary ==
CI Bug Log - changes from IGT_8143 -> IGTPW_12274
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/index.html
Participating hosts (42 -> 41)
------------------------------
Missing (1): fi-snb-2520m
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_12274:
### IGT changes ###
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* igt@i915_selftest@live@gt_timelines:
- {bat-mtlp-9}: [PASS][1] -> [INCOMPLETE][2] +1 other test incomplete
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8143/bat-mtlp-9/igt@i915_selftest@live@gt_timelines.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/bat-mtlp-9/igt@i915_selftest@live@gt_timelines.html
Known issues
------------
Here are the changes found in IGTPW_12274 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@i915_pm_rpm@module-reload:
- bat-dg2-11: [PASS][3] -> [FAIL][4] ([i915#12903])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8143/bat-dg2-11/igt@i915_pm_rpm@module-reload.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/bat-dg2-11/igt@i915_pm_rpm@module-reload.html
- bat-adls-6: [PASS][5] -> [FAIL][6] ([i915#12903])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8143/bat-adls-6/igt@i915_pm_rpm@module-reload.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/bat-adls-6/igt@i915_pm_rpm@module-reload.html
- bat-rpls-4: [PASS][7] -> [FAIL][8] ([i915#12903])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8143/bat-rpls-4/igt@i915_pm_rpm@module-reload.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/bat-rpls-4/igt@i915_pm_rpm@module-reload.html
* igt@i915_selftest@live:
- bat-mtlp-8: [PASS][9] -> [ABORT][10] ([i915#12061]) +1 other test abort
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8143/bat-mtlp-8/igt@i915_selftest@live.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/bat-mtlp-8/igt@i915_selftest@live.html
- bat-twl-1: NOTRUN -> [ABORT][11] ([i915#12435] / [i915#12919])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/bat-twl-1/igt@i915_selftest@live.html
* igt@i915_selftest@live@requests:
- bat-twl-1: [PASS][12] -> [ABORT][13] ([i915#12919])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8143/bat-twl-1/igt@i915_selftest@live@requests.html
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/bat-twl-1/igt@i915_selftest@live@requests.html
* igt@i915_selftest@live@workarounds:
- bat-arlh-2: [PASS][14] -> [ABORT][15] ([i915#12061]) +1 other test abort
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8143/bat-arlh-2/igt@i915_selftest@live@workarounds.html
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/bat-arlh-2/igt@i915_selftest@live@workarounds.html
#### Possible fixes ####
* igt@dmabuf@all-tests@dma_fence_chain:
- fi-bsw-nick: [INCOMPLETE][16] ([i915#12904]) -> [PASS][17] +1 other test pass
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8143/fi-bsw-nick/igt@dmabuf@all-tests@dma_fence_chain.html
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/fi-bsw-nick/igt@dmabuf@all-tests@dma_fence_chain.html
* igt@i915_selftest@live@workarounds:
- {bat-arls-6}: [ABORT][18] ([i915#12061]) -> [PASS][19] +1 other test pass
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8143/bat-arls-6/igt@i915_selftest@live@workarounds.html
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/bat-arls-6/igt@i915_selftest@live@workarounds.html
* igt@kms_flip@basic-flip-vs-dpms@c-dp2:
- fi-cfl-8109u: [DMESG-WARN][20] ([i915#12914]) -> [PASS][21] +1 other test pass
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8143/fi-cfl-8109u/igt@kms_flip@basic-flip-vs-dpms@c-dp2.html
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/fi-cfl-8109u/igt@kms_flip@basic-flip-vs-dpms@c-dp2.html
* igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence:
- bat-dg2-11: [SKIP][22] ([i915#9197]) -> [PASS][23] +1 other test pass
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8143/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#12435]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12435
[i915#12903]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12903
[i915#12904]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12904
[i915#12914]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12914
[i915#12919]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12919
[i915#9197]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9197
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8143 -> IGTPW_12274
* Linux: CI_DRM_15803 -> CI_DRM_15804
CI-20190529: 20190529
CI_DRM_15803: 261a0301bda5af29477bd710465a8886e8609a4d @ git://anongit.freedesktop.org/gfx-ci/linux
CI_DRM_15804: 21f6d267c4a3e02cd75de5641f8786e427ce8fa8 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_12274: 12274
IGT_8143: 515351a02a01f459212197f47ff91053551dcfab @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/index.html
^ permalink raw reply [flat|nested] 9+ messages in thread
* ✗ i915.CI.Full: failure for tests/intel/xe_exec_capture: Add xe_exec_capture test (rev8)
2024-12-06 22:59 [PATCH v9] tests/intel/xe_exec_capture: Add xe_exec_capture test Zhanjun Dong
2024-12-06 23:38 ` ✓ Xe.CI.BAT: success for tests/intel/xe_exec_capture: Add xe_exec_capture test (rev8) Patchwork
2024-12-06 23:52 ` ✓ i915.CI.BAT: " Patchwork
@ 2024-12-07 1:11 ` Patchwork
2024-12-07 4:42 ` ✗ Xe.CI.Full: " Patchwork
` (2 subsequent siblings)
5 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2024-12-07 1:11 UTC (permalink / raw)
To: Zhanjun Dong; +Cc: igt-dev
== Series Details ==
Series: tests/intel/xe_exec_capture: Add xe_exec_capture test (rev8)
URL : https://patchwork.freedesktop.org/series/140007/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_15804_full -> IGTPW_12274_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_12274_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_12274_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_12274/index.html
Participating hosts (9 -> 9)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_12274_full:
### IGT changes ###
#### Possible regressions ####
* igt@gem_exec_suspend@basic-s3@smem:
- shard-glk: NOTRUN -> [INCOMPLETE][1] +3 other tests incomplete
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-glk5/igt@gem_exec_suspend@basic-s3@smem.html
New tests
---------
New tests have been introduced between CI_DRM_15804_full and IGTPW_12274_full:
### New IGT tests (1) ###
* igt@kms_psr@fbc-psr2-sprite-mmap-cpu@edp-1:
- Statuses : 1 skip(s)
- Exec time: [0.0] s
Known issues
------------
Here are the changes found in IGTPW_12274_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@drm_fdinfo@most-busy-check-all:
- shard-dg1: NOTRUN -> [SKIP][2] ([i915#8414]) +5 other tests skip
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-dg1-12/igt@drm_fdinfo@most-busy-check-all.html
* igt@drm_fdinfo@most-busy-check-all@bcs0:
- shard-dg2: NOTRUN -> [SKIP][3] ([i915#8414]) +7 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-dg2-4/igt@drm_fdinfo@most-busy-check-all@bcs0.html
* igt@drm_fdinfo@most-busy-check-all@vcs0:
- shard-mtlp: NOTRUN -> [SKIP][4] ([i915#8414]) +6 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-mtlp-2/igt@drm_fdinfo@most-busy-check-all@vcs0.html
* igt@gem_caching@writes:
- shard-mtlp: NOTRUN -> [SKIP][5] ([i915#4873]) +1 other test skip
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-mtlp-6/igt@gem_caching@writes.html
* igt@gem_ccs@block-multicopy-inplace:
- shard-rkl: NOTRUN -> [SKIP][6] ([i915#3555] / [i915#9323])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-rkl-5/igt@gem_ccs@block-multicopy-inplace.html
- shard-dg1: NOTRUN -> [SKIP][7] ([i915#3555] / [i915#9323])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-dg1-18/igt@gem_ccs@block-multicopy-inplace.html
- shard-tglu: NOTRUN -> [SKIP][8] ([i915#3555] / [i915#9323])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-tglu-7/igt@gem_ccs@block-multicopy-inplace.html
- shard-mtlp: NOTRUN -> [SKIP][9] ([i915#3555] / [i915#9323])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-mtlp-8/igt@gem_ccs@block-multicopy-inplace.html
* igt@gem_ccs@suspend-resume:
- shard-dg2: NOTRUN -> [INCOMPLETE][10] ([i915#7297]) +1 other test incomplete
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-dg2-10/igt@gem_ccs@suspend-resume.html
- shard-rkl: NOTRUN -> [SKIP][11] ([i915#9323])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-rkl-2/igt@gem_ccs@suspend-resume.html
- shard-tglu: NOTRUN -> [SKIP][12] ([i915#9323])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-tglu-5/igt@gem_ccs@suspend-resume.html
- shard-mtlp: NOTRUN -> [SKIP][13] ([i915#9323])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-mtlp-2/igt@gem_ccs@suspend-resume.html
* igt@gem_close_race@multigpu-basic-process:
- shard-tglu: NOTRUN -> [SKIP][14] ([i915#7697])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-tglu-7/igt@gem_close_race@multigpu-basic-process.html
- shard-mtlp: NOTRUN -> [SKIP][15] ([i915#7697])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-mtlp-4/igt@gem_close_race@multigpu-basic-process.html
- shard-dg2: NOTRUN -> [SKIP][16] ([i915#7697])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-dg2-8/igt@gem_close_race@multigpu-basic-process.html
- shard-rkl: NOTRUN -> [SKIP][17] ([i915#7697])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-rkl-1/igt@gem_close_race@multigpu-basic-process.html
- shard-dg1: NOTRUN -> [SKIP][18] ([i915#7697])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-dg1-13/igt@gem_close_race@multigpu-basic-process.html
* igt@gem_ctx_persistence@legacy-engines-hostile-preempt:
- shard-snb: NOTRUN -> [SKIP][19] ([i915#1099]) +4 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-snb7/igt@gem_ctx_persistence@legacy-engines-hostile-preempt.html
* igt@gem_ctx_sseu@invalid-args:
- shard-dg2: NOTRUN -> [SKIP][20] ([i915#280])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-dg2-4/igt@gem_ctx_sseu@invalid-args.html
- shard-rkl: NOTRUN -> [SKIP][21] ([i915#280])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-rkl-5/igt@gem_ctx_sseu@invalid-args.html
- shard-dg1: NOTRUN -> [SKIP][22] ([i915#280])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-dg1-12/igt@gem_ctx_sseu@invalid-args.html
- shard-tglu: NOTRUN -> [SKIP][23] ([i915#280])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-tglu-10/igt@gem_ctx_sseu@invalid-args.html
- shard-mtlp: NOTRUN -> [SKIP][24] ([i915#280])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-mtlp-8/igt@gem_ctx_sseu@invalid-args.html
* igt@gem_eio@hibernate:
- shard-dg2: NOTRUN -> [ABORT][25] ([i915#10030] / [i915#7975] / [i915#8213])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-dg2-1/igt@gem_eio@hibernate.html
- shard-rkl: NOTRUN -> [ABORT][26] ([i915#7975] / [i915#8213])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-rkl-2/igt@gem_eio@hibernate.html
* igt@gem_eio@kms:
- shard-dg1: NOTRUN -> [FAIL][27] ([i915#5784])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-dg1-17/igt@gem_eio@kms.html
* igt@gem_exec_balancer@full-late-pulse:
- shard-tglu: NOTRUN -> [ABORT][28] ([i915#13218]) +23 other tests abort
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-tglu-6/igt@gem_exec_balancer@full-late-pulse.html
* igt@gem_exec_balancer@parallel-bb-first:
- shard-rkl: NOTRUN -> [SKIP][29] ([i915#4525])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-rkl-3/igt@gem_exec_balancer@parallel-bb-first.html
- shard-tglu: NOTRUN -> [SKIP][30] ([i915#4525])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-tglu-10/igt@gem_exec_balancer@parallel-bb-first.html
* igt@gem_exec_capture@capture-recoverable:
- shard-rkl: NOTRUN -> [SKIP][31] ([i915#6344])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-rkl-3/igt@gem_exec_capture@capture-recoverable.html
- shard-tglu: NOTRUN -> [SKIP][32] ([i915#6344])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-tglu-10/igt@gem_exec_capture@capture-recoverable.html
* igt@gem_exec_capture@capture@vecs0-lmem0:
- shard-dg2: NOTRUN -> [FAIL][33] ([i915#11965]) +4 other tests fail
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-dg2-2/igt@gem_exec_capture@capture@vecs0-lmem0.html
* igt@gem_exec_fence@submit3:
- shard-dg2: NOTRUN -> [SKIP][34] ([i915#4812])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-dg2-3/igt@gem_exec_fence@submit3.html
- shard-mtlp: NOTRUN -> [SKIP][35] ([i915#4812])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-mtlp-3/igt@gem_exec_fence@submit3.html
* igt@gem_exec_flush@basic-batch-kernel-default-wb:
- shard-dg1: NOTRUN -> [SKIP][36] ([i915#3539] / [i915#4852]) +3 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-dg1-12/igt@gem_exec_flush@basic-batch-kernel-default-wb.html
* igt@gem_exec_flush@basic-uc-prw-default:
- shard-dg1: NOTRUN -> [SKIP][37] ([i915#3539])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-dg1-18/igt@gem_exec_flush@basic-uc-prw-default.html
- shard-dg2: NOTRUN -> [SKIP][38] ([i915#3539])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-dg2-7/igt@gem_exec_flush@basic-uc-prw-default.html
* igt@gem_exec_flush@basic-wb-ro-before-default:
- shard-dg2: NOTRUN -> [SKIP][39] ([i915#3539] / [i915#4852]) +4 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-dg2-6/igt@gem_exec_flush@basic-wb-ro-before-default.html
* igt@gem_exec_reloc@basic-cpu-wc-active:
- shard-mtlp: NOTRUN -> [SKIP][40] ([i915#3281]) +6 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-mtlp-6/igt@gem_exec_reloc@basic-cpu-wc-active.html
* igt@gem_exec_reloc@basic-gtt-read-active:
- shard-dg2: NOTRUN -> [SKIP][41] ([i915#3281]) +6 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-dg2-11/igt@gem_exec_reloc@basic-gtt-read-active.html
* igt@gem_exec_reloc@basic-gtt-read-noreloc:
- shard-rkl: NOTRUN -> [SKIP][42] ([i915#3281]) +7 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-rkl-3/igt@gem_exec_reloc@basic-gtt-read-noreloc.html
* igt@gem_exec_reloc@basic-write-cpu-active:
- shard-dg1: NOTRUN -> [SKIP][43] ([i915#3281]) +5 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-dg1-17/igt@gem_exec_reloc@basic-write-cpu-active.html
* igt@gem_exec_schedule@preempt-queue-contexts:
- shard-dg1: NOTRUN -> [SKIP][44] ([i915#4812]) +2 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-dg1-17/igt@gem_exec_schedule@preempt-queue-contexts.html
- shard-mtlp: NOTRUN -> [SKIP][45] ([i915#4537] / [i915#4812])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-mtlp-8/igt@gem_exec_schedule@preempt-queue-contexts.html
* igt@gem_exec_schedule@reorder-wide:
- shard-dg2: NOTRUN -> [SKIP][46] ([i915#4537] / [i915#4812]) +1 other test skip
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-dg2-7/igt@gem_exec_schedule@reorder-wide.html
* igt@gem_exec_suspend@basic-s0:
- shard-mtlp: NOTRUN -> [ABORT][47] ([i915#13218]) +23 other tests abort
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-mtlp-8/igt@gem_exec_suspend@basic-s0.html
* igt@gem_exec_suspend@basic-s3@smem:
- shard-snb: NOTRUN -> [ABORT][48] ([i915#13242]) +11 other tests abort
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-snb7/igt@gem_exec_suspend@basic-s3@smem.html
* igt@gem_exec_suspend@basic-s4-devices:
- shard-dg2: NOTRUN -> [ABORT][49] ([i915#7975] / [i915#8213]) +1 other test abort
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-dg2-5/igt@gem_exec_suspend@basic-s4-devices.html
* igt@gem_fenced_exec_thrash@too-many-fences:
- shard-mtlp: NOTRUN -> [SKIP][50] ([i915#4860])
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-mtlp-2/igt@gem_fenced_exec_thrash@too-many-fences.html
* igt@gem_lmem_swapping@heavy-random:
- shard-tglu: NOTRUN -> [SKIP][51] ([i915#4613])
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-tglu-5/igt@gem_lmem_swapping@heavy-random.html
- shard-glk: NOTRUN -> [SKIP][52] ([i915#4613])
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-glk8/igt@gem_lmem_swapping@heavy-random.html
- shard-mtlp: NOTRUN -> [SKIP][53] ([i915#4613])
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-mtlp-2/igt@gem_lmem_swapping@heavy-random.html
- shard-rkl: NOTRUN -> [SKIP][54] ([i915#4613])
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-rkl-2/igt@gem_lmem_swapping@heavy-random.html
* igt@gem_mmap_gtt@basic-small-bo-tiledy:
- shard-dg1: NOTRUN -> [SKIP][55] ([i915#4077]) +5 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-dg1-14/igt@gem_mmap_gtt@basic-small-bo-tiledy.html
* igt@gem_mmap_gtt@big-bo-tiledx:
- shard-dg2: NOTRUN -> [SKIP][56] ([i915#4077]) +3 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-dg2-6/igt@gem_mmap_gtt@big-bo-tiledx.html
* igt@gem_mmap_gtt@cpuset-medium-copy-odd:
- shard-mtlp: NOTRUN -> [SKIP][57] ([i915#4077]) +5 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-mtlp-5/igt@gem_mmap_gtt@cpuset-medium-copy-odd.html
* igt@gem_mmap_wc@copy:
- shard-dg2: NOTRUN -> [SKIP][58] ([i915#4083]) +6 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-dg2-5/igt@gem_mmap_wc@copy.html
* igt@gem_mmap_wc@write:
- shard-mtlp: NOTRUN -> [SKIP][59] ([i915#4083]) +8 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-mtlp-6/igt@gem_mmap_wc@write.html
* igt@gem_mmap_wc@write-read:
- shard-dg1: NOTRUN -> [SKIP][60] ([i915#4083]) +6 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-dg1-13/igt@gem_mmap_wc@write-read.html
* igt@gem_partial_pwrite_pread@write-uncached:
- shard-dg2: NOTRUN -> [SKIP][61] ([i915#3282]) +2 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-dg2-7/igt@gem_partial_pwrite_pread@write-uncached.html
- shard-dg1: NOTRUN -> [SKIP][62] ([i915#3282]) +2 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-dg1-18/igt@gem_partial_pwrite_pread@write-uncached.html
* igt@gem_pwrite@basic-self:
- shard-rkl: NOTRUN -> [SKIP][63] ([i915#3282]) +5 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-rkl-7/igt@gem_pwrite@basic-self.html
* igt@gem_pxp@verify-pxp-key-change-after-suspend-resume:
- shard-dg1: NOTRUN -> [SKIP][64] ([i915#4270])
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-dg1-13/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html
- shard-dg2: NOTRUN -> [SKIP][65] ([i915#4270])
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-dg2-11/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html
* igt@gem_pxp@verify-pxp-stale-buf-execution:
- shard-rkl: NOTRUN -> [TIMEOUT][66] ([i915#12917] / [i915#12964]) +1 other test timeout
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-rkl-3/igt@gem_pxp@verify-pxp-stale-buf-execution.html
* igt@gem_readwrite@new-obj:
- shard-mtlp: NOTRUN -> [SKIP][67] ([i915#3282]) +2 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-mtlp-3/igt@gem_readwrite@new-obj.html
* igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled:
- shard-mtlp: NOTRUN -> [SKIP][68] ([i915#8428]) +4 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-mtlp-3/igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled.html
- shard-dg2: NOTRUN -> [SKIP][69] ([i915#5190] / [i915#8428]) +4 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-dg2-3/igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled.html
* igt@gem_set_tiling_vs_blt@tiled-to-untiled:
- shard-dg2: NOTRUN -> [SKIP][70] ([i915#4079]) +3 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-dg2-6/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
- shard-rkl: NOTRUN -> [SKIP][71] ([i915#8411])
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-rkl-7/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
* igt@gem_tiled_pread_pwrite:
- shard-dg1: NOTRUN -> [SKIP][72] ([i915#4079]) +3 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-dg1-18/igt@gem_tiled_pread_pwrite.html
- shard-mtlp: NOTRUN -> [SKIP][73] ([i915#4079]) +2 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-mtlp-8/igt@gem_tiled_pread_pwrite.html
* igt@gem_unfence_active_buffers:
- shard-dg1: NOTRUN -> [SKIP][74] ([i915#4879])
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-dg1-13/igt@gem_unfence_active_buffers.html
- shard-mtlp: NOTRUN -> [SKIP][75] ([i915#4879])
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-mtlp-4/igt@gem_unfence_active_buffers.html
- shard-dg2: NOTRUN -> [SKIP][76] ([i915#4879])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-dg2-8/igt@gem_unfence_active_buffers.html
* igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy:
- shard-dg2: NOTRUN -> [SKIP][77] ([i915#3297] / [i915#4880])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-dg2-1/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html
- shard-dg1: NOTRUN -> [SKIP][78] ([i915#3297] / [i915#4880])
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-dg1-12/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html
- shard-mtlp: NOTRUN -> [SKIP][79] ([i915#3297])
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-mtlp-4/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html
* igt@gen9_exec_parse@allowed-all:
- shard-mtlp: NOTRUN -> [SKIP][80] ([i915#2856]) +2 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-mtlp-4/igt@gen9_exec_parse@allowed-all.html
* igt@gen9_exec_parse@basic-rejected-ctx-param:
- shard-snb: NOTRUN -> [SKIP][81] +267 other tests skip
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-snb2/igt@gen9_exec_parse@basic-rejected-ctx-param.html
* igt@gen9_exec_parse@batch-invalid-length:
- shard-rkl: NOTRUN -> [SKIP][82] ([i915#2527]) +1 other test skip
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-rkl-1/igt@gen9_exec_parse@batch-invalid-length.html
* igt@gen9_exec_parse@bb-secure:
- shard-dg1: NOTRUN -> [SKIP][83] ([i915#2527]) +2 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-dg1-18/igt@gen9_exec_parse@bb-secure.html
- shard-tglu: NOTRUN -> [SKIP][84] ([i915#2527] / [i915#2856]) +1 other test skip
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-tglu-7/igt@gen9_exec_parse@bb-secure.html
* igt@gen9_exec_parse@unaligned-access:
- shard-dg2: NOTRUN -> [SKIP][85] ([i915#2856]) +2 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-dg2-7/igt@gen9_exec_parse@unaligned-access.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-rkl: NOTRUN -> [ABORT][86] ([i915#9820])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-rkl-7/igt@i915_module_load@reload-with-fault-injection.html
- shard-snb: NOTRUN -> [ABORT][87] ([i915#9820])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-snb1/igt@i915_module_load@reload-with-fault-injection.html
- shard-dg1: NOTRUN -> [ABORT][88] ([i915#9820])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-dg1-14/igt@i915_module_load@reload-with-fault-injection.html
- shard-tglu: NOTRUN -> [ABORT][89] ([i915#12817] / [i915#9820])
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-tglu-4/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_freq_api@freq-suspend:
- shard-rkl: NOTRUN -> [SKIP][90] ([i915#8399])
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-rkl-2/igt@i915_pm_freq_api@freq-suspend.html
- shard-tglu: NOTRUN -> [SKIP][91] ([i915#8399])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-tglu-5/igt@i915_pm_freq_api@freq-suspend.html
* igt@i915_pm_rc6_residency@rc6-fence:
- shard-glk: NOTRUN -> [ABORT][92] ([i915#13218]) +17 other tests abort
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-glk4/igt@i915_pm_rc6_residency@rc6-fence.html
* igt@i915_pm_rpm@gem-execbuf-stress-pc8:
- shard-mtlp: NOTRUN -> [SKIP][93] +12 other tests skip
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-mtlp-3/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html
* igt@i915_pm_rps@basic-api:
- shard-dg1: NOTRUN -> [SKIP][94] ([i915#11681] / [i915#6621]) +1 other test skip
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-dg1-13/igt@i915_pm_rps@basic-api.html
- shard-mtlp: NOTRUN -> [SKIP][95] ([i915#11681] / [i915#6621]) +1 other test skip
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-mtlp-5/igt@i915_pm_rps@basic-api.html
* igt@i915_pm_rps@min-max-config-idle:
- shard-dg2: NOTRUN -> [SKIP][96] ([i915#11681] / [i915#6621]) +1 other test skip
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-dg2-11/igt@i915_pm_rps@min-max-config-idle.html
* igt@i915_query@test-query-geometry-subslices:
- shard-dg1: NOTRUN -> [SKIP][97] ([i915#5723])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-dg1-18/igt@i915_query@test-query-geometry-subslices.html
* igt@i915_suspend@forcewake:
- shard-glk: NOTRUN -> [INCOMPLETE][98] ([i915#4817])
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-glk2/igt@i915_suspend@forcewake.html
* igt@kms_addfb_basic@framebuffer-vs-set-tiling:
- shard-dg2: NOTRUN -> [SKIP][99] ([i915#4212]) +1 other test skip
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-dg2-7/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html
- shard-dg1: NOTRUN -> [SKIP][100] ([i915#4212]) +1 other test skip
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-dg1-18/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html
- shard-mtlp: NOTRUN -> [SKIP][101] ([i915#4212]) +1 other test skip
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-mtlp-8/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-4-rc-ccs-cc:
- shard-mtlp: NOTRUN -> [SKIP][102] ([i915#8709]) +11 other tests skip
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-mtlp-8/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-4-rc-ccs-cc.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-y-rc-ccs:
- shard-dg1: NOTRUN -> [SKIP][103] ([i915#8709]) +7 other tests skip
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-dg1-12/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-3-y-rc-ccs.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-1-y-rc-ccs:
- shard-tglu: NOTRUN -> [SKIP][104] ([i915#8709]) +7 other tests skip
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-tglu-10/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-1-y-rc-ccs.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-2-y-rc-ccs-cc:
- shard-rkl: NOTRUN -> [SKIP][105] ([i915#8709]) +3 other tests skip
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-rkl-5/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-2-y-rc-ccs-cc.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-1-4-mc-ccs:
- shard-dg2: NOTRUN -> [SKIP][106] ([i915#8709]) +11 other tests skip
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-dg2-4/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-1-4-mc-ccs.html
* igt@kms_async_flips@invalid-async-flip:
- shard-dg2: NOTRUN -> [SKIP][107] ([i915#6228])
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-dg2-7/igt@kms_async_flips@invalid-async-flip.html
- shard-mtlp: NOTRUN -> [SKIP][108] ([i915#6228])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-mtlp-8/igt@kms_async_flips@invalid-async-flip.html
* igt@kms_big_fb@4-tiled-addfb-size-offset-overflow:
- shard-tglu-1: NOTRUN -> [SKIP][109] ([i915#5286])
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-tglu-1/igt@kms_big_fb@4-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-rkl: NOTRUN -> [SKIP][110] ([i915#5286]) +2 other tests skip
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-rkl-4/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
- shard-dg1: NOTRUN -> [SKIP][111] ([i915#4538] / [i915#5286]) +1 other test skip
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-dg1-14/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
- shard-tglu: NOTRUN -> [SKIP][112] ([i915#5286]) +2 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-tglu-3/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][113] ([i915#3638]) +1 other test skip
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-rkl-1/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html
- shard-dg1: NOTRUN -> [SKIP][114] ([i915#3638]) +1 other test skip
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-dg1-17/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-addfb-size-overflow:
- shard-dg2: NOTRUN -> [SKIP][115] ([i915#5190])
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-dg2-2/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
- shard-mtlp: NOTRUN -> [SKIP][116] ([i915#6187])
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-mtlp-5/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-rkl: NOTRUN -> [SKIP][117] +16 other tests skip
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-rkl-2/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
- shard-dg1: NOTRUN -> [SKIP][118] ([i915#4538]) +2 other tests skip
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-dg1-12/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-dg2: NOTRUN -> [SKIP][119] ([i915#4538] / [i915#5190]) +4 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-dg2-7/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][120] ([i915#6095]) +44 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-dg1-17/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-d-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][121] ([i915#10307] / [i915#6095]) +34 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-dg2-2/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-d-hdmi-a-3.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc:
- shard-glk: NOTRUN -> [SKIP][122] +217 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-glk1/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][123] ([i915#6095]) +49 other tests skip
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-tglu-3/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-1.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-ccs:
- shard-glk: NOTRUN -> [INCOMPLETE][124] ([i915#12796])
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-glk3/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc:
- shard-rkl: NOTRUN -> [ABORT][125] ([i915#13218]) +25 other tests abort
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-rkl-5/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-b-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][126] ([i915#6095]) +9 other tests skip
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-dg2-7/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-b-hdmi-a-3.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-1:
- shard-tglu-1: NOTRUN -> [ABORT][127] ([i915#13218]) +3 other tests abort
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-tglu-1/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-1.html
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1:
- shard-tglu-1: NOTRUN -> [SKIP][128] ([i915#6095]) +4 other tests skip
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-tglu-1/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][129] ([i915#6095]) +59 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-mtlp-3/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-edp-1.html
* igt@kms_ccs@random-ccs-data-y-tiled-ccs@pipe-b-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][130] ([i915#6095]) +30 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-rkl-4/igt@kms_ccs@random-ccs-data-y-tiled-ccs@pipe-b-hdmi-a-1.html
* igt@kms_chamelium_edid@hdmi-mode-timings:
- shard-tglu: NOTRUN -> [SKIP][131] ([i915#7828]) +3 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-tglu-4/igt@kms_chamelium_edid@hdmi-mode-timings.html
* igt@kms_chamelium_frames@hdmi-cmp-planar-formats:
- shard-rkl: NOTRUN -> [SKIP][132] ([i915#7828]) +3 other tests skip
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-rkl-4/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html
* igt@kms_chamelium_frames@hdmi-frame-dump:
- shard-dg1: NOTRUN -> [SKIP][133] ([i915#7828]) +4 other tests skip
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-dg1-18/igt@kms_chamelium_frames@hdmi-frame-dump.html
* igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode:
- shard-mtlp: NOTRUN -> [SKIP][134] ([i915#7828]) +3 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-mtlp-4/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html
- shard-dg2: NOTRUN -> [SKIP][135] ([i915#7828]) +3 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-dg2-2/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html
* igt@kms_content_protection@lic-type-0:
- shard-dg2: NOTRUN -> [SKIP][136] ([i915#9424])
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-dg2-7/igt@kms_content_protection@lic-type-0.html
- shard-dg1: NOTRUN -> [SKIP][137] ([i915#9424])
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-dg1-18/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@type1:
- shard-dg2: NOTRUN -> [SKIP][138] ([i915#7118] / [i915#9424])
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-dg2-3/igt@kms_content_protection@type1.html
- shard-rkl: NOTRUN -> [SKIP][139] ([i915#7118] / [i915#9424])
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-rkl-7/igt@kms_content_protection@type1.html
- shard-dg1: NOTRUN -> [SKIP][140] ([i915#7116] / [i915#9424])
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-dg1-17/igt@kms_content_protection@type1.html
- shard-tglu: NOTRUN -> [SKIP][141] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424])
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-tglu-4/igt@kms_content_protection@type1.html
- shard-mtlp: NOTRUN -> [SKIP][142] ([i915#3555] / [i915#6944] / [i915#9424])
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-mtlp-3/igt@kms_content_protection@type1.html
* igt@kms_cursor_crc@cursor-onscreen-256x256:
- shard-rkl: [PASS][143] -> [DMESG-WARN][144] ([i915#12964]) +2 other tests dmesg-warn
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15804/shard-rkl-7/igt@kms_cursor_crc@cursor-onscreen-256x256.html
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-rkl-3/igt@kms_cursor_crc@cursor-onscreen-256x256.html
* igt@kms_cursor_crc@cursor-onscreen-256x256@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [DMESG-WARN][145] ([i915#12964]) +3 other tests dmesg-warn
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-rkl-3/igt@kms_cursor_crc@cursor-onscreen-256x256@pipe-a-hdmi-a-2.html
* igt@kms_cursor_crc@cursor-random-32x10:
- shard-tglu: NOTRUN -> [SKIP][146] ([i915#3555]) +3 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-tglu-7/igt@kms_cursor_crc@cursor-random-32x10.html
* igt@kms_cursor_crc@cursor-random-32x32:
- shard-dg1: NOTRUN -> [SKIP][147] ([i915#3555]) +5 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-dg1-18/igt@kms_cursor_crc@cursor-random-32x32.html
* igt@kms_cursor_crc@cursor-sliding-256x85:
- shard-rkl: [PASS][148] -> [DMESG-WARN][149] ([i915#12917] / [i915#12964])
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15804/shard-rkl-1/igt@kms_cursor_crc@cursor-sliding-256x85.html
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-rkl-3/igt@kms_cursor_crc@cursor-sliding-256x85.html
* igt@kms_cursor_crc@cursor-sliding-32x10:
- shard-dg2: NOTRUN -> [SKIP][150] ([i915#3555]) +3 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-dg2-2/igt@kms_cursor_crc@cursor-sliding-32x10.html
* igt@kms_cursor_crc@cursor-sliding-max-size:
- shard-mtlp: NOTRUN -> [SKIP][151] ([i915#3555] / [i915#8814]) +3 other tests skip
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-mtlp-3/igt@kms_cursor_crc@cursor-sliding-max-size.html
* igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy:
- shard-mtlp: NOTRUN -> [SKIP][152] ([i915#9809]) +4 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-mtlp-3/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size:
- shard-tglu: NOTRUN -> [SKIP][153] +53 other tests skip
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-tglu-3/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-rkl: NOTRUN -> [SKIP][154] ([i915#12402])
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-rkl-7/igt@kms_dp_linktrain_fallback@dp-fallback.html
- shard-tglu: NOTRUN -> [SKIP][155] ([i915#12402])
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-tglu-3/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-rkl: NOTRUN -> [SKIP][156] ([i915#3955])
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-rkl-4/igt@kms_fbcon_fbt@psr-suspend.html
- shard-dg1: NOTRUN -> [SKIP][157] ([i915#3469])
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-dg1-14/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@display-2x:
- shard-mtlp: NOTRUN -> [SKIP][158] ([i915#1839])
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-mtlp-5/igt@kms_feature_discovery@display-2x.html
- shard-dg2: NOTRUN -> [SKIP][159] ([i915#1839])
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-dg2-2/igt@kms_feature_discovery@display-2x.html
- shard-rkl: NOTRUN -> [SKIP][160] ([i915#1839])
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-rkl-1/igt@kms_feature_discovery@display-2x.html
- shard-dg1: NOTRUN -> [SKIP][161] ([i915#1839])
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-dg1-17/igt@kms_feature_discovery@display-2x.html
* igt@kms_flip@2x-flip-vs-blocking-wf-vblank:
- shard-dg2: NOTRUN -> [SKIP][162] ([i915#9934]) +2 other tests skip
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-dg2-4/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html
* igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible:
- shard-rkl: NOTRUN -> [SKIP][163] ([i915#9934]) +2 other tests skip
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-rkl-7/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html
- shard-dg1: NOTRUN -> [SKIP][164] ([i915#9934]) +1 other test skip
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-dg1-12/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html
- shard-tglu: NOTRUN -> [SKIP][165] ([i915#3637]) +2 other tests skip
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-tglu-3/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html
- shard-mtlp: NOTRUN -> [SKIP][166] ([i915#3637]) +2 other tests skip
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-mtlp-2/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling:
- shard-mtlp: NOTRUN -> [SKIP][167] ([i915#3555] / [i915#8810] / [i915#8813])
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][168] ([i915#3555] / [i915#8810])
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling:
- shard-rkl: NOTRUN -> [SKIP][169] ([i915#2672] / [i915#3555]) +1 other test skip
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-rkl-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html
- shard-tglu: NOTRUN -> [SKIP][170] ([i915#2672] / [i915#3555])
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-tglu-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode:
- shard-dg1: NOTRUN -> [SKIP][171] ([i915#2587] / [i915#2672]) +1 other test skip
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-dg1-18/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode.html
- shard-tglu: NOTRUN -> [SKIP][172] ([i915#2587] / [i915#2672])
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-tglu-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling:
- shard-dg1: NOTRUN -> [SKIP][173] ([i915#2672] / [i915#3555]) +1 other test skip
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-dg1-18/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html
- shard-dg2: NOTRUN -> [SKIP][174] ([i915#2672] / [i915#3555])
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-dg2-8/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][175] ([i915#2672]) +1 other test skip
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-dg2-8/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode.html
- shard-rkl: NOTRUN -> [SKIP][176] ([i915#2672]) +1 other test skip
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-rkl-1/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-32bpp-ytile-downscaling:
- shard-mtlp: NOTRUN -> [SKIP][177] ([i915#2672] / [i915#3555] / [i915#8813]) +1 other test skip
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
- shard-dg2: NOTRUN -> [SKIP][178] ([i915#2672] / [i915#3555] / [i915#5190])
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-dg2-11/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
* igt@kms_force_connector_basic@prune-stale-modes:
- shard-mtlp: NOTRUN -> [SKIP][179] ([i915#5274])
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-mtlp-4/igt@kms_force_connector_basic@prune-stale-modes.html
- shard-dg2: NOTRUN -> [SKIP][180] ([i915#5274])
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-dg2-8/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt:
- shard-dg2: NOTRUN -> [FAIL][181] ([i915#6880])
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][182] ([i915#8708]) +4 other tests skip
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-render:
- shard-dg1: NOTRUN -> [SKIP][183] ([i915#3458]) +8 other tests skip
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][184] ([i915#8708]) +8 other tests skip
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-cpu:
- shard-mtlp: NOTRUN -> [SKIP][185] ([i915#1825]) +27 other tests skip
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-1p-rte:
- shard-dg2: NOTRUN -> [SKIP][186] ([i915#3458]) +6 other tests skip
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-dg2-8/igt@kms_frontbuffer_tracking@psr-1p-rte.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc:
- shard-rkl: NOTRUN -> [SKIP][187] ([i915#1825]) +28 other tests skip
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-onoff:
- shard-dg2: NOTRUN -> [SKIP][188] ([i915#5354]) +24 other tests skip
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][189] ([i915#8708]) +9 other tests skip
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-dg1-12/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-rgb101010-draw-pwrite:
- shard-rkl: NOTRUN -> [SKIP][190] ([i915#3023]) +12 other tests skip
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-pwrite.html
* igt@kms_hdr@bpc-switch-dpms:
- shard-rkl: NOTRUN -> [SKIP][191] ([i915#3555] / [i915#8228])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-rkl-3/igt@kms_hdr@bpc-switch-dpms.html
- shard-dg1: NOTRUN -> [SKIP][192] ([i915#3555] / [i915#8228])
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-dg1-18/igt@kms_hdr@bpc-switch-dpms.html
- shard-tglu: NOTRUN -> [SKIP][193] ([i915#3555] / [i915#8228])
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-tglu-2/igt@kms_hdr@bpc-switch-dpms.html
- shard-dg2: NOTRUN -> [SKIP][194] ([i915#3555] / [i915#8228])
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-dg2-5/igt@kms_hdr@bpc-switch-dpms.html
* igt@kms_joiner@invalid-modeset-force-big-joiner:
- shard-dg2: NOTRUN -> [SKIP][195] ([i915#12388])
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-dg2-3/igt@kms_joiner@invalid-modeset-force-big-joiner.html
- shard-rkl: NOTRUN -> [SKIP][196] ([i915#12388])
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-rkl-7/igt@kms_joiner@invalid-modeset-force-big-joiner.html
- shard-dg1: NOTRUN -> [SKIP][197] ([i915#12388])
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-dg1-17/igt@kms_joiner@invalid-modeset-force-big-joiner.html
- shard-tglu: NOTRUN -> [SKIP][198] ([i915#12388])
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-tglu-4/igt@kms_joiner@invalid-modeset-force-big-joiner.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-mtlp: NOTRUN -> [SKIP][199] ([i915#4816])
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-mtlp-2/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
- shard-rkl: NOTRUN -> [SKIP][200] ([i915#4070] / [i915#4816])
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-rkl-2/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
- shard-tglu: NOTRUN -> [SKIP][201] ([i915#1839]) +1 other test skip
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-tglu-5/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes:
- shard-tglu-1: NOTRUN -> [SKIP][202] +7 other tests skip
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-tglu-1/igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes.html
- shard-dg1: NOTRUN -> [SKIP][203] +35 other tests skip
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-dg1-12/igt@kms_pipe_b_c_ivb@enable-pipe-c-while-b-has-3-lanes.html
* igt@kms_plane_alpha_blend@alpha-transparent-fb:
- shard-glk: NOTRUN -> [FAIL][204] ([i915#12177])
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-glk8/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][205] ([i915#10647]) +1 other test fail
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-glk8/igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1.html
* igt@kms_plane_scaling@2x-scaler-multi-pipe:
- shard-dg2: NOTRUN -> [SKIP][206] ([i915#5354] / [i915#9423])
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-dg2-3/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a:
- shard-dg1: NOTRUN -> [SKIP][207] ([i915#12247]) +13 other tests skip
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-dg1-18/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b:
- shard-tglu: NOTRUN -> [SKIP][208] ([i915#12247]) +4 other tests skip
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-tglu-2/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation:
- shard-rkl: NOTRUN -> [SKIP][209] ([i915#3555]) +4 other tests skip
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-rkl-5/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html
- shard-tglu-1: NOTRUN -> [SKIP][210] ([i915#3555]) +1 other test skip
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-tglu-1/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b:
- shard-rkl: NOTRUN -> [SKIP][211] ([i915#12247]) +4 other tests skip
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-rkl-5/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b.html
- shard-tglu-1: NOTRUN -> [SKIP][212] ([i915#12247]) +3 other tests skip
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-tglu-1/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-d:
- shard-mtlp: NOTRUN -> [SKIP][213] ([i915#12247]) +4 other tests skip
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-mtlp-3/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-d.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-dg2: NOTRUN -> [SKIP][214] ([i915#9519])
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-dg2-6/igt@kms_pm_rpm@modeset-lpsp.html
- shard-dg1: NOTRUN -> [SKIP][215] ([i915#9519])
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-dg1-17/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_pm_rpm@pc8-residency:
- shard-dg2: NOTRUN -> [SKIP][216] +8 other tests skip
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-dg2-11/igt@kms_pm_rpm@pc8-residency.html
* igt@kms_prime@d3hot:
- shard-rkl: NOTRUN -> [SKIP][217] ([i915#6524])
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-rkl-7/igt@kms_prime@d3hot.html
- shard-dg1: NOTRUN -> [SKIP][218] ([i915#6524])
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-dg1-17/igt@kms_prime@d3hot.html
- shard-tglu: NOTRUN -> [SKIP][219] ([i915#6524])
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-tglu-4/igt@kms_prime@d3hot.html
- shard-mtlp: NOTRUN -> [SKIP][220] ([i915#6524])
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-mtlp-3/igt@kms_prime@d3hot.html
- shard-dg2: NOTRUN -> [SKIP][221] ([i915#6524] / [i915#6805])
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-dg2-3/igt@kms_prime@d3hot.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf:
- shard-snb: NOTRUN -> [SKIP][222] ([i915#11520]) +5 other tests skip
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-snb5/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html
- shard-dg1: NOTRUN -> [SKIP][223] ([i915#11520]) +4 other tests skip
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-dg1-12/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html
- shard-glk: NOTRUN -> [SKIP][224] ([i915#11520]) +3 other tests skip
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-glk8/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html
- shard-mtlp: NOTRUN -> [SKIP][225] ([i915#12316]) +2 other tests skip
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-mtlp-4/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf:
- shard-dg2: NOTRUN -> [SKIP][226] ([i915#11520]) +5 other tests skip
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-dg2-2/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html
- shard-rkl: NOTRUN -> [SKIP][227] ([i915#11520]) +4 other tests skip
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-rkl-1/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html
- shard-tglu: NOTRUN -> [SKIP][228] ([i915#11520]) +1 other test skip
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-tglu-6/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area:
- shard-tglu-1: NOTRUN -> [SKIP][229] ([i915#11520]) +1 other test skip
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-tglu-1/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area.html
* igt@kms_psr@fbc-pr-primary-mmap-cpu:
- shard-tglu: NOTRUN -> [SKIP][230] ([i915#9732]) +8 other tests skip
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-tglu-10/igt@kms_psr@fbc-pr-primary-mmap-cpu.html
* igt@kms_psr@fbc-psr-primary-page-flip:
- shard-dg2: NOTRUN -> [SKIP][231] ([i915#1072] / [i915#9732]) +5 other tests skip
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-dg2-5/igt@kms_psr@fbc-psr-primary-page-flip.html
- shard-rkl: NOTRUN -> [SKIP][232] ([i915#1072] / [i915#9732]) +7 other tests skip
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-rkl-3/igt@kms_psr@fbc-psr-primary-page-flip.html
- shard-dg1: NOTRUN -> [SKIP][233] ([i915#1072] / [i915#9732]) +6 other tests skip
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-dg1-18/igt@kms_psr@fbc-psr-primary-page-flip.html
* igt@kms_psr@fbc-psr2-sprite-plane-onoff:
- shard-mtlp: NOTRUN -> [SKIP][234] ([i915#9688]) +9 other tests skip
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-mtlp-5/igt@kms_psr@fbc-psr2-sprite-plane-onoff.html
* igt@kms_vrr@seamless-rr-switch-vrr:
- shard-dg2: NOTRUN -> [SKIP][235] ([i915#9906])
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-dg2-4/igt@kms_vrr@seamless-rr-switch-vrr.html
- shard-rkl: NOTRUN -> [SKIP][236] ([i915#9906])
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-rkl-5/igt@kms_vrr@seamless-rr-switch-vrr.html
- shard-dg1: NOTRUN -> [SKIP][237] ([i915#9906])
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-dg1-12/igt@kms_vrr@seamless-rr-switch-vrr.html
- shard-tglu: NOTRUN -> [SKIP][238] ([i915#9906])
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-tglu-10/igt@kms_vrr@seamless-rr-switch-vrr.html
- shard-mtlp: NOTRUN -> [SKIP][239] ([i915#8808] / [i915#9906])
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-mtlp-8/igt@kms_vrr@seamless-rr-switch-vrr.html
* igt@kms_writeback@writeback-check-output-xrgb2101010:
- shard-dg2: NOTRUN -> [SKIP][240] ([i915#2437] / [i915#9412])
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-dg2-7/igt@kms_writeback@writeback-check-output-xrgb2101010.html
- shard-rkl: NOTRUN -> [SKIP][241] ([i915#2437] / [i915#9412])
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-rkl-5/igt@kms_writeback@writeback-check-output-xrgb2101010.html
- shard-dg1: NOTRUN -> [SKIP][242] ([i915#2437] / [i915#9412])
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-dg1-18/igt@kms_writeback@writeback-check-output-xrgb2101010.html
- shard-tglu: NOTRUN -> [SKIP][243] ([i915#2437] / [i915#9412])
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-tglu-9/igt@kms_writeback@writeback-check-output-xrgb2101010.html
- shard-mtlp: NOTRUN -> [SKIP][244] ([i915#2437] / [i915#9412])
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-mtlp-8/igt@kms_writeback@writeback-check-output-xrgb2101010.html
* igt@kms_writeback@writeback-fb-id:
- shard-glk: NOTRUN -> [SKIP][245] ([i915#2437]) +1 other test skip
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-glk9/igt@kms_writeback@writeback-fb-id.html
- shard-mtlp: NOTRUN -> [SKIP][246] ([i915#2437])
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-mtlp-2/igt@kms_writeback@writeback-fb-id.html
* igt@perf@stress-open-close:
- shard-dg2: NOTRUN -> [ABORT][247] ([i915#13218]) +20 other tests abort
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-dg2-3/igt@perf@stress-open-close.html
- shard-dg1: NOTRUN -> [ABORT][248] ([i915#13218]) +21 other tests abort
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-dg1-17/igt@perf@stress-open-close.html
* igt@perf_pmu@busy-double-start@ccs0:
- shard-mtlp: NOTRUN -> [FAIL][249] ([i915#4349])
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-mtlp-6/igt@perf_pmu@busy-double-start@ccs0.html
* igt@perf_pmu@busy-double-start@vecs1:
- shard-dg2: NOTRUN -> [FAIL][250] ([i915#4349]) +3 other tests fail
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-dg2-7/igt@perf_pmu@busy-double-start@vecs1.html
* igt@perf_pmu@multi-client@rcs0:
- shard-snb: NOTRUN -> [ABORT][251] ([i915#13218]) +10 other tests abort
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-snb7/igt@perf_pmu@multi-client@rcs0.html
* igt@prime_vgem@basic-fence-mmap:
- shard-mtlp: NOTRUN -> [SKIP][252] ([i915#3708] / [i915#4077])
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-mtlp-5/igt@prime_vgem@basic-fence-mmap.html
- shard-dg1: NOTRUN -> [SKIP][253] ([i915#3708] / [i915#4077])
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-dg1-14/igt@prime_vgem@basic-fence-mmap.html
#### Possible fixes ####
* igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
- shard-rkl: [DMESG-WARN][254] ([i915#12964]) -> [PASS][255]
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15804/shard-rkl-2/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-rkl-4/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html
* igt@kms_psr@psr2-cursor-blt@edp-1:
- shard-mtlp: [FAIL][256] -> [PASS][257] +1 other test pass
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15804/shard-mtlp-5/igt@kms_psr@psr2-cursor-blt@edp-1.html
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-mtlp-8/igt@kms_psr@psr2-cursor-blt@edp-1.html
#### Warnings ####
* igt@kms_psr@psr-primary-render:
- shard-dg1: [SKIP][258] ([i915#1072] / [i915#4423] / [i915#9732]) -> [SKIP][259] ([i915#1072] / [i915#9732])
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15804/shard-dg1-18/igt@kms_psr@psr-primary-render.html
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/shard-dg1-14/igt@kms_psr@psr-primary-render.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[i915#10030]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10030
[i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
[i915#10647]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099
[i915#10991]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10991
[i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520
[i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
[i915#11965]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11965
[i915#12177]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12177
[i915#12247]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247
[i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316
[i915#12388]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12388
[i915#12402]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12402
[i915#12766]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12766
[i915#12796]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12796
[i915#12817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12817
[i915#12917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12917
[i915#12964]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964
[i915#13218]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13218
[i915#13242]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13242
[i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839
[i915#2437]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437
[i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
[i915#2587]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587
[i915#2672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672
[i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280
[i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023
[i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
[i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297
[i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458
[i915#3469]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3469
[i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638
[i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[i915#3955]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3955
[i915#4070]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4070
[i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
[i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212
[i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
[i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349
[i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423
[i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525
[i915#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537
[i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812
[i915#4816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4816
[i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817
[i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852
[i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860
[i915#4873]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4873
[i915#4879]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4879
[i915#4880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4880
[i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
[i915#5274]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5274
[i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#5723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5723
[i915#5784]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5784
[i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
[i915#6187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6187
[i915#6228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6228
[i915#6344]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6344
[i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524
[i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621
[i915#6805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6805
[i915#6880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880
[i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944
[i915#7116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116
[i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118
[i915#7297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7297
[i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697
[i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828
[i915#7975]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7975
[i915#8213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8213
[i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
[i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399
[i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411
[i915#8414]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8414
[i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428
[i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
[i915#8709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8709
[i915#8808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808
[i915#8810]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8810
[i915#8813]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813
[i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814
[i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323
[i915#9412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9412
[i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423
[i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424
[i915#9519]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519
[i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
[i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809
[i915#9820]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9820
[i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906
[i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8143 -> IGTPW_12274
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_15804: 21f6d267c4a3e02cd75de5641f8786e427ce8fa8 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_12274: 12274
IGT_8143: 515351a02a01f459212197f47ff91053551dcfab @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12274/index.html
^ permalink raw reply [flat|nested] 9+ messages in thread
* ✗ Xe.CI.Full: failure for tests/intel/xe_exec_capture: Add xe_exec_capture test (rev8)
2024-12-06 22:59 [PATCH v9] tests/intel/xe_exec_capture: Add xe_exec_capture test Zhanjun Dong
` (2 preceding siblings ...)
2024-12-07 1:11 ` ✗ i915.CI.Full: failure " Patchwork
@ 2024-12-07 4:42 ` Patchwork
2024-12-11 22:08 ` [PATCH v9] tests/intel/xe_exec_capture: Add xe_exec_capture test Teres Alexis, Alan Previn
2024-12-12 21:41 ` Teres Alexis, Alan Previn
5 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2024-12-07 4:42 UTC (permalink / raw)
To: Zhanjun Dong; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 76792 bytes --]
== Series Details ==
Series: tests/intel/xe_exec_capture: Add xe_exec_capture test (rev8)
URL : https://patchwork.freedesktop.org/series/140007/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8143_full -> XEIGTPW_12274_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_12274_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_12274_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_12274_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_async_flips@invalid-async-flip-atomic:
- shard-lnl: NOTRUN -> [SKIP][1]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-lnl-7/igt@kms_async_flips@invalid-async-flip-atomic.html
* igt@kms_cursor_crc@cursor-onscreen-64x64@pipe-a-dp-2:
- shard-bmg: [PASS][2] -> [DMESG-FAIL][3]
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-4/igt@kms_cursor_crc@cursor-onscreen-64x64@pipe-a-dp-2.html
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-bmg-8/igt@kms_cursor_crc@cursor-onscreen-64x64@pipe-a-dp-2.html
* igt@xe_ccs@suspend-resume@linear-compressed-compfmt0-system-system:
- shard-lnl: NOTRUN -> [ABORT][4] +3 other tests abort
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-lnl-4/igt@xe_ccs@suspend-resume@linear-compressed-compfmt0-system-system.html
* igt@xe_vm@mixed-userptr-binds-3145728:
- shard-bmg: [PASS][5] -> [DMESG-WARN][6] +2 other tests dmesg-warn
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-4/igt@xe_vm@mixed-userptr-binds-3145728.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-bmg-8/igt@xe_vm@mixed-userptr-binds-3145728.html
#### Warnings ####
* igt@kms_draw_crc@draw-method-blt@xrgb8888-4tiled:
- shard-bmg: [DMESG-FAIL][7] ([Intel XE#2705]) -> [FAIL][8]
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-1/igt@kms_draw_crc@draw-method-blt@xrgb8888-4tiled.html
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-bmg-4/igt@kms_draw_crc@draw-method-blt@xrgb8888-4tiled.html
New tests
---------
New tests have been introduced between XEIGT_8143_full and XEIGTPW_12274_full:
### New IGT tests (1) ###
* igt@xe_exec_capture@reset:
- Statuses : 2 pass(s)
- Exec time: [18.57, 25.97] s
Known issues
------------
Here are the changes found in XEIGTPW_12274_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@intel_hwmon@hwmon-read:
- shard-lnl: NOTRUN -> [SKIP][9] ([Intel XE#1125])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-lnl-7/igt@intel_hwmon@hwmon-read.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- shard-lnl: NOTRUN -> [SKIP][10] ([Intel XE#1466])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-lnl-5/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear:
- shard-lnl: [PASS][11] -> [FAIL][12] ([Intel XE#911]) +3 other tests fail
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-lnl-4/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear.html
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-lnl-8/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear.html
* igt@kms_async_flips@invalid-async-flip:
- shard-lnl: NOTRUN -> [SKIP][13] ([Intel XE#873])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-lnl-4/igt@kms_async_flips@invalid-async-flip.html
- shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#873])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-bmg-3/igt@kms_async_flips@invalid-async-flip.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
- shard-lnl: NOTRUN -> [SKIP][15] ([Intel XE#3279])
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-lnl-3/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
* igt@kms_atomic_transition@plane-all-transition-fencing:
- shard-bmg: NOTRUN -> [DMESG-WARN][16] ([Intel XE#2705] / [Intel XE#3468]) +2 other tests dmesg-warn
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-bmg-8/igt@kms_atomic_transition@plane-all-transition-fencing.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-270:
- shard-lnl: NOTRUN -> [SKIP][17] ([Intel XE#1407]) +8 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-lnl-4/igt@kms_big_fb@4-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-lnl: NOTRUN -> [SKIP][18] ([Intel XE#3658])
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-lnl-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@linear-64bpp-rotate-0:
- shard-lnl: NOTRUN -> [DMESG-WARN][19] ([Intel XE#1725])
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-lnl-4/igt@kms_big_fb@linear-64bpp-rotate-0.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#2327]) +5 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-bmg-1/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-180:
- shard-bmg: [PASS][21] -> [INCOMPLETE][22] ([Intel XE#3225] / [Intel XE#3468])
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-3/igt@kms_big_fb@x-tiled-64bpp-rotate-180.html
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-bmg-5/igt@kms_big_fb@x-tiled-64bpp-rotate-180.html
* igt@kms_big_fb@y-tiled-32bpp-rotate-0:
- shard-lnl: NOTRUN -> [SKIP][23] ([Intel XE#1124]) +15 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-lnl-7/igt@kms_big_fb@y-tiled-32bpp-rotate-0.html
* igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
- shard-lnl: NOTRUN -> [SKIP][24] ([Intel XE#1477])
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-lnl-3/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
- shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#607])
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-bmg-5/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-0:
- shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#1124]) +17 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-bmg-3/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html
* igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p:
- shard-lnl: NOTRUN -> [SKIP][27] ([Intel XE#2191])
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-lnl-5/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html
* igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p:
- shard-lnl: NOTRUN -> [SKIP][28] ([Intel XE#1512])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-lnl-8/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html
* igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p:
- shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#2314] / [Intel XE#2894])
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-bmg-3/igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p.html
* igt@kms_bw@linear-tiling-3-displays-2160x1440p:
- shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#367]) +2 other tests skip
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-bmg-4/igt@kms_bw@linear-tiling-3-displays-2160x1440p.html
* igt@kms_bw@linear-tiling-3-displays-3840x2160p:
- shard-lnl: NOTRUN -> [SKIP][31] ([Intel XE#367])
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-lnl-5/igt@kms_bw@linear-tiling-3-displays-3840x2160p.html
* igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs:
- shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#2887]) +17 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-bmg-1/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc:
- shard-lnl: NOTRUN -> [SKIP][33] ([Intel XE#2887]) +20 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-lnl-8/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs@pipe-c-edp-1:
- shard-lnl: NOTRUN -> [SKIP][34] ([Intel XE#2669]) +7 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-lnl-8/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs@pipe-c-edp-1.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-b-hdmi-a-3:
- shard-bmg: NOTRUN -> [INCOMPLETE][35] ([Intel XE#1727] / [Intel XE#3468])
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-bmg-5/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-b-hdmi-a-3.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs:
- shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#3432]) +1 other test skip
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-bmg-4/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs:
- shard-lnl: NOTRUN -> [SKIP][37] ([Intel XE#3432]) +1 other test skip
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-lnl-7/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-2:
- shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#2652] / [Intel XE#787]) +3 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-bmg-3/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-2.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-lnl: NOTRUN -> [SKIP][39] ([Intel XE#314])
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-lnl-4/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_chamelium_color@ctm-0-25:
- shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#2325]) +4 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-bmg-7/igt@kms_chamelium_color@ctm-0-25.html
- shard-lnl: NOTRUN -> [SKIP][41] ([Intel XE#306]) +1 other test skip
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-lnl-8/igt@kms_chamelium_color@ctm-0-25.html
* igt@kms_chamelium_hpd@common-hpd-after-suspend:
- shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#2252]) +8 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-bmg-3/igt@kms_chamelium_hpd@common-hpd-after-suspend.html
* igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode:
- shard-lnl: NOTRUN -> [SKIP][43] ([Intel XE#373]) +10 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-lnl-3/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#2390])
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-bmg-8/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@legacy:
- shard-bmg: NOTRUN -> [FAIL][45] ([Intel XE#1178]) +3 other tests fail
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-bmg-4/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@type1:
- shard-lnl: NOTRUN -> [SKIP][46] ([Intel XE#3278])
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-lnl-7/igt@kms_content_protection@type1.html
- shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#2341])
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-bmg-1/igt@kms_content_protection@type1.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#2321])
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-bmg-5/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-onscreen-max-size:
- shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#2320]) +4 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-bmg-3/igt@kms_cursor_crc@cursor-onscreen-max-size.html
* igt@kms_cursor_crc@cursor-rapid-movement-128x42:
- shard-lnl: NOTRUN -> [SKIP][50] ([Intel XE#1424]) +5 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-lnl-5/igt@kms_cursor_crc@cursor-rapid-movement-128x42.html
* igt@kms_cursor_crc@cursor-sliding-512x170:
- shard-lnl: NOTRUN -> [SKIP][51] ([Intel XE#2321]) +1 other test skip
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-lnl-3/igt@kms_cursor_crc@cursor-sliding-512x170.html
* igt@kms_cursor_edge_walk@256x256-top-bottom@pipe-d-dp-2:
- shard-bmg: [PASS][52] -> [DMESG-WARN][53] ([Intel XE#3468]) +72 other tests dmesg-warn
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-3/igt@kms_cursor_edge_walk@256x256-top-bottom@pipe-d-dp-2.html
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-bmg-8/igt@kms_cursor_edge_walk@256x256-top-bottom@pipe-d-dp-2.html
* igt@kms_cursor_edge_walk@64x64-top-edge@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [DMESG-FAIL][54] ([Intel XE#3468]) +16 other tests dmesg-fail
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-bmg-7/igt@kms_cursor_edge_walk@64x64-top-edge@pipe-a-dp-2.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic:
- shard-lnl: NOTRUN -> [SKIP][55] ([Intel XE#309]) +5 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-lnl-4/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
* igt@kms_cursor_legacy@cursora-vs-flipb-atomic:
- shard-bmg: [PASS][56] -> [SKIP][57] ([Intel XE#2291]) +2 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-8/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-bmg-5/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-toggle:
- shard-bmg: [PASS][58] -> [DMESG-WARN][59] ([Intel XE#877])
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-3/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-bmg-1/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-bmg: NOTRUN -> [SKIP][60] ([Intel XE#2286])
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-bmg-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3:
- shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#1340])
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-bmg-3/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3.html
* igt@kms_draw_crc@draw-method-blt@rgb565-xtiled:
- shard-bmg: [PASS][62] -> [DMESG-FAIL][63] ([Intel XE#3468]) +14 other tests dmesg-fail
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-1/igt@kms_draw_crc@draw-method-blt@rgb565-xtiled.html
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-bmg-4/igt@kms_draw_crc@draw-method-blt@rgb565-xtiled.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-bmg: NOTRUN -> [SKIP][64] ([Intel XE#2244])
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-bmg-7/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_dsc@dsc-with-formats:
- shard-lnl: NOTRUN -> [SKIP][65] ([Intel XE#2244])
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-lnl-5/igt@kms_dsc@dsc-with-formats.html
* igt@kms_flip@2x-absolute-wf_vblank-interruptible:
- shard-lnl: NOTRUN -> [SKIP][66] ([Intel XE#1421]) +5 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-lnl-4/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html
* igt@kms_flip@2x-blocking-wf_vblank:
- shard-bmg: NOTRUN -> [SKIP][67] ([Intel XE#2316]) +2 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-bmg-5/igt@kms_flip@2x-blocking-wf_vblank.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-dp2-hdmi-a3:
- shard-bmg: NOTRUN -> [FAIL][68] ([Intel XE#2882])
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-bmg-7/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-dp2-hdmi-a3.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3:
- shard-bmg: NOTRUN -> [FAIL][69] ([Intel XE#3321]) +2 other tests fail
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-bmg-7/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3.html
* igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:
- shard-bmg: [PASS][70] -> [SKIP][71] ([Intel XE#2316]) +3 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-1/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-bmg-4/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
* igt@kms_flip@absolute-wf_vblank-interruptible@b-dp2:
- shard-bmg: [PASS][72] -> [DMESG-WARN][73] ([Intel XE#2705] / [Intel XE#3468])
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-1/igt@kms_flip@absolute-wf_vblank-interruptible@b-dp2.html
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-bmg-8/igt@kms_flip@absolute-wf_vblank-interruptible@b-dp2.html
* igt@kms_flip@flip-vs-expired-vblank:
- shard-bmg: [PASS][74] -> [FAIL][75] ([Intel XE#2882]) +2 other tests fail
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-1/igt@kms_flip@flip-vs-expired-vblank.html
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-bmg-5/igt@kms_flip@flip-vs-expired-vblank.html
* igt@kms_flip@flip-vs-expired-vblank@a-edp1:
- shard-lnl: [PASS][76] -> [FAIL][77] ([Intel XE#886]) +1 other test fail
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-lnl-8/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html
* igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a3:
- shard-bmg: [PASS][78] -> [FAIL][79] ([Intel XE#3321])
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-1/igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a3.html
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-bmg-5/igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a3.html
* igt@kms_flip@plain-flip-ts-check-interruptible@d-hdmi-a3:
- shard-bmg: NOTRUN -> [DMESG-WARN][80] ([Intel XE#3468]) +54 other tests dmesg-warn
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-bmg-8/igt@kms_flip@plain-flip-ts-check-interruptible@d-hdmi-a3.html
* igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-upscaling@pipe-a-valid-mode:
- shard-bmg: [PASS][81] -> [INCOMPLETE][82] ([Intel XE#1727] / [Intel XE#3468]) +2 other tests incomplete
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-3/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-upscaling@pipe-a-valid-mode.html
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-bmg-7/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling:
- shard-bmg: NOTRUN -> [SKIP][83] ([Intel XE#2293] / [Intel XE#2380]) +6 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-bmg-4/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][84] ([Intel XE#1401]) +3 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-lnl-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling:
- shard-lnl: NOTRUN -> [SKIP][85] ([Intel XE#1397] / [Intel XE#1745]) +1 other test skip
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-lnl-5/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][86] ([Intel XE#1397]) +1 other test skip
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-lnl-5/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling:
- shard-lnl: NOTRUN -> [SKIP][87] ([Intel XE#1401] / [Intel XE#1745]) +3 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-lnl-4/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode:
- shard-bmg: NOTRUN -> [SKIP][88] ([Intel XE#2293]) +6 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-bmg-1/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][89] ([Intel XE#2311]) +29 other tests skip
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-render:
- shard-lnl: NOTRUN -> [SKIP][90] ([Intel XE#656]) +47 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-lnl-8/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@drrs-modesetfrombusy:
- shard-lnl: NOTRUN -> [SKIP][91] ([Intel XE#651]) +17 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-lnl-3/igt@kms_frontbuffer_tracking@drrs-modesetfrombusy.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render:
- shard-bmg: NOTRUN -> [FAIL][92] ([Intel XE#2333]) +16 other tests fail
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-onoff:
- shard-bmg: NOTRUN -> [SKIP][93] ([Intel XE#2312]) +14 other tests skip
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y:
- shard-lnl: NOTRUN -> [SKIP][94] ([Intel XE#1469]) +1 other test skip
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-lnl-5/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
- shard-bmg: NOTRUN -> [SKIP][95] ([Intel XE#2352])
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render:
- shard-bmg: NOTRUN -> [SKIP][96] ([Intel XE#2313]) +40 other tests skip
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-bmg-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-render.html
* igt@kms_hdr@static-swap:
- shard-lnl: NOTRUN -> [SKIP][97] ([Intel XE#1503])
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-lnl-5/igt@kms_hdr@static-swap.html
* igt@kms_joiner@basic-force-big-joiner:
- shard-bmg: [PASS][98] -> [SKIP][99] ([Intel XE#3012])
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-3/igt@kms_joiner@basic-force-big-joiner.html
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-bmg-5/igt@kms_joiner@basic-force-big-joiner.html
* igt@kms_joiner@basic-force-ultra-joiner:
- shard-bmg: NOTRUN -> [SKIP][100] ([Intel XE#2934])
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-bmg-3/igt@kms_joiner@basic-force-ultra-joiner.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-lnl: NOTRUN -> [SKIP][101] ([Intel XE#2927]) +1 other test skip
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-lnl-4/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-force-ultra-joiner:
- shard-lnl: NOTRUN -> [SKIP][102] ([Intel XE#2934])
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-lnl-3/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [ABORT][103] ([Intel XE#3673]) +6 other tests abort
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-lnl-8/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-edp-1.html
* igt@kms_plane_cursor@viewport@pipe-a-dp-2-size-128:
- shard-bmg: NOTRUN -> [DMESG-FAIL][104] ([Intel XE#2705] / [Intel XE#3468])
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-bmg-1/igt@kms_plane_cursor@viewport@pipe-a-dp-2-size-128.html
* igt@kms_plane_lowres@tiling-4@pipe-b-edp-1:
- shard-lnl: NOTRUN -> [SKIP][105] ([Intel XE#599]) +8 other tests skip
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-lnl-7/igt@kms_plane_lowres@tiling-4@pipe-b-edp-1.html
* igt@kms_plane_lowres@tiling-y:
- shard-bmg: NOTRUN -> [SKIP][106] ([Intel XE#2393])
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-bmg-1/igt@kms_plane_lowres@tiling-y.html
* igt@kms_plane_multiple@tiling-yf:
- shard-lnl: NOTRUN -> [SKIP][107] ([Intel XE#2493])
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-lnl-8/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling:
- shard-bmg: [PASS][108] -> [DMESG-WARN][109] ([Intel XE#2566])
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-3/igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling.html
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-bmg-3/igt@kms_plane_scaling@planes-downscale-factor-0-75-unity-scaling.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-b:
- shard-lnl: NOTRUN -> [SKIP][110] ([Intel XE#2763]) +7 other tests skip
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-lnl-4/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-b.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-b:
- shard-bmg: NOTRUN -> [SKIP][111] ([Intel XE#2763]) +9 other tests skip
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-bmg-8/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-b.html
* igt@kms_pm_dc@dc5-psr:
- shard-lnl: NOTRUN -> [FAIL][112] ([Intel XE#718])
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-lnl-7/igt@kms_pm_dc@dc5-psr.html
* igt@kms_pm_dc@dc6-dpms:
- shard-lnl: NOTRUN -> [FAIL][113] ([Intel XE#1430])
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-lnl-5/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_rpm@dpms-mode-unset-lpsp:
- shard-bmg: NOTRUN -> [SKIP][114] ([Intel XE#1439] / [Intel XE#836])
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-bmg-5/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
* igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-lnl: NOTRUN -> [SKIP][115] ([Intel XE#1439] / [Intel XE#836])
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-lnl-3/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@kms_pm_rpm@legacy-planes@plane-50:
- shard-bmg: [PASS][116] -> [DMESG-WARN][117] ([Intel XE#1727] / [Intel XE#3468]) +11 other tests dmesg-warn
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-8/igt@kms_pm_rpm@legacy-planes@plane-50.html
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-bmg-7/igt@kms_pm_rpm@legacy-planes@plane-50.html
* igt@kms_pm_rpm@universal-planes-dpms:
- shard-lnl: NOTRUN -> [DMESG-WARN][118] ([Intel XE#2042])
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-lnl-3/igt@kms_pm_rpm@universal-planes-dpms.html
* igt@kms_pm_rpm@universal-planes-dpms@plane-41:
- shard-lnl: NOTRUN -> [DMESG-WARN][119] ([Intel XE#2932])
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-lnl-3/igt@kms_pm_rpm@universal-planes-dpms@plane-41.html
* igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area:
- shard-lnl: NOTRUN -> [SKIP][120] ([Intel XE#2893]) +3 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-lnl-4/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf:
- shard-bmg: NOTRUN -> [SKIP][121] ([Intel XE#1489]) +7 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-bmg-7/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html
* igt@kms_psr@fbc-pr-cursor-blt:
- shard-bmg: NOTRUN -> [SKIP][122] ([Intel XE#2234] / [Intel XE#2850]) +23 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-bmg-4/igt@kms_psr@fbc-pr-cursor-blt.html
* igt@kms_psr@pr-no-drrs:
- shard-lnl: NOTRUN -> [SKIP][123] ([Intel XE#1406]) +7 other tests skip
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-lnl-8/igt@kms_psr@pr-no-drrs.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
- shard-lnl: NOTRUN -> [SKIP][124] ([Intel XE#3414]) +3 other tests skip
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-lnl-5/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
- shard-bmg: NOTRUN -> [SKIP][125] ([Intel XE#3414]) +1 other test skip
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-bmg-3/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
* igt@kms_scaling_modes@scaling-mode-none:
- shard-lnl: NOTRUN -> [SKIP][126] ([Intel XE#2413] / [Intel XE#374])
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-lnl-8/igt@kms_scaling_modes@scaling-mode-none.html
* igt@kms_scaling_modes@scaling-mode-none@pipe-a-edp-1:
- shard-lnl: NOTRUN -> [SKIP][127] ([Intel XE#374]) +2 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-lnl-8/igt@kms_scaling_modes@scaling-mode-none@pipe-a-edp-1.html
* igt@kms_setmode@invalid-clone-single-crtc-stealing:
- shard-bmg: NOTRUN -> [SKIP][128] ([Intel XE#1435])
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-bmg-4/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1:
- shard-lnl: NOTRUN -> [FAIL][129] ([Intel XE#899]) +3 other tests fail
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-lnl-5/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html
* igt@kms_vblank@ts-continuation-dpms-rpm@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [DMESG-WARN][130] ([Intel XE#1727] / [Intel XE#3468]) +1 other test dmesg-warn
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-bmg-7/igt@kms_vblank@ts-continuation-dpms-rpm@pipe-a-dp-2.html
* igt@kms_vrr@flip-suspend:
- shard-bmg: NOTRUN -> [SKIP][131] ([Intel XE#1499]) +1 other test skip
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-bmg-8/igt@kms_vrr@flip-suspend.html
* igt@kms_vrr@lobf:
- shard-lnl: NOTRUN -> [SKIP][132] ([Intel XE#1499])
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-lnl-7/igt@kms_vrr@lobf.html
* igt@kms_writeback@writeback-fb-id-xrgb2101010:
- shard-lnl: NOTRUN -> [SKIP][133] ([Intel XE#756])
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-lnl-4/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- shard-lnl: NOTRUN -> [SKIP][134] ([Intel XE#1091] / [Intel XE#2849])
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-lnl-8/igt@sriov_basic@enable-vfs-autoprobe-off.html
* igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
- shard-bmg: NOTRUN -> [SKIP][135] ([Intel XE#1091] / [Intel XE#2849]) +1 other test skip
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-bmg-5/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
* igt@xe_compute@ccs-mode-compute-kernel:
- shard-lnl: NOTRUN -> [SKIP][136] ([Intel XE#1447]) +1 other test skip
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-lnl-7/igt@xe_compute@ccs-mode-compute-kernel.html
* igt@xe_eudebug@basic-vm-bind-metadata-discovery:
- shard-bmg: NOTRUN -> [SKIP][137] ([Intel XE#2905]) +15 other tests skip
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-bmg-7/igt@xe_eudebug@basic-vm-bind-metadata-discovery.html
* igt@xe_eudebug_online@resume-one:
- shard-lnl: NOTRUN -> [SKIP][138] ([Intel XE#2905]) +12 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-lnl-7/igt@xe_eudebug_online@resume-one.html
* igt@xe_evict@evict-beng-mixed-threads-large:
- shard-bmg: NOTRUN -> [INCOMPLETE][139] ([Intel XE#1473] / [Intel XE#3468])
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-bmg-5/igt@xe_evict@evict-beng-mixed-threads-large.html
* igt@xe_evict@evict-large-multi-vm:
- shard-lnl: NOTRUN -> [SKIP][140] ([Intel XE#688]) +10 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-lnl-3/igt@xe_evict@evict-large-multi-vm.html
* igt@xe_evict@evict-mixed-many-threads-small:
- shard-bmg: NOTRUN -> [TIMEOUT][141] ([Intel XE#1473] / [Intel XE#2472])
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-bmg-1/igt@xe_evict@evict-mixed-many-threads-small.html
* igt@xe_exec_basic@many-execqueues-bindexecqueue-userptr-rebind:
- shard-bmg: [PASS][142] -> [DMESG-WARN][143] ([Intel XE#1727] / [Intel XE#2705] / [Intel XE#3468])
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-3/igt@xe_exec_basic@many-execqueues-bindexecqueue-userptr-rebind.html
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-bmg-4/igt@xe_exec_basic@many-execqueues-bindexecqueue-userptr-rebind.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate-race:
- shard-lnl: NOTRUN -> [SKIP][144] ([Intel XE#1392]) +11 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-lnl-7/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate-race.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-bind:
- shard-bmg: NOTRUN -> [SKIP][145] ([Intel XE#2322]) +11 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-bmg-8/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-bind.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init:
- shard-bmg: [PASS][146] -> [DMESG-WARN][147] ([Intel XE#3343] / [Intel XE#3468])
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-3/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init.html
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_relay_init.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_sriov_init:
- shard-bmg: NOTRUN -> [DMESG-WARN][148] ([Intel XE#3467] / [Intel XE#3468]) +1 other test dmesg-warn
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-bmg-7/igt@xe_fault_injection@inject-fault-probe-function-xe_sriov_init.html
* igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_run:
- shard-bmg: [PASS][149] -> [DMESG-WARN][150] ([Intel XE#3467] / [Intel XE#3468]) +1 other test dmesg-warn
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-4/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_run.html
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-bmg-1/igt@xe_fault_injection@vm-bind-fail-xe_pt_update_ops_run.html
* igt@xe_fault_injection@vm-create-fail-xe_pt_create:
- shard-bmg: [PASS][151] -> [DMESG-WARN][152] ([Intel XE#1727] / [Intel XE#3467])
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-5/igt@xe_fault_injection@vm-create-fail-xe_pt_create.html
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-bmg-3/igt@xe_fault_injection@vm-create-fail-xe_pt_create.html
* igt@xe_gt_freq@freq_suspend:
- shard-lnl: NOTRUN -> [SKIP][153] ([Intel XE#584]) +1 other test skip
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-lnl-4/igt@xe_gt_freq@freq_suspend.html
* igt@xe_gt_freq@throttle_basic_api:
- shard-bmg: [PASS][154] -> [DMESG-WARN][155] ([Intel XE#1727])
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-4/igt@xe_gt_freq@throttle_basic_api.html
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-bmg-8/igt@xe_gt_freq@throttle_basic_api.html
* igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit:
- shard-bmg: NOTRUN -> [SKIP][156] ([Intel XE#2229])
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-bmg-1/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html
* igt@xe_live_ktest@xe_migrate:
- shard-lnl: [PASS][157] -> [SKIP][158] ([Intel XE#1192])
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-lnl-8/igt@xe_live_ktest@xe_migrate.html
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-lnl-5/igt@xe_live_ktest@xe_migrate.html
* igt@xe_oa@oa-tlb-invalidate:
- shard-lnl: NOTRUN -> [SKIP][159] ([Intel XE#2248])
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-lnl-4/igt@xe_oa@oa-tlb-invalidate.html
- shard-bmg: NOTRUN -> [SKIP][160] ([Intel XE#2248])
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-bmg-8/igt@xe_oa@oa-tlb-invalidate.html
* igt@xe_pat@pat-index-xelp:
- shard-bmg: NOTRUN -> [SKIP][161] ([Intel XE#2245])
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-bmg-3/igt@xe_pat@pat-index-xelp.html
* igt@xe_peer2peer@read:
- shard-lnl: NOTRUN -> [SKIP][162] ([Intel XE#1061])
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-lnl-8/igt@xe_peer2peer@read.html
- shard-bmg: NOTRUN -> [SKIP][163] ([Intel XE#2427])
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-bmg-1/igt@xe_peer2peer@read.html
* igt@xe_pm@d3cold-mocs:
- shard-bmg: NOTRUN -> [SKIP][164] ([Intel XE#2284]) +1 other test skip
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-bmg-4/igt@xe_pm@d3cold-mocs.html
* igt@xe_pm@s2idle-basic:
- shard-lnl: NOTRUN -> [ABORT][165] ([Intel XE#1358] / [Intel XE#3673])
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-lnl-8/igt@xe_pm@s2idle-basic.html
* igt@xe_pm@s2idle-multiple-execs:
- shard-bmg: NOTRUN -> [ABORT][166] ([Intel XE#1616])
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-bmg-5/igt@xe_pm@s2idle-multiple-execs.html
- shard-lnl: NOTRUN -> [ABORT][167] ([Intel XE#1358] / [Intel XE#1616])
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-lnl-3/igt@xe_pm@s2idle-multiple-execs.html
* igt@xe_pm@s2idle-vm-bind-prefetch:
- shard-bmg: NOTRUN -> [ABORT][168] ([Intel XE#1616] / [Intel XE#3468])
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-bmg-1/igt@xe_pm@s2idle-vm-bind-prefetch.html
* igt@xe_pm@s3-vm-bind-unbind-all:
- shard-bmg: [PASS][169] -> [DMESG-WARN][170] ([Intel XE#1727] / [Intel XE#3468] / [Intel XE#569])
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-7/igt@xe_pm@s3-vm-bind-unbind-all.html
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-bmg-3/igt@xe_pm@s3-vm-bind-unbind-all.html
* igt@xe_pm@s4-d3cold-basic-exec:
- shard-lnl: NOTRUN -> [SKIP][171] ([Intel XE#2284] / [Intel XE#366]) +2 other tests skip
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-lnl-8/igt@xe_pm@s4-d3cold-basic-exec.html
* igt@xe_pm_residency@gt-c6-freeze@gt1:
- shard-bmg: [PASS][172] -> [DMESG-FAIL][173] ([Intel XE#1727] / [Intel XE#3468])
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-3/igt@xe_pm_residency@gt-c6-freeze@gt1.html
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-bmg-1/igt@xe_pm_residency@gt-c6-freeze@gt1.html
* igt@xe_query@multigpu-query-invalid-size:
- shard-bmg: NOTRUN -> [SKIP][174] ([Intel XE#944]) +1 other test skip
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-bmg-3/igt@xe_query@multigpu-query-invalid-size.html
* igt@xe_query@multigpu-query-uc-fw-version-huc:
- shard-lnl: NOTRUN -> [SKIP][175] ([Intel XE#944]) +3 other tests skip
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-lnl-4/igt@xe_query@multigpu-query-uc-fw-version-huc.html
* igt@xe_sriov_flr@flr-vf1-clear:
- shard-lnl: NOTRUN -> [SKIP][176] ([Intel XE#3342]) +1 other test skip
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-lnl-8/igt@xe_sriov_flr@flr-vf1-clear.html
- shard-bmg: NOTRUN -> [SKIP][177] ([Intel XE#3342]) +1 other test skip
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-bmg-7/igt@xe_sriov_flr@flr-vf1-clear.html
* igt@xe_wedged@basic-wedged:
- shard-bmg: [PASS][178] -> [DMESG-WARN][179] ([Intel XE#2919])
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-4/igt@xe_wedged@basic-wedged.html
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-bmg-5/igt@xe_wedged@basic-wedged.html
#### Possible fixes ####
* igt@kms_async_flips@alternate-sync-async-flip-atomic:
- shard-bmg: [FAIL][180] ([Intel XE#3701] / [Intel XE#3718]) -> [PASS][181]
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-4/igt@kms_async_flips@alternate-sync-async-flip-atomic.html
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-bmg-3/igt@kms_async_flips@alternate-sync-async-flip-atomic.html
* igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-d-dp-2:
- shard-bmg: [FAIL][182] -> [PASS][183]
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-4/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-d-dp-2.html
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-bmg-3/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-d-dp-2.html
* igt@kms_atomic@plane-invalid-params:
- shard-bmg: [DMESG-WARN][184] ([Intel XE#3468]) -> [PASS][185] +14 other tests pass
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-5/igt@kms_atomic@plane-invalid-params.html
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-bmg-4/igt@kms_atomic@plane-invalid-params.html
* igt@kms_cursor_crc@cursor-suspend:
- shard-bmg: [INCOMPLETE][186] ([Intel XE#3468]) -> [PASS][187] +1 other test pass
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-1/igt@kms_cursor_crc@cursor-suspend.html
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-bmg-3/igt@kms_cursor_crc@cursor-suspend.html
* igt@kms_cursor_crc@cursor-suspend@pipe-a-dp-2:
- shard-bmg: [DMESG-FAIL][188] ([Intel XE#3468]) -> [PASS][189]
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-1/igt@kms_cursor_crc@cursor-suspend@pipe-a-dp-2.html
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-bmg-3/igt@kms_cursor_crc@cursor-suspend@pipe-a-dp-2.html
* igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic:
- shard-bmg: [SKIP][190] ([Intel XE#2291]) -> [PASS][191] +5 other tests pass
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-4/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-bmg-3/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html
* igt@kms_flip@2x-flip-vs-dpms:
- shard-bmg: [SKIP][192] ([Intel XE#2316]) -> [PASS][193] +1 other test pass
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-4/igt@kms_flip@2x-flip-vs-dpms.html
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-bmg-8/igt@kms_flip@2x-flip-vs-dpms.html
* igt@kms_flip@flip-vs-blocking-wf-vblank:
- shard-lnl: [FAIL][194] ([Intel XE#886]) -> [PASS][195] +1 other test pass
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-lnl-5/igt@kms_flip@flip-vs-blocking-wf-vblank.html
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-lnl-7/igt@kms_flip@flip-vs-blocking-wf-vblank.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling:
- shard-bmg: [INCOMPLETE][196] ([Intel XE#1727] / [Intel XE#3468]) -> [PASS][197] +2 other tests pass
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-8/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling.html
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-bmg-8/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling.html
* igt@kms_pipe_crc_basic@suspend-read-crc:
- shard-bmg: [INCOMPLETE][198] ([Intel XE#1727] / [Intel XE#3468] / [Intel XE#3663]) -> [PASS][199]
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-5/igt@kms_pipe_crc_basic@suspend-read-crc.html
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-bmg-4/igt@kms_pipe_crc_basic@suspend-read-crc.html
* igt@kms_plane_scaling@2x-scaler-multi-pipe:
- shard-bmg: [SKIP][200] ([Intel XE#2571]) -> [PASS][201]
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-4/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-bmg-3/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format@pipe-a:
- shard-bmg: [DMESG-WARN][202] ([Intel XE#2705] / [Intel XE#3468]) -> [PASS][203]
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-8/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format@pipe-a.html
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-bmg-1/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format@pipe-a.html
* igt@xe_ccs@suspend-resume@tile4-compressed-compfmt0-vram01-vram01:
- shard-bmg: [DMESG-FAIL][204] ([Intel XE#1727] / [Intel XE#3468]) -> [PASS][205] +4 other tests pass
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-1/igt@xe_ccs@suspend-resume@tile4-compressed-compfmt0-vram01-vram01.html
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-bmg-8/igt@xe_ccs@suspend-resume@tile4-compressed-compfmt0-vram01-vram01.html
* igt@xe_ccs@suspend-resume@tile64-compressed-compfmt0-system-vram01:
- shard-bmg: [INCOMPLETE][206] -> [PASS][207]
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-1/igt@xe_ccs@suspend-resume@tile64-compressed-compfmt0-system-vram01.html
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-bmg-8/igt@xe_ccs@suspend-resume@tile64-compressed-compfmt0-system-vram01.html
* igt@xe_exec_balancer@no-exec-parallel-userptr:
- shard-bmg: [DMESG-WARN][208] ([Intel XE#1727]) -> [PASS][209] +1 other test pass
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-7/igt@xe_exec_balancer@no-exec-parallel-userptr.html
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-bmg-1/igt@xe_exec_balancer@no-exec-parallel-userptr.html
* igt@xe_exec_compute_mode@many-rebind:
- shard-lnl: [FAIL][210] -> [PASS][211]
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-lnl-3/igt@xe_exec_compute_mode@many-rebind.html
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-lnl-4/igt@xe_exec_compute_mode@many-rebind.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_guc_log_init:
- shard-bmg: [DMESG-WARN][212] ([Intel XE#3343] / [Intel XE#3468]) -> [PASS][213]
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-7/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_log_init.html
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-bmg-8/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_log_init.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_uc_fw_init:
- shard-bmg: [DMESG-WARN][214] ([Intel XE#3343]) -> [PASS][215]
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-4/igt@xe_fault_injection@inject-fault-probe-function-xe_uc_fw_init.html
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-bmg-4/igt@xe_fault_injection@inject-fault-probe-function-xe_uc_fw_init.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_wa_init:
- shard-bmg: [DMESG-WARN][216] ([Intel XE#3467] / [Intel XE#3468]) -> [PASS][217]
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-8/igt@xe_fault_injection@inject-fault-probe-function-xe_wa_init.html
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-bmg-8/igt@xe_fault_injection@inject-fault-probe-function-xe_wa_init.html
* igt@xe_live_ktest@xe_migrate:
- shard-bmg: [SKIP][218] ([Intel XE#1192]) -> [PASS][219] +1 other test pass
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-1/igt@xe_live_ktest@xe_migrate.html
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-bmg-7/igt@xe_live_ktest@xe_migrate.html
* igt@xe_module_load@unload:
- shard-bmg: [DMESG-WARN][220] ([Intel XE#3467]) -> [PASS][221] +1 other test pass
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-3/igt@xe_module_load@unload.html
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-bmg-4/igt@xe_module_load@unload.html
* igt@xe_sysfs_scheduler@job_timeout_ms-invalid@vecs:
- shard-bmg: [DMESG-WARN][222] -> [PASS][223]
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-4/igt@xe_sysfs_scheduler@job_timeout_ms-invalid@vecs.html
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-bmg-5/igt@xe_sysfs_scheduler@job_timeout_ms-invalid@vecs.html
#### Warnings ####
* igt@kms_content_protection@uevent:
- shard-bmg: [FAIL][224] ([Intel XE#1188]) -> [SKIP][225] ([Intel XE#2341])
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-7/igt@kms_content_protection@uevent.html
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-bmg-5/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-sliding-128x128:
- shard-bmg: [DMESG-FAIL][226] ([Intel XE#3468]) -> [DMESG-WARN][227] ([Intel XE#3468])
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-1/igt@kms_cursor_crc@cursor-sliding-128x128.html
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-bmg-5/igt@kms_cursor_crc@cursor-sliding-128x128.html
* igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy:
- shard-bmg: [SKIP][228] ([Intel XE#2291]) -> [DMESG-WARN][229] ([Intel XE#3468]) +1 other test dmesg-warn
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-5/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-bmg-7/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size:
- shard-bmg: [SKIP][230] ([Intel XE#2291]) -> [DMESG-WARN][231] ([Intel XE#877])
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-bmg-1/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-legacy:
- shard-bmg: [DMESG-WARN][232] ([Intel XE#3468]) -> [SKIP][233] ([Intel XE#2291])
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-1/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html
* igt@kms_draw_crc@draw-method-blt:
- shard-bmg: [DMESG-FAIL][234] ([Intel XE#3468]) -> [INCOMPLETE][235] ([Intel XE#1727] / [Intel XE#3468])
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-1/igt@kms_draw_crc@draw-method-blt.html
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-bmg-4/igt@kms_draw_crc@draw-method-blt.html
* igt@kms_draw_crc@draw-method-blt@rgb565-4tiled:
- shard-bmg: [DMESG-WARN][236] -> [DMESG-FAIL][237] ([Intel XE#3468])
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-1/igt@kms_draw_crc@draw-method-blt@rgb565-4tiled.html
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-bmg-4/igt@kms_draw_crc@draw-method-blt@rgb565-4tiled.html
* igt@kms_draw_crc@draw-method-blt@xrgb2101010-xtiled:
- shard-bmg: [DMESG-WARN][238] ([Intel XE#3468]) -> [DMESG-FAIL][239] ([Intel XE#2705])
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-1/igt@kms_draw_crc@draw-method-blt@xrgb2101010-xtiled.html
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-bmg-4/igt@kms_draw_crc@draw-method-blt@xrgb2101010-xtiled.html
* igt@kms_flip@2x-flip-vs-expired-vblank:
- shard-bmg: [FAIL][240] ([Intel XE#2882]) -> [SKIP][241] ([Intel XE#2316])
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-8/igt@kms_flip@2x-flip-vs-expired-vblank.html
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-bmg-4/igt@kms_flip@2x-flip-vs-expired-vblank.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible:
- shard-bmg: [SKIP][242] ([Intel XE#2316]) -> [FAIL][243] ([Intel XE#2882])
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-4/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-bmg-7/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt:
- shard-bmg: [SKIP][244] ([Intel XE#2311]) -> [SKIP][245] ([Intel XE#2312]) +13 other tests skip
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt:
- shard-bmg: [FAIL][246] ([Intel XE#2333]) -> [DMESG-FAIL][247] ([Intel XE#3468]) +4 other tests dmesg-fail
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt.html
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-1p-rte:
- shard-bmg: [FAIL][248] ([Intel XE#2333]) -> [INCOMPLETE][249] ([Intel XE#3468])
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-1p-rte.html
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-1p-rte.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt:
- shard-bmg: [FAIL][250] ([Intel XE#2333]) -> [SKIP][251] ([Intel XE#2312]) +2 other tests skip
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt.html
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt:
- shard-bmg: [SKIP][252] ([Intel XE#2312]) -> [FAIL][253] ([Intel XE#2333]) +2 other tests fail
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-blt:
- shard-bmg: [DMESG-FAIL][254] ([Intel XE#3468]) -> [SKIP][255] ([Intel XE#2312])
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-blt.html
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary:
- shard-bmg: [DMESG-FAIL][256] ([Intel XE#3468]) -> [FAIL][257] ([Intel XE#2333]) +2 other tests fail
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary.html
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-indfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render:
- shard-bmg: [SKIP][258] ([Intel XE#2312]) -> [SKIP][259] ([Intel XE#2311]) +15 other tests skip
[258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render.html
[259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt:
- shard-bmg: [SKIP][260] ([Intel XE#2313]) -> [SKIP][261] ([Intel XE#2312]) +14 other tests skip
[260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html
[261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen:
- shard-bmg: [SKIP][262] ([Intel XE#2312]) -> [SKIP][263] ([Intel XE#2313]) +16 other tests skip
[262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html
[263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-bmg-7/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-fullscreen.html
* igt@kms_pm_dc@dc6-dpms:
- shard-bmg: [DMESG-FAIL][264] ([Intel XE#1727] / [Intel XE#3468]) -> [FAIL][265] ([Intel XE#1430])
[264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-5/igt@kms_pm_dc@dc6-dpms.html
[265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-bmg-7/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_vblank@ts-continuation-dpms-rpm@pipe-a-hdmi-a-3:
- shard-bmg: [DMESG-WARN][266] ([Intel XE#1727] / [Intel XE#3468]) -> [DMESG-WARN][267] ([Intel XE#3468])
[266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-5/igt@kms_vblank@ts-continuation-dpms-rpm@pipe-a-hdmi-a-3.html
[267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-bmg-7/igt@kms_vblank@ts-continuation-dpms-rpm@pipe-a-hdmi-a-3.html
* igt@xe_ccs@suspend-resume@linear-compressed-compfmt0-system-vram01:
- shard-bmg: [ABORT][268] ([Intel XE#3468] / [Intel XE#3673]) -> [ABORT][269] ([Intel XE#3673]) +1 other test abort
[268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-1/igt@xe_ccs@suspend-resume@linear-compressed-compfmt0-system-vram01.html
[269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-bmg-8/igt@xe_ccs@suspend-resume@linear-compressed-compfmt0-system-vram01.html
* igt@xe_evict@evict-beng-threads-large:
- shard-bmg: [TIMEOUT][270] ([Intel XE#1473]) -> [INCOMPLETE][271] ([Intel XE#1473])
[270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-4/igt@xe_evict@evict-beng-threads-large.html
[271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-bmg-7/igt@xe_evict@evict-beng-threads-large.html
* igt@xe_evict@evict-large-multi-vm-cm:
- shard-bmg: [DMESG-FAIL][272] ([Intel XE#3468]) -> [FAIL][273] ([Intel XE#2364])
[272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-3/igt@xe_evict@evict-large-multi-vm-cm.html
[273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-bmg-7/igt@xe_evict@evict-large-multi-vm-cm.html
* igt@xe_evict@evict-mixed-threads-large:
- shard-bmg: [TIMEOUT][274] ([Intel XE#1473] / [Intel XE#2472]) -> [INCOMPLETE][275] ([Intel XE#1473])
[274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-1/igt@xe_evict@evict-mixed-threads-large.html
[275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-bmg-3/igt@xe_evict@evict-mixed-threads-large.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ads_init:
- shard-bmg: [DMESG-WARN][276] ([Intel XE#3467] / [Intel XE#3468]) -> [DMESG-WARN][277] ([Intel XE#3467])
[276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-8/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ads_init.html
[277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-bmg-5/igt@xe_fault_injection@inject-fault-probe-function-xe_guc_ads_init.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_tile_init_early:
- shard-bmg: [DMESG-WARN][278] ([Intel XE#3467]) -> [DMESG-WARN][279] ([Intel XE#3467] / [Intel XE#3468]) +1 other test dmesg-warn
[278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-5/igt@xe_fault_injection@inject-fault-probe-function-xe_tile_init_early.html
[279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-bmg-1/igt@xe_fault_injection@inject-fault-probe-function-xe_tile_init_early.html
* igt@xe_module_load@reload-no-display:
- shard-bmg: [DMESG-WARN][280] ([Intel XE#3468]) -> [DMESG-WARN][281] ([Intel XE#3467])
[280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-5/igt@xe_module_load@reload-no-display.html
[281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-bmg-3/igt@xe_module_load@reload-no-display.html
* igt@xe_pm@s2idle-d3hot-basic-exec:
- shard-bmg: [ABORT][282] ([Intel XE#1616]) -> [ABORT][283] ([Intel XE#1616] / [Intel XE#3468])
[282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-5/igt@xe_pm@s2idle-d3hot-basic-exec.html
[283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-bmg-7/igt@xe_pm@s2idle-d3hot-basic-exec.html
* igt@xe_pm@s2idle-vm-bind-unbind-all:
- shard-bmg: [ABORT][284] ([Intel XE#1616] / [Intel XE#3468]) -> [ABORT][285] ([Intel XE#1616])
[284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-5/igt@xe_pm@s2idle-vm-bind-unbind-all.html
[285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-bmg-8/igt@xe_pm@s2idle-vm-bind-unbind-all.html
* igt@xe_pm_residency@gt-c6-freeze:
- shard-bmg: [ABORT][286] ([Intel XE#3673]) -> [ABORT][287] ([Intel XE#1727] / [Intel XE#3468] / [Intel XE#3673])
[286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-3/igt@xe_pm_residency@gt-c6-freeze.html
[287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-bmg-1/igt@xe_pm_residency@gt-c6-freeze.html
* igt@xe_pm_residency@gt-c6-freeze@gt0:
- shard-bmg: [ABORT][288] ([Intel XE#3673]) -> [ABORT][289] ([Intel XE#3468] / [Intel XE#3673])
[288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8143/shard-bmg-3/igt@xe_pm_residency@gt-c6-freeze@gt0.html
[289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/shard-bmg-1/igt@xe_pm_residency@gt-c6-freeze@gt0.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#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1125]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1125
[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#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340
[Intel XE#1358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397
[Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
[Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
[Intel XE#1430]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1430
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[Intel XE#1447]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1447
[Intel XE#1466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1466
[Intel XE#1469]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1469
[Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473
[Intel XE#1477]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1477
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512
[Intel XE#1616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1616
[Intel XE#1725]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1725
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
[Intel XE#2042]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2042
[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#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#2245]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2245
[Intel XE#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286
[Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291
[Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
[Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333
[Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352
[Intel XE#2364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2364
[Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
[Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
[Intel XE#2393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2393
[Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413
[Intel XE#2427]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2427
[Intel XE#2472]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2472
[Intel XE#2493]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2493
[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#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669
[Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705
[Intel XE#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#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
[Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
[Intel XE#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905
[Intel XE#2919]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2919
[Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927
[Intel XE#2932]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2932
[Intel XE#2934]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2934
[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#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/314
[Intel XE#3225]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3225
[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#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342
[Intel XE#3343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3343
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#3467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3467
[Intel XE#3468]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3468
[Intel XE#3658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3658
[Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
[Intel XE#3663]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3663
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#3673]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3673
[Intel XE#3701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3701
[Intel XE#3718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3718
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/374
[Intel XE#569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/569
[Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584
[Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599
[Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
[Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
[Intel XE#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873
[Intel XE#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877
[Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886
[Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899
[Intel XE#911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/911
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* IGT: IGT_8143 -> IGTPW_12274
* Linux: xe-2335-261a0301bda5af29477bd710465a8886e8609a4d -> xe-2336-21f6d267c4a3e02cd75de5641f8786e427ce8fa8
IGTPW_12274: 12274
IGT_8143: 515351a02a01f459212197f47ff91053551dcfab @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-2335-261a0301bda5af29477bd710465a8886e8609a4d: 261a0301bda5af29477bd710465a8886e8609a4d
xe-2336-21f6d267c4a3e02cd75de5641f8786e427ce8fa8: 21f6d267c4a3e02cd75de5641f8786e427ce8fa8
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12274/index.html
[-- Attachment #2: Type: text/html, Size: 93138 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH v9] tests/intel/xe_exec_capture: Add xe_exec_capture test
2024-12-06 22:59 [PATCH v9] tests/intel/xe_exec_capture: Add xe_exec_capture test Zhanjun Dong
` (3 preceding siblings ...)
2024-12-07 4:42 ` ✗ Xe.CI.Full: " Patchwork
@ 2024-12-11 22:08 ` Teres Alexis, Alan Previn
2024-12-12 19:54 ` Teres Alexis, Alan Previn
2024-12-12 21:41 ` Teres Alexis, Alan Previn
5 siblings, 1 reply; 9+ messages in thread
From: Teres Alexis, Alan Previn @ 2024-12-11 22:08 UTC (permalink / raw)
To: Dong, Zhanjun, igt-dev@lists.freedesktop.org
Cc: kamil.konieczny@linux.intel.com
Just re-RB-ing after the recent addition for the change to set engine execution time manually before running the tests
on each engine in order to limit the execution time of this test:
Reviewed-by: Alan Previn <alan.previn.teres.alexis@intel.com>
On Fri, 2024-12-06 at 14:59 -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: Kamil Konieczny <kamil.konieczny@linux.intel.com>
> ---
> Changes from prior revs:
> v9:- Reduced job timeout to 2 seconds to speedup test
> Add info print to show test is running on single/multiple GPU
> v8:- Move change list below ---
alan: I just reviewed the difference of the last two revs (diff of diff
farther below):
with that change, we hope it will address Kamil's concern by reducing the execution
time dramatically. IIRC Zhanjun couldn't designate any subtest to declare pass
or fail without ensuring multiple engines are executed-on back to back since the
test needs to ensure that XE-KMD is catching the correct guc-error-dump for the
exact batch on the exact engine we expect it to capture amidst multiple back to back
runs of different-batches-same-engine vs different-engines. (the test uses the ring
buffer batch buffer address as a way to differentiate and determine precisely).
28a29
> +#include "igt_sysfs.h"
37a39,40
> +#define CAPTURE_JOB_TIMEOUT 2000
> +#define JOB_TIMOUT_ENTRY "job_timeout_ms"
83a87,109
> +static u64
> +xe_sysfs_get_job_timeout_ms(int fd, struct drm_xe_engine_class_instance *eci)
> +{
> + int engine_fd = -1;
> + u64 ret;
> +
> + engine_fd = xe_sysfs_engine_open(fd, eci->gt_id, eci->engine_class);
> + ret = igt_sysfs_get_u64(engine_fd, JOB_TIMOUT_ENTRY);
> + close(engine_fd);
> +
> + return ret;
> +}
> +
> +static void xe_sysfs_set_job_timeout_ms(int fd, struct drm_xe_engine_class_instance *eci,
> + u64 timeout)
> +{
> + int engine_fd = -1;
> +
> + engine_fd = xe_sysfs_engine_open(fd, eci->gt_id, eci->engine_class);
> + igt_sysfs_set_u64(engine_fd, JOB_TIMOUT_ENTRY, CAPTURE_JOB_TIMEOUT);
> + close(engine_fd);
> +}
> +
...
> xe_for_each_engine(fd, hwe) {
> /*
> * To test devcoredump register data, the test batch address is
> * used to compare with the dump, address bit 40 to 46 act as
> * context id, which start with an random number, increased 1
> * per engine. By this way, the address is unique for each
> * engine, and start with an random number on each run.
> */
> const u64 addr = BASE_ADDRESS | ((u64)(engine_cid++ % CID_ADDRESS_MASK) <<
> ADDRESS_SHIFT);
413a440
> + u64 job_timeout = xe_sysfs_get_job_timeout_ms(fd, hwe);
417a445,447
> + /* Reduce timeout value to speedup test */
> + xe_sysfs_set_job_timeout_ms(fd, hwe, CAPTURE_JOB_TIMEOUT);
> +
419a450,452
> + /* Restore timeout value */
> + xe_sysfs_set_job_timeout_ms(fd, hwe, job_timeout);
> +
460a494,495
> + igt_info("Running test on multiple GPU\n");
> +
473a509
> + igt_info("Running test on single GPU\n");
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH v9] tests/intel/xe_exec_capture: Add xe_exec_capture test
2024-12-11 22:08 ` [PATCH v9] tests/intel/xe_exec_capture: Add xe_exec_capture test Teres Alexis, Alan Previn
@ 2024-12-12 19:54 ` Teres Alexis, Alan Previn
2025-01-07 15:41 ` Dong, Zhanjun
0 siblings, 1 reply; 9+ messages in thread
From: Teres Alexis, Alan Previn @ 2024-12-12 19:54 UTC (permalink / raw)
To: Dong, Zhanjun, igt-dev@lists.freedesktop.org
Cc: kamil.konieczny@linux.intel.com
Zhanjun, per offline chats with Kamil looks like we need to expand the
igt_fixture sections before and after the igt_subtest section and
save the per-engine-timeouts in the initial fixture and restore
the per-engine-timeouts in the later fixture because the fixture
section is not bypassed during an assert. That's what i understood.
That said, we will need another rev of this.
On Wed, 2024-12-11 at 14:08 -0800, Teres Alexis, Alan Previn wrote:
> Just re-RB-ing after the recent addition for the change to set engine execution time manually before running the tests
> on each engine in order to limit the execution time of this test:
>
> Reviewed-by: Alan Previn <alan.previn.teres.alexis@intel.com>
>
>
> On Fri, 2024-12-06 at 14:59 -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: Kamil Konieczny <kamil.konieczny@linux.intel.com>
> > ---
> > Changes from prior revs:
> > v9:- Reduced job timeout to 2 seconds to speedup test
> > Add info print to show test is running on single/multiple GPU
> > v8:- Move change list below ---
>
>
> alan: I just reviewed the difference of the last two revs (diff of diff
> farther below):
> with that change, we hope it will address Kamil's concern by reducing the execution
> time dramatically. IIRC Zhanjun couldn't designate any subtest to declare pass
> or fail without ensuring multiple engines are executed-on back to back since the
> test needs to ensure that XE-KMD is catching the correct guc-error-dump for the
> exact batch on the exact engine we expect it to capture amidst multiple back to back
> runs of different-batches-same-engine vs different-engines. (the test uses the ring
> buffer batch buffer address as a way to differentiate and determine precisely).
>
>
> 28a29
> > +#include "igt_sysfs.h"
> 37a39,40
> > +#define CAPTURE_JOB_TIMEOUT 2000
> > +#define JOB_TIMOUT_ENTRY "job_timeout_ms"
> 83a87,109
> > +static u64
> > +xe_sysfs_get_job_timeout_ms(int fd, struct drm_xe_engine_class_instance *eci)
> > +{
> > + int engine_fd = -1;
> > + u64 ret;
> > +
> > + engine_fd = xe_sysfs_engine_open(fd, eci->gt_id, eci->engine_class);
> > + ret = igt_sysfs_get_u64(engine_fd, JOB_TIMOUT_ENTRY);
> > + close(engine_fd);
> > +
> > + return ret;
> > +}
> > +
> > +static void xe_sysfs_set_job_timeout_ms(int fd, struct drm_xe_engine_class_instance *eci,
> > + u64 timeout)
> > +{
> > + int engine_fd = -1;
> > +
> > + engine_fd = xe_sysfs_engine_open(fd, eci->gt_id, eci->engine_class);
> > + igt_sysfs_set_u64(engine_fd, JOB_TIMOUT_ENTRY, CAPTURE_JOB_TIMEOUT);
> > + close(engine_fd);
> > +}
> > +
>
> ...
>
> > xe_for_each_engine(fd, hwe) {
> > /*
> > * To test devcoredump register data, the test batch address is
> > * used to compare with the dump, address bit 40 to 46 act as
> > * context id, which start with an random number, increased 1
> > * per engine. By this way, the address is unique for each
> > * engine, and start with an random number on each run.
> > */
> > const u64 addr = BASE_ADDRESS | ((u64)(engine_cid++ % CID_ADDRESS_MASK) <<
> > ADDRESS_SHIFT);
> 413a440
> > + u64 job_timeout = xe_sysfs_get_job_timeout_ms(fd, hwe);
> 417a445,447
> > + /* Reduce timeout value to speedup test */
> > + xe_sysfs_set_job_timeout_ms(fd, hwe, CAPTURE_JOB_TIMEOUT);
> > +
> 419a450,452
> > + /* Restore timeout value */
> > + xe_sysfs_set_job_timeout_ms(fd, hwe, job_timeout);
> > +
> 460a494,495
> > + igt_info("Running test on multiple GPU\n");
> > +
> 473a509
> > + igt_info("Running test on single GPU\n");
>
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH v9] tests/intel/xe_exec_capture: Add xe_exec_capture test
2024-12-06 22:59 [PATCH v9] tests/intel/xe_exec_capture: Add xe_exec_capture test Zhanjun Dong
` (4 preceding siblings ...)
2024-12-11 22:08 ` [PATCH v9] tests/intel/xe_exec_capture: Add xe_exec_capture test Teres Alexis, Alan Previn
@ 2024-12-12 21:41 ` Teres Alexis, Alan Previn
5 siblings, 0 replies; 9+ messages in thread
From: Teres Alexis, Alan Previn @ 2024-12-12 21:41 UTC (permalink / raw)
To: Dong, Zhanjun, igt-dev@lists.freedesktop.org
Cc: kamil.konieczny@linux.intel.com
On Fri, 2024-12-06 at 14:59 -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: Kamil Konieczny <kamil.konieczny@linux.intel.com>
> ---
>
alan:snip
> +igt_main
> +{
> + int xe;
> +
> + igt_fixture
> + xe = drm_open_driver(DRIVER_XE);
> +
> + igt_subtest("reset") {
> + int gpu_count = drm_prepare_filtered_multigpu(DRIVER_XE);
> +
> + igt_require(xe > 0);
> + if (gpu_count >= 2) {
alan: Zhanjun, i got some offline feedback from Kamil that we should break
up separate subtests for single gpu vs multi-gpu scenarios. That said,
he was okay with doing single GPU first and doing multi-gpu later as an
addition patch if we really need to get this test integrated sooner.
Let's follow up on what works for you (i believe breaking up
subtests for single-default-gpu vs multi-gpu is actually more straight
forward).
> + igt_info("Running test on multiple GPU\n");
> +
> + 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 {
> + igt_info("Running test on single GPU\n");
> + test_card(xe);
> + }
> + }
alan:snip
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [PATCH v9] tests/intel/xe_exec_capture: Add xe_exec_capture test
2024-12-12 19:54 ` Teres Alexis, Alan Previn
@ 2025-01-07 15:41 ` Dong, Zhanjun
0 siblings, 0 replies; 9+ messages in thread
From: Dong, Zhanjun @ 2025-01-07 15:41 UTC (permalink / raw)
To: Teres Alexis, Alan Previn, igt-dev@lists.freedesktop.org
Cc: kamil.konieczny@linux.intel.com
On 2024-12-12 2:54 p.m., Teres Alexis, Alan Previn wrote:
>
> Zhanjun, per offline chats with Kamil looks like we need to expand the
> igt_fixture sections before and after the igt_subtest section and
> save the per-engine-timeouts in the initial fixture and restore
> the per-engine-timeouts in the later fixture because the fixture
> section is not bypassed during an assert. That's what i understood.
> That said, we will need another rev of this.
Good point! the per-engine-timeouts should be restored to original value
no matter of assert being triggered or not.
Although the save/restore for single vs multiple GPU might be different,
I will take care of it in next rev.
Regards,
Zhanjun Dong
>
> On Wed, 2024-12-11 at 14:08 -0800, Teres Alexis, Alan Previn wrote:
>> Just re-RB-ing after the recent addition for the change to set engine execution time manually before running the tests
>> on each engine in order to limit the execution time of this test:
>>
>> Reviewed-by: Alan Previn <alan.previn.teres.alexis@intel.com>
>>
>>
>> On Fri, 2024-12-06 at 14:59 -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: Kamil Konieczny <kamil.konieczny@linux.intel.com>
>>> ---
>>> Changes from prior revs:
>>> v9:- Reduced job timeout to 2 seconds to speedup test
>>> Add info print to show test is running on single/multiple GPU
>>> v8:- Move change list below ---
>>..
^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2025-01-07 15:42 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-12-06 22:59 [PATCH v9] tests/intel/xe_exec_capture: Add xe_exec_capture test Zhanjun Dong
2024-12-06 23:38 ` ✓ Xe.CI.BAT: success for tests/intel/xe_exec_capture: Add xe_exec_capture test (rev8) Patchwork
2024-12-06 23:52 ` ✓ i915.CI.BAT: " Patchwork
2024-12-07 1:11 ` ✗ i915.CI.Full: failure " Patchwork
2024-12-07 4:42 ` ✗ Xe.CI.Full: " Patchwork
2024-12-11 22:08 ` [PATCH v9] tests/intel/xe_exec_capture: Add xe_exec_capture test Teres Alexis, Alan Previn
2024-12-12 19:54 ` Teres Alexis, Alan Previn
2025-01-07 15:41 ` Dong, Zhanjun
2024-12-12 21:41 ` Teres Alexis, Alan Previn
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox