* [PATCH] tests/xe_exec_reset: Add readout of devcoredump
@ 2024-07-16 9:02 Maarten Lankhorst
0 siblings, 0 replies; 7+ messages in thread
From: Maarten Lankhorst @ 2024-07-16 9:02 UTC (permalink / raw)
To: igt-dev; +Cc: Maarten Lankhorst
We're mostly testing if we can read the devcoredump, clear the
devcoredump at the start of each subtest, and read it out at the end
of the test.
Signed-off-by: Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
---
tests/intel/xe_exec_reset.c | 134 ++++++++++++++++++++++++++++++++++--
1 file changed, 129 insertions(+), 5 deletions(-)
diff --git a/tests/intel/xe_exec_reset.c b/tests/intel/xe_exec_reset.c
index 817b82cde..c88e72a65 100644
--- a/tests/intel/xe_exec_reset.c
+++ b/tests/intel/xe_exec_reset.c
@@ -12,7 +12,12 @@
* Test category: functionality test
*/
+#include <unistd.h>
+#include <fcntl.h>
+#include <sys/stat.h>
+
#include "igt.h"
+#include "lib/igt_io.h"
#include "lib/igt_syncobj.h"
#include "lib/intel_reg.h"
#include "xe_drm.h"
@@ -22,6 +27,74 @@
#include "xe/xe_spin.h"
#include <string.h>
+static int sysfd = -1;
+
+static u64 dummy_size;
+static void *dummy;
+
+/* Clear any previous devcoredump */
+static void tryclear_hang(void)
+{
+ int fd;
+ char buf[256];
+
+ if (sysfd < 0)
+ return;
+
+ fd = openat(sysfd, "devcoredump/data", O_RDWR);
+ if (fd < 0)
+ return;
+
+ /* Read is optional, but see comment below why we do it */
+ while (read(fd, buf, sizeof(buf)) > 0)
+ { }
+ write(fd, "1", 1);
+ close(fd);
+}
+
+/*
+ * Helper to read and clear devcore. We want to read it completely to ensure
+ * we catch any kernel side regressions like:
+ * https://gitlab.freedesktop.org/drm/msm/-/issues/20
+ */
+static void
+read_and_clear_hang(void)
+{
+ char buf[0x1000];
+ int fd;
+
+ if (sysfd < 0)
+ return;
+
+ fd = openat(sysfd, "devcoredump/data", O_RDWR);
+ igt_assert(fd >= 0);
+
+ /*
+ * We want to read the entire file but we can throw away the
+ * contents.. we just want to make sure that we exercise the
+ * kernel side codepaths hit when reading the devcore from
+ * sysfs
+ */
+ igt_debug("---- begin coredump ----\n");
+ while (1) {
+ ssize_t ret;
+
+ ret = igt_readn(fd, buf, sizeof(buf) - 1);
+ igt_assert(ret >= 0);
+ if (ret == 0)
+ break;
+ buf[ret] = '\0';
+ igt_debug("%s", buf);
+ }
+
+ igt_debug("---- end coredump ----\n");
+
+ /* Clear the devcore: */
+ igt_writen(fd, "1", 1);
+
+ close(fd);
+}
+
/**
* SUBTEST: spin
* Description: test spin
@@ -59,7 +132,11 @@ static void test_spin(int fd, struct drm_xe_engine_class_instance *eci)
syncobj = 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);
+ xe_vm_bind_async_flags(fd, vm, 0, bo, 0, addr, bo_size, sync, 1,
+ DRM_XE_VM_BIND_FLAG_DUMPABLE);
+
+ xe_vm_bind_userptr_async_flags(fd, vm, 0, to_user_pointer(dummy), addr + bo_size, dummy_size, sync, 1,
+ DRM_XE_VM_BIND_FLAG_DUMPABLE);
xe_spin_init(spin, &spin_opts);
@@ -90,6 +167,8 @@ static void test_spin(int fd, struct drm_xe_engine_class_instance *eci)
munmap(spin, bo_size);
gem_close(fd, bo);
xe_vm_destroy(fd, vm);
+
+ read_and_clear_hang();
}
#define MAX_N_EXECQUEUES 16
@@ -100,6 +179,7 @@ static void test_spin(int fd, struct drm_xe_engine_class_instance *eci)
#define VIRTUAL (0x1 << 3)
#define PARALLEL (0x1 << 4)
#define CAT_ERROR (0x1 << 5)
+#define CAPTURE (0x1 << 6)
/**
* SUBTEST: %s-cat-error
@@ -160,6 +240,8 @@ test_balancer(int fd, int gt, int class, int n_exec_queues, int n_execs,
if (flags & CLOSE_FD)
fd = drm_open_driver(DRIVER_XE);
+ tryclear_hang();
+
xe_for_each_engine(fd, hwe) {
if (hwe->engine_class != class || hwe->gt_id != gt)
continue;
@@ -187,7 +269,11 @@ test_balancer(int fd, int gt, int class, int n_exec_queues, int n_execs,
exec.num_batch_buffer = flags & PARALLEL ? num_placements : 1;
sync[0].handle = syncobj_create(fd, 0);
- xe_vm_bind_async(fd, vm, 0, bo, 0, addr, bo_size, sync, 1);
+ xe_vm_bind_async_flags(fd, vm, 0, bo, 0, addr, bo_size, sync, 1,
+ DRM_XE_VM_BIND_FLAG_DUMPABLE);
+
+ xe_vm_bind_userptr_async_flags(fd, vm, 0, to_user_pointer(dummy), addr + bo_size, dummy_size, sync, 1,
+ DRM_XE_VM_BIND_FLAG_DUMPABLE);
if (flags & VIRTUAL && (flags & CAT_ERROR || flags & GT_RESET))
bad_batches = num_placements;
@@ -275,6 +361,8 @@ test_balancer(int fd, int gt, int class, int n_exec_queues, int n_execs,
munmap(data, bo_size);
gem_close(fd, bo);
xe_vm_destroy(fd, vm);
+
+ read_and_clear_hang();
}
/**
@@ -327,6 +415,8 @@ test_legacy_mode(int fd, struct drm_xe_engine_class_instance *eci,
if (flags & CLOSE_FD)
fd = drm_open_driver(DRIVER_XE);
+ tryclear_hang();
+
vm = xe_vm_create(fd, 0, 0);
bo_size = sizeof(*data) * n_execs;
bo_size = xe_bb_size(fd, bo_size);
@@ -342,7 +432,11 @@ test_legacy_mode(int fd, struct drm_xe_engine_class_instance *eci,
};
sync[0].handle = syncobj_create(fd, 0);
- xe_vm_bind_async(fd, vm, 0, bo, 0, addr, bo_size, sync, 1);
+ xe_vm_bind_async_flags(fd, vm, 0, bo, 0, addr, bo_size, sync, 1,
+ DRM_XE_VM_BIND_FLAG_DUMPABLE);
+
+ xe_vm_bind_userptr_async_flags(fd, vm, 0, to_user_pointer(dummy), addr + bo_size, dummy_size, sync, 1,
+ DRM_XE_VM_BIND_FLAG_DUMPABLE);
for (i = 0; i < n_execs; i++) {
uint64_t base_addr = flags & CAT_ERROR && !i ?
@@ -419,6 +513,8 @@ test_legacy_mode(int fd, struct drm_xe_engine_class_instance *eci,
munmap(data, bo_size);
gem_close(fd, bo);
xe_vm_destroy(fd, vm);
+
+ read_and_clear_hang();
}
/**
@@ -473,6 +569,8 @@ test_compute_mode(int fd, struct drm_xe_engine_class_instance *eci,
if (flags & CLOSE_FD)
fd = drm_open_driver(DRIVER_XE);
+ tryclear_hang();
+
vm = xe_vm_create(fd, DRM_XE_VM_CREATE_FLAG_LR_MODE, 0);
bo_size = sizeof(*data) * n_execs;
bo_size = xe_bb_size(fd, bo_size);
@@ -488,7 +586,12 @@ test_compute_mode(int fd, struct drm_xe_engine_class_instance *eci,
};
sync[0].addr = to_user_pointer(&data[0].vm_sync);
- xe_vm_bind_async(fd, vm, 0, bo, 0, addr, bo_size, sync, 1);
+ xe_vm_bind_async_flags(fd, vm, 0, bo, 0, addr, bo_size, sync, 1,
+ DRM_XE_VM_BIND_FLAG_DUMPABLE);
+
+ /* Capture BO as userptr too */
+ xe_vm_bind_userptr_async_flags(fd, vm, 0, to_user_pointer(dummy), addr + bo_size, dummy_size, sync, 1,
+ DRM_XE_VM_BIND_FLAG_DUMPABLE);
#define THREE_SEC MS_TO_NS(3000)
xe_wait_ufence(fd, &data[0].vm_sync, USER_FENCE_VALUE, 0, THREE_SEC);
@@ -571,6 +674,8 @@ test_compute_mode(int fd, struct drm_xe_engine_class_instance *eci,
munmap(data, bo_size);
gem_close(fd, bo);
xe_vm_destroy(fd, vm);
+
+ read_and_clear_hang();
}
struct gt_thread_data {
@@ -591,6 +696,8 @@ static void do_resets(struct gt_thread_data *t)
usleep(250000); /* 250 ms */
(*t->num_reset)++;
xe_force_gt_reset_async(t->fd, t->gt);
+
+ tryclear_hang();
}
}
@@ -700,6 +807,8 @@ gt_reset(int fd, int n_threads, int n_sec)
printf("number of resets %d\n", num_reset);
free(threads);
+
+ tryclear_hang();
}
igt_main
@@ -717,9 +826,24 @@ igt_main
int class;
int fd;
- igt_fixture
+ igt_fixture {
+ struct stat stat;
+ char str[256];
+
fd = drm_open_driver(DRIVER_XE);
+ igt_assert_eq(fstat(fd, &stat), 0);
+ sprintf(str, "/sys/dev/char/%ld:%ld/device", stat.st_rdev >> 8, stat.st_rdev & 0xff);
+ sysfd = open(str, O_DIRECTORY);
+
+ tryclear_hang();
+
+ dummy_size = sysconf(_SC_PAGESIZE);
+ if (dummy_size < SZ_64K)
+ dummy_size = SZ_64K;
+ dummy = aligned_alloc(dummy_size, dummy_size);
+ }
+
igt_subtest("spin")
xe_for_each_engine(fd, hwe)
test_spin(fd, hwe);
--
2.45.2
^ permalink raw reply related [flat|nested] 7+ messages in thread
* [PATCH] tests/xe_exec_reset: Add readout of devcoredump
@ 2024-10-18 17:38 Maarten Lankhorst
2024-10-18 18:20 ` ✓ CI.xeBAT: success for tests/xe_exec_reset: Add readout of devcoredump (rev2) Patchwork
` (4 more replies)
0 siblings, 5 replies; 7+ messages in thread
From: Maarten Lankhorst @ 2024-10-18 17:38 UTC (permalink / raw)
To: igt-dev; +Cc: Maarten Lankhorst
We're mostly testing if we can read the devcoredump, clear the
devcoredump at the start of each subtest, and read it out at the end
of the test.
Signed-off-by: Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
---
tests/intel/xe_exec_reset.c | 134 ++++++++++++++++++++++++++++++++++--
1 file changed, 129 insertions(+), 5 deletions(-)
diff --git a/tests/intel/xe_exec_reset.c b/tests/intel/xe_exec_reset.c
index 43ef1e334..96e0a85d3 100644
--- a/tests/intel/xe_exec_reset.c
+++ b/tests/intel/xe_exec_reset.c
@@ -12,7 +12,12 @@
* Test category: functionality test
*/
+#include <unistd.h>
+#include <fcntl.h>
+#include <sys/stat.h>
+
#include "igt.h"
+#include "lib/igt_io.h"
#include "lib/igt_syncobj.h"
#include "lib/intel_reg.h"
#include "xe_drm.h"
@@ -25,6 +30,74 @@
#define SYNC_OBJ_SIGNALED (0x1 << 0)
+static int sysfd = -1;
+
+static u64 dummy_size;
+static void *dummy;
+
+/* Clear any previous devcoredump */
+static void tryclear_hang(void)
+{
+ int fd;
+ char buf[256];
+
+ if (sysfd < 0)
+ return;
+
+ fd = openat(sysfd, "devcoredump/data", O_RDWR);
+ if (fd < 0)
+ return;
+
+ /* Read is optional, but see comment below why we do it */
+ while (read(fd, buf, sizeof(buf)) > 0)
+ { }
+ write(fd, "1", 1);
+ close(fd);
+}
+
+/*
+ * Helper to read and clear devcore. We want to read it completely to ensure
+ * we catch any kernel side regressions like:
+ * https://gitlab.freedesktop.org/drm/msm/-/issues/20
+ */
+static void
+read_and_clear_hang(void)
+{
+ char buf[0x1000];
+ int fd;
+
+ if (sysfd < 0)
+ return;
+
+ fd = openat(sysfd, "devcoredump/data", O_RDWR);
+ igt_assert(fd >= 0);
+
+ /*
+ * We want to read the entire file but we can throw away the
+ * contents.. we just want to make sure that we exercise the
+ * kernel side codepaths hit when reading the devcore from
+ * sysfs
+ */
+ igt_debug("---- begin coredump ----\n");
+ while (1) {
+ ssize_t ret;
+
+ ret = igt_readn(fd, buf, sizeof(buf) - 1);
+ igt_assert(ret >= 0);
+ if (ret == 0)
+ break;
+ buf[ret] = '\0';
+ igt_debug("%s", buf);
+ }
+
+ igt_debug("---- end coredump ----\n");
+
+ /* Clear the devcore: */
+ igt_writen(fd, "1", 1);
+
+ close(fd);
+}
+
/**
* SUBTEST: spin
* Description: test spin
@@ -68,7 +141,11 @@ static void test_spin(int fd, struct drm_xe_engine_class_instance *eci,
DRM_SYNCOBJ_CREATE_SIGNALED : 0);
sync[0].handle = syncobj_create(fd, 0);
- xe_vm_bind_async(fd, vm, 0, bo, 0, addr, bo_size, sync, 1);
+ xe_vm_bind_async_flags(fd, vm, 0, bo, 0, addr, bo_size, sync, 1,
+ DRM_XE_VM_BIND_FLAG_DUMPABLE);
+
+ xe_vm_bind_userptr_async_flags(fd, vm, 0, to_user_pointer(dummy), addr + bo_size, dummy_size, sync, 1,
+ DRM_XE_VM_BIND_FLAG_DUMPABLE);
#define N_TIMES 4
for (i = 0; i < N_TIMES; ++i) {
@@ -103,6 +180,8 @@ static void test_spin(int fd, struct drm_xe_engine_class_instance *eci,
munmap(spin, bo_size);
gem_close(fd, bo);
xe_vm_destroy(fd, vm);
+
+ read_and_clear_hang();
}
#define MAX_N_EXECQUEUES 16
@@ -112,6 +191,7 @@ static void test_spin(int fd, struct drm_xe_engine_class_instance *eci,
#define VIRTUAL (0x1 << 3)
#define PARALLEL (0x1 << 4)
#define CAT_ERROR (0x1 << 5)
+#define CAPTURE (0x1 << 6)
/**
* SUBTEST: %s-cat-error
@@ -172,6 +252,8 @@ test_balancer(int fd, int gt, int class, int n_exec_queues, int n_execs,
fd = drm_open_driver(DRIVER_XE);
num_placements = xe_gt_fill_engines_by_class(fd, gt, class, eci);
+ tryclear_hang();
+
if (num_placements < 2)
return;
@@ -193,7 +275,11 @@ test_balancer(int fd, int gt, int class, int n_exec_queues, int n_execs,
exec.num_batch_buffer = flags & PARALLEL ? num_placements : 1;
sync[0].handle = syncobj_create(fd, 0);
- xe_vm_bind_async(fd, vm, 0, bo, 0, addr, bo_size, sync, 1);
+ xe_vm_bind_async_flags(fd, vm, 0, bo, 0, addr, bo_size, sync, 1,
+ DRM_XE_VM_BIND_FLAG_DUMPABLE);
+
+ xe_vm_bind_userptr_async_flags(fd, vm, 0, to_user_pointer(dummy), addr + bo_size, dummy_size, sync, 1,
+ DRM_XE_VM_BIND_FLAG_DUMPABLE);
if (flags & VIRTUAL && (flags & CAT_ERROR || flags & GT_RESET))
bad_batches = num_placements;
@@ -285,6 +371,8 @@ test_balancer(int fd, int gt, int class, int n_exec_queues, int n_execs,
munmap(data, bo_size);
gem_close(fd, bo);
xe_vm_destroy(fd, vm);
+
+ read_and_clear_hang();
}
/**
@@ -337,6 +425,8 @@ test_legacy_mode(int fd, struct drm_xe_engine_class_instance *eci,
if (flags & CLOSE_FD)
fd = drm_open_driver(DRIVER_XE);
+ tryclear_hang();
+
vm = xe_vm_create(fd, 0, 0);
bo_size = sizeof(*data) * n_execs;
bo_size = xe_bb_size(fd, bo_size);
@@ -352,7 +442,11 @@ test_legacy_mode(int fd, struct drm_xe_engine_class_instance *eci,
};
sync[0].handle = syncobj_create(fd, 0);
- xe_vm_bind_async(fd, vm, 0, bo, 0, addr, bo_size, sync, 1);
+ xe_vm_bind_async_flags(fd, vm, 0, bo, 0, addr, bo_size, sync, 1,
+ DRM_XE_VM_BIND_FLAG_DUMPABLE);
+
+ xe_vm_bind_userptr_async_flags(fd, vm, 0, to_user_pointer(dummy), addr + bo_size, dummy_size, sync, 1,
+ DRM_XE_VM_BIND_FLAG_DUMPABLE);
for (i = 0; i < n_execs; i++) {
uint64_t base_addr = flags & CAT_ERROR && !i ?
@@ -432,6 +526,8 @@ test_legacy_mode(int fd, struct drm_xe_engine_class_instance *eci,
munmap(data, bo_size);
gem_close(fd, bo);
xe_vm_destroy(fd, vm);
+
+ read_and_clear_hang();
}
/**
@@ -486,6 +582,8 @@ test_compute_mode(int fd, struct drm_xe_engine_class_instance *eci,
if (flags & CLOSE_FD)
fd = drm_open_driver(DRIVER_XE);
+ tryclear_hang();
+
vm = xe_vm_create(fd, DRM_XE_VM_CREATE_FLAG_LR_MODE, 0);
bo_size = sizeof(*data) * n_execs;
bo_size = xe_bb_size(fd, bo_size);
@@ -501,7 +599,12 @@ test_compute_mode(int fd, struct drm_xe_engine_class_instance *eci,
};
sync[0].addr = to_user_pointer(&data[0].vm_sync);
- xe_vm_bind_async(fd, vm, 0, bo, 0, addr, bo_size, sync, 1);
+ xe_vm_bind_async_flags(fd, vm, 0, bo, 0, addr, bo_size, sync, 1,
+ DRM_XE_VM_BIND_FLAG_DUMPABLE);
+
+ /* Capture BO as userptr too */
+ xe_vm_bind_userptr_async_flags(fd, vm, 0, to_user_pointer(dummy), addr + bo_size, dummy_size, sync, 1,
+ DRM_XE_VM_BIND_FLAG_DUMPABLE);
xe_wait_ufence(fd, &data[0].vm_sync, USER_FENCE_VALUE, 0, 3 * NSEC_PER_SEC);
data[0].vm_sync = 0;
@@ -583,6 +686,8 @@ test_compute_mode(int fd, struct drm_xe_engine_class_instance *eci,
munmap(data, bo_size);
gem_close(fd, bo);
xe_vm_destroy(fd, vm);
+
+ read_and_clear_hang();
}
struct gt_thread_data {
@@ -603,6 +708,8 @@ static void do_resets(struct gt_thread_data *t)
usleep(250000); /* 250 ms */
(*t->num_reset)++;
xe_force_gt_reset_async(t->fd, t->gt);
+
+ tryclear_hang();
}
}
@@ -713,6 +820,8 @@ gt_reset(int fd, int n_threads, int n_sec)
igt_info("number of resets %d\n", num_reset);
free(threads);
+
+ tryclear_hang();
}
igt_main
@@ -730,9 +839,24 @@ igt_main
int class;
int fd;
- igt_fixture
+ igt_fixture {
+ struct stat stat;
+ char str[256];
+
fd = drm_open_driver(DRIVER_XE);
+ igt_assert_eq(fstat(fd, &stat), 0);
+ sprintf(str, "/sys/dev/char/%ld:%ld/device", stat.st_rdev >> 8, stat.st_rdev & 0xff);
+ sysfd = open(str, O_DIRECTORY);
+
+ tryclear_hang();
+
+ dummy_size = sysconf(_SC_PAGESIZE);
+ if (dummy_size < SZ_64K)
+ dummy_size = SZ_64K;
+ dummy = aligned_alloc(dummy_size, dummy_size);
+ }
+
igt_subtest("spin")
xe_for_each_engine(fd, hwe)
test_spin(fd, hwe, 0);
--
2.45.2
^ permalink raw reply related [flat|nested] 7+ messages in thread
* ✓ CI.xeBAT: success for tests/xe_exec_reset: Add readout of devcoredump (rev2)
2024-10-18 17:38 [PATCH] tests/xe_exec_reset: Add readout of devcoredump Maarten Lankhorst
@ 2024-10-18 18:20 ` Patchwork
2024-10-18 18:31 ` ✓ Fi.CI.BAT: " Patchwork
` (3 subsequent siblings)
4 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2024-10-18 18:20 UTC (permalink / raw)
To: Maarten Lankhorst; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 3556 bytes --]
== Series Details ==
Series: tests/xe_exec_reset: Add readout of devcoredump (rev2)
URL : https://patchwork.freedesktop.org/series/136133/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8080_BAT -> XEIGTPW_11938_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (9 -> 9)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in XEIGTPW_11938_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@xe_evict@evict-beng-small:
- bat-adlp-7: NOTRUN -> [SKIP][1] ([Intel XE#261] / [Intel XE#688]) +15 other tests skip
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/bat-adlp-7/igt@xe_evict@evict-beng-small.html
* igt@xe_exec_fault_mode@twice-bindexecqueue-userptr:
- bat-dg2-oem2: NOTRUN -> [SKIP][2] ([Intel XE#288]) +32 other tests skip
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/bat-dg2-oem2/igt@xe_exec_fault_mode@twice-bindexecqueue-userptr.html
* igt@xe_exec_fault_mode@twice-userptr-invalidate-prefetch:
- bat-adlp-7: NOTRUN -> [SKIP][3] ([Intel XE#288]) +32 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/bat-adlp-7/igt@xe_exec_fault_mode@twice-userptr-invalidate-prefetch.html
* igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit:
- bat-dg2-oem2: NOTRUN -> [SKIP][4] ([Intel XE#2229])
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/bat-dg2-oem2/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html
- bat-adlp-7: NOTRUN -> [SKIP][5] ([Intel XE#2229])
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/bat-adlp-7/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html
#### Possible fixes ####
* igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit:
- bat-adlp-7: [INCOMPLETE][6] ([Intel XE#2874]) -> [PASS][7] +1 other test pass
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/bat-adlp-7/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/bat-adlp-7/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html
- bat-dg2-oem2: [INCOMPLETE][8] ([Intel XE#2874]) -> [PASS][9] +1 other test pass
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/bat-dg2-oem2/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/bat-dg2-oem2/igt@xe_live_ktest@xe_bo@xe_bo_shrink_kunit.html
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[Intel XE#261]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/261
[Intel XE#2874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2874
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
Build changes
-------------
* IGT: IGT_8080 -> IGTPW_11938
* Linux: xe-2091-c1837d4e9af4e9df3109960341105c035b441667 -> xe-2093-cebb76fe419dd92609fb86e59c9671387c5325a3
IGTPW_11938: 11938
IGT_8080: 20fcbc59241a16c84d12f4f6ba390fb46fd65a36 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-2091-c1837d4e9af4e9df3109960341105c035b441667: c1837d4e9af4e9df3109960341105c035b441667
xe-2093-cebb76fe419dd92609fb86e59c9671387c5325a3: cebb76fe419dd92609fb86e59c9671387c5325a3
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/index.html
[-- Attachment #2: Type: text/html, Size: 4458 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
* ✓ Fi.CI.BAT: success for tests/xe_exec_reset: Add readout of devcoredump (rev2)
2024-10-18 17:38 [PATCH] tests/xe_exec_reset: Add readout of devcoredump Maarten Lankhorst
2024-10-18 18:20 ` ✓ CI.xeBAT: success for tests/xe_exec_reset: Add readout of devcoredump (rev2) Patchwork
@ 2024-10-18 18:31 ` Patchwork
2024-10-18 19:29 ` ✗ Fi.CI.IGT: failure " Patchwork
` (2 subsequent siblings)
4 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2024-10-18 18:31 UTC (permalink / raw)
To: Maarten Lankhorst; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 2497 bytes --]
== Series Details ==
Series: tests/xe_exec_reset: Add readout of devcoredump (rev2)
URL : https://patchwork.freedesktop.org/series/136133/
State : success
== Summary ==
CI Bug Log - changes from IGT_8080 -> IGTPW_11938
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/index.html
Participating hosts (43 -> 40)
------------------------------
Missing (3): bat-rplp-1 fi-snb-2520m bat-dg1-6
Known issues
------------
Here are the changes found in IGTPW_11938 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@i915_selftest@live@workarounds:
- bat-mtlp-6: [PASS][1] -> [ABORT][2] ([i915#12216]) +1 other test abort
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8080/bat-mtlp-6/igt@i915_selftest@live@workarounds.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/bat-mtlp-6/igt@i915_selftest@live@workarounds.html
#### Possible fixes ####
* igt@i915_selftest@live:
- bat-arlh-2: [ABORT][3] ([i915#12133]) -> [PASS][4]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8080/bat-arlh-2/igt@i915_selftest@live.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/bat-arlh-2/igt@i915_selftest@live.html
* igt@i915_selftest@live@workarounds:
- bat-arlh-2: [ABORT][5] ([i915#12061]) -> [PASS][6]
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8080/bat-arlh-2/igt@i915_selftest@live@workarounds.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/bat-arlh-2/igt@i915_selftest@live@workarounds.html
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#12133]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12133
[i915#12216]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12216
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8080 -> IGTPW_11938
* Linux: CI_DRM_15559 -> CI_DRM_15561
CI-20190529: 20190529
CI_DRM_15559: c1837d4e9af4e9df3109960341105c035b441667 @ git://anongit.freedesktop.org/gfx-ci/linux
CI_DRM_15561: cebb76fe419dd92609fb86e59c9671387c5325a3 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_11938: 11938
IGT_8080: 20fcbc59241a16c84d12f4f6ba390fb46fd65a36 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/index.html
[-- Attachment #2: Type: text/html, Size: 3159 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
* ✗ Fi.CI.IGT: failure for tests/xe_exec_reset: Add readout of devcoredump (rev2)
2024-10-18 17:38 [PATCH] tests/xe_exec_reset: Add readout of devcoredump Maarten Lankhorst
2024-10-18 18:20 ` ✓ CI.xeBAT: success for tests/xe_exec_reset: Add readout of devcoredump (rev2) Patchwork
2024-10-18 18:31 ` ✓ Fi.CI.BAT: " Patchwork
@ 2024-10-18 19:29 ` Patchwork
2024-10-19 10:26 ` ✗ CI.xeFULL: " Patchwork
2024-10-24 15:30 ` [PATCH] tests/xe_exec_reset: Add readout of devcoredump Kamil Konieczny
4 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2024-10-18 19:29 UTC (permalink / raw)
To: Maarten Lankhorst; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 100274 bytes --]
== Series Details ==
Series: tests/xe_exec_reset: Add readout of devcoredump (rev2)
URL : https://patchwork.freedesktop.org/series/136133/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_15561_full -> IGTPW_11938_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_11938_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_11938_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_11938/index.html
Participating hosts (8 -> 7)
------------------------------
Missing (1): shard-glk
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_11938_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_flip@wf_vblank-ts-check-interruptible@a-hdmi-a3:
- shard-dg1: NOTRUN -> [FAIL][1]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg1-13/igt@kms_flip@wf_vblank-ts-check-interruptible@a-hdmi-a3.html
#### Warnings ####
* igt@i915_pm_rc6_residency@rc6-idle:
- shard-tglu: [WARN][2] ([i915#2681]) -> [INCOMPLETE][3] +1 other test incomplete
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-tglu-4/igt@i915_pm_rc6_residency@rc6-idle.html
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-tglu-9/igt@i915_pm_rc6_residency@rc6-idle.html
New tests
---------
New tests have been introduced between CI_DRM_15561_full and IGTPW_11938_full:
### New IGT tests (6) ###
* igt@kms_invalid_mode@zero-hdisplay@pipe-a-vga-1:
- Statuses : 1 pass(s)
- Exec time: [0.10] s
* igt@kms_invalid_mode@zero-hdisplay@pipe-b-vga-1:
- Statuses : 1 pass(s)
- Exec time: [0.0] s
* igt@kms_sequence@get-forked-busy@pipe-a-vga-1:
- Statuses : 1 pass(s)
- Exec time: [2.44] s
* igt@kms_sequence@get-forked-busy@pipe-b-vga-1:
- Statuses : 1 pass(s)
- Exec time: [2.35] s
* igt@kms_vblank@ts-continuation-modeset-rpm@pipe-a-vga-1:
- Statuses : 1 skip(s)
- Exec time: [0.17] s
* igt@kms_vblank@ts-continuation-modeset-rpm@pipe-b-vga-1:
- Statuses : 1 skip(s)
- Exec time: [0.21] s
Known issues
------------
Here are the changes found in IGTPW_11938_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@blit-reloc-purge-cache:
- shard-dg2: NOTRUN -> [SKIP][4] ([i915#8411])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg2-8/igt@api_intel_bb@blit-reloc-purge-cache.html
- shard-dg1: NOTRUN -> [SKIP][5] ([i915#8411])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg1-18/igt@api_intel_bb@blit-reloc-purge-cache.html
- shard-mtlp: NOTRUN -> [SKIP][6] ([i915#8411])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-mtlp-7/igt@api_intel_bb@blit-reloc-purge-cache.html
* igt@device_reset@cold-reset-bound:
- shard-dg1: NOTRUN -> [SKIP][7] ([i915#11078])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg1-13/igt@device_reset@cold-reset-bound.html
* igt@drm_fdinfo@busy@ccs0:
- shard-dg2: NOTRUN -> [SKIP][8] ([i915#8414]) +17 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg2-2/igt@drm_fdinfo@busy@ccs0.html
* igt@drm_fdinfo@busy@vcs0:
- shard-mtlp: NOTRUN -> [SKIP][9] ([i915#8414]) +7 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-mtlp-5/igt@drm_fdinfo@busy@vcs0.html
* igt@drm_fdinfo@busy@vcs1:
- shard-dg1: NOTRUN -> [SKIP][10] ([i915#8414]) +7 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg1-18/igt@drm_fdinfo@busy@vcs1.html
* igt@gem_ccs@ctrl-surf-copy:
- shard-dg1: NOTRUN -> [SKIP][11] ([i915#3555] / [i915#9323])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg1-13/igt@gem_ccs@ctrl-surf-copy.html
- shard-mtlp: NOTRUN -> [SKIP][12] ([i915#3555] / [i915#9323])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-mtlp-3/igt@gem_ccs@ctrl-surf-copy.html
* igt@gem_close_race@multigpu-basic-threads:
- shard-dg2: NOTRUN -> [SKIP][13] ([i915#7697])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg2-4/igt@gem_close_race@multigpu-basic-threads.html
- shard-dg1: NOTRUN -> [SKIP][14] ([i915#7697])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg1-12/igt@gem_close_race@multigpu-basic-threads.html
* igt@gem_create@create-ext-cpu-access-sanity-check:
- shard-mtlp: NOTRUN -> [SKIP][15] ([i915#6335])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-mtlp-1/igt@gem_create@create-ext-cpu-access-sanity-check.html
* igt@gem_ctx_engines@invalid-engines:
- shard-rkl: [PASS][16] -> [FAIL][17] ([i915#12027] / [i915#12031])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-rkl-5/igt@gem_ctx_engines@invalid-engines.html
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-rkl-4/igt@gem_ctx_engines@invalid-engines.html
* igt@gem_ctx_sseu@engines:
- shard-dg2: NOTRUN -> [SKIP][18] ([i915#280])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg2-2/igt@gem_ctx_sseu@engines.html
- shard-rkl: NOTRUN -> [SKIP][19] ([i915#280])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-rkl-5/igt@gem_ctx_sseu@engines.html
* igt@gem_eio@hibernate:
- shard-dg2: [PASS][20] -> [ABORT][21] ([i915#10030] / [i915#7975] / [i915#8213])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-dg2-11/igt@gem_eio@hibernate.html
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg2-5/igt@gem_eio@hibernate.html
* igt@gem_eio@reset-stress:
- shard-dg2: NOTRUN -> [FAIL][22] ([i915#5784])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg2-4/igt@gem_eio@reset-stress.html
- shard-dg1: NOTRUN -> [FAIL][23] ([i915#5784]) +1 other test fail
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg1-16/igt@gem_eio@reset-stress.html
* igt@gem_eio@unwedge-stress:
- shard-dg1: [PASS][24] -> [FAIL][25] ([i915#5784])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-dg1-12/igt@gem_eio@unwedge-stress.html
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg1-13/igt@gem_eio@unwedge-stress.html
* igt@gem_exec_balancer@bonded-true-hang:
- shard-dg2: NOTRUN -> [SKIP][26] ([i915#4812]) +1 other test skip
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg2-7/igt@gem_exec_balancer@bonded-true-hang.html
* igt@gem_exec_fair@basic-deadline:
- shard-rkl: [PASS][27] -> [FAIL][28] ([i915#2846])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-rkl-3/igt@gem_exec_fair@basic-deadline.html
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-rkl-7/igt@gem_exec_fair@basic-deadline.html
* igt@gem_exec_fair@basic-none:
- shard-dg1: NOTRUN -> [SKIP][29] ([i915#3539] / [i915#4852]) +1 other test skip
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg1-12/igt@gem_exec_fair@basic-none.html
- shard-mtlp: NOTRUN -> [SKIP][30] ([i915#4473] / [i915#4771]) +1 other test skip
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-mtlp-6/igt@gem_exec_fair@basic-none.html
* igt@gem_exec_fair@basic-none-solo:
- shard-dg2: NOTRUN -> [SKIP][31] ([i915#3539] / [i915#4852]) +1 other test skip
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg2-6/igt@gem_exec_fair@basic-none-solo.html
- shard-rkl: NOTRUN -> [FAIL][32] ([i915#2842]) +1 other test fail
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-rkl-1/igt@gem_exec_fair@basic-none-solo.html
* igt@gem_exec_fair@basic-pace-share@rcs0:
- shard-rkl: [PASS][33] -> [FAIL][34] ([i915#2842]) +1 other test fail
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-rkl-2/igt@gem_exec_fair@basic-pace-share@rcs0.html
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-rkl-5/igt@gem_exec_fair@basic-pace-share@rcs0.html
- shard-tglu: [PASS][35] -> [FAIL][36] ([i915#2842]) +1 other test fail
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-tglu-3/igt@gem_exec_fair@basic-pace-share@rcs0.html
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-tglu-4/igt@gem_exec_fair@basic-pace-share@rcs0.html
* igt@gem_exec_flush@basic-uc-prw-default:
- shard-dg2: NOTRUN -> [SKIP][37] ([i915#3539])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg2-5/igt@gem_exec_flush@basic-uc-prw-default.html
* igt@gem_exec_params@rsvd2-dirt:
- shard-mtlp: NOTRUN -> [SKIP][38] ([i915#5107])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-mtlp-2/igt@gem_exec_params@rsvd2-dirt.html
- shard-dg2: NOTRUN -> [SKIP][39] ([i915#5107])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg2-1/igt@gem_exec_params@rsvd2-dirt.html
* igt@gem_exec_reloc@basic-cpu-gtt-noreloc:
- shard-dg2: NOTRUN -> [SKIP][40] ([i915#3281]) +8 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg2-4/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html
- shard-rkl: NOTRUN -> [SKIP][41] ([i915#3281]) +2 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-rkl-2/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html
* igt@gem_exec_reloc@basic-wc-noreloc:
- shard-mtlp: NOTRUN -> [SKIP][42] ([i915#3281]) +6 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-mtlp-4/igt@gem_exec_reloc@basic-wc-noreloc.html
* igt@gem_exec_reloc@basic-write-cpu-active:
- shard-dg1: NOTRUN -> [SKIP][43] ([i915#3281]) +8 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg1-12/igt@gem_exec_reloc@basic-write-cpu-active.html
* igt@gem_exec_schedule@pi-ringfull@ccs0:
- shard-mtlp: NOTRUN -> [FAIL][44] ([i915#12296]) +6 other tests fail
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-mtlp-2/igt@gem_exec_schedule@pi-ringfull@ccs0.html
* igt@gem_exec_schedule@pi-ringfull@rcs0:
- shard-dg1: NOTRUN -> [FAIL][45] ([i915#12296]) +5 other tests fail
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg1-17/igt@gem_exec_schedule@pi-ringfull@rcs0.html
* igt@gem_exec_schedule@preempt-queue:
- shard-dg1: NOTRUN -> [SKIP][46] ([i915#4812]) +1 other test skip
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg1-15/igt@gem_exec_schedule@preempt-queue.html
- shard-mtlp: NOTRUN -> [SKIP][47] ([i915#4537] / [i915#4812])
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-mtlp-7/igt@gem_exec_schedule@preempt-queue.html
* igt@gem_exec_schedule@reorder-wide:
- shard-dg2: NOTRUN -> [SKIP][48] ([i915#4537] / [i915#4812]) +2 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg2-10/igt@gem_exec_schedule@reorder-wide.html
* igt@gem_exec_schedule@semaphore-power:
- shard-rkl: NOTRUN -> [SKIP][49] ([i915#7276])
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-rkl-3/igt@gem_exec_schedule@semaphore-power.html
* igt@gem_fence_thrash@bo-copy:
- shard-dg2: NOTRUN -> [SKIP][50] ([i915#4860]) +2 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg2-8/igt@gem_fence_thrash@bo-copy.html
- shard-dg1: NOTRUN -> [SKIP][51] ([i915#4860])
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg1-16/igt@gem_fence_thrash@bo-copy.html
- shard-mtlp: NOTRUN -> [SKIP][52] ([i915#4860])
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-mtlp-4/igt@gem_fence_thrash@bo-copy.html
* igt@gem_lmem_swapping@heavy-multi:
- shard-rkl: NOTRUN -> [SKIP][53] ([i915#4613]) +1 other test skip
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-rkl-1/igt@gem_lmem_swapping@heavy-multi.html
- shard-tglu: NOTRUN -> [SKIP][54] ([i915#4613])
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-tglu-7/igt@gem_lmem_swapping@heavy-multi.html
* igt@gem_lmem_swapping@parallel-random-verify-ccs:
- shard-dg1: NOTRUN -> [SKIP][55] ([i915#12193])
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg1-15/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
- shard-mtlp: NOTRUN -> [SKIP][56] ([i915#4613]) +1 other test skip
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-mtlp-6/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
* igt@gem_lmem_swapping@parallel-random-verify-ccs@lmem0:
- shard-dg1: NOTRUN -> [SKIP][57] ([i915#4565])
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg1-15/igt@gem_lmem_swapping@parallel-random-verify-ccs@lmem0.html
* igt@gem_media_fill@media-fill:
- shard-mtlp: NOTRUN -> [SKIP][58] ([i915#8289])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-mtlp-4/igt@gem_media_fill@media-fill.html
- shard-dg2: NOTRUN -> [SKIP][59] ([i915#8289])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg2-4/igt@gem_media_fill@media-fill.html
* igt@gem_mmap@bad-object:
- shard-dg1: NOTRUN -> [SKIP][60] ([i915#4083])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg1-19/igt@gem_mmap@bad-object.html
* igt@gem_mmap@short-mmap:
- shard-dg2: NOTRUN -> [SKIP][61] ([i915#4083])
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg2-4/igt@gem_mmap@short-mmap.html
* igt@gem_mmap_gtt@basic-small-copy:
- shard-dg1: NOTRUN -> [SKIP][62] ([i915#4077]) +3 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg1-14/igt@gem_mmap_gtt@basic-small-copy.html
* igt@gem_mmap_gtt@hang-busy:
- shard-mtlp: NOTRUN -> [SKIP][63] ([i915#4077]) +1 other test skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-mtlp-3/igt@gem_mmap_gtt@hang-busy.html
* igt@gem_partial_pwrite_pread@reads:
- shard-dg2: NOTRUN -> [SKIP][64] ([i915#3282]) +8 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg2-6/igt@gem_partial_pwrite_pread@reads.html
* igt@gem_partial_pwrite_pread@writes-after-reads-uncached:
- shard-dg1: NOTRUN -> [SKIP][65] ([i915#3282]) +7 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg1-18/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html
* igt@gem_pwrite@basic-exhaustion:
- shard-snb: NOTRUN -> [WARN][66] ([i915#2658])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-snb5/igt@gem_pwrite@basic-exhaustion.html
- shard-mtlp: NOTRUN -> [SKIP][67] ([i915#3282]) +2 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-mtlp-6/igt@gem_pwrite@basic-exhaustion.html
* igt@gem_pxp@create-protected-buffer:
- shard-dg2: NOTRUN -> [SKIP][68] ([i915#4270])
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg2-11/igt@gem_pxp@create-protected-buffer.html
* igt@gem_pxp@protected-raw-src-copy-not-readible:
- shard-dg1: NOTRUN -> [SKIP][69] ([i915#4270]) +1 other test skip
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg1-13/igt@gem_pxp@protected-raw-src-copy-not-readible.html
* igt@gem_pxp@regular-baseline-src-copy-readible:
- shard-rkl: NOTRUN -> [SKIP][70] ([i915#4270])
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-rkl-1/igt@gem_pxp@regular-baseline-src-copy-readible.html
* igt@gem_pxp@verify-pxp-stale-buf-optout-execution:
- shard-tglu: NOTRUN -> [SKIP][71] ([i915#4270])
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-tglu-10/igt@gem_pxp@verify-pxp-stale-buf-optout-execution.html
* igt@gem_readwrite@beyond-eob:
- shard-rkl: NOTRUN -> [SKIP][72] ([i915#3282]) +1 other test skip
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-rkl-3/igt@gem_readwrite@beyond-eob.html
* igt@gem_render_copy@x-tiled-to-vebox-yf-tiled:
- shard-snb: NOTRUN -> [SKIP][73] +122 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-snb5/igt@gem_render_copy@x-tiled-to-vebox-yf-tiled.html
- shard-mtlp: NOTRUN -> [SKIP][74] ([i915#8428]) +1 other test skip
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-mtlp-6/igt@gem_render_copy@x-tiled-to-vebox-yf-tiled.html
* igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled:
- shard-dg2: NOTRUN -> [SKIP][75] ([i915#5190] / [i915#8428]) +3 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg2-10/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled.html
* igt@gem_set_tiling_vs_gtt:
- shard-dg1: NOTRUN -> [SKIP][76] ([i915#4079])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg1-13/igt@gem_set_tiling_vs_gtt.html
- shard-dg2: NOTRUN -> [SKIP][77] ([i915#4079]) +1 other test skip
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg2-2/igt@gem_set_tiling_vs_gtt.html
* igt@gem_softpin@evict-snoop-interruptible:
- shard-dg2: NOTRUN -> [SKIP][78] ([i915#4885]) +1 other test skip
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg2-2/igt@gem_softpin@evict-snoop-interruptible.html
* igt@gem_tiled_swapping@non-threaded:
- shard-dg2: NOTRUN -> [SKIP][79] ([i915#4077]) +4 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg2-4/igt@gem_tiled_swapping@non-threaded.html
* igt@gem_userptr_blits@unsync-unmap-after-close:
- shard-dg2: NOTRUN -> [SKIP][80] ([i915#3297])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg2-10/igt@gem_userptr_blits@unsync-unmap-after-close.html
- shard-rkl: NOTRUN -> [SKIP][81] ([i915#3297])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-rkl-3/igt@gem_userptr_blits@unsync-unmap-after-close.html
- shard-dg1: NOTRUN -> [SKIP][82] ([i915#3297])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg1-13/igt@gem_userptr_blits@unsync-unmap-after-close.html
- shard-tglu: NOTRUN -> [SKIP][83] ([i915#3297])
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-tglu-3/igt@gem_userptr_blits@unsync-unmap-after-close.html
- shard-mtlp: NOTRUN -> [SKIP][84] ([i915#3297])
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-mtlp-3/igt@gem_userptr_blits@unsync-unmap-after-close.html
* igt@gen9_exec_parse@basic-rejected:
- shard-rkl: NOTRUN -> [SKIP][85] ([i915#2527])
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-rkl-4/igt@gen9_exec_parse@basic-rejected.html
* igt@gen9_exec_parse@bb-start-far:
- shard-tglu: NOTRUN -> [SKIP][86] ([i915#2527] / [i915#2856])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-tglu-8/igt@gen9_exec_parse@bb-start-far.html
* igt@gen9_exec_parse@secure-batches:
- shard-dg2: NOTRUN -> [SKIP][87] ([i915#2856]) +4 other tests skip
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg2-2/igt@gen9_exec_parse@secure-batches.html
- shard-dg1: NOTRUN -> [SKIP][88] ([i915#2527])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg1-13/igt@gen9_exec_parse@secure-batches.html
- shard-mtlp: NOTRUN -> [SKIP][89] ([i915#2856]) +1 other test skip
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-mtlp-3/igt@gen9_exec_parse@secure-batches.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-rkl: [PASS][90] -> [ABORT][91] ([i915#9820])
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-rkl-3/igt@i915_module_load@reload-with-fault-injection.html
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-rkl-3/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_rps@min-max-config-idle:
- shard-mtlp: NOTRUN -> [SKIP][92] ([i915#11681] / [i915#6621])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-mtlp-7/igt@i915_pm_rps@min-max-config-idle.html
* igt@i915_pm_rps@min-max-config-loaded:
- shard-dg2: NOTRUN -> [SKIP][93] ([i915#11681] / [i915#6621])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg2-2/igt@i915_pm_rps@min-max-config-loaded.html
- shard-dg1: NOTRUN -> [SKIP][94] ([i915#11681] / [i915#6621])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg1-13/igt@i915_pm_rps@min-max-config-loaded.html
* igt@i915_pm_rps@thresholds-idle:
- shard-mtlp: NOTRUN -> [SKIP][95] ([i915#11681])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-mtlp-4/igt@i915_pm_rps@thresholds-idle.html
- shard-dg1: NOTRUN -> [SKIP][96] ([i915#11681])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg1-16/igt@i915_pm_rps@thresholds-idle.html
* igt@i915_pm_rps@thresholds-park:
- shard-dg2: NOTRUN -> [SKIP][97] ([i915#11681])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg2-4/igt@i915_pm_rps@thresholds-park.html
* igt@i915_query@hwconfig_table:
- shard-dg1: NOTRUN -> [SKIP][98] ([i915#6245])
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg1-17/igt@i915_query@hwconfig_table.html
* igt@i915_selftest@mock@sanitycheck:
- shard-snb: [PASS][99] -> [ABORT][100] ([i915#11703])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-snb4/igt@i915_selftest@mock@sanitycheck.html
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-snb6/igt@i915_selftest@mock@sanitycheck.html
* igt@kms_addfb_basic@addfb25-x-tiled-legacy:
- shard-mtlp: NOTRUN -> [SKIP][101] ([i915#4212])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-mtlp-7/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html
* igt@kms_addfb_basic@basic-x-tiled-legacy:
- shard-dg2: NOTRUN -> [SKIP][102] ([i915#4212]) +2 other tests skip
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg2-8/igt@kms_addfb_basic@basic-x-tiled-legacy.html
* igt@kms_addfb_basic@clobberred-modifier:
- shard-dg1: NOTRUN -> [SKIP][103] ([i915#4212]) +1 other test skip
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg1-12/igt@kms_addfb_basic@clobberred-modifier.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-dg1: NOTRUN -> [SKIP][104] ([i915#9531])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg1-13/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-dg1: NOTRUN -> [SKIP][105] ([i915#1769] / [i915#3555])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg1-15/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-180:
- shard-dg1: NOTRUN -> [SKIP][106] ([i915#4538] / [i915#5286]) +2 other tests skip
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg1-12/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-180:
- shard-tglu: NOTRUN -> [SKIP][107] ([i915#5286]) +1 other test skip
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-tglu-4/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-addfb-size-overflow:
- shard-rkl: NOTRUN -> [SKIP][108] ([i915#5286]) +2 other tests skip
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-rkl-3/igt@kms_big_fb@4-tiled-addfb-size-overflow.html
* igt@kms_big_fb@linear-32bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][109] ([i915#3638]) +2 other tests skip
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg1-12/igt@kms_big_fb@linear-32bpp-rotate-90.html
* igt@kms_big_fb@linear-64bpp-rotate-270:
- shard-mtlp: NOTRUN -> [SKIP][110] +7 other tests skip
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-mtlp-4/igt@kms_big_fb@linear-64bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-180:
- shard-dg2: [PASS][111] -> [SKIP][112] ([i915#9197]) +37 other tests skip
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-dg2-6/igt@kms_big_fb@x-tiled-64bpp-rotate-180.html
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg2-2/igt@kms_big_fb@x-tiled-64bpp-rotate-180.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][113] ([i915#3638])
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-rkl-2/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-90:
- shard-dg2: NOTRUN -> [SKIP][114] ([i915#4538] / [i915#5190]) +8 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg2-3/igt@kms_big_fb@yf-tiled-16bpp-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_11938/shard-dg2-4/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180:
- shard-dg1: NOTRUN -> [SKIP][116] ([i915#4538]) +2 other tests skip
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg1-17/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180.html
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][117] ([i915#10307] / [i915#10434] / [i915#6095]) +7 other tests skip
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg2-8/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][118] ([i915#6095]) +139 other tests skip
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg1-16/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4.html
* igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][119] ([i915#6095]) +78 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-rkl-3/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][120] ([i915#6095]) +44 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-mtlp-3/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-edp-1.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs:
- shard-dg2: NOTRUN -> [SKIP][121] ([i915#12313]) +1 other test skip
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg2-11/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs:
- shard-rkl: NOTRUN -> [SKIP][122] ([i915#12313])
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-rkl-5/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][123] ([i915#10307] / [i915#6095]) +170 other tests skip
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg2-7/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3.html
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs@pipe-b-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][124] ([i915#6095]) +19 other tests skip
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-tglu-4/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs:
- shard-dg1: NOTRUN -> [SKIP][125] ([i915#12313]) +1 other test skip
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg1-13/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
- shard-mtlp: NOTRUN -> [SKIP][126] ([i915#12313]) +1 other test skip
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-mtlp-3/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-dg1: NOTRUN -> [SKIP][127] ([i915#3742])
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg1-19/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][128] ([i915#7213]) +3 other tests skip
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg2-6/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html
* igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][129] ([i915#4087]) +3 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg2-4/igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1.html
* igt@kms_chamelium_edid@dp-mode-timings:
- shard-dg2: NOTRUN -> [SKIP][130] ([i915#7828]) +7 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg2-6/igt@kms_chamelium_edid@dp-mode-timings.html
- shard-dg1: NOTRUN -> [SKIP][131] ([i915#7828]) +4 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg1-17/igt@kms_chamelium_edid@dp-mode-timings.html
* igt@kms_chamelium_frames@hdmi-aspect-ratio:
- shard-tglu: NOTRUN -> [SKIP][132] ([i915#7828]) +2 other tests skip
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-tglu-3/igt@kms_chamelium_frames@hdmi-aspect-ratio.html
- shard-mtlp: NOTRUN -> [SKIP][133] ([i915#7828]) +2 other tests skip
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-mtlp-4/igt@kms_chamelium_frames@hdmi-aspect-ratio.html
* igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats:
- shard-rkl: NOTRUN -> [SKIP][134] ([i915#7828]) +1 other test skip
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-rkl-5/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html
* igt@kms_content_protection@atomic-dpms:
- shard-tglu: NOTRUN -> [SKIP][135] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424])
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-tglu-2/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-dg2: NOTRUN -> [SKIP][136] ([i915#3299])
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg2-4/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-tglu: NOTRUN -> [SKIP][137] ([i915#3116] / [i915#3299])
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-tglu-2/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_content_protection@mei-interface:
- shard-dg2: NOTRUN -> [SKIP][138] ([i915#9424])
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg2-7/igt@kms_content_protection@mei-interface.html
- shard-dg1: NOTRUN -> [SKIP][139] ([i915#9424])
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg1-14/igt@kms_content_protection@mei-interface.html
- shard-mtlp: NOTRUN -> [SKIP][140] ([i915#8063] / [i915#9433])
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-mtlp-5/igt@kms_content_protection@mei-interface.html
* igt@kms_content_protection@type1:
- shard-dg1: NOTRUN -> [SKIP][141] ([i915#7116] / [i915#9424])
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg1-12/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_11938/shard-mtlp-8/igt@kms_content_protection@type1.html
* igt@kms_content_protection@uevent:
- shard-mtlp: NOTRUN -> [SKIP][143] ([i915#6944] / [i915#9424])
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-mtlp-3/igt@kms_content_protection@uevent.html
- shard-dg2: NOTRUN -> [SKIP][144] ([i915#7118] / [i915#9424])
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg2-4/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-offscreen-32x10:
- shard-dg1: NOTRUN -> [SKIP][145] ([i915#3555]) +2 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg1-18/igt@kms_cursor_crc@cursor-offscreen-32x10.html
- shard-mtlp: NOTRUN -> [SKIP][146] ([i915#3555] / [i915#8814])
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-mtlp-5/igt@kms_cursor_crc@cursor-offscreen-32x10.html
* igt@kms_cursor_crc@cursor-offscreen-64x21:
- shard-mtlp: NOTRUN -> [SKIP][147] ([i915#8814]) +2 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-mtlp-6/igt@kms_cursor_crc@cursor-offscreen-64x21.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-dg2: NOTRUN -> [SKIP][148] ([i915#11453])
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg2-11/igt@kms_cursor_crc@cursor-onscreen-512x170.html
- shard-rkl: NOTRUN -> [SKIP][149] ([i915#11453])
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-rkl-4/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x170:
- shard-dg1: NOTRUN -> [SKIP][150] ([i915#11453]) +1 other test skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg1-18/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
- shard-mtlp: NOTRUN -> [SKIP][151] ([i915#11453])
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-mtlp-7/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- shard-mtlp: NOTRUN -> [SKIP][152] ([i915#4213])
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-mtlp-3/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
- shard-rkl: NOTRUN -> [SKIP][153] ([i915#4103])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-rkl-4/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
- shard-dg2: NOTRUN -> [SKIP][154] ([i915#4103] / [i915#4213]) +1 other test skip
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg2-11/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-toggle:
- shard-mtlp: NOTRUN -> [SKIP][155] ([i915#9809])
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-mtlp-7/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size:
- shard-snb: [PASS][156] -> [SKIP][157] +3 other tests skip
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-snb2/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-snb4/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html
* igt@kms_dsc@dsc-fractional-bpp:
- shard-tglu: NOTRUN -> [SKIP][158] ([i915#3840])
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-tglu-9/igt@kms_dsc@dsc-fractional-bpp.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-dg1: [PASS][159] -> [INCOMPLETE][160] ([i915#9878])
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-dg1-15/igt@kms_fbcon_fbt@fbc-suspend.html
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg1-18/igt@kms_fbcon_fbt@fbc-suspend.html
- shard-mtlp: [PASS][161] -> [INCOMPLETE][162] ([i915#9878])
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-mtlp-3/igt@kms_fbcon_fbt@fbc-suspend.html
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-mtlp-5/igt@kms_fbcon_fbt@fbc-suspend.html
- shard-dg2: [PASS][163] -> [SKIP][164] ([i915#1849]) +1 other test skip
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-dg2-11/igt@kms_fbcon_fbt@fbc-suspend.html
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg2-2/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_feature_discovery@chamelium:
- shard-tglu: NOTRUN -> [SKIP][165] ([i915#2065] / [i915#4854])
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-tglu-4/igt@kms_feature_discovery@chamelium.html
- shard-mtlp: NOTRUN -> [SKIP][166] ([i915#4854])
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-mtlp-7/igt@kms_feature_discovery@chamelium.html
- shard-dg2: NOTRUN -> [SKIP][167] ([i915#4854])
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg2-3/igt@kms_feature_discovery@chamelium.html
- shard-rkl: NOTRUN -> [SKIP][168] ([i915#4854])
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-rkl-5/igt@kms_feature_discovery@chamelium.html
- shard-dg1: NOTRUN -> [SKIP][169] ([i915#4854])
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg1-15/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@display-2x:
- shard-dg1: NOTRUN -> [SKIP][170] ([i915#1839]) +1 other test skip
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg1-12/igt@kms_feature_discovery@display-2x.html
* igt@kms_feature_discovery@display-4x:
- shard-mtlp: NOTRUN -> [SKIP][171] ([i915#1839])
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-mtlp-1/igt@kms_feature_discovery@display-4x.html
* igt@kms_flip@2x-flip-vs-blocking-wf-vblank:
- shard-tglu: NOTRUN -> [SKIP][172] ([i915#3637]) +1 other test skip
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-tglu-9/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html
* igt@kms_flip@2x-flip-vs-dpms:
- shard-rkl: NOTRUN -> [SKIP][173] +7 other tests skip
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-rkl-7/igt@kms_flip@2x-flip-vs-dpms.html
- shard-dg1: NOTRUN -> [SKIP][174] ([i915#9934]) +4 other tests skip
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg1-16/igt@kms_flip@2x-flip-vs-dpms.html
* igt@kms_flip@2x-flip-vs-expired-vblank:
- shard-mtlp: NOTRUN -> [SKIP][175] ([i915#3637]) +3 other tests skip
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-mtlp-8/igt@kms_flip@2x-flip-vs-expired-vblank.html
* igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:
- shard-snb: [PASS][176] -> [FAIL][177] ([i915#2122]) +7 other tests fail
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-snb2/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-snb1/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html
* igt@kms_flip@flip-vs-suspend@b-hdmi-a1:
- shard-snb: [PASS][178] -> [INCOMPLETE][179] ([i915#4839]) +1 other test incomplete
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-snb7/igt@kms_flip@flip-vs-suspend@b-hdmi-a1.html
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-snb2/igt@kms_flip@flip-vs-suspend@b-hdmi-a1.html
* igt@kms_flip@plain-flip-fb-recreate-interruptible:
- shard-tglu: [PASS][180] -> [FAIL][181] ([i915#2122]) +1 other test fail
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-tglu-2/igt@kms_flip@plain-flip-fb-recreate-interruptible.html
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-tglu-10/igt@kms_flip@plain-flip-fb-recreate-interruptible.html
* igt@kms_flip@wf_vblank-ts-check-interruptible:
- shard-dg1: [PASS][182] -> [FAIL][183] ([i915#2122])
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-dg1-17/igt@kms_flip@wf_vblank-ts-check-interruptible.html
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg1-13/igt@kms_flip@wf_vblank-ts-check-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling:
- shard-dg1: NOTRUN -> [SKIP][184] ([i915#2672] / [i915#3555])
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg1-19/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode:
- shard-dg1: NOTRUN -> [SKIP][185] ([i915#2587] / [i915#2672])
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg1-19/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling:
- shard-dg2: NOTRUN -> [SKIP][186] ([i915#2672] / [i915#3555])
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg2-8/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html
- shard-rkl: NOTRUN -> [SKIP][187] ([i915#2672] / [i915#3555])
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-rkl-3/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][188] ([i915#2672])
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-rkl-3/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling:
- shard-tglu: NOTRUN -> [SKIP][189] ([i915#2672] / [i915#3555])
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-tglu-8/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-tglu: NOTRUN -> [SKIP][190] ([i915#2587] / [i915#2672])
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-tglu-8/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][191] ([i915#2672]) +3 other tests skip
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg2-10/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling:
- shard-mtlp: NOTRUN -> [SKIP][192] ([i915#3555] / [i915#8813])
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][193] ([i915#3555] / [i915#8810])
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling:
- shard-dg2: NOTRUN -> [SKIP][194] ([i915#2672] / [i915#3555] / [i915#5190]) +2 other tests skip
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg2-8/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling.html
* igt@kms_flip_tiling@flip-change-tiling:
- shard-dg2: [PASS][195] -> [SKIP][196] ([i915#3555]) +3 other tests skip
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-dg2-5/igt@kms_flip_tiling@flip-change-tiling.html
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg2-2/igt@kms_flip_tiling@flip-change-tiling.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt:
- shard-dg2: [PASS][197] -> [FAIL][198] ([i915#6880]) +1 other test fail
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt.html
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-move:
- shard-tglu: NOTRUN -> [SKIP][199] +29 other tests skip
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-tglu-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-pwrite:
- shard-dg1: NOTRUN -> [SKIP][200] +28 other tests skip
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg1-16/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-blt:
- shard-mtlp: NOTRUN -> [SKIP][201] ([i915#1825]) +15 other tests skip
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-mtlp-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-farfromfence-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][202] ([i915#8708]) +2 other tests skip
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbc-farfromfence-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render:
- shard-dg2: [PASS][203] -> [SKIP][204] ([i915#5354]) +10 other tests skip
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render.html
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-mmap-cpu:
- shard-dg2: NOTRUN -> [SKIP][205] ([i915#10433] / [i915#3458])
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][206] ([i915#8708]) +10 other tests skip
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg2-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][207] ([i915#8708]) +13 other tests skip
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-move:
- shard-dg2: NOTRUN -> [SKIP][208] ([i915#5354]) +40 other tests skip
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@pipe-fbc-rte:
- shard-dg2: NOTRUN -> [SKIP][209] ([i915#9766])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg2-4/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt:
- shard-dg1: NOTRUN -> [SKIP][210] ([i915#3458]) +9 other tests skip
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg1-15/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-rte:
- shard-dg2: NOTRUN -> [SKIP][211] ([i915#3458]) +9 other tests skip
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-rte.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt:
- shard-rkl: NOTRUN -> [SKIP][212] ([i915#1825]) +14 other tests skip
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-render:
- shard-rkl: NOTRUN -> [SKIP][213] ([i915#3023]) +8 other tests skip
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-rgb565-draw-render.html
* igt@kms_hdr@bpc-switch-suspend:
- shard-tglu: NOTRUN -> [SKIP][214] ([i915#3555] / [i915#8228])
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-tglu-9/igt@kms_hdr@bpc-switch-suspend.html
- shard-dg1: NOTRUN -> [SKIP][215] ([i915#3555] / [i915#8228]) +1 other test skip
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg1-16/igt@kms_hdr@bpc-switch-suspend.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-dg2: NOTRUN -> [SKIP][216] ([i915#3555] / [i915#8228]) +1 other test skip
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg2-8/igt@kms_hdr@invalid-metadata-sizes.html
- shard-rkl: NOTRUN -> [SKIP][217] ([i915#3555] / [i915#8228]) +1 other test skip
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-rkl-2/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_joiner@basic-force-big-joiner:
- shard-dg2: [PASS][218] -> [SKIP][219] ([i915#12388])
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-dg2-10/igt@kms_joiner@basic-force-big-joiner.html
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg2-4/igt@kms_joiner@basic-force-big-joiner.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-dg2: NOTRUN -> [SKIP][220] ([i915#12339])
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg2-10/igt@kms_joiner@basic-ultra-joiner.html
- shard-dg1: NOTRUN -> [SKIP][221] ([i915#12339])
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg1-13/igt@kms_joiner@basic-ultra-joiner.html
- shard-mtlp: NOTRUN -> [SKIP][222] ([i915#12339])
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-mtlp-3/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_lease@lease-revoke:
- shard-dg2: NOTRUN -> [SKIP][223] ([i915#9197]) +20 other tests skip
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg2-2/igt@kms_lease@lease-revoke.html
* igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes:
- shard-dg2: NOTRUN -> [SKIP][224] +17 other tests skip
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg2-7/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html
* igt@kms_plane@plane-panning-bottom-right:
- shard-dg2: NOTRUN -> [SKIP][225] ([i915#8825])
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg2-2/igt@kms_plane@plane-panning-bottom-right.html
* igt@kms_plane@plane-position-covered:
- shard-dg2: [PASS][226] -> [SKIP][227] ([i915#8825])
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-dg2-5/igt@kms_plane@plane-position-covered.html
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg2-2/igt@kms_plane@plane-position-covered.html
* igt@kms_plane_alpha_blend@alpha-7efc:
- shard-dg2: [PASS][228] -> [SKIP][229] ([i915#7294])
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-dg2-5/igt@kms_plane_alpha_blend@alpha-7efc.html
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg2-2/igt@kms_plane_alpha_blend@alpha-7efc.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-rkl: [PASS][230] -> [FAIL][231] ([i915#8292])
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-rkl-7/igt@kms_plane_scaling@intel-max-src-size.html
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-rkl-3/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [FAIL][232] ([i915#8292])
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-rkl-3/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-2.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-c:
- shard-tglu: NOTRUN -> [SKIP][233] ([i915#12247]) +9 other tests skip
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-tglu-3/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-c.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers:
- shard-dg2: NOTRUN -> [SKIP][234] ([i915#3555] / [i915#8152] / [i915#9423])
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg2-2/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers@pipe-b:
- shard-dg2: NOTRUN -> [SKIP][235] ([i915#12247]) +8 other tests skip
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg2-2/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers@pipe-b.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers@pipe-d:
- shard-dg2: NOTRUN -> [SKIP][236] ([i915#8152])
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg2-2/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers@pipe-d.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation:
- shard-dg2: [PASS][237] -> [SKIP][238] ([i915#12247] / [i915#8152] / [i915#9423]) +1 other test skip
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-dg2-3/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation.html
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg2-2/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-b:
- shard-dg2: [PASS][239] -> [SKIP][240] ([i915#12247]) +11 other tests skip
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-dg2-3/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-b.html
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg2-2/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-b.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-d:
- shard-dg2: [PASS][241] -> [SKIP][242] ([i915#12247] / [i915#8152]) +3 other tests skip
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-dg2-3/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-d.html
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg2-2/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-d.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling:
- shard-dg2: NOTRUN -> [SKIP][243] ([i915#12247] / [i915#8152] / [i915#9423])
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-a:
- shard-rkl: NOTRUN -> [SKIP][244] ([i915#12247]) +2 other tests skip
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-rkl-5/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-a.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c:
- shard-mtlp: NOTRUN -> [SKIP][245] ([i915#12247]) +8 other tests skip
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-mtlp-3/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-c.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d:
- shard-dg2: NOTRUN -> [SKIP][246] ([i915#12247] / [i915#8152]) +1 other test skip
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d.html
- shard-dg1: NOTRUN -> [SKIP][247] ([i915#12247]) +12 other tests skip
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg1-13/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25:
- shard-dg1: NOTRUN -> [SKIP][248] ([i915#12247] / [i915#6953])
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg1-19/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html
* igt@kms_plane_scaling@planes-downscale-factor-0-75:
- shard-dg2: [PASS][249] -> [SKIP][250] ([i915#12247] / [i915#3555] / [i915#6953] / [i915#8152] / [i915#9423])
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-dg2-11/igt@kms_plane_scaling@planes-downscale-factor-0-75.html
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-75.html
* igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20:
- shard-dg2: [PASS][251] -> [SKIP][252] ([i915#12247] / [i915#3558] / [i915#8152] / [i915#9423])
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-dg2-1/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20.html
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-75-upscale-20x20.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25:
- shard-dg2: NOTRUN -> [SKIP][253] ([i915#12247] / [i915#3555] / [i915#8152] / [i915#9423])
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html
- shard-dg1: NOTRUN -> [SKIP][254] ([i915#12247] / [i915#3555])
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg1-18/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75:
- shard-mtlp: NOTRUN -> [SKIP][255] ([i915#12247] / [i915#3555] / [i915#6953])
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-mtlp-3/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html
* igt@kms_pm_backlight@bad-brightness:
- shard-rkl: NOTRUN -> [SKIP][256] ([i915#5354])
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-rkl-7/igt@kms_pm_backlight@bad-brightness.html
* igt@kms_pm_backlight@fade:
- shard-tglu: NOTRUN -> [SKIP][257] ([i915#9812])
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-tglu-7/igt@kms_pm_backlight@fade.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-dg2: NOTRUN -> [SKIP][258] ([i915#9685])
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg2-11/igt@kms_pm_dc@dc3co-vpb-simulation.html
- shard-dg1: NOTRUN -> [SKIP][259] ([i915#9685])
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg1-13/igt@kms_pm_dc@dc3co-vpb-simulation.html
- shard-mtlp: NOTRUN -> [SKIP][260] ([i915#9292])
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-mtlp-3/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_dc@dc6-dpms:
- shard-tglu: NOTRUN -> [FAIL][261] ([i915#9295])
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-tglu-9/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_dc@dc9-dpms:
- shard-rkl: NOTRUN -> [SKIP][262] ([i915#4281])
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-rkl-5/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-dg2: [PASS][263] -> [SKIP][264] ([i915#9340])
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-dg2-8/igt@kms_pm_lpsp@kms-lpsp.html
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg2-3/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_lpsp@screens-disabled:
- shard-dg2: NOTRUN -> [SKIP][265] ([i915#8430])
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg2-2/igt@kms_pm_lpsp@screens-disabled.html
- shard-rkl: NOTRUN -> [SKIP][266] ([i915#8430])
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-rkl-5/igt@kms_pm_lpsp@screens-disabled.html
* igt@kms_pm_rpm@drm-resources-equal:
- shard-dg2: NOTRUN -> [SKIP][267] ([i915#3547])
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg2-2/igt@kms_pm_rpm@drm-resources-equal.html
* igt@kms_pm_rpm@i2c:
- shard-dg2: [PASS][268] -> [SKIP][269]
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-dg2-3/igt@kms_pm_rpm@i2c.html
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg2-2/igt@kms_pm_rpm@i2c.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-dg2: NOTRUN -> [SKIP][270] ([i915#9519])
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg2-2/igt@kms_pm_rpm@modeset-lpsp.html
- shard-rkl: [PASS][271] -> [SKIP][272] ([i915#9519]) +1 other test skip
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-rkl-7/igt@kms_pm_rpm@modeset-lpsp.html
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-rkl-1/igt@kms_pm_rpm@modeset-lpsp.html
- shard-dg1: NOTRUN -> [SKIP][273] ([i915#9519])
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg1-18/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-dg2: [PASS][274] -> [SKIP][275] ([i915#9519]) +1 other test skip
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-dg2-4/igt@kms_pm_rpm@modeset-lpsp-stress.html
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg2-6/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-mtlp: NOTRUN -> [SKIP][276] ([i915#9519])
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-mtlp-2/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_prime@d3hot:
- shard-dg2: NOTRUN -> [SKIP][277] ([i915#6524] / [i915#6805])
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg2-8/igt@kms_prime@d3hot.html
- shard-dg1: NOTRUN -> [SKIP][278] ([i915#6524])
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg1-16/igt@kms_prime@d3hot.html
* igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area:
- shard-rkl: NOTRUN -> [SKIP][279] ([i915#11520]) +3 other tests skip
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-rkl-1/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf:
- shard-dg2: NOTRUN -> [SKIP][280] ([i915#11520]) +4 other tests skip
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg2-2/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area:
- shard-mtlp: NOTRUN -> [SKIP][281] ([i915#12316])
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-mtlp-6/igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html
- shard-snb: NOTRUN -> [SKIP][282] ([i915#11520]) +1 other test skip
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-snb6/igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf:
- shard-tglu: NOTRUN -> [SKIP][283] ([i915#11520]) +2 other tests skip
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-tglu-6/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area:
- shard-dg1: NOTRUN -> [SKIP][284] ([i915#11520]) +2 other tests skip
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg1-17/igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-dg2: NOTRUN -> [SKIP][285] ([i915#9683])
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg2-2/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr@fbc-psr-cursor-plane-onoff:
- shard-tglu: NOTRUN -> [SKIP][286] ([i915#9732]) +7 other tests skip
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-tglu-8/igt@kms_psr@fbc-psr-cursor-plane-onoff.html
* igt@kms_psr@fbc-psr-primary-page-flip:
- shard-dg2: NOTRUN -> [SKIP][287] ([i915#1072] / [i915#9732]) +16 other tests skip
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg2-8/igt@kms_psr@fbc-psr-primary-page-flip.html
- shard-dg1: NOTRUN -> [SKIP][288] ([i915#1072] / [i915#9732]) +15 other tests skip
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg1-16/igt@kms_psr@fbc-psr-primary-page-flip.html
* igt@kms_psr@fbc-psr2-primary-mmap-cpu:
- shard-mtlp: NOTRUN -> [SKIP][289] ([i915#9688]) +11 other tests skip
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-mtlp-3/igt@kms_psr@fbc-psr2-primary-mmap-cpu.html
* igt@kms_psr@psr-suspend:
- shard-rkl: NOTRUN -> [SKIP][290] ([i915#1072] / [i915#9732]) +8 other tests skip
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-rkl-3/igt@kms_psr@psr-suspend.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-270:
- shard-dg2: NOTRUN -> [SKIP][291] ([i915#11131] / [i915#5190])
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg2-1/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html
- shard-mtlp: NOTRUN -> [SKIP][292] ([i915#11131])
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-mtlp-2/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-dg1: NOTRUN -> [SKIP][293] ([i915#5289])
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg1-15/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
- shard-mtlp: NOTRUN -> [SKIP][294] ([i915#5289])
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-mtlp-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_free:
- shard-dg2: NOTRUN -> [ABORT][295] ([i915#12231]) +1 other test abort
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg2-3/igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_free.html
* igt@kms_setmode@invalid-clone-single-crtc:
- shard-dg2: NOTRUN -> [SKIP][296] ([i915#3555]) +2 other tests skip
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg2-10/igt@kms_setmode@invalid-clone-single-crtc.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-tglu: NOTRUN -> [SKIP][297] ([i915#8623])
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-tglu-9/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_universal_plane@cursor-fb-leak:
- shard-mtlp: [PASS][298] -> [FAIL][299] ([i915#9196]) +1 other test fail
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-mtlp-5/igt@kms_universal_plane@cursor-fb-leak.html
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-mtlp-1/igt@kms_universal_plane@cursor-fb-leak.html
* igt@kms_vrr@flip-dpms:
- shard-rkl: NOTRUN -> [SKIP][300] ([i915#3555]) +1 other test skip
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-rkl-1/igt@kms_vrr@flip-dpms.html
* igt@kms_vrr@lobf:
- shard-dg2: NOTRUN -> [SKIP][301] ([i915#11920])
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg2-4/igt@kms_vrr@lobf.html
- shard-dg1: NOTRUN -> [SKIP][302] ([i915#11920])
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg1-19/igt@kms_vrr@lobf.html
* igt@kms_vrr@seamless-rr-switch-virtual:
- shard-dg2: NOTRUN -> [SKIP][303] ([i915#9906])
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg2-10/igt@kms_vrr@seamless-rr-switch-virtual.html
- shard-rkl: NOTRUN -> [SKIP][304] ([i915#9906])
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-rkl-4/igt@kms_vrr@seamless-rr-switch-virtual.html
- shard-dg1: NOTRUN -> [SKIP][305] ([i915#9906])
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg1-19/igt@kms_vrr@seamless-rr-switch-virtual.html
- shard-tglu: NOTRUN -> [SKIP][306] ([i915#9906])
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-tglu-6/igt@kms_vrr@seamless-rr-switch-virtual.html
- shard-mtlp: NOTRUN -> [SKIP][307] ([i915#8808] / [i915#9906])
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-mtlp-1/igt@kms_vrr@seamless-rr-switch-virtual.html
* igt@kms_writeback@writeback-invalid-parameters:
- shard-dg1: NOTRUN -> [SKIP][308] ([i915#2437])
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg1-12/igt@kms_writeback@writeback-invalid-parameters.html
- shard-mtlp: NOTRUN -> [SKIP][309] ([i915#2437])
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-mtlp-8/igt@kms_writeback@writeback-invalid-parameters.html
- shard-dg2: NOTRUN -> [SKIP][310] ([i915#2437])
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg2-6/igt@kms_writeback@writeback-invalid-parameters.html
* igt@perf_pmu@all-busy-idle-check-all:
- shard-dg2: [PASS][311] -> [FAIL][312] ([i915#11943])
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-dg2-3/igt@perf_pmu@all-busy-idle-check-all.html
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg2-8/igt@perf_pmu@all-busy-idle-check-all.html
- shard-mtlp: [PASS][313] -> [FAIL][314] ([i915#11943])
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-mtlp-8/igt@perf_pmu@all-busy-idle-check-all.html
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-mtlp-7/igt@perf_pmu@all-busy-idle-check-all.html
* igt@perf_pmu@busy-accuracy-98@rcs0:
- shard-rkl: [PASS][315] -> [FAIL][316] ([i915#4349]) +1 other test fail
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-rkl-5/igt@perf_pmu@busy-accuracy-98@rcs0.html
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-rkl-2/igt@perf_pmu@busy-accuracy-98@rcs0.html
* igt@perf_pmu@busy-double-start@vecs1:
- shard-dg2: [PASS][317] -> [FAIL][318] ([i915#4349]) +4 other tests fail
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-dg2-11/igt@perf_pmu@busy-double-start@vecs1.html
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg2-10/igt@perf_pmu@busy-double-start@vecs1.html
* igt@perf_pmu@rc6-all-gts:
- shard-dg2: NOTRUN -> [SKIP][319] ([i915#8516])
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg2-8/igt@perf_pmu@rc6-all-gts.html
- shard-dg1: NOTRUN -> [SKIP][320] ([i915#8516])
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg1-18/igt@perf_pmu@rc6-all-gts.html
* igt@prime_vgem@basic-gtt:
- shard-mtlp: NOTRUN -> [SKIP][321] ([i915#3708] / [i915#4077]) +1 other test skip
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-mtlp-2/igt@prime_vgem@basic-gtt.html
* igt@prime_vgem@coherency-gtt:
- shard-dg2: NOTRUN -> [SKIP][322] ([i915#3708] / [i915#4077])
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg2-10/igt@prime_vgem@coherency-gtt.html
- shard-rkl: NOTRUN -> [SKIP][323] ([i915#3708]) +2 other tests skip
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-rkl-2/igt@prime_vgem@coherency-gtt.html
- shard-dg1: NOTRUN -> [SKIP][324] ([i915#3708] / [i915#4077]) +1 other test skip
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg1-12/igt@prime_vgem@coherency-gtt.html
* igt@prime_vgem@fence-read-hang:
- shard-dg2: NOTRUN -> [SKIP][325] ([i915#3708])
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg2-3/igt@prime_vgem@fence-read-hang.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- shard-dg2: NOTRUN -> [SKIP][326] ([i915#9917])
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg2-3/igt@sriov_basic@enable-vfs-autoprobe-off.html
#### Possible fixes ####
* igt@gem_ctx_engines@invalid-engines:
- shard-mtlp: [FAIL][327] ([i915#12027] / [i915#12031]) -> [PASS][328]
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-mtlp-5/igt@gem_ctx_engines@invalid-engines.html
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-mtlp-4/igt@gem_ctx_engines@invalid-engines.html
* igt@gem_ctx_persistence@hostile:
- shard-tglu: [FAIL][329] ([i915#11980]) -> [PASS][330]
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-tglu-2/igt@gem_ctx_persistence@hostile.html
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-tglu-10/igt@gem_ctx_persistence@hostile.html
* igt@gem_eio@kms:
- shard-dg2: [FAIL][331] ([i915#5784]) -> [PASS][332]
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-dg2-6/igt@gem_eio@kms.html
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg2-6/igt@gem_eio@kms.html
* igt@gem_exec_big@single:
- shard-tglu: [ABORT][333] ([i915#11713]) -> [PASS][334]
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-tglu-2/igt@gem_exec_big@single.html
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-tglu-10/igt@gem_exec_big@single.html
* igt@gem_exec_fair@basic-none-share:
- shard-rkl: [FAIL][335] ([i915#2842]) -> [PASS][336] +1 other test pass
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-rkl-5/igt@gem_exec_fair@basic-none-share.html
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-rkl-7/igt@gem_exec_fair@basic-none-share.html
* igt@gem_exec_suspend@basic-s0:
- shard-dg2: [INCOMPLETE][337] ([i915#11441]) -> [PASS][338] +1 other test pass
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-dg2-5/igt@gem_exec_suspend@basic-s0.html
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg2-8/igt@gem_exec_suspend@basic-s0.html
* igt@gem_exec_suspend@basic-s4-devices:
- shard-dg2: [ABORT][339] ([i915#7975] / [i915#8213]) -> [PASS][340] +1 other test pass
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-dg2-10/igt@gem_exec_suspend@basic-s4-devices.html
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg2-11/igt@gem_exec_suspend@basic-s4-devices.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-snb: [ABORT][341] ([i915#9820]) -> [PASS][342]
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-snb6/igt@i915_module_load@reload-with-fault-injection.html
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-snb2/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_rps@reset:
- shard-dg2: [FAIL][343] -> [PASS][344]
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-dg2-2/igt@i915_pm_rps@reset.html
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg2-11/igt@i915_pm_rps@reset.html
- shard-dg1: [FAIL][345] -> [PASS][346]
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-dg1-17/igt@i915_pm_rps@reset.html
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg1-13/igt@i915_pm_rps@reset.html
* igt@kms_busy@extended-modeset-hang-oldfb:
- shard-dg2: [SKIP][347] ([i915#9197]) -> [PASS][348] +9 other tests pass
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-dg2-2/igt@kms_busy@extended-modeset-hang-oldfb.html
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg2-11/igt@kms_busy@extended-modeset-hang-oldfb.html
* igt@kms_cursor_crc@cursor-suspend:
- shard-mtlp: [INCOMPLETE][349] ([i915#12358]) -> [PASS][350] +1 other test pass
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-mtlp-6/igt@kms_cursor_crc@cursor-suspend.html
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-mtlp-6/igt@kms_cursor_crc@cursor-suspend.html
* igt@kms_dither@fb-8bpc-vs-panel-8bpc:
- shard-dg2: [SKIP][351] ([i915#3555]) -> [PASS][352] +2 other tests pass
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-dg2-11/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg2-10/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html
* igt@kms_flip@2x-plain-flip-fb-recreate@ab-vga1-hdmi-a1:
- shard-snb: [FAIL][353] ([i915#2122]) -> [PASS][354] +3 other tests pass
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-snb2/igt@kms_flip@2x-plain-flip-fb-recreate@ab-vga1-hdmi-a1.html
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-snb6/igt@kms_flip@2x-plain-flip-fb-recreate@ab-vga1-hdmi-a1.html
* igt@kms_flip@blocking-wf_vblank:
- shard-mtlp: [FAIL][355] ([i915#2122]) -> [PASS][356] +1 other test pass
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-mtlp-1/igt@kms_flip@blocking-wf_vblank.html
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-mtlp-5/igt@kms_flip@blocking-wf_vblank.html
- shard-rkl: [FAIL][357] ([i915#11961] / [i915#2122]) -> [PASS][358]
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-rkl-7/igt@kms_flip@blocking-wf_vblank.html
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-rkl-3/igt@kms_flip@blocking-wf_vblank.html
* igt@kms_flip@flip-vs-rmfb-interruptible:
- shard-dg2: [SKIP][359] ([i915#5354]) -> [PASS][360] +5 other tests pass
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-dg2-2/igt@kms_flip@flip-vs-rmfb-interruptible.html
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg2-8/igt@kms_flip@flip-vs-rmfb-interruptible.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-dg1: [ABORT][361] ([i915#4423]) -> [PASS][362] +1 other test pass
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-dg1-14/igt@kms_flip@flip-vs-suspend-interruptible.html
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg1-15/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip@plain-flip-ts-check-interruptible:
- shard-snb: [INCOMPLETE][363] -> [PASS][364] +1 other test pass
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-snb4/igt@kms_flip@plain-flip-ts-check-interruptible.html
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-snb6/igt@kms_flip@plain-flip-ts-check-interruptible.html
- shard-tglu: [FAIL][365] ([i915#2122]) -> [PASS][366] +1 other test pass
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-tglu-7/igt@kms_flip@plain-flip-ts-check-interruptible.html
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-tglu-7/igt@kms_flip@plain-flip-ts-check-interruptible.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-pwrite:
- shard-dg1: [DMESG-WARN][367] ([i915#4423]) -> [PASS][368]
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-dg1-12/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-pwrite.html
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg1-19/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt:
- shard-snb: [SKIP][369] -> [PASS][370] +2 other tests pass
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-snb1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-snb1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html
* igt@kms_joiner@invalid-modeset-force-big-joiner:
- shard-dg2: [SKIP][371] ([i915#12388]) -> [PASS][372]
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-dg2-7/igt@kms_joiner@invalid-modeset-force-big-joiner.html
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg2-10/igt@kms_joiner@invalid-modeset-force-big-joiner.html
* igt@kms_plane_alpha_blend@alpha-basic:
- shard-dg2: [SKIP][373] ([i915#7294]) -> [PASS][374]
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-dg2-2/igt@kms_plane_alpha_blend@alpha-basic.html
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg2-11/igt@kms_plane_alpha_blend@alpha-basic.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats:
- shard-dg2: [SKIP][375] ([i915#3555] / [i915#8152] / [i915#9423]) -> [PASS][376]
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-dg2-2/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats.html
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg2-8/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-d:
- shard-dg2: [SKIP][377] ([i915#8152]) -> [PASS][378]
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-dg2-2/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-d.html
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg2-8/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-d.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5:
- shard-dg2: [SKIP][379] ([i915#12247] / [i915#6953] / [i915#8152] / [i915#9423]) -> [PASS][380]
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg2-11/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a:
- shard-dg2: [SKIP][381] ([i915#12247]) -> [PASS][382] +5 other tests pass
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a.html
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg2-11/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-d:
- shard-dg2: [SKIP][383] ([i915#12247] / [i915#8152]) -> [PASS][384]
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-d.html
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg2-11/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-d.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-dg2: [SKIP][385] ([i915#9519]) -> [PASS][386]
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-dg2-8/igt@kms_pm_rpm@modeset-non-lpsp.html
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg2-3/igt@kms_pm_rpm@modeset-non-lpsp.html
- shard-rkl: [SKIP][387] ([i915#9519]) -> [PASS][388] +1 other test pass
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-rkl-7/igt@kms_pm_rpm@modeset-non-lpsp.html
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-rkl-5/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_properties@plane-properties-legacy:
- shard-dg2: [SKIP][389] ([i915#11521]) -> [PASS][390]
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-dg2-2/igt@kms_properties@plane-properties-legacy.html
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg2-4/igt@kms_properties@plane-properties-legacy.html
* igt@kms_setmode@basic:
- shard-snb: [FAIL][391] ([i915#5465]) -> [PASS][392] +2 other tests pass
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-snb1/igt@kms_setmode@basic.html
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-snb5/igt@kms_setmode@basic.html
* igt@perf_pmu@most-busy-idle-check-all:
- shard-dg2: [FAIL][393] ([i915#11943]) -> [PASS][394] +1 other test pass
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-dg2-4/igt@perf_pmu@most-busy-idle-check-all.html
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg2-10/igt@perf_pmu@most-busy-idle-check-all.html
- shard-dg1: [FAIL][395] ([i915#11943]) -> [PASS][396] +1 other test pass
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-dg1-18/igt@perf_pmu@most-busy-idle-check-all.html
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg1-13/igt@perf_pmu@most-busy-idle-check-all.html
- shard-mtlp: [FAIL][397] ([i915#11943]) -> [PASS][398] +1 other test pass
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-mtlp-6/igt@perf_pmu@most-busy-idle-check-all.html
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-mtlp-3/igt@perf_pmu@most-busy-idle-check-all.html
#### Warnings ####
* igt@i915_module_load@reload-with-fault-injection:
- shard-mtlp: [ABORT][399] ([i915#10131] / [i915#10887] / [i915#9697]) -> [ABORT][400] ([i915#10131])
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-mtlp-8/igt@i915_module_load@reload-with-fault-injection.html
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-mtlp-5/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pipe_stress@stress-xrgb8888-ytiled:
- shard-dg2: [SKIP][401] ([i915#7091]) -> [SKIP][402] ([i915#9197])
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-dg2-1/igt@i915_pipe_stress@stress-xrgb8888-ytiled.html
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg2-2/igt@i915_pipe_stress@stress-xrgb8888-ytiled.html
* igt@i915_selftest@mock:
- shard-snb: [DMESG-WARN][403] ([i915#9311]) -> [ABORT][404] ([i915#12450])
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-snb4/igt@i915_selftest@mock.html
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-snb6/igt@i915_selftest@mock.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-90:
- shard-dg2: [SKIP][405] ([i915#9197]) -> [SKIP][406] +1 other test skip
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-dg2-2/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg2-8/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-90:
- shard-dg2: [SKIP][407] -> [SKIP][408] ([i915#9197]) +3 other tests skip
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-dg2-8/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg2-2/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-90:
- shard-dg2: [SKIP][409] ([i915#5190] / [i915#9197]) -> [SKIP][410] ([i915#4538] / [i915#5190]) +1 other test skip
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-dg2-2/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg2-3/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-0:
- shard-dg2: [SKIP][411] ([i915#4538] / [i915#5190]) -> [SKIP][412] ([i915#5190] / [i915#9197]) +10 other tests skip
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-dg2-7/igt@kms_big_fb@yf-tiled-16bpp-rotate-0.html
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg2-2/igt@kms_big_fb@yf-tiled-16bpp-rotate-0.html
* igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc:
- shard-dg2: [SKIP][413] ([i915#9197]) -> [SKIP][414] ([i915#10307] / [i915#6095]) +2 other tests skip
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-dg2-2/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc.html
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg2-4/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc:
- shard-dg2: [SKIP][415] ([i915#10307] / [i915#6095]) -> [SKIP][416] ([i915#9197]) +8 other tests skip
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-dg2-1/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc.html
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg2-2/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_content_protection@atomic-dpms:
- shard-dg2: [SKIP][417] ([i915#7118] / [i915#9424]) -> [SKIP][418] ([i915#9197])
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-dg2-5/igt@kms_content_protection@atomic-dpms.html
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg2-2/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-dg2: [SKIP][419] ([i915#3299]) -> [SKIP][420] ([i915#9197])
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-dg2-1/igt@kms_content_protection@dp-mst-type-1.html
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg2-2/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@mei-interface:
- shard-snb: [INCOMPLETE][421] ([i915#9878]) -> [SKIP][422]
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-snb2/igt@kms_content_protection@mei-interface.html
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-snb2/igt@kms_content_protection@mei-interface.html
* igt@kms_cursor_crc@cursor-random-32x10:
- shard-dg2: [SKIP][423] ([i915#3555]) -> [SKIP][424] ([i915#9197]) +1 other test skip
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-dg2-11/igt@kms_cursor_crc@cursor-random-32x10.html
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg2-2/igt@kms_cursor_crc@cursor-random-32x10.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions:
- shard-dg2: [SKIP][425] ([i915#5354]) -> [SKIP][426] ([i915#9197])
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-dg2-10/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
[426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg2-2/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
* igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot:
- shard-dg2: [SKIP][427] ([i915#9067]) -> [SKIP][428] ([i915#9197])
[427]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-dg2-1/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
[428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg2-2/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
* igt@kms_draw_crc@draw-method-mmap-wc:
- shard-dg2: [SKIP][429] ([i915#8812]) -> [SKIP][430] ([i915#9197])
[429]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-dg2-8/igt@kms_draw_crc@draw-method-mmap-wc.html
[430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg2-2/igt@kms_draw_crc@draw-method-mmap-wc.html
* igt@kms_dsc@dsc-with-formats:
- shard-dg2: [SKIP][431] ([i915#3555] / [i915#3840]) -> [SKIP][432] ([i915#9197])
[431]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-dg2-7/igt@kms_dsc@dsc-with-formats.html
[432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg2-2/igt@kms_dsc@dsc-with-formats.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling:
- shard-dg2: [SKIP][433] ([i915#2672] / [i915#3555] / [i915#5190]) -> [SKIP][434] ([i915#3555] / [i915#5190]) +1 other test skip
[433]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-dg2-11/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html
[434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg2-2/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling:
- shard-dg2: [SKIP][435] ([i915#2672] / [i915#3555]) -> [SKIP][436] ([i915#3555]) +1 other test skip
[435]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-dg2-11/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
[436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg2-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu:
- shard-dg2: [SKIP][437] ([i915#3458]) -> [SKIP][438] ([i915#5354]) +12 other tests skip
[437]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-dg2-10/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html
[438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-pwrite:
- shard-dg2: [SKIP][439] ([i915#5354]) -> [SKIP][440] ([i915#3458]) +4 other tests skip
[439]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-pwrite.html
[440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg2-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt:
- shard-dg2: [SKIP][441] ([i915#10433] / [i915#3458]) -> [SKIP][442] ([i915#5354])
[441]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html
[442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc:
- shard-dg2: [SKIP][443] ([i915#8708]) -> [SKIP][444] ([i915#5354]) +13 other tests skip
[443]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc.html
[444]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-cpu:
- shard-dg1: [SKIP][445] ([i915#3458] / [i915#4423]) -> [SKIP][446] ([i915#3458])
[445]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-cpu.html
[446]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg1-15/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-pwrite:
- shard-dg2: [SKIP][447] ([i915#10433] / [i915#3458]) -> [SKIP][448] ([i915#3458]) +2 other tests skip
[447]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-pwrite.html
[448]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt:
- shard-dg2: [SKIP][449] ([i915#3458]) -> [SKIP][450] ([i915#10433] / [i915#3458]) +3 other tests skip
[449]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt.html
[450]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-farfromfence-mmap-gtt:
- shard-dg2: [SKIP][451] ([i915#5354]) -> [SKIP][452] ([i915#8708]) +3 other tests skip
[451]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-dg2-2/igt@kms_frontbuffer_tracking@psr-farfromfence-mmap-gtt.html
[452]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg2-10/igt@kms_frontbuffer_tracking@psr-farfromfence-mmap-gtt.html
* igt@kms_hdr@static-toggle:
- shard-dg2: [SKIP][453] ([i915#3555] / [i915#8228]) -> [SKIP][454] ([i915#9197])
[453]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-dg2-4/igt@kms_hdr@static-toggle.html
[454]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg2-2/igt@kms_hdr@static-toggle.html
* igt@kms_joiner@basic-force-big-joiner:
- shard-dg1: [SKIP][455] ([i915#12388] / [i915#4423]) -> [SKIP][456] ([i915#12388])
[455]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_15561/shard-dg1-12/igt@kms_joiner@basic-force-big-joiner.html
[456]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/shard-dg1-12/igt@kms_joiner@basic-force-big-joiner.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-dg2: [SKIP][457] ([i915#6301]) -> [SKIP][458] ([i915#9197])
[457]: https:/
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11938/index.html
[-- Attachment #2: Type: text/html, Size: 108526 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
* ✗ CI.xeFULL: failure for tests/xe_exec_reset: Add readout of devcoredump (rev2)
2024-10-18 17:38 [PATCH] tests/xe_exec_reset: Add readout of devcoredump Maarten Lankhorst
` (2 preceding siblings ...)
2024-10-18 19:29 ` ✗ Fi.CI.IGT: failure " Patchwork
@ 2024-10-19 10:26 ` Patchwork
2024-10-24 15:30 ` [PATCH] tests/xe_exec_reset: Add readout of devcoredump Kamil Konieczny
4 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2024-10-19 10:26 UTC (permalink / raw)
To: Maarten Lankhorst; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 65209 bytes --]
== Series Details ==
Series: tests/xe_exec_reset: Add readout of devcoredump (rev2)
URL : https://patchwork.freedesktop.org/series/136133/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8080_full -> XEIGTPW_11938_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_11938_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_11938_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_11938_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_pm_rpm@i2c:
- shard-lnl: [PASS][1] -> [DMESG-WARN][2] +2 other tests dmesg-warn
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-lnl-6/igt@kms_pm_rpm@i2c.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-lnl-6/igt@kms_pm_rpm@i2c.html
* igt@xe_exec_reset@cm-cat-error:
- shard-lnl: [PASS][3] -> [DMESG-FAIL][4]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-lnl-7/igt@xe_exec_reset@cm-cat-error.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-lnl-7/igt@xe_exec_reset@cm-cat-error.html
* igt@xe_exec_reset@spin:
- shard-dg2-set2: [PASS][5] -> [FAIL][6] +2 other tests fail
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-432/igt@xe_exec_reset@spin.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-dg2-433/igt@xe_exec_reset@spin.html
- shard-lnl: [PASS][7] -> [FAIL][8] +3 other tests fail
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-lnl-3/igt@xe_exec_reset@spin.html
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-lnl-8/igt@xe_exec_reset@spin.html
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* igt@kms_big_fb@linear-16bpp-rotate-270:
- {shard-bmg}: [SKIP][9] ([Intel XE#2327]) -> [SKIP][10]
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-5/igt@kms_big_fb@linear-16bpp-rotate-270.html
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-bmg-5/igt@kms_big_fb@linear-16bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
- {shard-bmg}: [SKIP][11] ([Intel XE#1124]) -> [SKIP][12]
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-bmg-5/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
* igt@kms_chamelium_color@gamma:
- {shard-bmg}: [SKIP][13] ([Intel XE#2325]) -> [SKIP][14]
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-1/igt@kms_chamelium_color@gamma.html
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-bmg-5/igt@kms_chamelium_color@gamma.html
* igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode:
- {shard-bmg}: [SKIP][15] ([Intel XE#2252]) -> [SKIP][16]
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode.html
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-bmg-5/igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-msflip-blt:
- {shard-bmg}: [SKIP][17] ([Intel XE#2313]) -> [SKIP][18]
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-msflip-blt.html
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-msflip-blt.html
* igt@kms_pipe_crc_basic@disable-crc-after-crtc:
- {shard-bmg}: [PASS][19] -> [SKIP][20] +8 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-7/igt@kms_pipe_crc_basic@disable-crc-after-crtc.html
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-bmg-5/igt@kms_pipe_crc_basic@disable-crc-after-crtc.html
* igt@kms_plane_lowres@tiling-4@pipe-c-hdmi-a-3:
- {shard-bmg}: [PASS][21] -> [INCOMPLETE][22] +2 other tests incomplete
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-5/igt@kms_plane_lowres@tiling-4@pipe-c-hdmi-a-3.html
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-bmg-7/igt@kms_plane_lowres@tiling-4@pipe-c-hdmi-a-3.html
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation:
- {shard-bmg}: [DMESG-WARN][23] -> [SKIP][24]
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-8/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation.html
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-bmg-5/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers:
- {shard-bmg}: [SKIP][25] ([Intel XE#3007]) -> [DMESG-WARN][26]
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers.html
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-bmg-8/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-modifiers.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers:
- {shard-bmg}: [SKIP][27] -> [DMESG-WARN][28]
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-8/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers.html
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-bmg-4/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-c:
- {shard-bmg}: NOTRUN -> [DMESG-WARN][29] +11 other tests dmesg-warn
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-bmg-4/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers@pipe-c.html
* igt@kms_psr@psr-primary-render:
- {shard-bmg}: [SKIP][30] ([Intel XE#2234] / [Intel XE#2850]) -> [SKIP][31] +1 other test skip
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@kms_psr@psr-primary-render.html
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-bmg-5/igt@kms_psr@psr-primary-render.html
* igt@kms_writeback@writeback-invalid-parameters:
- {shard-bmg}: [SKIP][32] ([Intel XE#756]) -> [SKIP][33]
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-2/igt@kms_writeback@writeback-invalid-parameters.html
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-bmg-5/igt@kms_writeback@writeback-invalid-parameters.html
* igt@xe_exec_reset@cm-gt-reset:
- {shard-bmg}: [PASS][34] -> [DMESG-FAIL][35]
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@xe_exec_reset@cm-gt-reset.html
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-bmg-5/igt@xe_exec_reset@cm-gt-reset.html
* igt@xe_exec_reset@spin-signaled:
- {shard-bmg}: [PASS][36] -> [FAIL][37] +4 other tests fail
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-7/igt@xe_exec_reset@spin-signaled.html
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-bmg-4/igt@xe_exec_reset@spin-signaled.html
* igt@xe_oa@unprivileged-single-ctx-counters:
- {shard-bmg}: [SKIP][38] ([Intel XE#2248]) -> [SKIP][39]
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@xe_oa@unprivileged-single-ctx-counters.html
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-bmg-5/igt@xe_oa@unprivileged-single-ctx-counters.html
Known issues
------------
Here are the changes found in XEIGTPW_11938_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_async_flips@invalid-async-flip:
- shard-dg2-set2: NOTRUN -> [SKIP][40] ([Intel XE#873])
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-dg2-436/igt@kms_async_flips@invalid-async-flip.html
* igt@kms_big_fb@linear-32bpp-rotate-270:
- shard-dg2-set2: NOTRUN -> [SKIP][41] ([Intel XE#2890]) +3 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-dg2-434/igt@kms_big_fb@linear-32bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-90:
- shard-dg2-set2: NOTRUN -> [SKIP][42] ([Intel XE#316]) +2 other tests skip
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-dg2-463/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-0:
- shard-dg2-set2: NOTRUN -> [SKIP][43] ([Intel XE#1124]) +4 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-dg2-464/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html
* igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p:
- shard-dg2-set2: NOTRUN -> [SKIP][44] ([Intel XE#367]) +1 other test skip
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-dg2-466/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs@pipe-b-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][45] ([Intel XE#787]) +41 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-dg2-436/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs@pipe-b-dp-4.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][46] ([Intel XE#2907]) +1 other test skip
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-dg2-433/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs:
- shard-dg2-set2: [PASS][47] -> [INCOMPLETE][48] ([Intel XE#1195] / [Intel XE#1727] / [Intel XE#2692])
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
- shard-dg2-set2: [PASS][49] -> [INCOMPLETE][50] ([Intel XE#1195] / [Intel XE#1727])
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-dp-4:
- shard-dg2-set2: [PASS][51] -> [INCOMPLETE][52] ([Intel XE#1195] / [Intel XE#3113]) +1 other test incomplete
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-dp-4.html
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-dp-4.html
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc:
- shard-dg2-set2: NOTRUN -> [SKIP][53] ([Intel XE#455] / [Intel XE#787]) +11 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_cdclk@mode-transition@pipe-d-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][54] ([Intel XE#314]) +3 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-dg2-434/igt@kms_cdclk@mode-transition@pipe-d-dp-4.html
* igt@kms_cdclk@plane-scaling@pipe-b-dp-4:
- shard-dg2-set2: NOTRUN -> [SKIP][55] ([Intel XE#1152]) +3 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-dg2-434/igt@kms_cdclk@plane-scaling@pipe-b-dp-4.html
* igt@kms_chamelium_color@gamma:
- shard-dg2-set2: NOTRUN -> [SKIP][56] ([Intel XE#306]) +1 other test skip
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-dg2-433/igt@kms_chamelium_color@gamma.html
* igt@kms_chamelium_hpd@hdmi-hpd:
- shard-dg2-set2: NOTRUN -> [SKIP][57] ([Intel XE#373]) +5 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-dg2-463/igt@kms_chamelium_hpd@hdmi-hpd.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-dg2-set2: NOTRUN -> [SKIP][58] ([Intel XE#307])
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-dg2-466/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_dp_aux_dev:
- shard-dg2-set2: [PASS][59] -> [SKIP][60] ([Intel XE#2423])
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-464/igt@kms_dp_aux_dev.html
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-dg2-434/igt@kms_dp_aux_dev.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-dg2-set2: NOTRUN -> [SKIP][61] ([Intel XE#776])
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-dg2-463/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@display-4x:
- shard-dg2-set2: NOTRUN -> [SKIP][62] ([Intel XE#1138])
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-dg2-435/igt@kms_feature_discovery@display-4x.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4:
- shard-dg2-set2: [PASS][63] -> [FAIL][64] ([Intel XE#301]) +4 other tests fail
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-434/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4.html
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-dg2-436/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@cd-hdmi-a6-dp4.html
* igt@kms_flip@plain-flip-ts-check@c-edp1:
- shard-lnl: [PASS][65] -> [FAIL][66] ([Intel XE#886]) +2 other tests fail
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-lnl-3/igt@kms_flip@plain-flip-ts-check@c-edp1.html
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-lnl-4/igt@kms_flip@plain-flip-ts-check@c-edp1.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling:
- shard-dg2-set2: NOTRUN -> [SKIP][67] ([Intel XE#455]) +10 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-dg2-463/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
* igt@kms_flip_tiling@flip-change-tiling@pipe-c-edp-1-linear-to-x:
- shard-lnl: [PASS][68] -> [FAIL][69] ([Intel XE#1491]) +1 other test fail
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-lnl-8/igt@kms_flip_tiling@flip-change-tiling@pipe-c-edp-1-linear-to-x.html
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-lnl-4/igt@kms_flip_tiling@flip-change-tiling@pipe-c-edp-1-linear-to-x.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-onoff:
- shard-dg2-set2: NOTRUN -> [SKIP][70] ([Intel XE#651]) +17 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-dg2-433/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-onoff:
- shard-dg2-set2: [PASS][71] -> [SKIP][72] ([Intel XE#2351] / [Intel XE#2890]) +2 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-434/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-onoff.html
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-dg2-434/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-plflip-blt:
- shard-dg2-set2: [PASS][73] -> [SKIP][74] ([Intel XE#2890]) +5 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-435/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-plflip-blt.html
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-dg2-434/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-pgflip-blt:
- shard-dg2-set2: NOTRUN -> [SKIP][75] ([Intel XE#653]) +17 other tests skip
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-dg2-433/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-pgflip-blt.html
* igt@kms_getfb@getfb-reject-ccs:
- shard-dg2-set2: NOTRUN -> [SKIP][76] ([Intel XE#605])
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-dg2-433/igt@kms_getfb@getfb-reject-ccs.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-dg2-set2: NOTRUN -> [SKIP][77] ([Intel XE#2423] / [i915#2575]) +2 other tests skip
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-dg2-434/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format:
- shard-dg2-set2: NOTRUN -> [SKIP][78] ([Intel XE#2763] / [Intel XE#455]) +1 other test skip
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-dg2-434/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html
* igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b:
- shard-dg2-set2: NOTRUN -> [SKIP][79] ([Intel XE#2763]) +2 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-dg2-434/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers:
- shard-dg2-set2: [PASS][80] -> [SKIP][81] ([Intel XE#2423] / [i915#2575]) +15 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-463/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers.html
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-dg2-434/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers.html
* igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-dg2-set2: [PASS][82] -> [SKIP][83] ([Intel XE#2446])
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-466/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-dg2-434/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf:
- shard-dg2-set2: NOTRUN -> [SKIP][84] ([Intel XE#1489]) +4 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-dg2-436/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-dg2-set2: NOTRUN -> [SKIP][85] ([Intel XE#1122])
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-dg2-463/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@fbc-psr-sprite-render:
- shard-dg2-set2: NOTRUN -> [SKIP][86] ([Intel XE#2850] / [Intel XE#929]) +5 other tests skip
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-dg2-466/igt@kms_psr@fbc-psr-sprite-render.html
* igt@kms_vrr@cmrr:
- shard-dg2-set2: NOTRUN -> [SKIP][87] ([Intel XE#2168])
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-dg2-464/igt@kms_vrr@cmrr.html
* igt@kms_vrr@flip-basic-fastset:
- shard-lnl: [PASS][88] -> [FAIL][89] ([Intel XE#2443]) +1 other test fail
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-lnl-4/igt@kms_vrr@flip-basic-fastset.html
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-lnl-4/igt@kms_vrr@flip-basic-fastset.html
* igt@kms_writeback@writeback-fb-id-xrgb2101010:
- shard-dg2-set2: NOTRUN -> [SKIP][90] ([Intel XE#756])
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-dg2-436/igt@kms_writeback@writeback-fb-id-xrgb2101010.html
* igt@xe_compute_preempt@compute-preempt-many:
- shard-dg2-set2: NOTRUN -> [SKIP][91] ([Intel XE#1280] / [Intel XE#455]) +1 other test skip
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-dg2-434/igt@xe_compute_preempt@compute-preempt-many.html
* igt@xe_exec_basic@many-null-rebind:
- shard-dg2-set2: [PASS][92] -> [SKIP][93] ([Intel XE#1130]) +26 other tests skip
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-433/igt@xe_exec_basic@many-null-rebind.html
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-dg2-434/igt@xe_exec_basic@many-null-rebind.html
* igt@xe_exec_basic@twice-null-defer-bind:
- shard-dg2-set2: NOTRUN -> [SKIP][94] ([Intel XE#1130]) +8 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-dg2-434/igt@xe_exec_basic@twice-null-defer-bind.html
* igt@xe_exec_fault_mode@many-execqueues-basic-imm:
- shard-dg2-set2: NOTRUN -> [SKIP][95] ([Intel XE#288]) +8 other tests skip
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-dg2-433/igt@xe_exec_fault_mode@many-execqueues-basic-imm.html
* igt@xe_exec_sip_eudebug@breakpoint-writesip:
- shard-dg2-set2: NOTRUN -> [SKIP][96] ([Intel XE#2905]) +6 other tests skip
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-dg2-435/igt@xe_exec_sip_eudebug@breakpoint-writesip.html
* igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit:
- shard-dg2-set2: NOTRUN -> [SKIP][97] ([Intel XE#2229])
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-dg2-466/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html
* igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit:
- shard-dg2-set2: NOTRUN -> [FAIL][98] ([Intel XE#1999]) +2 other tests fail
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-dg2-436/igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit.html
* igt@xe_oa@missing-sample-flags:
- shard-dg2-set2: NOTRUN -> [SKIP][99] ([Intel XE#2541]) +3 other tests skip
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-dg2-434/igt@xe_oa@missing-sample-flags.html
* igt@xe_pat@pat-index-xelpg:
- shard-dg2-set2: NOTRUN -> [SKIP][100] ([Intel XE#979])
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-dg2-434/igt@xe_pat@pat-index-xelpg.html
* igt@xe_peer2peer@read@read-gpua-vram01-gpub-system-p2p:
- shard-dg2-set2: NOTRUN -> [FAIL][101] ([Intel XE#1173]) +1 other test fail
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-dg2-436/igt@xe_peer2peer@read@read-gpua-vram01-gpub-system-p2p.html
* igt@xe_pm@d3cold-basic-exec:
- shard-dg2-set2: NOTRUN -> [SKIP][102] ([Intel XE#2284] / [Intel XE#366])
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-dg2-466/igt@xe_pm@d3cold-basic-exec.html
* igt@xe_pm@s3-basic-exec:
- shard-dg2-set2: [PASS][103] -> [ABORT][104] ([Intel XE#1358]) +1 other test abort
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-464/igt@xe_pm@s3-basic-exec.html
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-dg2-432/igt@xe_pm@s3-basic-exec.html
* igt@xe_query@multigpu-query-engines:
- shard-dg2-set2: NOTRUN -> [SKIP][105] ([Intel XE#944])
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-dg2-435/igt@xe_query@multigpu-query-engines.html
#### Possible fixes ####
* igt@fbdev@write:
- {shard-bmg}: [SKIP][106] ([Intel XE#2134]) -> [PASS][107]
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@fbdev@write.html
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-bmg-5/igt@fbdev@write.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-0:
- {shard-bmg}: [SKIP][108] ([Intel XE#829]) -> [PASS][109] +1 other test pass
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-8/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-bmg-7/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-180:
- {shard-bmg}: [SKIP][110] ([Intel XE#2231] / [Intel XE#2890]) -> [PASS][111]
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@kms_big_fb@x-tiled-64bpp-rotate-180.html
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-bmg-5/igt@kms_big_fb@x-tiled-64bpp-rotate-180.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs:
- {shard-bmg}: [FAIL][112] ([Intel XE#2436]) -> [PASS][113] +3 other tests pass
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-7/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-bmg-8/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
* igt@kms_cdclk@plane-scaling:
- shard-dg2-set2: [SKIP][114] ([Intel XE#2890]) -> [PASS][115]
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-463/igt@kms_cdclk@plane-scaling.html
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-dg2-434/igt@kms_cdclk@plane-scaling.html
* igt@kms_cursor_legacy@cursora-vs-flipb-toggle:
- {shard-bmg}: [SKIP][116] ([Intel XE#3007]) -> [PASS][117] +4 other tests pass
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-bmg-8/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html
* igt@kms_dirtyfb@default-dirtyfb-ioctl:
- {shard-bmg}: [SKIP][118] ([Intel XE#2231]) -> [PASS][119]
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@kms_dirtyfb@default-dirtyfb-ioctl.html
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-bmg-8/igt@kms_dirtyfb@default-dirtyfb-ioctl.html
* igt@kms_fbcon_fbt@fbc:
- shard-dg2-set2: [SKIP][120] ([Intel XE#2351] / [Intel XE#2890]) -> [PASS][121]
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-463/igt@kms_fbcon_fbt@fbc.html
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-dg2-433/igt@kms_fbcon_fbt@fbc.html
* igt@kms_flip@2x-flip-vs-expired-vblank@ab-hdmi-a6-dp4:
- shard-dg2-set2: [FAIL][122] ([Intel XE#301]) -> [PASS][123]
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-436/igt@kms_flip@2x-flip-vs-expired-vblank@ab-hdmi-a6-dp4.html
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-dg2-433/igt@kms_flip@2x-flip-vs-expired-vblank@ab-hdmi-a6-dp4.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@c-dp2:
- {shard-bmg}: [FAIL][124] ([Intel XE#301]) -> [PASS][125] +2 other tests pass
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-dp2.html
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-bmg-5/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-dp2.html
* igt@kms_flip@wf_vblank-ts-check@b-edp1:
- shard-lnl: [FAIL][126] ([Intel XE#886]) -> [PASS][127] +4 other tests pass
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-lnl-7/igt@kms_flip@wf_vblank-ts-check@b-edp1.html
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-lnl-8/igt@kms_flip@wf_vblank-ts-check@b-edp1.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-wc:
- shard-dg2-set2: [SKIP][128] ([Intel XE#783]) -> [PASS][129]
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-433/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-wc.html
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-dg2-435/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-wc.html
* igt@kms_lease@lease-invalid-crtc:
- shard-dg2-set2: [SKIP][130] -> [PASS][131] +9 other tests pass
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-433/igt@kms_lease@lease-invalid-crtc.html
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-dg2-464/igt@kms_lease@lease-invalid-crtc.html
* igt@kms_plane_cursor@viewport:
- shard-dg2-set2: [FAIL][132] ([Intel XE#616]) -> [PASS][133] +1 other test pass
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-464/igt@kms_plane_cursor@viewport.html
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-dg2-463/igt@kms_plane_cursor@viewport.html
* igt@kms_prop_blob@invalid-set-prop-any:
- shard-dg2-set2: [SKIP][134] ([Intel XE#2423] / [i915#2575]) -> [PASS][135] +6 other tests pass
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-463/igt@kms_prop_blob@invalid-set-prop-any.html
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-dg2-466/igt@kms_prop_blob@invalid-set-prop-any.html
* igt@kms_properties@connector-properties-legacy:
- {shard-bmg}: [SKIP][136] -> [PASS][137] +8 other tests pass
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-8/igt@kms_properties@connector-properties-legacy.html
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-bmg-4/igt@kms_properties@connector-properties-legacy.html
* igt@kms_psr@psr2-cursor-blt@edp-1:
- shard-lnl: [FAIL][138] ([Intel XE#2948]) -> [PASS][139] +1 other test pass
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-lnl-7/igt@kms_psr@psr2-cursor-blt@edp-1.html
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-lnl-6/igt@kms_psr@psr2-cursor-blt@edp-1.html
* igt@kms_psr@psr2-primary-blt@edp-1:
- shard-lnl: [FAIL][140] ([Intel XE#1649]) -> [PASS][141] +1 other test pass
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-lnl-4/igt@kms_psr@psr2-primary-blt@edp-1.html
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-lnl-3/igt@kms_psr@psr2-primary-blt@edp-1.html
* igt@kms_rotation_crc@primary-x-tiled-reflect-x-0:
- {shard-bmg}: [INCOMPLETE][142] -> [PASS][143] +1 other test pass
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-8/igt@kms_rotation_crc@primary-x-tiled-reflect-x-0.html
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-bmg-2/igt@kms_rotation_crc@primary-x-tiled-reflect-x-0.html
* igt@kms_vblank@accuracy-idle:
- shard-lnl: [FAIL][144] ([Intel XE#1523]) -> [PASS][145] +1 other test pass
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-lnl-7/igt@kms_vblank@accuracy-idle.html
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-lnl-4/igt@kms_vblank@accuracy-idle.html
* igt@kms_vrr@flip-basic:
- shard-lnl: [FAIL][146] ([Intel XE#2443]) -> [PASS][147] +3 other tests pass
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-lnl-3/igt@kms_vrr@flip-basic.html
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-lnl-6/igt@kms_vrr@flip-basic.html
* igt@xe_drm_fdinfo@utilization-others-idle:
- shard-dg2-set2: [SKIP][148] ([Intel XE#1130]) -> [PASS][149] +11 other tests pass
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-463/igt@xe_drm_fdinfo@utilization-others-idle.html
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-dg2-466/igt@xe_drm_fdinfo@utilization-others-idle.html
* igt@xe_evict@evict-mixed-many-threads-small:
- shard-dg2-set2: [TIMEOUT][150] ([Intel XE#1473]) -> [PASS][151]
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-434/igt@xe_evict@evict-mixed-many-threads-small.html
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-dg2-435/igt@xe_evict@evict-mixed-many-threads-small.html
* igt@xe_exec_compute_mode@many-userptr-invalidate:
- shard-lnl: [DMESG-WARN][152] ([Intel XE#2687]) -> [PASS][153] +1 other test pass
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-lnl-1/igt@xe_exec_compute_mode@many-userptr-invalidate.html
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-lnl-6/igt@xe_exec_compute_mode@many-userptr-invalidate.html
* igt@xe_exec_compute_mode@non-blocking:
- {shard-bmg}: [SKIP][154] ([Intel XE#1130]) -> [PASS][155] +12 other tests pass
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-4/igt@xe_exec_compute_mode@non-blocking.html
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-bmg-4/igt@xe_exec_compute_mode@non-blocking.html
* igt@xe_exec_reset@parallel-close-fd:
- {shard-bmg}: [FAIL][156] -> [PASS][157]
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-8/igt@xe_exec_reset@parallel-close-fd.html
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-bmg-2/igt@xe_exec_reset@parallel-close-fd.html
- shard-dg2-set2: [FAIL][158] -> [PASS][159]
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-436/igt@xe_exec_reset@parallel-close-fd.html
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-dg2-435/igt@xe_exec_reset@parallel-close-fd.html
* igt@xe_module_load@reload-no-display:
- {shard-bmg}: [FAIL][160] ([Intel XE#2136]) -> [PASS][161]
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-8/igt@xe_module_load@reload-no-display.html
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-bmg-4/igt@xe_module_load@reload-no-display.html
- shard-dg2-set2: [FAIL][162] ([Intel XE#1204] / [Intel XE#2136]) -> [PASS][163]
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-433/igt@xe_module_load@reload-no-display.html
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-dg2-463/igt@xe_module_load@reload-no-display.html
* igt@xe_oa@oa-exponents@ccs-0:
- shard-lnl: [FAIL][164] -> [PASS][165] +2 other tests pass
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-lnl-7/igt@xe_oa@oa-exponents@ccs-0.html
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-lnl-1/igt@xe_oa@oa-exponents@ccs-0.html
* igt@xe_oa@oa-regs-whitelisted:
- shard-lnl: [FAIL][166] ([Intel XE#2514]) -> [PASS][167]
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-lnl-8/igt@xe_oa@oa-regs-whitelisted.html
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-lnl-5/igt@xe_oa@oa-regs-whitelisted.html
* igt@xe_pm@s4-basic:
- shard-dg2-set2: [ABORT][168] ([Intel XE#1358]) -> [PASS][169]
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-432/igt@xe_pm@s4-basic.html
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-dg2-433/igt@xe_pm@s4-basic.html
* igt@xe_pm_residency@idle-residency-on-exec:
- shard-dg2-set2: [INCOMPLETE][170] ([Intel XE#1195]) -> [PASS][171] +1 other test pass
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-433/igt@xe_pm_residency@idle-residency-on-exec.html
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-dg2-466/igt@xe_pm_residency@idle-residency-on-exec.html
- {shard-bmg}: [INCOMPLETE][172] ([Intel XE#2655]) -> [PASS][173]
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-bmg-2/igt@xe_pm_residency@idle-residency-on-exec.html
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-bmg-1/igt@xe_pm_residency@idle-residency-on-exec.html
* igt@xe_vm@large-misaligned-binds-268435456:
- shard-lnl: [DMESG-WARN][174] -> [PASS][175] +1 other test pass
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-lnl-1/igt@xe_vm@large-misaligned-binds-268435456.html
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-lnl-4/igt@xe_vm@large-misaligned-binds-268435456.html
#### Warnings ####
* igt@kms_big_fb@4-tiled-16bpp-rotate-90:
- shard-dg2-set2: [SKIP][176] ([Intel XE#316]) -> [SKIP][177] ([Intel XE#2351] / [Intel XE#2890])
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-433/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-dg2-434/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-32bpp-rotate-180:
- shard-dg2-set2: [SKIP][178] ([Intel XE#2890]) -> [SKIP][179] ([Intel XE#1124])
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-463/igt@kms_big_fb@y-tiled-32bpp-rotate-180.html
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-dg2-463/igt@kms_big_fb@y-tiled-32bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-180:
- shard-dg2-set2: [SKIP][180] ([Intel XE#829]) -> [SKIP][181] ([Intel XE#1124])
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-433/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-dg2-466/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-dg2-set2: [SKIP][182] ([Intel XE#1124]) -> [SKIP][183] ([Intel XE#2890])
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-433/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-dg2-434/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p:
- shard-dg2-set2: [SKIP][184] ([Intel XE#2191]) -> [SKIP][185] ([Intel XE#2423] / [i915#2575])
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-464/igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p.html
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-dg2-434/igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p.html
* igt@kms_bw@linear-tiling-1-displays-2160x1440p:
- shard-dg2-set2: [SKIP][186] -> [SKIP][187] ([Intel XE#367])
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-433/igt@kms_bw@linear-tiling-1-displays-2160x1440p.html
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-dg2-433/igt@kms_bw@linear-tiling-1-displays-2160x1440p.html
* igt@kms_bw@linear-tiling-2-displays-2560x1440p:
- shard-dg2-set2: [SKIP][188] ([Intel XE#367]) -> [SKIP][189] ([Intel XE#2423] / [i915#2575])
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-464/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-dg2-434/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs:
- shard-dg2-set2: [SKIP][190] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][191] ([Intel XE#2890]) +2 other tests skip
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-464/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs.html
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-dg2-434/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs.html
* igt@kms_chamelium_edid@hdmi-mode-timings:
- shard-dg2-set2: [SKIP][192] ([Intel XE#373]) -> [SKIP][193] ([Intel XE#2423] / [i915#2575])
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-464/igt@kms_chamelium_edid@hdmi-mode-timings.html
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-dg2-434/igt@kms_chamelium_edid@hdmi-mode-timings.html
* igt@kms_chamelium_hpd@dp-hpd-storm-disable:
- shard-dg2-set2: [SKIP][194] ([Intel XE#2423] / [i915#2575]) -> [SKIP][195] ([Intel XE#373])
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-463/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-dg2-435/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-dg2-set2: [SKIP][196] -> [SKIP][197] ([Intel XE#307])
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-433/igt@kms_content_protection@dp-mst-type-1.html
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-dg2-435/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_cursor_crc@cursor-onscreen-32x32:
- shard-dg2-set2: [SKIP][198] ([Intel XE#455]) -> [SKIP][199] ([Intel XE#2423] / [i915#2575])
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-464/igt@kms_cursor_crc@cursor-onscreen-32x32.html
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-dg2-434/igt@kms_cursor_crc@cursor-onscreen-32x32.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x170:
- shard-dg2-set2: [SKIP][200] ([Intel XE#308]) -> [SKIP][201] ([Intel XE#2423] / [i915#2575])
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-434/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-dg2-434/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-dg2-set2: [SKIP][202] ([Intel XE#323]) -> [SKIP][203] ([Intel XE#2423] / [i915#2575])
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-432/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-dg2-434/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
- shard-dg2-set2: [SKIP][204] ([Intel XE#2351] / [Intel XE#2890]) -> [SKIP][205] ([Intel XE#455])
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-463/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-dg2-435/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling:
- shard-dg2-set2: [SKIP][206] ([Intel XE#455]) -> [SKIP][207] ([Intel XE#2890])
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-434/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-dg2-434/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling:
- shard-dg2-set2: [SKIP][208] ([Intel XE#2890]) -> [SKIP][209] ([Intel XE#455])
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-463/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-dg2-464/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html
* igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-shrfb-draw-blt:
- shard-dg2-set2: [SKIP][210] ([Intel XE#2351] / [Intel XE#2890]) -> [SKIP][211] ([Intel XE#651])
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-463/igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-shrfb-draw-blt.html
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-dg2-432/igt@kms_frontbuffer_tracking@drrs-1p-offscren-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-indfb-draw-mmap-wc:
- shard-dg2-set2: [SKIP][212] ([Intel XE#651]) -> [SKIP][213] ([Intel XE#2890]) +3 other tests skip
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-indfb-draw-mmap-wc.html
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt:
- shard-dg2-set2: [SKIP][214] -> [SKIP][215] ([Intel XE#651]) +1 other test skip
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt.html
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-dg2-set2: [SKIP][216] ([Intel XE#651]) -> [SKIP][217] ([Intel XE#2351] / [Intel XE#2890]) +3 other tests skip
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcdrrs-tiling-linear:
- shard-dg2-set2: [SKIP][218] ([Intel XE#2890]) -> [SKIP][219] ([Intel XE#651]) +1 other test skip
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-linear.html
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-linear.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move:
- shard-dg2-set2: [SKIP][220] ([Intel XE#653]) -> [SKIP][221] ([Intel XE#2890]) +3 other tests skip
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move.html
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render:
- shard-dg2-set2: [SKIP][222] ([Intel XE#653]) -> [SKIP][223] ([Intel XE#2351] / [Intel XE#2890])
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render.html
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-dg2-434/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen:
- shard-dg2-set2: [SKIP][224] -> [SKIP][225] ([Intel XE#653]) +1 other test skip
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen.html
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen.html
* igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-wc:
- shard-dg2-set2: [SKIP][226] ([Intel XE#783]) -> [SKIP][227] ([Intel XE#2890])
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-433/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-wc.html
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-dg2-set2: [SKIP][228] ([Intel XE#2351] / [Intel XE#2890]) -> [SKIP][229] ([Intel XE#653]) +1 other test skip
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-463/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-wc.html
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-dg2-434/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_joiner@basic-force-ultra-joiner:
- shard-dg2-set2: [SKIP][230] ([Intel XE#2890]) -> [SKIP][231] ([Intel XE#2925])
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-463/igt@kms_joiner@basic-force-ultra-joiner.html
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-dg2-433/igt@kms_joiner@basic-force-ultra-joiner.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf:
- shard-dg2-set2: [SKIP][232] -> [SKIP][233] ([Intel XE#2890])
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-433/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-dg2-434/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@pr-cursor-plane-update-sf:
- shard-dg2-set2: [SKIP][234] ([Intel XE#1489]) -> [SKIP][235] ([Intel XE#2890])
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-464/igt@kms_psr2_sf@pr-cursor-plane-update-sf.html
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-dg2-434/igt@kms_psr2_sf@pr-cursor-plane-update-sf.html
* igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf:
- shard-dg2-set2: [SKIP][236] -> [SKIP][237] ([Intel XE#1489]) +1 other test skip
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-433/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-dg2-464/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html
* igt@kms_psr@fbc-pr-cursor-blt:
- shard-dg2-set2: [SKIP][238] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][239] ([Intel XE#2351] / [Intel XE#2890])
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-435/igt@kms_psr@fbc-pr-cursor-blt.html
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-dg2-434/igt@kms_psr@fbc-pr-cursor-blt.html
* igt@kms_psr@fbc-pr-cursor-render:
- shard-dg2-set2: [SKIP][240] ([Intel XE#2890]) -> [SKIP][241] ([Intel XE#2850] / [Intel XE#929])
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-463/igt@kms_psr@fbc-pr-cursor-render.html
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-dg2-435/igt@kms_psr@fbc-pr-cursor-render.html
* igt@kms_psr@pr-sprite-blt:
- shard-dg2-set2: [SKIP][242] -> [SKIP][243] ([Intel XE#2850] / [Intel XE#929]) +1 other test skip
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-433/igt@kms_psr@pr-sprite-blt.html
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-dg2-463/igt@kms_psr@pr-sprite-blt.html
* igt@kms_psr@psr2-suspend:
- shard-dg2-set2: [SKIP][244] ([Intel XE#2850] / [Intel XE#929]) -> [SKIP][245] ([Intel XE#2890])
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-434/igt@kms_psr@psr2-suspend.html
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-dg2-434/igt@kms_psr@psr2-suspend.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-dg2-set2: [SKIP][246] ([Intel XE#327]) -> [SKIP][247] ([Intel XE#2423] / [i915#2575])
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-463/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-dg2-434/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-dg2-set2: [FAIL][248] ([Intel XE#1729]) -> [SKIP][249] ([Intel XE#2423] / [i915#2575])
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-464/igt@kms_tiled_display@basic-test-pattern.html
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-dg2-434/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-dg2-set2: [SKIP][250] ([Intel XE#1500]) -> [SKIP][251] ([Intel XE#362])
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-464/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-dg2-463/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_vrr@flip-dpms:
- shard-dg2-set2: [SKIP][252] ([Intel XE#2423] / [i915#2575]) -> [SKIP][253] ([Intel XE#455])
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-463/igt@kms_vrr@flip-dpms.html
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-dg2-466/igt@kms_vrr@flip-dpms.html
* igt@kms_vrr@max-min:
- shard-dg2-set2: [SKIP][254] -> [SKIP][255] ([Intel XE#455])
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-433/igt@kms_vrr@max-min.html
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-dg2-435/igt@kms_vrr@max-min.html
* igt@xe_eudebug_online@tdctl-parameters:
- shard-dg2-set2: [SKIP][256] ([Intel XE#2905]) -> [SKIP][257] ([Intel XE#1130]) +2 other tests skip
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-436/igt@xe_eudebug_online@tdctl-parameters.html
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-dg2-434/igt@xe_eudebug_online@tdctl-parameters.html
* igt@xe_exec_fault_mode@twice-userptr-invalidate-race:
- shard-dg2-set2: [SKIP][258] ([Intel XE#288]) -> [SKIP][259] ([Intel XE#1130]) +4 other tests skip
[258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-435/igt@xe_exec_fault_mode@twice-userptr-invalidate-race.html
[259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-dg2-434/igt@xe_exec_fault_mode@twice-userptr-invalidate-race.html
* igt@xe_exec_fault_mode@twice-userptr-prefetch:
- shard-dg2-set2: [SKIP][260] ([Intel XE#1130]) -> [SKIP][261] ([Intel XE#288]) +2 other tests skip
[260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-463/igt@xe_exec_fault_mode@twice-userptr-prefetch.html
[261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-dg2-466/igt@xe_exec_fault_mode@twice-userptr-prefetch.html
* igt@xe_oa@closed-fd-and-unmapped-access:
- shard-dg2-set2: [SKIP][262] ([Intel XE#1130]) -> [SKIP][263] ([Intel XE#2541])
[262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-463/igt@xe_oa@closed-fd-and-unmapped-access.html
[263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-dg2-466/igt@xe_oa@closed-fd-and-unmapped-access.html
* igt@xe_oa@non-sampling-read-error:
- shard-dg2-set2: [SKIP][264] ([Intel XE#2541]) -> [SKIP][265] ([Intel XE#1130])
[264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-434/igt@xe_oa@non-sampling-read-error.html
[265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-dg2-434/igt@xe_oa@non-sampling-read-error.html
* igt@xe_pm@d3cold-multiple-execs:
- shard-dg2-set2: [SKIP][266] ([Intel XE#1130]) -> [SKIP][267] ([Intel XE#2284] / [Intel XE#366])
[266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-463/igt@xe_pm@d3cold-multiple-execs.html
[267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-dg2-464/igt@xe_pm@d3cold-multiple-execs.html
* igt@xe_pm@s3-mocs:
- shard-dg2-set2: [ABORT][268] -> [SKIP][269] ([Intel XE#1130])
[268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-432/igt@xe_pm@s3-mocs.html
[269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-dg2-434/igt@xe_pm@s3-mocs.html
* igt@xe_query@multigpu-query-hwconfig:
- shard-dg2-set2: [SKIP][270] ([Intel XE#944]) -> [SKIP][271] ([Intel XE#1130])
[270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8080/shard-dg2-434/igt@xe_query@multigpu-query-hwconfig.html
[271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/shard-dg2-434/igt@xe_query@multigpu-query-hwconfig.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1130
[Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138
[Intel XE#1152]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1152
[Intel XE#1173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1173
[Intel XE#1195]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195
[Intel XE#1204]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1204
[Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280
[Intel XE#1358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358
[Intel XE#1426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1426
[Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1491]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1491
[Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
[Intel XE#1500]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1500
[Intel XE#1523]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1523
[Intel XE#1649]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1649
[Intel XE#1695]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1695
[Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727
[Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729
[Intel XE#1999]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1999
[Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134
[Intel XE#2136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2136
[Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168
[Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[Intel XE#2231]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2231
[Intel XE#2233]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2233
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#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#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[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#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#2329]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2329
[Intel XE#2333]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2333
[Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341
[Intel XE#2351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2351
[Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
[Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
[Intel XE#2423]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2423
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2436]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2436
[Intel XE#2443]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2443
[Intel XE#2446]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2446
[Intel XE#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486
[Intel XE#2493]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2493
[Intel XE#2514]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2514
[Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541
[Intel XE#2566]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2566
[Intel XE#2655]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2655
[Intel XE#2687]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2687
[Intel XE#2692]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2692
[Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2791]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2791
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2890]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2890
[Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
[Intel XE#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905
[Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907
[Intel XE#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925
[Intel XE#2934]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2934
[Intel XE#2948]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2948
[Intel XE#3000]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3000
[Intel XE#3007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3007
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307
[Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308
[Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113
[Intel XE#314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/314
[Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316
[Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323
[Intel XE#327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/327
[Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362
[Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455
[Intel XE#605]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/605
[Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653
[Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756
[Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
[Intel XE#783]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/783
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#827]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/827
[Intel XE#829]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/829
[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#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
[Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979
[i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575
Build changes
-------------
* IGT: IGT_8080 -> IGTPW_11938
* Linux: xe-2091-c1837d4e9af4e9df3109960341105c035b441667 -> xe-2093-cebb76fe419dd92609fb86e59c9671387c5325a3
IGTPW_11938: 11938
IGT_8080: 20fcbc59241a16c84d12f4f6ba390fb46fd65a36 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-2091-c1837d4e9af4e9df3109960341105c035b441667: c1837d4e9af4e9df3109960341105c035b441667
xe-2093-cebb76fe419dd92609fb86e59c9671387c5325a3: cebb76fe419dd92609fb86e59c9671387c5325a3
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11938/index.html
[-- Attachment #2: Type: text/html, Size: 76369 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] tests/xe_exec_reset: Add readout of devcoredump
2024-10-18 17:38 [PATCH] tests/xe_exec_reset: Add readout of devcoredump Maarten Lankhorst
` (3 preceding siblings ...)
2024-10-19 10:26 ` ✗ CI.xeFULL: " Patchwork
@ 2024-10-24 15:30 ` Kamil Konieczny
4 siblings, 0 replies; 7+ messages in thread
From: Kamil Konieczny @ 2024-10-24 15:30 UTC (permalink / raw)
To: igt-dev; +Cc: Maarten Lankhorst
Hi Maarten,
On 2024-10-18 at 19:38:17 +0200, Maarten Lankhorst wrote:
in subject add '/intel/' prefix, so instead of:
[PATCH] tests/xe_exec_reset: Add readout of devcoredump
better:
[PATCH] tests/intel/xe_exec_reset: Add readout of devcoredump
> We're mostly testing if we can read the devcoredump, clear the
> devcoredump at the start of each subtest, and read it out at the end
> of the test.
Code looks good, I have few nits, see below.
>
> Signed-off-by: Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
> ---
> tests/intel/xe_exec_reset.c | 134 ++++++++++++++++++++++++++++++++++--
> 1 file changed, 129 insertions(+), 5 deletions(-)
>
> diff --git a/tests/intel/xe_exec_reset.c b/tests/intel/xe_exec_reset.c
> index 43ef1e334..96e0a85d3 100644
> --- a/tests/intel/xe_exec_reset.c
> +++ b/tests/intel/xe_exec_reset.c
> @@ -12,7 +12,12 @@
> * Test category: functionality test
> */
>
> +#include <unistd.h>
> +#include <fcntl.h>
> +#include <sys/stat.h>
> +
> #include "igt.h"
> +#include "lib/igt_io.h"
> #include "lib/igt_syncobj.h"
> #include "lib/intel_reg.h"
> #include "xe_drm.h"
> @@ -25,6 +30,74 @@
>
> #define SYNC_OBJ_SIGNALED (0x1 << 0)
>
> +static int sysfd = -1;
> +
> +static u64 dummy_size;
> +static void *dummy;
> +
> +/* Clear any previous devcoredump */
> +static void tryclear_hang(void)
> +{
> + int fd;
> + char buf[256];
Could it be a little larger?
> +
> + if (sysfd < 0)
> + return;
> +
> + fd = openat(sysfd, "devcoredump/data", O_RDWR);
> + if (fd < 0)
> + return;
> +
> + /* Read is optional, but see comment below why we do it */
This would be ok if called from test named 'read-devcoredump'
or at least add here an igt_info() about clearing a dump.
> + while (read(fd, buf, sizeof(buf)) > 0)
> + { }
> + write(fd, "1", 1);
> + close(fd);
> +}
> +
> +/*
> + * Helper to read and clear devcore. We want to read it completely to ensure
> + * we catch any kernel side regressions like:
> + * https://gitlab.freedesktop.org/drm/msm/-/issues/20
> + */
> +static void
> +read_and_clear_hang(void)
> +{
> + char buf[0x1000];
> + int fd;
> +
> + if (sysfd < 0)
> + return;
> +
> + fd = openat(sysfd, "devcoredump/data", O_RDWR);
Please don't repeat code, make it a separate function, like:
fd = open_devcoredump();
> + igt_assert(fd >= 0);
Why assert here? If any, use igt_assert_f() and explain what
failed here. For eaxmple, such info is not very helpfull:
(xe_exec_reset:14850) CRITICAL: Failed assertion: fd >= 0
(xe_exec_reset:14850) CRITICAL: Last errno: 2, No such file or directory
btw please respond to CI report, one test is failing:
sudo build/tests/xe_exec_reset --r spin
> +
> + /*
> + * We want to read the entire file but we can throw away the
> + * contents.. we just want to make sure that we exercise the
> + * kernel side codepaths hit when reading the devcore from
> + * sysfs
> + */
> + igt_debug("---- begin coredump ----\n");
> + while (1) {
> + ssize_t ret;
> +
> + ret = igt_readn(fd, buf, sizeof(buf) - 1);
> + igt_assert(ret >= 0);
> + if (ret == 0)
> + break;
> + buf[ret] = '\0';
> + igt_debug("%s", buf);
> + }
> +
> + igt_debug("---- end coredump ----\n");
Could you also print with igt_info how big is it?
> +
> + /* Clear the devcore: */
> + igt_writen(fd, "1", 1);
> +
> + close(fd);
> +}
> +
> /**
> * SUBTEST: spin
> * Description: test spin
> @@ -68,7 +141,11 @@ static void test_spin(int fd, struct drm_xe_engine_class_instance *eci,
> DRM_SYNCOBJ_CREATE_SIGNALED : 0);
>
> sync[0].handle = syncobj_create(fd, 0);
> - xe_vm_bind_async(fd, vm, 0, bo, 0, addr, bo_size, sync, 1);
> + xe_vm_bind_async_flags(fd, vm, 0, bo, 0, addr, bo_size, sync, 1,
> + DRM_XE_VM_BIND_FLAG_DUMPABLE);
> +
> + xe_vm_bind_userptr_async_flags(fd, vm, 0, to_user_pointer(dummy), addr + bo_size, dummy_size, sync, 1,
> + DRM_XE_VM_BIND_FLAG_DUMPABLE);
>
> #define N_TIMES 4
> for (i = 0; i < N_TIMES; ++i) {
> @@ -103,6 +180,8 @@ static void test_spin(int fd, struct drm_xe_engine_class_instance *eci,
> munmap(spin, bo_size);
> gem_close(fd, bo);
> xe_vm_destroy(fd, vm);
> +
> + read_and_clear_hang();
> }
>
> #define MAX_N_EXECQUEUES 16
> @@ -112,6 +191,7 @@ static void test_spin(int fd, struct drm_xe_engine_class_instance *eci,
> #define VIRTUAL (0x1 << 3)
> #define PARALLEL (0x1 << 4)
> #define CAT_ERROR (0x1 << 5)
> +#define CAPTURE (0x1 << 6)
>
> /**
> * SUBTEST: %s-cat-error
> @@ -172,6 +252,8 @@ test_balancer(int fd, int gt, int class, int n_exec_queues, int n_execs,
> fd = drm_open_driver(DRIVER_XE);
>
> num_placements = xe_gt_fill_engines_by_class(fd, gt, class, eci);
> + tryclear_hang();
> +
> if (num_placements < 2)
> return;
>
> @@ -193,7 +275,11 @@ test_balancer(int fd, int gt, int class, int n_exec_queues, int n_execs,
> exec.num_batch_buffer = flags & PARALLEL ? num_placements : 1;
>
> sync[0].handle = syncobj_create(fd, 0);
> - xe_vm_bind_async(fd, vm, 0, bo, 0, addr, bo_size, sync, 1);
> + xe_vm_bind_async_flags(fd, vm, 0, bo, 0, addr, bo_size, sync, 1,
> + DRM_XE_VM_BIND_FLAG_DUMPABLE);
> +
> + xe_vm_bind_userptr_async_flags(fd, vm, 0, to_user_pointer(dummy), addr + bo_size, dummy_size, sync, 1,
> + DRM_XE_VM_BIND_FLAG_DUMPABLE);
>
> if (flags & VIRTUAL && (flags & CAT_ERROR || flags & GT_RESET))
> bad_batches = num_placements;
> @@ -285,6 +371,8 @@ test_balancer(int fd, int gt, int class, int n_exec_queues, int n_execs,
> munmap(data, bo_size);
> gem_close(fd, bo);
> xe_vm_destroy(fd, vm);
> +
> + read_and_clear_hang();
> }
>
> /**
> @@ -337,6 +425,8 @@ test_legacy_mode(int fd, struct drm_xe_engine_class_instance *eci,
> if (flags & CLOSE_FD)
> fd = drm_open_driver(DRIVER_XE);
>
> + tryclear_hang();
> +
> vm = xe_vm_create(fd, 0, 0);
> bo_size = sizeof(*data) * n_execs;
> bo_size = xe_bb_size(fd, bo_size);
> @@ -352,7 +442,11 @@ test_legacy_mode(int fd, struct drm_xe_engine_class_instance *eci,
> };
>
> sync[0].handle = syncobj_create(fd, 0);
> - xe_vm_bind_async(fd, vm, 0, bo, 0, addr, bo_size, sync, 1);
> + xe_vm_bind_async_flags(fd, vm, 0, bo, 0, addr, bo_size, sync, 1,
> + DRM_XE_VM_BIND_FLAG_DUMPABLE);
> +
> + xe_vm_bind_userptr_async_flags(fd, vm, 0, to_user_pointer(dummy), addr + bo_size, dummy_size, sync, 1,
> + DRM_XE_VM_BIND_FLAG_DUMPABLE);
>
> for (i = 0; i < n_execs; i++) {
> uint64_t base_addr = flags & CAT_ERROR && !i ?
> @@ -432,6 +526,8 @@ test_legacy_mode(int fd, struct drm_xe_engine_class_instance *eci,
> munmap(data, bo_size);
> gem_close(fd, bo);
> xe_vm_destroy(fd, vm);
> +
> + read_and_clear_hang();
> }
>
> /**
> @@ -486,6 +582,8 @@ test_compute_mode(int fd, struct drm_xe_engine_class_instance *eci,
> if (flags & CLOSE_FD)
> fd = drm_open_driver(DRIVER_XE);
>
> + tryclear_hang();
> +
> vm = xe_vm_create(fd, DRM_XE_VM_CREATE_FLAG_LR_MODE, 0);
> bo_size = sizeof(*data) * n_execs;
> bo_size = xe_bb_size(fd, bo_size);
> @@ -501,7 +599,12 @@ test_compute_mode(int fd, struct drm_xe_engine_class_instance *eci,
> };
>
> sync[0].addr = to_user_pointer(&data[0].vm_sync);
> - xe_vm_bind_async(fd, vm, 0, bo, 0, addr, bo_size, sync, 1);
> + xe_vm_bind_async_flags(fd, vm, 0, bo, 0, addr, bo_size, sync, 1,
> + DRM_XE_VM_BIND_FLAG_DUMPABLE);
> +
> + /* Capture BO as userptr too */
> + xe_vm_bind_userptr_async_flags(fd, vm, 0, to_user_pointer(dummy), addr + bo_size, dummy_size, sync, 1,
> + DRM_XE_VM_BIND_FLAG_DUMPABLE);
>
> xe_wait_ufence(fd, &data[0].vm_sync, USER_FENCE_VALUE, 0, 3 * NSEC_PER_SEC);
> data[0].vm_sync = 0;
> @@ -583,6 +686,8 @@ test_compute_mode(int fd, struct drm_xe_engine_class_instance *eci,
> munmap(data, bo_size);
> gem_close(fd, bo);
> xe_vm_destroy(fd, vm);
> +
> + read_and_clear_hang();
> }
>
> struct gt_thread_data {
> @@ -603,6 +708,8 @@ static void do_resets(struct gt_thread_data *t)
> usleep(250000); /* 250 ms */
> (*t->num_reset)++;
> xe_force_gt_reset_async(t->fd, t->gt);
> +
> + tryclear_hang();
> }
> }
>
> @@ -713,6 +820,8 @@ gt_reset(int fd, int n_threads, int n_sec)
> igt_info("number of resets %d\n", num_reset);
>
> free(threads);
> +
> + tryclear_hang();
> }
>
> igt_main
> @@ -730,9 +839,24 @@ igt_main
> int class;
> int fd;
>
> - igt_fixture
> + igt_fixture {
> + struct stat stat;
> + char str[256];
> +
> fd = drm_open_driver(DRIVER_XE);
>
> + igt_assert_eq(fstat(fd, &stat), 0);
> + sprintf(str, "/sys/dev/char/%ld:%ld/device", stat.st_rdev >> 8, stat.st_rdev & 0xff);
> + sysfd = open(str, O_DIRECTORY);
> +
> + tryclear_hang();
imho it would be better if that function wouldn't try to read all
devcoredump, as you wrote there was a bug in some driver in past
but imho if it should be checked, it is better to do in a separate
subtest.
Regards,
Kamil
> +
> + dummy_size = sysconf(_SC_PAGESIZE);
> + if (dummy_size < SZ_64K)
> + dummy_size = SZ_64K;
> + dummy = aligned_alloc(dummy_size, dummy_size);
> + }
> +
> igt_subtest("spin")
> xe_for_each_engine(fd, hwe)
> test_spin(fd, hwe, 0);
> --
> 2.45.2
>
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2024-10-24 15:30 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-10-18 17:38 [PATCH] tests/xe_exec_reset: Add readout of devcoredump Maarten Lankhorst
2024-10-18 18:20 ` ✓ CI.xeBAT: success for tests/xe_exec_reset: Add readout of devcoredump (rev2) Patchwork
2024-10-18 18:31 ` ✓ Fi.CI.BAT: " Patchwork
2024-10-18 19:29 ` ✗ Fi.CI.IGT: failure " Patchwork
2024-10-19 10:26 ` ✗ CI.xeFULL: " Patchwork
2024-10-24 15:30 ` [PATCH] tests/xe_exec_reset: Add readout of devcoredump Kamil Konieczny
-- strict thread matches above, loose matches on Subject: below --
2024-07-16 9:02 Maarten Lankhorst
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox