* [PATCH i-g-t] tests/xe_exec: Add VM rebind stress test under workqueue cpumask cycling
@ 2026-04-17 12:01 S Sebinraj
2026-04-20 8:21 ` Krzysztof Karas
` (4 more replies)
0 siblings, 5 replies; 7+ messages in thread
From: S Sebinraj @ 2026-04-17 12:01 UTC (permalink / raw)
To: igt-dev
Cc: carlos.santa, matthew.brost, jeevaka.badrappan, karthik.b.s,
krzysztof.karas, kamil.konieczny, zbigniew.kempczynski,
S Sebinraj
Add a new subtest threads-wq-stress-rebind-bindexecqueue that stresses
the VM rebind path under workqueue CPU pool migration pressure.
The test spawns per-engine threads that continuously perform VM unbind/
rebind cycles using per-slot bind exec queues, while a helper child
process rapidly cycles the global unbound workqueue cpumask through
progressively wider CPU sets (f -> ff -> fff -> ffff) at 100ms intervals.
A new WQ_STRESS flag enables timed fence waits in test_legacy_mode at
three syncobj_wait() checkpoints (per-exec-queue, bind-chain, and unbind/
TLB-invalidation fences) using a 5-second deadline. If any fence misses
the deadline, a shared atomic is set and all threads bail out immediately
rather than running for the full 30-second window.
All GPU work runs in a forked child that writes its result via a pipe,
the parent polls with a 60-second timeout and restores the original
cpumask regardless of outcome.
When a hang is detected the child drops the kernel page cache
and issues xe_force_gt_reset_all() to unblock any DMA fences still
pending from the stress run, then writes the hang result and calls
_exit() immediately without closing the DRM fd. Closing the fd while GPU
work is stuck would block indefinitely in dma_resv_wait_timeout(intr=false,
TASK_UNINTERRUPTIBLE). For the same reason, GPU resource teardown
(exec queues, BOs, VMs) is skipped in test_legacy_mode when a hang
is detected.
On the failure path the parent signals SIGCHLD as SIG_IGN to reparent
the potentially D-state child to init, sends SIGKILL as a best-effort
wake-up (silently ignored by the kernel when the process is in D-state),
and calls igt_fail() so the subtest is reported as FAIL cleanly.
A bug of same signature regressed in Xe driver, where the whole system
hung due to a fencing signal not completing, which was finaly
traced to an issue in the kernel workqueue scheduling.
Hard reboot was the only way to bring the system back to work.
https://patchwork.freedesktop.org/patch/715805/
Cc: Santa Carlos <carlos.santa@intel.com>
Signed-off-by: S Sebinraj <s.sebinraj@intel.com>
---
tests/intel/xe_exec_threads.c | 341 +++++++++++++++++++++++++++++++++-
1 file changed, 334 insertions(+), 7 deletions(-)
diff --git a/tests/intel/xe_exec_threads.c b/tests/intel/xe_exec_threads.c
index f082a0eda..1cb6ce7f4 100644
--- a/tests/intel/xe_exec_threads.c
+++ b/tests/intel/xe_exec_threads.c
@@ -13,6 +13,11 @@
*/
#include <fcntl.h>
+#include <inttypes.h>
+#include <poll.h>
+#include <signal.h>
+#include <stdatomic.h>
+#include <sys/wait.h>
#include "igt.h"
#include "lib/igt_syncobj.h"
@@ -23,6 +28,7 @@
#include "xe/xe_query.h"
#include "xe/xe_gt.h"
#include "xe/xe_spin.h"
+#include "lib/igt_thread.h"
#include <string.h>
#define MAX_N_EXEC_QUEUES 16
@@ -42,9 +48,88 @@
#define BIND_EXEC_QUEUE (0x1 << 13)
#define MANY_QUEUES (0x1 << 14)
#define MULTI_QUEUE (0x1 << 15)
+#define WQ_STRESS (0x1 << 16)
+
+/*
+ * Maximum fence wait time when WQ_STRESS is active. If any bind/unbind
+ * fence takes longer than this to signal, the workqueue is considered stuck
+ * and the test fails — this is the direct symptom of the
+ * Xe hang caused by the kernel workqueue pool_workqueue pending_pwqs bug.
+ */
+#define WQ_FENCE_TIMEOUT_NS (5LL * NSEC_PER_SEC)
+
+/*
+ * Maximum time the parent waits for the child to write its result byte.
+ * The child's stress loop runs for up to 30s (igt_until_timeout(30)), plus
+ * cleanup overhead (GT reset, drop_caches, cpumask restore, sleep(1)).
+ * 60s gives ample headroom on a healthy kernel.
+ */
+#define WQ_CHILD_TIMEOUT_MS (60 * 1000)
+
+/* sysfs node that controls the unbound workqueue CPU affinity mask */
+#define WQ_CPUMASK_PATH "/sys/devices/virtual/workqueue/cpumask"
+
+/* procfs node for dropping the kernel's page, dentry, and inode caches */
+#define DROP_CACHES_PATH "/proc/sys/vm/drop_caches"
pthread_barrier_t barrier;
+/*
+ * Set to true by the first thread that detects a fence stall under WQ_STRESS.
+ * All other threads and the igt_until_timeout loop check this to bail out
+ * immediately rather than hammering a hung kernel for the full timeout.
+ */
+static _Atomic bool wq_stress_hang_detected;
+
+/**
+ * stress_fence_deadline - compute an absolute CLOCK_MONOTONIC deadline
+ * 5 seconds from now, used as the syncobj_wait timeout under WQ_STRESS.
+ */
+static int64_t stress_fence_deadline(void)
+{
+ struct timespec ts;
+
+ clock_gettime(CLOCK_MONOTONIC, &ts);
+ return (int64_t)ts.tv_sec * NSEC_PER_SEC + ts.tv_nsec +
+ WQ_FENCE_TIMEOUT_NS;
+}
+
+/**
+ * cpumask_stressor_loop - run in an igt_fork_helper child process.
+ *
+ * Rapidly cycles the kernel unbound workqueue cpumask through progressively
+ * wider CPU sets (mirroring the original shell reproduction script). This
+ * forces workqueue work items to be migrated between CPU pools, exercising
+ * the wq_node_nr_active / pool_workqueue plug-unplug path that hides the
+ * pending_pwqs scheduling bug.
+ *
+ * The original reproduction commands were:
+ * for i in {1..1000}; do
+ * echo f > /sys/devices/virtual/workqueue/cpumask
+ * echo ff > /sys/devices/virtual/workqueue/cpumask
+ * ...
+ * sleep .1
+ * done
+ */
+static void cpumask_stressor_loop(void)
+{
+ static const char * const masks[] = { "f", "ff", "fff", "ffff" };
+ int wq_fd;
+
+ wq_fd = open(WQ_CPUMASK_PATH, O_WRONLY);
+ if (wq_fd < 0)
+ exit(0);
+
+ for (;;) {
+ for (int i = 0; i < ARRAY_SIZE(masks); i++) {
+ /* ignore write errors — cpumask rejects invalid masks */
+ write(wq_fd, masks[i], strlen(masks[i]));
+ usleep(100000); /* 100ms */
+ }
+ }
+ close(wq_fd);
+}
+
static void
test_balancer(int fd, int gt, uint32_t vm, uint64_t addr, uint64_t userptr,
int class, int n_exec_queues, int n_execs, unsigned int flags)
@@ -600,6 +685,10 @@ test_legacy_mode(int fd, uint32_t vm, uint64_t addr, uint64_t userptr,
uint64_t exec_addr;
int e = i % n_exec_queues;
+ /* Bail early if another thread already detected a hang */
+ if ((flags & WQ_STRESS) && atomic_load(&wq_stress_hang_detected))
+ goto wq_stress_cleanup;
+
if (flags & MANY_QUEUES) {
if (exec_queues[e]) {
igt_assert(syncobj_wait(fd, &syncobjs[e], 1,
@@ -693,15 +782,66 @@ test_legacy_mode(int fd, uint32_t vm, uint64_t addr, uint64_t userptr,
}
}
- for (i = 0; i < n_exec_queues; i++)
- igt_assert(syncobj_wait(fd, &syncobjs[i], 1, INT64_MAX, 0,
- NULL));
- igt_assert(syncobj_wait(fd, &sync[0].handle, 1, INT64_MAX, 0, NULL));
+ /*
+ * Drain all exec-queue fences. Under WQ_STRESS use a 5s deadline;
+ * a timeout means the workqueue is hung so bail immediately.
+ */
+ for (i = 0; i < n_exec_queues; i++) {
+ if (flags & WQ_STRESS) {
+ if (atomic_load(&wq_stress_hang_detected) ||
+ !syncobj_wait(fd, &syncobjs[i], 1,
+ stress_fence_deadline(), 0, NULL)) {
+ igt_critical("exec-queue[%d] fence stalled "
+ "under WQ_STRESS, workqueue "
+ "scheduling hang suspected\n", i);
+ atomic_store(&wq_stress_hang_detected, true);
+ igt_thread_fail();
+ goto wq_stress_cleanup;
+ }
+ } else {
+ igt_assert(syncobj_wait(fd, &syncobjs[i], 1,
+ INT64_MAX, 0, NULL));
+ }
+ }
+
+ if (flags & WQ_STRESS) {
+ if (atomic_load(&wq_stress_hang_detected) ||
+ !syncobj_wait(fd, &sync[0].handle, 1,
+ stress_fence_deadline(), 0, NULL)) {
+ igt_critical("bind-chain fence stalled under WQ_STRESS\n");
+ atomic_store(&wq_stress_hang_detected, true);
+ igt_thread_fail();
+ goto wq_stress_cleanup;
+ }
+ } else {
+ igt_assert(syncobj_wait(fd, &sync[0].handle, 1,
+ INT64_MAX, 0, NULL));
+ }
sync[0].flags |= DRM_XE_SYNC_FLAG_SIGNAL;
xe_vm_unbind_async(fd, vm, bind_exec_queues[0], 0, addr,
bo_size, sync, 1);
- igt_assert(syncobj_wait(fd, &sync[0].handle, 1, INT64_MAX, 0, NULL));
+ /*
+ * This is the most critical fence under WQ_STRESS: it covers the
+ * TLB-invalidation completion triggered by xe_vm_unbind_async().
+ * If ttm_bo_delayed_delete() workers are stuck in the workqueue
+ * the TLB flush fence will never signal and we will timeout here.
+ */
+ if (flags & WQ_STRESS) {
+ if (atomic_load(&wq_stress_hang_detected) ||
+ !syncobj_wait(fd, &sync[0].handle, 1,
+ stress_fence_deadline(), 0, NULL)) {
+ igt_critical("unbind/TLB-invalidation fence stalled "
+ "under WQ_STRESS, "
+ "ttm_bo_delayed_delete work item likely stuck\n");
+ atomic_store(&wq_stress_hang_detected, true);
+ igt_thread_fail();
+ goto wq_stress_cleanup;
+ }
+ } else {
+ igt_assert(syncobj_wait(fd, &sync[0].handle, 1,
+ INT64_MAX, 0, NULL));
+ }
for (i = flags & INVALIDATE ? n_execs - 1 : 0;
i < n_execs; i++) {
@@ -713,9 +853,20 @@ test_legacy_mode(int fd, uint32_t vm, uint64_t addr, uint64_t userptr,
igt_assert_eq(data[i].data, 0xc0ffee);
}
+wq_stress_cleanup:
syncobj_destroy(fd, sync[0].handle);
for (i = 0; i < n_exec_queues; i++) {
syncobj_destroy(fd, syncobjs[i]);
+ /*
+ * Under WQ_STRESS, if a hang was detected skip all GPU resource
+ * teardown calls (xe_exec_queue_destroy, xe_vm_destroy, gem_close).
+ * Those ioctls wait for pending GPU work to drain and will hang
+ * indefinitely if the workqueue is stuck. The kernel reclaims all
+ * GPU resources automatically on process exit.
+ */
+ if (flags & WQ_STRESS && atomic_load(&wq_stress_hang_detected))
+ continue;
+
xe_exec_queue_destroy(fd, exec_queues[i]);
if (bind_exec_queues[i])
xe_exec_queue_destroy(fd, bind_exec_queues[i]);
@@ -723,11 +874,14 @@ test_legacy_mode(int fd, uint32_t vm, uint64_t addr, uint64_t userptr,
if (bo) {
munmap(data, bo_size);
- gem_close(fd, bo);
+ if (!(flags & WQ_STRESS) || !atomic_load(&wq_stress_hang_detected))
+ gem_close(fd, bo);
} else if (!(flags & INVALIDATE)) {
free(data);
}
- if (owns_vm)
+
+ if (owns_vm &&
+ (!(flags & WQ_STRESS) || !atomic_load(&wq_stress_hang_detected)))
xe_vm_destroy(fd, vm);
if (owns_fd)
drm_close_driver(fd);
@@ -1529,6 +1683,179 @@ int igt_main()
}
}
+ /**
+ * SUBTEST: threads-wq-stress-rebind-bindexecqueue
+ * Description: Concurrently hammers VM bind/unbind cycles using per-slot
+ * bind exec queues across all engines while a background
+ * process rapidly cycles the unbound workqueue cpumask,
+ * forcing work items to migrate between CPU pools.
+ *
+ * Each bind and unbind fence is waited on with a 5-second
+ * deadline. The test passes if all fences signal within that
+ * window across repeated iterations for up to 30 seconds.
+ * It fails if any fence stalls beyond the deadline, indicating
+ * that GPU work items are no longer being scheduled.
+ */
+ igt_subtest("threads-wq-stress-rebind-bindexecqueue") {
+ const char * const wq_cpumask_path = WQ_CPUMASK_PATH;
+ char orig_cpumask[64] = {};
+ int cfd, result_pipe[2];
+ pid_t child;
+ uint8_t result_byte;
+
+ struct igt_helper_process cpumask_proc = {};
+ int child_fd;
+ bool hang;
+ uint8_t r;
+
+ /* Needs write access to workqueue cpumask sysfs node (root) */
+ igt_require(access(wq_cpumask_path, W_OK) == 0);
+
+ /* Save current cpumask so we can restore it after the test */
+ cfd = open(wq_cpumask_path, O_RDONLY);
+ igt_assert_neq(cfd, -1);
+ read(cfd, orig_cpumask, sizeof(orig_cpumask) - 1);
+ close(cfd);
+ orig_cpumask[strcspn(orig_cpumask, "\n")] = '\0';
+
+ /* IPC channel: child writes a 1-byte result; parent reads via poll() */
+ igt_assert_eq(pipe(result_pipe), 0);
+
+ /*
+ * All GPU work is submitted through child_fd (opened inside the
+ * child). The fixture fd held by the parent has no pending GPU
+ * work, so drm_close_driver(fd) in the end fixture will never
+ * block — even if the child's _exit() gets stuck in
+ * dma_resv_wait_timeout() (intr=false, TASK_UNINTERRUPTIBLE).
+ */
+ child = fork();
+ igt_assert_neq(child, -1);
+
+ if (child == 0) {
+ /* ---- child: owns all GPU resources ---- */
+ close(result_pipe[0]);
+
+ child_fd = drm_open_driver(DRIVER_XE);
+
+ cpumask_proc.use_SIGKILL = true;
+ igt_fork_helper(&cpumask_proc)
+ cpumask_stressor_loop();
+
+ atomic_store(&wq_stress_hang_detected, false);
+ igt_until_timeout(30) {
+ threads(child_fd,
+ REBIND | BIND_EXEC_QUEUE | WQ_STRESS);
+ if (atomic_load(&wq_stress_hang_detected))
+ break;
+ }
+
+ igt_stop_helper(&cpumask_proc);
+
+ /* Restore cpumask from child */
+ cfd = open(wq_cpumask_path, O_WRONLY);
+ if (cfd >= 0) {
+ write(cfd, orig_cpumask, strlen(orig_cpumask));
+ close(cfd);
+ }
+
+ hang = atomic_load(&wq_stress_hang_detected);
+ if (hang) {
+ int dc_fd;
+
+ igt_critical("WorkQueue hang detected; dropping "
+ "VM page cache and forcing GT "
+ "reset\n");
+
+ dc_fd = open(DROP_CACHES_PATH,
+ O_WRONLY);
+ if (dc_fd >= 0) {
+ write(dc_fd, "3", 1);
+ close(dc_fd);
+ }
+
+ xe_force_gt_reset_all(child_fd);
+ sleep(1);
+ }
+
+ /*
+ * Write result BEFORE _exit(). When hang == true the
+ * subsequent _exit() triggers do_exit() -> exit_files()
+ * -> fput(child_fd) -> dma_resv_wait_timeout(intr=false)
+ * and blocks in TASK_UNINTERRUPTIBLE. The parent already
+ * has the answer at this point and does not need to wait
+ * for the child to actually exit.
+ */
+ r = hang ? 1 : 0;
+ write(result_pipe[1], &r, 1);
+ close(result_pipe[1]);
+
+ if (!hang)
+ drm_close_driver(child_fd);
+ _exit(hang ? IGT_EXIT_FAILURE : IGT_EXIT_SUCCESS);
+ }
+
+ /* ---- parent ---- */
+ close(result_pipe[1]);
+
+ /*
+ * Wait up to 60s for the child to write its result byte.
+ * The child's stress loop runs for up to 30s, plus cleanup
+ * (GT reset, drop_caches, cpumask restore) — 60s total gives
+ * enough headroom on a healthy kernel while still catching a
+ * child that has silently deadlocked before ever writing.
+ *
+ * poll() timeout -> treat as hang (result_byte = 0xFF).
+ * read() returning 0 (EOF, no byte written) -> same.
+ */
+ {
+ struct pollfd pfd = {
+ .fd = result_pipe[0],
+ .events = POLLIN,
+ };
+ int poll_ret = poll(&pfd, 1, WQ_CHILD_TIMEOUT_MS);
+
+ if (poll_ret <= 0) {
+ /* timeout (0) or poll error (-1) */
+ igt_warn("Timed out waiting for child result "
+ "after 60s — treating as hang\n");
+ result_byte = 0xFF;
+ } else if (read(result_pipe[0], &result_byte, 1) != 1) {
+ result_byte = 0xFF; /* EOF: child crashed before writing */
+ }
+ }
+ close(result_pipe[0]);
+
+ /* Belt-and-suspenders: restore cpumask from parent too */
+ cfd = open(wq_cpumask_path, O_WRONLY);
+ if (cfd >= 0) {
+ write(cfd, orig_cpumask, strlen(orig_cpumask));
+ close(cfd);
+ }
+
+ if (result_byte != 0) {
+ igt_critical("WQ stress worker detected fence stall "
+ "— workqueue scheduling hang "
+ "confirmed\n");
+
+ /*
+ * Attempt to kill the child. If it is stuck in
+ * TASK_UNINTERRUPTIBLE D-state (dma_resv_wait_timeout
+ * with intr=false) SIGKILL will be silently ignored by
+ * the kernel — the signal is delivered but the process
+ * cannot be woken. We try anyway so that on kernels
+ * where the GT reset successfully resolves the D-state
+ * the child is reaped promptly.
+ */
+ signal(SIGCHLD, SIG_IGN); /* reparent D-state child to init immediately */
+ kill(child, SIGKILL);
+
+ igt_fail(IGT_EXIT_FAILURE);
+ }
+
+ /* Clean path: no hang, reap child normally and continue */
+ waitpid(child, NULL, 0);
+ }
+
igt_fixture()
drm_close_driver(fd);
}
--
2.43.0
^ permalink raw reply related [flat|nested] 7+ messages in thread* Re: [PATCH i-g-t] tests/xe_exec: Add VM rebind stress test under workqueue cpumask cycling
2026-04-17 12:01 [PATCH i-g-t] tests/xe_exec: Add VM rebind stress test under workqueue cpumask cycling S Sebinraj
@ 2026-04-20 8:21 ` Krzysztof Karas
2026-04-22 5:16 ` Sebinraj, S
2026-04-21 11:55 ` ✓ Xe.CI.BAT: success for " Patchwork
` (3 subsequent siblings)
4 siblings, 1 reply; 7+ messages in thread
From: Krzysztof Karas @ 2026-04-20 8:21 UTC (permalink / raw)
To: S Sebinraj
Cc: igt-dev, carlos.santa, matthew.brost, jeevaka.badrappan,
karthik.b.s, kamil.konieczny, zbigniew.kempczynski
Hi S Sebinraj,
[...]
> On the failure path the parent signals SIGCHLD as SIG_IGN to reparent
> the potentially D-state child to init, sends SIGKILL as a best-effort
> wake-up (silently ignored by the kernel when the process is in D-state),
> and calls igt_fail() so the subtest is reported as FAIL cleanly.
If the task is in D-state, maybe aborting would be a better
idea? (thus forcing a reboot in testing environment)
I am wondering about the behavior in our CI. With a hung task
that still processes something/hogs resources, further execution
would be carried out in polluted environment and we may start
getting failures in other tests due to this one being stuck.
[...]
> +static int64_t stress_fence_deadline(void)
> +{
> + struct timespec ts;
> +
> + clock_gettime(CLOCK_MONOTONIC, &ts);
This technically may return -1 on error and set errno.
> + return (int64_t)ts.tv_sec * NSEC_PER_SEC + ts.tv_nsec +
> + WQ_FENCE_TIMEOUT_NS;
Both tv_sec and tv_nsec should be of type "long" in most cases.
If you really want to case tv_sec to int64_t, then you should
consider casting tv_nsec as well for the sake of completion.
On a side note, you could just cast the whole expression to
int64_t to match the function return and be more explicit.
[...]
> +static void cpumask_stressor_loop(void)
> +{
> + static const char * const masks[] = { "f", "ff", "fff", "ffff" };
> + int wq_fd;
> +
> + wq_fd = open(WQ_CPUMASK_PATH, O_WRONLY);
> + if (wq_fd < 0)
> + exit(0);
> +
> + for (;;) {
> + for (int i = 0; i < ARRAY_SIZE(masks); i++) {
> + /* ignore write errors — cpumask rejects invalid masks */
> + write(wq_fd, masks[i], strlen(masks[i]));
I think you could still check errno and continue only when the
error(s) connected to invalid mask is returned. Otherwise, some
underlying issue may be getting ignored.
> + usleep(100000); /* 100ms */
> + }
> + }
> + close(wq_fd);
> +}
> +
[...]
> @@ -693,15 +782,66 @@ test_legacy_mode(int fd, uint32_t vm, uint64_t addr, uint64_t userptr,
> }
> }
>
> - for (i = 0; i < n_exec_queues; i++)
> - igt_assert(syncobj_wait(fd, &syncobjs[i], 1, INT64_MAX, 0,
> - NULL));
> - igt_assert(syncobj_wait(fd, &sync[0].handle, 1, INT64_MAX, 0, NULL));
> + /*
> + * Drain all exec-queue fences. Under WQ_STRESS use a 5s deadline;
> + * a timeout means the workqueue is hung so bail immediately.
> + */
This comment should be split:
/*
* Drain all exec-queue fences.
*/
for (i = 0; i < n_exec_queues; i++) {
if (flags & WQ_STRESS) {
/*
* Under WQ_STRESS use a 5s deadline; a timeout means
* the workqueue is hung so bail immediately.
*/
> + for (i = 0; i < n_exec_queues; i++) {
> + if (flags & WQ_STRESS) {
[...]
> - igt_assert(syncobj_wait(fd, &sync[0].handle, 1, INT64_MAX, 0, NULL));
> + /*
> + * This is the most critical fence under WQ_STRESS: it covers the
> + * TLB-invalidation completion triggered by xe_vm_unbind_async().
> + * If ttm_bo_delayed_delete() workers are stuck in the workqueue
> + * the TLB flush fence will never signal and we will timeout here.
> + */
> + if (flags & WQ_STRESS) {
This comments is explaining stuff only for WQ_STRESS, so put it
in the if body.
> + if (atomic_load(&wq_stress_hang_detected) ||
[...]
> +wq_stress_cleanup:
> syncobj_destroy(fd, sync[0].handle);
> for (i = 0; i < n_exec_queues; i++) {
> syncobj_destroy(fd, syncobjs[i]);
> + /*
> + * Under WQ_STRESS, if a hang was detected skip all GPU resource
> + * teardown calls (xe_exec_queue_destroy, xe_vm_destroy, gem_close).
> + * Those ioctls wait for pending GPU work to drain and will hang
> + * indefinitely if the workqueue is stuck. The kernel reclaims all
> + * GPU resources automatically on process exit.
> + */
This comment as well: put it inside the if.
> + if (flags & WQ_STRESS && atomic_load(&wq_stress_hang_detected))
> + continue;
> +
[...]
> + igt_subtest("threads-wq-stress-rebind-bindexecqueue") {
> + const char * const wq_cpumask_path = WQ_CPUMASK_PATH;
Why not use WQ_CPUMASK_PATH directly in below calls? You never
change the value of wq_cpumask_path.
[...]
> +
> + /* Belt-and-suspenders: restore cpumask from parent too */
What is belt-and-suspenders in this context?
> + cfd = open(wq_cpumask_path, O_WRONLY);
> + if (cfd >= 0) {
> + write(cfd, orig_cpumask, strlen(orig_cpumask));
> + close(cfd);
> + }
[...]
test_legacy_mode() is already 244 lines long before your change
and considering how many if (flags & WQ_STRESS) you had to
include, we might need to look into splitting it into smaller
pieces. (not as part of your patch, but in general)
--
Best Regards,
Krzysztof
^ permalink raw reply [flat|nested] 7+ messages in thread* Re: [PATCH i-g-t] tests/xe_exec: Add VM rebind stress test under workqueue cpumask cycling
2026-04-20 8:21 ` Krzysztof Karas
@ 2026-04-22 5:16 ` Sebinraj, S
0 siblings, 0 replies; 7+ messages in thread
From: Sebinraj, S @ 2026-04-22 5:16 UTC (permalink / raw)
To: Karas, Krzysztof
Cc: igt-dev@lists.freedesktop.org, Santa, Carlos, Brost, Matthew,
Badrappan, Jeevaka, B S, Karthik, Konieczny, Kamil,
Kempczynski, Zbigniew
[-- Attachment #1: Type: text/plain, Size: 6734 bytes --]
________________________________
From: Karas, Krzysztof <krzysztof.karas@intel.com>
Sent: Monday, April 20, 2026 1:51 PM
To: Sebinraj, S <s.sebinraj@intel.com>
Cc: igt-dev@lists.freedesktop.org <igt-dev@lists.freedesktop.org>; Santa, Carlos <carlos.santa@intel.com>; Brost, Matthew <matthew.brost@intel.com>; Badrappan, Jeevaka <jeevaka.badrappan@intel.com>; B S, Karthik <karthik.b.s@intel.com>; Konieczny, Kamil <kamil.konieczny@intel.com>; Kempczynski, Zbigniew <zbigniew.kempczynski@intel.com>
Subject: Re: [PATCH i-g-t] tests/xe_exec: Add VM rebind stress test under workqueue cpumask cycling
Hi S Sebinraj,
[...]
> On the failure path the parent signals SIGCHLD as SIG_IGN to reparent
> the potentially D-state child to init, sends SIGKILL as a best-effort
> wake-up (silently ignored by the kernel when the process is in D-state),
> and calls igt_fail() so the subtest is reported as FAIL cleanly.
>If the task is in D-state, maybe aborting would be a better
>idea? (thus forcing a reboot in testing environment)
Yes, you are right, aborting would be the most accurate in this
scenario.
I did wonder on how to let know the CI system to reboot
once the hang happens, but yeah, your comment answers this.
>I am wondering about the behavior in our CI. With a hung task
>that still processes something/hogs resources, further execution
>would be carried out in polluted environment and we may start
>getting failures in other tests due to this one being stuck.
Yes, with a hang task, In this particular test, even if it gets marked as
fail, it will affect other tests. Only a reboot will fix it.
I have seen this behavior with the test.
Thanks for your input here; it helps.
[...]
> +static int64_t stress_fence_deadline(void)
> +{
> + struct timespec ts;
> +
> + clock_gettime(CLOCK_MONOTONIC, &ts);
This technically may return -1 on error and set errno.
> + return (int64_t)ts.tv_sec * NSEC_PER_SEC + ts.tv_nsec +
> + WQ_FENCE_TIMEOUT_NS;
>Both tv_sec and tv_nsec should be of type "long" in most cases.
>If you really want to case tv_sec to int64_t, then you should
>consider casting tv_nsec as well for the sake of completion.
>On a side note, you could just cast the whole expression to
>int64_t to match the function return and be more explicit.
Yes, I will correct these here.
[...]
> +static void cpumask_stressor_loop(void)
> +{
> + static const char * const masks[] = { "f", "ff", "fff", "ffff" };
> + int wq_fd;
> +
> + wq_fd = open(WQ_CPUMASK_PATH, O_WRONLY);
> + if (wq_fd < 0)
> + exit(0);
> +
> + for (;;) {
> + for (int i = 0; i < ARRAY_SIZE(masks); i++) {
> + /* ignore write errors — cpumask rejects invalid masks */
> + write(wq_fd, masks[i], strlen(masks[i]));
>I think you could still check errno and continue only when the
>error(s) connected to invalid mask is returned. Otherwise, some
>underlying issue may be getting ignored.
Okay got it.
> + usleep(100000); /* 100ms */
> + }
> + }
> + close(wq_fd);
> +}
> +
[...]
> @@ -693,15 +782,66 @@ test_legacy_mode(int fd, uint32_t vm, uint64_t addr, uint64_t userptr,
> }
> }
>
> - for (i = 0; i < n_exec_queues; i++)
> - igt_assert(syncobj_wait(fd, &syncobjs[i], 1, INT64_MAX, 0,
> - NULL));
> - igt_assert(syncobj_wait(fd, &sync[0].handle, 1, INT64_MAX, 0, NULL));
> + /*
> + * Drain all exec-queue fences. Under WQ_STRESS use a 5s deadline;
> + * a timeout means the workqueue is hung so bail immediately.
> + */
>This comment should be split:
Okay got it.
/*
* Drain all exec-queue fences.
*/
for (i = 0; i < n_exec_queues; i++) {
if (flags & WQ_STRESS) {
/*
* Under WQ_STRESS use a 5s deadline; a timeout means
* the workqueue is hung so bail immediately.
*/
> + for (i = 0; i < n_exec_queues; i++) {
> + if (flags & WQ_STRESS) {
[...]
> - igt_assert(syncobj_wait(fd, &sync[0].handle, 1, INT64_MAX, 0, NULL));
> + /*
> + * This is the most critical fence under WQ_STRESS: it covers the
> + * TLB-invalidation completion triggered by xe_vm_unbind_async().
> + * If ttm_bo_delayed_delete() workers are stuck in the workqueue
> + * the TLB flush fence will never signal and we will timeout here.
> + */
> + if (flags & WQ_STRESS) {
>This comments is explaining stuff only for WQ_STRESS, so put it
>in the if body.
Will do that,
> + if (atomic_load(&wq_stress_hang_detected) ||
[...]
> +wq_stress_cleanup:
> syncobj_destroy(fd, sync[0].handle);
> for (i = 0; i < n_exec_queues; i++) {
> syncobj_destroy(fd, syncobjs[i]);
> + /*
> + * Under WQ_STRESS, if a hang was detected skip all GPU resource
> + * teardown calls (xe_exec_queue_destroy, xe_vm_destroy, gem_close).
> + * Those ioctls wait for pending GPU work to drain and will hang
> + * indefinitely if the workqueue is stuck. The kernel reclaims all
> + * GPU resources automatically on process exit.
> + */
>This comment as well: put it inside the if.
Okay got it.
> + if (flags & WQ_STRESS && atomic_load(&wq_stress_hang_detected))
> + continue;
> +
[...]
> + igt_subtest("threads-wq-stress-rebind-bindexecqueue") {
> + const char * const wq_cpumask_path = WQ_CPUMASK_PATH;
>Why not use WQ_CPUMASK_PATH directly in below calls? You never
>change the value of wq_cpumask_path.
Yes, you are right, I will change that.
[...]
> +
> + /* Belt-and-suspenders: restore cpumask from parent too */
> What is belt-and-suspenders in this context?
I meant it here as a failsafe, like even if the child fails to do (cpumask restore)
the parent does it. But I'll remove this portion of comment from here, as I feel
it's a bit misleading.
> + cfd = open(wq_cpumask_path, O_WRONLY);
> + if (cfd >= 0) {
> + write(cfd, orig_cpumask, strlen(orig_cpumask));
> + close(cfd);
> + }
[...]
>test_legacy_mode() is already 244 lines long before your change
>and considering how many if (flags & WQ_STRESS) you had to
>include, we might need to look into splitting it into smaller
>pieces. (not as part of your patch, but in general)
>--
>Best Regards,
>Krzysztof
Thank You,
Sebin
[-- Attachment #2: Type: text/html, Size: 16274 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
* ✓ Xe.CI.BAT: success for tests/xe_exec: Add VM rebind stress test under workqueue cpumask cycling
2026-04-17 12:01 [PATCH i-g-t] tests/xe_exec: Add VM rebind stress test under workqueue cpumask cycling S Sebinraj
2026-04-20 8:21 ` Krzysztof Karas
@ 2026-04-21 11:55 ` Patchwork
2026-04-21 11:59 ` ✓ i915.CI.BAT: " Patchwork
` (2 subsequent siblings)
4 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2026-04-21 11:55 UTC (permalink / raw)
To: S Sebinraj; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 3279 bytes --]
== Series Details ==
Series: tests/xe_exec: Add VM rebind stress test under workqueue cpumask cycling
URL : https://patchwork.freedesktop.org/series/165066/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8865_BAT -> XEIGTPW_15010_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (12 -> 13)
------------------------------
Additional (1): bat-ptl-vm
Known issues
------------
Here are the changes found in XEIGTPW_15010_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@xe_evict@evict-beng-small-cm:
- bat-ptl-vm: NOTRUN -> [SKIP][1] ([Intel XE#5764]) +10 other tests skip
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15010/bat-ptl-vm/igt@xe_evict@evict-beng-small-cm.html
* igt@xe_exec_balancer@twice-parallel-basic:
- bat-ptl-vm: NOTRUN -> [SKIP][2] ([Intel XE#7482]) +17 other tests skip
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15010/bat-ptl-vm/igt@xe_exec_balancer@twice-parallel-basic.html
* igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit:
- bat-ptl-vm: NOTRUN -> [SKIP][3] ([Intel XE#5775])
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15010/bat-ptl-vm/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html
* igt@xe_mmap@vram:
- bat-ptl-vm: NOTRUN -> [SKIP][4] ([Intel XE#5776])
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15010/bat-ptl-vm/igt@xe_mmap@vram.html
* igt@xe_pat@pat-index-xehpc:
- bat-ptl-vm: NOTRUN -> [SKIP][5] ([Intel XE#5777] / [Intel XE#7590])
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15010/bat-ptl-vm/igt@xe_pat@pat-index-xehpc.html
* igt@xe_pat@pat-index-xelp:
- bat-ptl-vm: NOTRUN -> [SKIP][6] ([Intel XE#5771] / [Intel XE#7590])
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15010/bat-ptl-vm/igt@xe_pat@pat-index-xelp.html
* igt@xe_pat@pat-index-xelpg:
- bat-ptl-vm: NOTRUN -> [SKIP][7] ([Intel XE#5780] / [Intel XE#7590])
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15010/bat-ptl-vm/igt@xe_pat@pat-index-xelpg.html
[Intel XE#5764]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5764
[Intel XE#5771]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5771
[Intel XE#5775]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5775
[Intel XE#5776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5776
[Intel XE#5777]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5777
[Intel XE#5780]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5780
[Intel XE#7482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7482
[Intel XE#7590]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7590
Build changes
-------------
* IGT: IGT_8865 -> IGTPW_15010
IGTPW_15010: 7b47cc44d23ae797e49444d095958f36cfff3c0b @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8865: 1c23bc1bdf01bf0ded2344cb217d7fe88de3b726 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-4921-898b5aa235c5b269d6c745fd84270b296aa75469: 898b5aa235c5b269d6c745fd84270b296aa75469
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15010/index.html
[-- Attachment #2: Type: text/html, Size: 4124 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread* ✓ i915.CI.BAT: success for tests/xe_exec: Add VM rebind stress test under workqueue cpumask cycling
2026-04-17 12:01 [PATCH i-g-t] tests/xe_exec: Add VM rebind stress test under workqueue cpumask cycling S Sebinraj
2026-04-20 8:21 ` Krzysztof Karas
2026-04-21 11:55 ` ✓ Xe.CI.BAT: success for " Patchwork
@ 2026-04-21 11:59 ` Patchwork
2026-04-21 12:45 ` ✗ Xe.CI.FULL: failure " Patchwork
2026-04-21 16:05 ` ✗ i915.CI.Full: " Patchwork
4 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2026-04-21 11:59 UTC (permalink / raw)
To: S Sebinraj; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 5852 bytes --]
== Series Details ==
Series: tests/xe_exec: Add VM rebind stress test under workqueue cpumask cycling
URL : https://patchwork.freedesktop.org/series/165066/
State : success
== Summary ==
CI Bug Log - changes from IGT_8865 -> IGTPW_15010
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/index.html
Participating hosts (40 -> 39)
------------------------------
Additional (1): bat-adls-6
Missing (2): bat-dg2-13 bat-mtlp-9
Known issues
------------
Here are the changes found in IGTPW_15010 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@dmabuf@all-tests:
- bat-adls-6: NOTRUN -> [SKIP][1] ([i915#15931])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/bat-adls-6/igt@dmabuf@all-tests.html
* igt@gem_lmem_swapping@parallel-random-engines:
- bat-adls-6: NOTRUN -> [SKIP][2] ([i915#4613]) +3 other tests skip
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/bat-adls-6/igt@gem_lmem_swapping@parallel-random-engines.html
* igt@gem_tiled_pread_basic@basic:
- bat-adls-6: NOTRUN -> [SKIP][3] ([i915#15656])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/bat-adls-6/igt@gem_tiled_pread_basic@basic.html
* igt@i915_pm_rpm@module-reload:
- fi-bsw-n3050: [PASS][4] -> [DMESG-WARN][5] ([i915#15498])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/fi-bsw-n3050/igt@i915_pm_rpm@module-reload.html
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/fi-bsw-n3050/igt@i915_pm_rpm@module-reload.html
* igt@i915_selftest@live@workarounds:
- bat-dg2-14: [PASS][6] -> [DMESG-FAIL][7] ([i915#12061]) +1 other test dmesg-fail
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/bat-dg2-14/igt@i915_selftest@live@workarounds.html
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/bat-dg2-14/igt@i915_selftest@live@workarounds.html
* igt@intel_hwmon@hwmon-read:
- bat-adls-6: NOTRUN -> [SKIP][8] ([i915#7707]) +1 other test skip
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/bat-adls-6/igt@intel_hwmon@hwmon-read.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- bat-adls-6: NOTRUN -> [SKIP][9] ([i915#4103]) +1 other test skip
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/bat-adls-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_dsc@dsc-basic:
- bat-adls-6: NOTRUN -> [SKIP][10] ([i915#3555] / [i915#3840])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/bat-adls-6/igt@kms_dsc@dsc-basic.html
* igt@kms_force_connector_basic@force-load-detect:
- bat-adls-6: NOTRUN -> [SKIP][11]
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/bat-adls-6/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_pm_backlight@basic-brightness:
- bat-adls-6: NOTRUN -> [SKIP][12] ([i915#5354])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/bat-adls-6/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_psr@psr-primary-mmap-gtt:
- bat-adls-6: NOTRUN -> [SKIP][13] ([i915#1072] / [i915#9732]) +3 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/bat-adls-6/igt@kms_psr@psr-primary-mmap-gtt.html
* igt@kms_setmode@basic-clone-single-crtc:
- bat-adls-6: NOTRUN -> [SKIP][14] ([i915#3555])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/bat-adls-6/igt@kms_setmode@basic-clone-single-crtc.html
* igt@prime_vgem@basic-fence-read:
- bat-adls-6: NOTRUN -> [SKIP][15] ([i915#3291]) +2 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/bat-adls-6/igt@prime_vgem@basic-fence-read.html
#### Possible fixes ####
* igt@i915_selftest@live:
- fi-bsw-n3050: [DMESG-FAIL][16] ([i915#14808]) -> [PASS][17] +1 other test pass
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/fi-bsw-n3050/igt@i915_selftest@live.html
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/fi-bsw-n3050/igt@i915_selftest@live.html
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#14808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14808
[i915#15498]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15498
[i915#15656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15656
[i915#15931]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15931
[i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8865 -> IGTPW_15010
CI-20190529: 20190529
CI_DRM_18350: 898b5aa235c5b269d6c745fd84270b296aa75469 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_15010: 7b47cc44d23ae797e49444d095958f36cfff3c0b @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8865: 1c23bc1bdf01bf0ded2344cb217d7fe88de3b726 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/index.html
[-- Attachment #2: Type: text/html, Size: 6869 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread* ✗ Xe.CI.FULL: failure for tests/xe_exec: Add VM rebind stress test under workqueue cpumask cycling
2026-04-17 12:01 [PATCH i-g-t] tests/xe_exec: Add VM rebind stress test under workqueue cpumask cycling S Sebinraj
` (2 preceding siblings ...)
2026-04-21 11:59 ` ✓ i915.CI.BAT: " Patchwork
@ 2026-04-21 12:45 ` Patchwork
2026-04-21 16:05 ` ✗ i915.CI.Full: " Patchwork
4 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2026-04-21 12:45 UTC (permalink / raw)
To: S Sebinraj; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 29477 bytes --]
== Series Details ==
Series: tests/xe_exec: Add VM rebind stress test under workqueue cpumask cycling
URL : https://patchwork.freedesktop.org/series/165066/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8865_FULL -> XEIGTPW_15010_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_15010_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_15010_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 (2 -> 2)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_15010_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-bmg: NOTRUN -> [SKIP][1] +5 other tests skip
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15010/shard-bmg-9/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
New tests
---------
New tests have been introduced between XEIGT_8865_FULL and XEIGTPW_15010_FULL:
### New IGT tests (1) ###
* igt@xe_exec_threads@threads-wq-stress-rebind-bindexecqueue:
- Statuses : 1 pass(s)
- Exec time: [32.60] s
Known issues
------------
Here are the changes found in XEIGTPW_15010_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_big_fb@4-tiled-32bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][2] ([Intel XE#2327]) +7 other tests skip
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15010/shard-bmg-9/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-0:
- shard-bmg: NOTRUN -> [SKIP][3] ([Intel XE#1124]) +8 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15010/shard-bmg-5/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow:
- shard-bmg: NOTRUN -> [SKIP][4] ([Intel XE#607] / [Intel XE#7361])
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15010/shard-bmg-6/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html
* igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p:
- shard-bmg: NOTRUN -> [SKIP][5] ([Intel XE#7679]) +1 other test skip
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15010/shard-bmg-5/igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p.html
* igt@kms_bw@linear-tiling-1-displays-2560x1440p:
- shard-bmg: NOTRUN -> [SKIP][6] ([Intel XE#367] / [Intel XE#7354]) +1 other test skip
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15010/shard-bmg-5/igt@kms_bw@linear-tiling-1-displays-2560x1440p.html
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc:
- shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#2887]) +12 other tests skip
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15010/shard-bmg-3/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs:
- shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#3432])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15010/shard-bmg-10/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs.html
* igt@kms_chamelium_frames@dp-crc-single:
- shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#2252]) +4 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15010/shard-bmg-9/igt@kms_chamelium_frames@dp-crc-single.html
* igt@kms_content_protection@atomic-dpms-hdcp14@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][10] ([Intel XE#3304] / [Intel XE#7374]) +1 other test fail
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15010/shard-bmg-1/igt@kms_content_protection@atomic-dpms-hdcp14@pipe-a-dp-2.html
* igt@kms_content_protection@lic-type-1:
- shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#7642]) +1 other test skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15010/shard-bmg-10/igt@kms_content_protection@lic-type-1.html
* igt@kms_content_protection@suspend-resume@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][12] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) +3 other tests fail
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15010/shard-bmg-1/igt@kms_content_protection@suspend-resume@pipe-a-dp-2.html
* igt@kms_content_protection@uevent:
- shard-bmg: NOTRUN -> [FAIL][13] ([Intel XE#6707] / [Intel XE#7439]) +1 other test fail
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15010/shard-bmg-3/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-random-64x21:
- shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#2320])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15010/shard-bmg-6/igt@kms_cursor_crc@cursor-random-64x21.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#2321] / [Intel XE#7355])
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15010/shard-bmg-2/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3:
- shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#1340] / [Intel XE#7435])
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15010/shard-bmg-2/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3.html
* igt@kms_dp_linktrain_fallback@dsc-fallback:
- shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#4331] / [Intel XE#7227])
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15010/shard-bmg-5/igt@kms_dp_linktrain_fallback@dsc-fallback.html
* igt@kms_dsc@dsc-with-bpc:
- shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#2244])
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15010/shard-bmg-7/igt@kms_dsc@dsc-with-bpc.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#6126] / [Intel XE#776])
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15010/shard-bmg-2/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_feature_discovery@chamelium:
- shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#2372] / [Intel XE#7359])
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15010/shard-bmg-9/igt@kms_feature_discovery@chamelium.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling:
- shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#7178] / [Intel XE#7351]) +1 other test skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15010/shard-bmg-1/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
- shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#7178] / [Intel XE#7349])
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15010/shard-bmg-5/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
* igt@kms_frontbuffer_tracking@drrs-rgb565-draw-render:
- shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#2311]) +23 other tests skip
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15010/shard-bmg-3/igt@kms_frontbuffer_tracking@drrs-rgb565-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt:
- shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#4141]) +14 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15010/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@plane-fbc-rte:
- shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#2350] / [Intel XE#7503])
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15010/shard-bmg-5/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-pgflip-blt:
- shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#2313]) +20 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15010/shard-bmg-1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@psr-argb161616f-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#7061] / [Intel XE#7356]) +1 other test skip
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15010/shard-bmg-1/igt@kms_frontbuffer_tracking@psr-argb161616f-draw-blt.html
* igt@kms_joiner@invalid-modeset-force-ultra-joiner:
- shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#6911] / [Intel XE#7466])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15010/shard-bmg-10/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
* igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
- shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#4090] / [Intel XE#7443])
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15010/shard-bmg-2/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
* igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier:
- shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#7283]) +2 other tests skip
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15010/shard-bmg-2/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier.html
* igt@kms_pm_backlight@brightness-with-dpms:
- shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#2938] / [Intel XE#7376])
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15010/shard-bmg-6/igt@kms_pm_backlight@brightness-with-dpms.html
* igt@kms_pm_backlight@fade-with-dpms:
- shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#7376] / [Intel XE#870])
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15010/shard-bmg-9/igt@kms_pm_backlight@fade-with-dpms.html
* igt@kms_pm_dc@dc6-psr:
- shard-lnl: [PASS][33] -> [FAIL][34] ([Intel XE#7340])
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8865/shard-lnl-5/igt@kms_pm_dc@dc6-psr.html
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15010/shard-lnl-1/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_rpm@modeset-lpsp-stress-no-wait:
- shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#7383] / [Intel XE#836])
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15010/shard-bmg-10/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html
* igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf:
- shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#1489]) +6 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15010/shard-bmg-1/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr@fbc-pr-primary-page-flip:
- shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#2234] / [Intel XE#2850]) +8 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15010/shard-bmg-1/igt@kms_psr@fbc-pr-primary-page-flip.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
- shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#3904] / [Intel XE#7342])
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15010/shard-bmg-2/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
* igt@kms_setmode@basic-clone-single-crtc:
- shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#1435])
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15010/shard-bmg-3/igt@kms_setmode@basic-clone-single-crtc.html
* igt@kms_sharpness_filter@invalid-filter-with-scaling-mode:
- shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#6503])
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15010/shard-bmg-3/igt@kms_sharpness_filter@invalid-filter-with-scaling-mode.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#2426] / [Intel XE#5848])
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15010/shard-bmg-9/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_vrr@seamless-rr-switch-virtual:
- shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#1499])
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15010/shard-bmg-5/igt@kms_vrr@seamless-rr-switch-virtual.html
* igt@xe_eudebug@vma-ufence:
- shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#7636]) +10 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15010/shard-bmg-10/igt@xe_eudebug@vma-ufence.html
* igt@xe_exec_balancer@once-cm-virtual-userptr:
- shard-bmg: [PASS][44] -> [DMESG-WARN][45] ([Intel XE#7725])
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8865/shard-bmg-7/igt@xe_exec_balancer@once-cm-virtual-userptr.html
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15010/shard-bmg-6/igt@xe_exec_balancer@once-cm-virtual-userptr.html
* igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-invalidate-race:
- shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#2322] / [Intel XE#7372]) +6 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15010/shard-bmg-10/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-invalidate-race.html
* igt@xe_exec_fault_mode@once-multi-queue-userptr-invalidate-prefetch:
- shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#7136]) +9 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15010/shard-bmg-9/igt@xe_exec_fault_mode@once-multi-queue-userptr-invalidate-prefetch.html
* igt@xe_exec_multi_queue@two-queues-preempt-mode-fault-priority:
- shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#6874]) +25 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15010/shard-bmg-7/igt@xe_exec_multi_queue@two-queues-preempt-mode-fault-priority.html
* igt@xe_exec_threads@threads-multi-queue-mixed-shared-vm-rebind:
- shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#7138]) +6 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15010/shard-bmg-5/igt@xe_exec_threads@threads-multi-queue-mixed-shared-vm-rebind.html
* igt@xe_module_load@load:
- shard-bmg: ([PASS][50], [PASS][51], [PASS][52], [PASS][53], [PASS][54], [PASS][55], [PASS][56], [PASS][57], [PASS][58], [PASS][59], [PASS][60], [PASS][61], [PASS][62], [PASS][63], [PASS][64], [PASS][65], [PASS][66], [PASS][67], [PASS][68], [PASS][69], [PASS][70]) -> ([PASS][71], [PASS][72], [PASS][73], [PASS][74], [DMESG-WARN][75], [PASS][76], [PASS][77], [PASS][78], [PASS][79], [PASS][80], [PASS][81], [PASS][82], [PASS][83], [PASS][84], [PASS][85], [PASS][86], [SKIP][87], [DMESG-WARN][88], [PASS][89], [PASS][90], [PASS][91], [PASS][92]) ([Intel XE#2457] / [Intel XE#7405] / [Intel XE#7725])
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8865/shard-bmg-9/igt@xe_module_load@load.html
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8865/shard-bmg-8/igt@xe_module_load@load.html
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8865/shard-bmg-3/igt@xe_module_load@load.html
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8865/shard-bmg-1/igt@xe_module_load@load.html
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8865/shard-bmg-3/igt@xe_module_load@load.html
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8865/shard-bmg-1/igt@xe_module_load@load.html
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8865/shard-bmg-1/igt@xe_module_load@load.html
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8865/shard-bmg-5/igt@xe_module_load@load.html
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8865/shard-bmg-10/igt@xe_module_load@load.html
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8865/shard-bmg-10/igt@xe_module_load@load.html
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8865/shard-bmg-10/igt@xe_module_load@load.html
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8865/shard-bmg-2/igt@xe_module_load@load.html
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8865/shard-bmg-8/igt@xe_module_load@load.html
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8865/shard-bmg-7/igt@xe_module_load@load.html
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8865/shard-bmg-2/igt@xe_module_load@load.html
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8865/shard-bmg-5/igt@xe_module_load@load.html
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8865/shard-bmg-5/igt@xe_module_load@load.html
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8865/shard-bmg-6/igt@xe_module_load@load.html
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8865/shard-bmg-6/igt@xe_module_load@load.html
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8865/shard-bmg-7/igt@xe_module_load@load.html
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8865/shard-bmg-9/igt@xe_module_load@load.html
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15010/shard-bmg-3/igt@xe_module_load@load.html
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15010/shard-bmg-3/igt@xe_module_load@load.html
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15010/shard-bmg-5/igt@xe_module_load@load.html
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15010/shard-bmg-1/igt@xe_module_load@load.html
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15010/shard-bmg-6/igt@xe_module_load@load.html
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15010/shard-bmg-8/igt@xe_module_load@load.html
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15010/shard-bmg-8/igt@xe_module_load@load.html
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15010/shard-bmg-2/igt@xe_module_load@load.html
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15010/shard-bmg-7/igt@xe_module_load@load.html
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15010/shard-bmg-9/igt@xe_module_load@load.html
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15010/shard-bmg-9/igt@xe_module_load@load.html
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15010/shard-bmg-6/igt@xe_module_load@load.html
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15010/shard-bmg-6/igt@xe_module_load@load.html
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15010/shard-bmg-1/igt@xe_module_load@load.html
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15010/shard-bmg-5/igt@xe_module_load@load.html
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15010/shard-bmg-2/igt@xe_module_load@load.html
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15010/shard-bmg-9/igt@xe_module_load@load.html
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15010/shard-bmg-6/igt@xe_module_load@load.html
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15010/shard-bmg-7/igt@xe_module_load@load.html
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15010/shard-bmg-10/igt@xe_module_load@load.html
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15010/shard-bmg-10/igt@xe_module_load@load.html
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15010/shard-bmg-10/igt@xe_module_load@load.html
* igt@xe_multigpu_svm@mgpu-pagefault-basic:
- shard-bmg: NOTRUN -> [SKIP][93] ([Intel XE#6964]) +1 other test skip
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15010/shard-bmg-5/igt@xe_multigpu_svm@mgpu-pagefault-basic.html
* igt@xe_non_msix@walker-interrupt-notification-non-msix:
- shard-bmg: NOTRUN -> [SKIP][94] ([Intel XE#7622])
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15010/shard-bmg-9/igt@xe_non_msix@walker-interrupt-notification-non-msix.html
* igt@xe_pat@pat-sw-hw-suspend:
- shard-bmg: NOTRUN -> [SKIP][95] ([Intel XE#7590])
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15010/shard-bmg-3/igt@xe_pat@pat-sw-hw-suspend.html
* igt@xe_pm@d3cold-multiple-execs:
- shard-bmg: NOTRUN -> [SKIP][96] ([Intel XE#2284] / [Intel XE#7370]) +1 other test skip
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15010/shard-bmg-8/igt@xe_pm@d3cold-multiple-execs.html
* igt@xe_prefetch_fault@prefetch-fault-svm:
- shard-bmg: NOTRUN -> [SKIP][97] ([Intel XE#7599])
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15010/shard-bmg-9/igt@xe_prefetch_fault@prefetch-fault-svm.html
* igt@xe_pxp@pxp-termination-key-update-post-suspend:
- shard-bmg: NOTRUN -> [SKIP][98] ([Intel XE#4733] / [Intel XE#7417]) +3 other tests skip
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15010/shard-bmg-3/igt@xe_pxp@pxp-termination-key-update-post-suspend.html
* igt@xe_sriov_flr@flr-vf1-clear:
- shard-bmg: NOTRUN -> [FAIL][99] ([Intel XE#6569])
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15010/shard-bmg-5/igt@xe_sriov_flr@flr-vf1-clear.html
#### Possible fixes ####
* igt@kms_cursor_legacy@flip-vs-cursor-atomic:
- shard-bmg: [FAIL][100] ([Intel XE#7571]) -> [PASS][101]
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8865/shard-bmg-7/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15010/shard-bmg-7/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
* igt@kms_hdr@invalid-hdr:
- shard-bmg: [SKIP][102] ([Intel XE#1503]) -> [PASS][103]
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8865/shard-bmg-6/igt@kms_hdr@invalid-hdr.html
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15010/shard-bmg-7/igt@kms_hdr@invalid-hdr.html
* igt@xe_evict@evict-mixed-many-threads-small:
- shard-bmg: [INCOMPLETE][104] ([Intel XE#6321]) -> [PASS][105]
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8865/shard-bmg-5/igt@xe_evict@evict-mixed-many-threads-small.html
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15010/shard-bmg-7/igt@xe_evict@evict-mixed-many-threads-small.html
* igt@xe_prime_self_import@export-vs-gem_close-race:
- shard-bmg: [DMESG-WARN][106] ([Intel XE#7725]) -> [PASS][107]
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8865/shard-bmg-6/igt@xe_prime_self_import@export-vs-gem_close-race.html
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15010/shard-bmg-2/igt@xe_prime_self_import@export-vs-gem_close-race.html
* igt@xe_sriov_flr@flr-vfs-parallel:
- shard-bmg: [FAIL][108] ([Intel XE#6569]) -> [PASS][109]
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8865/shard-bmg-10/igt@xe_sriov_flr@flr-vfs-parallel.html
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15010/shard-bmg-5/igt@xe_sriov_flr@flr-vfs-parallel.html
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
[Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[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#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#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2350]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2350
[Intel XE#2372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2372
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2938]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2938
[Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
[Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904
[Intel XE#4090]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4090
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4331]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4331
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#5848]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5848
[Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607
[Intel XE#6126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6126
[Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321
[Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503
[Intel XE#6569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6569
[Intel XE#6707]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6707
[Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874
[Intel XE#6911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6911
[Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964
[Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061
[Intel XE#7136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7136
[Intel XE#7138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7138
[Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178
[Intel XE#7227]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7227
[Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283
[Intel XE#7340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7340
[Intel XE#7342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7342
[Intel XE#7349]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7349
[Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351
[Intel XE#7354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7354
[Intel XE#7355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7355
[Intel XE#7356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7356
[Intel XE#7359]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7359
[Intel XE#7361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7361
[Intel XE#7370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7370
[Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372
[Intel XE#7374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7374
[Intel XE#7376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7376
[Intel XE#7383]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7383
[Intel XE#7405]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7405
[Intel XE#7417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7417
[Intel XE#7435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7435
[Intel XE#7439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7439
[Intel XE#7443]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7443
[Intel XE#7466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7466
[Intel XE#7503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7503
[Intel XE#7571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7571
[Intel XE#7590]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7590
[Intel XE#7599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7599
[Intel XE#7622]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7622
[Intel XE#7636]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7636
[Intel XE#7642]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7642
[Intel XE#7679]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7679
[Intel XE#7725]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7725
[Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776
[Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
Build changes
-------------
* IGT: IGT_8865 -> IGTPW_15010
IGTPW_15010: 7b47cc44d23ae797e49444d095958f36cfff3c0b @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8865: 1c23bc1bdf01bf0ded2344cb217d7fe88de3b726 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-4921-898b5aa235c5b269d6c745fd84270b296aa75469: 898b5aa235c5b269d6c745fd84270b296aa75469
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15010/index.html
[-- Attachment #2: Type: text/html, Size: 32098 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread* ✗ i915.CI.Full: failure for tests/xe_exec: Add VM rebind stress test under workqueue cpumask cycling
2026-04-17 12:01 [PATCH i-g-t] tests/xe_exec: Add VM rebind stress test under workqueue cpumask cycling S Sebinraj
` (3 preceding siblings ...)
2026-04-21 12:45 ` ✗ Xe.CI.FULL: failure " Patchwork
@ 2026-04-21 16:05 ` Patchwork
4 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2026-04-21 16:05 UTC (permalink / raw)
To: S Sebinraj; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 140115 bytes --]
== Series Details ==
Series: tests/xe_exec: Add VM rebind stress test under workqueue cpumask cycling
URL : https://patchwork.freedesktop.org/series/165066/
State : failure
== Summary ==
CI Bug Log - changes from IGT_8865_full -> IGTPW_15010_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_15010_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_15010_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_15010/index.html
Participating hosts (10 -> 10)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_15010_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_pm_dc@dc6-psr:
- shard-dg2: NOTRUN -> [SKIP][1] +1 other test skip
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-dg2-7/igt@kms_pm_dc@dc6-psr.html
Known issues
------------
Here are the changes found in IGTPW_15010_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@crc32:
- shard-rkl: NOTRUN -> [SKIP][2] ([i915#6230])
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-3/igt@api_intel_bb@crc32.html
- shard-dg1: NOTRUN -> [SKIP][3] ([i915#6230])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-dg1-18/igt@api_intel_bb@crc32.html
- shard-tglu: NOTRUN -> [SKIP][4] ([i915#6230])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-tglu-10/igt@api_intel_bb@crc32.html
* igt@api_intel_bb@object-reloc-purge-cache:
- shard-rkl: NOTRUN -> [SKIP][5] ([i915#14544] / [i915#8411])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-6/igt@api_intel_bb@object-reloc-purge-cache.html
* igt@device_reset@cold-reset-bound:
- shard-dg1: NOTRUN -> [SKIP][6] ([i915#11078])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-dg1-19/igt@device_reset@cold-reset-bound.html
- shard-tglu: NOTRUN -> [SKIP][7] ([i915#11078])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-tglu-6/igt@device_reset@cold-reset-bound.html
- shard-mtlp: NOTRUN -> [SKIP][8] ([i915#11078])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-mtlp-2/igt@device_reset@cold-reset-bound.html
- shard-dg2: NOTRUN -> [SKIP][9] ([i915#11078])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-dg2-1/igt@device_reset@cold-reset-bound.html
- shard-rkl: NOTRUN -> [SKIP][10] ([i915#11078])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-4/igt@device_reset@cold-reset-bound.html
* igt@gem_ccs@block-multicopy-compressed:
- shard-rkl: NOTRUN -> [SKIP][11] ([i915#14544] / [i915#9323])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-6/igt@gem_ccs@block-multicopy-compressed.html
- shard-dg1: NOTRUN -> [SKIP][12] ([i915#9323])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-dg1-16/igt@gem_ccs@block-multicopy-compressed.html
- shard-tglu: NOTRUN -> [SKIP][13] ([i915#9323])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-tglu-6/igt@gem_ccs@block-multicopy-compressed.html
- shard-mtlp: NOTRUN -> [SKIP][14] ([i915#9323])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-mtlp-2/igt@gem_ccs@block-multicopy-compressed.html
* igt@gem_ccs@large-ctrl-surf-copy:
- shard-rkl: NOTRUN -> [SKIP][15] ([i915#13008])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-2/igt@gem_ccs@large-ctrl-surf-copy.html
- shard-dg1: NOTRUN -> [SKIP][16] ([i915#13008])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-dg1-14/igt@gem_ccs@large-ctrl-surf-copy.html
- shard-tglu: NOTRUN -> [SKIP][17] ([i915#13008])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-tglu-8/igt@gem_ccs@large-ctrl-surf-copy.html
- shard-mtlp: NOTRUN -> [SKIP][18] ([i915#13008])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-mtlp-1/igt@gem_ccs@large-ctrl-surf-copy.html
* igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-lmem0-lmem0:
- shard-dg2: NOTRUN -> [INCOMPLETE][19] ([i915#12392] / [i915#13356])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-dg2-6/igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-lmem0-lmem0.html
* igt@gem_close_race@multigpu-basic-process:
- shard-tglu: NOTRUN -> [SKIP][20] ([i915#7697])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-tglu-5/igt@gem_close_race@multigpu-basic-process.html
* igt@gem_create@create-ext-cpu-access-sanity-check:
- shard-rkl: NOTRUN -> [SKIP][21] ([i915#6335])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-4/igt@gem_create@create-ext-cpu-access-sanity-check.html
* igt@gem_create@create-ext-set-pat:
- shard-tglu-1: NOTRUN -> [SKIP][22] ([i915#8562])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-tglu-1/igt@gem_create@create-ext-set-pat.html
* igt@gem_ctx_isolation@preservation-s3@rcs0:
- shard-glk: NOTRUN -> [INCOMPLETE][23] ([i915#13356]) +1 other test incomplete
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-glk2/igt@gem_ctx_isolation@preservation-s3@rcs0.html
* igt@gem_ctx_persistence@heartbeat-many:
- shard-dg2: NOTRUN -> [SKIP][24] ([i915#8555])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-dg2-1/igt@gem_ctx_persistence@heartbeat-many.html
* igt@gem_ctx_persistence@legacy-engines-hostile-preempt:
- shard-snb: NOTRUN -> [SKIP][25] ([i915#1099]) +1 other test skip
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-snb6/igt@gem_ctx_persistence@legacy-engines-hostile-preempt.html
* igt@gem_ctx_persistence@saturated-hostile-nopreempt:
- shard-dg2: NOTRUN -> [SKIP][26] ([i915#5882]) +7 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-dg2-4/igt@gem_ctx_persistence@saturated-hostile-nopreempt.html
* igt@gem_ctx_persistence@saturated-hostile-nopreempt@vcs1:
- shard-mtlp: NOTRUN -> [SKIP][27] ([i915#5882]) +6 other tests skip
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-mtlp-4/igt@gem_ctx_persistence@saturated-hostile-nopreempt@vcs1.html
* igt@gem_exec_balancer@parallel:
- shard-tglu-1: NOTRUN -> [SKIP][28] ([i915#4525])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-tglu-1/igt@gem_exec_balancer@parallel.html
* igt@gem_exec_balancer@parallel-ordering:
- shard-tglu: NOTRUN -> [SKIP][29] ([i915#4525])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-tglu-3/igt@gem_exec_balancer@parallel-ordering.html
* igt@gem_exec_capture@capture-invisible@smem0:
- shard-glk: NOTRUN -> [SKIP][30] ([i915#6334]) +1 other test skip
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-glk8/igt@gem_exec_capture@capture-invisible@smem0.html
- shard-tglu-1: NOTRUN -> [SKIP][31] ([i915#6334]) +1 other test skip
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-tglu-1/igt@gem_exec_capture@capture-invisible@smem0.html
* igt@gem_exec_capture@capture-recoverable:
- shard-rkl: NOTRUN -> [SKIP][32] ([i915#6344])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-3/igt@gem_exec_capture@capture-recoverable.html
* igt@gem_exec_capture@capture@vecs0-lmem0:
- shard-dg2: NOTRUN -> [FAIL][33] ([i915#11965]) +4 other tests fail
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-dg2-5/igt@gem_exec_capture@capture@vecs0-lmem0.html
* igt@gem_exec_flush@basic-uc-pro-default:
- shard-dg1: NOTRUN -> [SKIP][34] ([i915#3539] / [i915#4852]) +1 other test skip
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-dg1-15/igt@gem_exec_flush@basic-uc-pro-default.html
* igt@gem_exec_flush@basic-uc-ro-default:
- shard-dg2: NOTRUN -> [SKIP][35] ([i915#3539] / [i915#4852]) +2 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-dg2-4/igt@gem_exec_flush@basic-uc-ro-default.html
* igt@gem_exec_reloc@basic-cpu-gtt:
- shard-rkl: NOTRUN -> [SKIP][36] ([i915#14544] / [i915#3281])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-6/igt@gem_exec_reloc@basic-cpu-gtt.html
- shard-dg1: NOTRUN -> [SKIP][37] ([i915#3281]) +2 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-dg1-12/igt@gem_exec_reloc@basic-cpu-gtt.html
* igt@gem_exec_reloc@basic-cpu-gtt-noreloc:
- shard-dg2: NOTRUN -> [SKIP][38] ([i915#3281]) +7 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-dg2-4/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html
* igt@gem_exec_reloc@basic-cpu-wc-noreloc:
- shard-mtlp: NOTRUN -> [SKIP][39] ([i915#3281]) +2 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-mtlp-6/igt@gem_exec_reloc@basic-cpu-wc-noreloc.html
* igt@gem_exec_reloc@basic-write-read-noreloc:
- shard-rkl: NOTRUN -> [SKIP][40] ([i915#3281]) +5 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-4/igt@gem_exec_reloc@basic-write-read-noreloc.html
* igt@gem_fence_thrash@bo-copy:
- shard-dg2: NOTRUN -> [SKIP][41] ([i915#4860]) +4 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-dg2-6/igt@gem_fence_thrash@bo-copy.html
* igt@gem_fenced_exec_thrash@no-spare-fences:
- shard-dg1: NOTRUN -> [SKIP][42] ([i915#4860]) +1 other test skip
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-dg1-17/igt@gem_fenced_exec_thrash@no-spare-fences.html
- shard-mtlp: NOTRUN -> [SKIP][43] ([i915#4860]) +1 other test skip
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-mtlp-1/igt@gem_fenced_exec_thrash@no-spare-fences.html
* igt@gem_lmem_swapping@heavy-multi:
- shard-rkl: NOTRUN -> [SKIP][44] ([i915#14544] / [i915#4613])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-6/igt@gem_lmem_swapping@heavy-multi.html
- shard-mtlp: NOTRUN -> [SKIP][45] ([i915#4613])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-mtlp-2/igt@gem_lmem_swapping@heavy-multi.html
* igt@gem_lmem_swapping@heavy-verify-multi-ccs:
- shard-glk: NOTRUN -> [SKIP][46] ([i915#4613]) +6 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-glk4/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html
- shard-rkl: NOTRUN -> [SKIP][47] ([i915#4613])
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-4/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html
* igt@gem_lmem_swapping@heavy-verify-random-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][48] ([i915#4613]) +2 other tests skip
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-tglu-1/igt@gem_lmem_swapping@heavy-verify-random-ccs.html
* igt@gem_lmem_swapping@parallel-random-verify-ccs:
- shard-tglu: NOTRUN -> [SKIP][49] ([i915#4613]) +2 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-tglu-5/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
* igt@gem_media_vme:
- shard-rkl: NOTRUN -> [SKIP][50] ([i915#284])
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-5/igt@gem_media_vme.html
* igt@gem_mmap@short-mmap:
- shard-dg1: NOTRUN -> [SKIP][51] ([i915#4083])
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-dg1-15/igt@gem_mmap@short-mmap.html
* igt@gem_mmap_gtt@bad-object:
- shard-dg2: NOTRUN -> [SKIP][52] ([i915#4077]) +8 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-dg2-5/igt@gem_mmap_gtt@bad-object.html
* igt@gem_mmap_gtt@close-race:
- shard-dg1: NOTRUN -> [SKIP][53] ([i915#4077]) +4 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-dg1-18/igt@gem_mmap_gtt@close-race.html
- shard-mtlp: NOTRUN -> [SKIP][54] ([i915#4077]) +5 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-mtlp-8/igt@gem_mmap_gtt@close-race.html
* igt@gem_mmap_wc@read-write-distinct:
- shard-dg2: NOTRUN -> [SKIP][55] ([i915#4083]) +2 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-dg2-8/igt@gem_mmap_wc@read-write-distinct.html
* igt@gem_partial_pwrite_pread@reads:
- shard-dg2: NOTRUN -> [SKIP][56] ([i915#3282])
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-dg2-4/igt@gem_partial_pwrite_pread@reads.html
- shard-rkl: NOTRUN -> [SKIP][57] ([i915#14544] / [i915#3282])
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-6/igt@gem_partial_pwrite_pread@reads.html
- shard-dg1: NOTRUN -> [SKIP][58] ([i915#3282])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-dg1-12/igt@gem_partial_pwrite_pread@reads.html
- shard-mtlp: NOTRUN -> [SKIP][59] ([i915#3282])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-mtlp-3/igt@gem_partial_pwrite_pread@reads.html
* igt@gem_pxp@protected-raw-src-copy-not-readible:
- shard-dg2: NOTRUN -> [SKIP][60] ([i915#4270]) +2 other tests skip
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-dg2-7/igt@gem_pxp@protected-raw-src-copy-not-readible.html
- shard-dg1: NOTRUN -> [SKIP][61] ([i915#4270]) +1 other test skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-dg1-17/igt@gem_pxp@protected-raw-src-copy-not-readible.html
* igt@gem_readwrite@beyond-eob:
- shard-rkl: NOTRUN -> [SKIP][62] ([i915#3282]) +3 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-2/igt@gem_readwrite@beyond-eob.html
* igt@gem_render_copy@yf-tiled-to-vebox-yf-tiled:
- shard-dg2: NOTRUN -> [SKIP][63] ([i915#5190] / [i915#8428]) +5 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-dg2-3/igt@gem_render_copy@yf-tiled-to-vebox-yf-tiled.html
- shard-mtlp: NOTRUN -> [SKIP][64] ([i915#8428]) +2 other tests skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-mtlp-1/igt@gem_render_copy@yf-tiled-to-vebox-yf-tiled.html
* igt@gem_render_tiled_blits@basic:
- shard-dg2: NOTRUN -> [SKIP][65] ([i915#4079]) +1 other test skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-dg2-7/igt@gem_render_tiled_blits@basic.html
* igt@gem_set_tiling_vs_gtt:
- shard-dg1: NOTRUN -> [SKIP][66] ([i915#4079]) +1 other test skip
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-dg1-12/igt@gem_set_tiling_vs_gtt.html
- shard-mtlp: NOTRUN -> [SKIP][67] ([i915#4079]) +1 other test skip
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-mtlp-3/igt@gem_set_tiling_vs_gtt.html
* igt@gem_softpin@evict-snoop-interruptible:
- shard-dg2: NOTRUN -> [SKIP][68] ([i915#4885]) +1 other test skip
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-dg2-6/igt@gem_softpin@evict-snoop-interruptible.html
- shard-dg1: NOTRUN -> [SKIP][69] ([i915#4885])
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-dg1-18/igt@gem_softpin@evict-snoop-interruptible.html
- shard-mtlp: NOTRUN -> [SKIP][70] ([i915#4885])
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-mtlp-5/igt@gem_softpin@evict-snoop-interruptible.html
* igt@gem_softpin@noreloc-s3:
- shard-glk: NOTRUN -> [INCOMPLETE][71] ([i915#13809])
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-glk8/igt@gem_softpin@noreloc-s3.html
* igt@gem_userptr_blits@dmabuf-unsync:
- shard-dg2: NOTRUN -> [SKIP][72] ([i915#3297]) +2 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-dg2-4/igt@gem_userptr_blits@dmabuf-unsync.html
* igt@gem_userptr_blits@invalid-mmap-offset-unsync:
- shard-rkl: NOTRUN -> [SKIP][73] ([i915#3297])
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-2/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html
* igt@gem_userptr_blits@readonly-pwrite-unsync:
- shard-tglu: NOTRUN -> [SKIP][74] ([i915#3297])
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-tglu-4/igt@gem_userptr_blits@readonly-pwrite-unsync.html
* igt@gem_workarounds@suspend-resume-fd:
- shard-glk: NOTRUN -> [INCOMPLETE][75] ([i915#13356] / [i915#14586])
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-glk4/igt@gem_workarounds@suspend-resume-fd.html
* igt@gen9_exec_parse@batch-zero-length:
- shard-dg2: NOTRUN -> [SKIP][76] ([i915#2856])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-dg2-1/igt@gen9_exec_parse@batch-zero-length.html
* igt@gen9_exec_parse@bb-oversize:
- shard-rkl: NOTRUN -> [SKIP][77] ([i915#14544] / [i915#2527])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-6/igt@gen9_exec_parse@bb-oversize.html
* igt@gen9_exec_parse@bb-secure:
- shard-tglu-1: NOTRUN -> [SKIP][78] ([i915#2527] / [i915#2856])
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-tglu-1/igt@gen9_exec_parse@bb-secure.html
* igt@gen9_exec_parse@bb-start-param:
- shard-rkl: NOTRUN -> [SKIP][79] ([i915#2527]) +2 other tests skip
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-7/igt@gen9_exec_parse@bb-start-param.html
* igt@gen9_exec_parse@shadow-peek:
- shard-tglu: NOTRUN -> [SKIP][80] ([i915#2527] / [i915#2856]) +2 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-tglu-5/igt@gen9_exec_parse@shadow-peek.html
* igt@i915_drm_fdinfo@busy-check-all@vecs0:
- shard-dg2: NOTRUN -> [SKIP][81] ([i915#11527]) +7 other tests skip
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-dg2-8/igt@i915_drm_fdinfo@busy-check-all@vecs0.html
* igt@i915_drm_fdinfo@busy@rcs0:
- shard-dg1: NOTRUN -> [SKIP][82] ([i915#14073]) +11 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-dg1-15/igt@i915_drm_fdinfo@busy@rcs0.html
- shard-mtlp: NOTRUN -> [SKIP][83] ([i915#14073]) +13 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-mtlp-7/igt@i915_drm_fdinfo@busy@rcs0.html
* igt@i915_drm_fdinfo@busy@vecs1:
- shard-dg2: NOTRUN -> [SKIP][84] ([i915#14073]) +15 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-dg2-1/igt@i915_drm_fdinfo@busy@vecs1.html
* igt@i915_drm_fdinfo@virtual-busy-all:
- shard-dg2: NOTRUN -> [SKIP][85] ([i915#14118])
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-dg2-3/igt@i915_drm_fdinfo@virtual-busy-all.html
* igt@i915_module_load@fault-injection@intel_connector_register:
- shard-glk: NOTRUN -> [ABORT][86] ([i915#15342]) +1 other test abort
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-glk9/igt@i915_module_load@fault-injection@intel_connector_register.html
* igt@i915_module_load@reload-no-display:
- shard-dg2: NOTRUN -> [DMESG-WARN][87] ([i915#13029] / [i915#14545])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-dg2-7/igt@i915_module_load@reload-no-display.html
- shard-dg1: NOTRUN -> [DMESG-WARN][88] ([i915#13029] / [i915#14545])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-dg1-18/igt@i915_module_load@reload-no-display.html
- shard-snb: NOTRUN -> [DMESG-WARN][89] ([i915#14545])
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-snb7/igt@i915_module_load@reload-no-display.html
* igt@i915_pm_rc6_residency@rc6-idle:
- shard-rkl: NOTRUN -> [SKIP][90] ([i915#14498])
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-4/igt@i915_pm_rc6_residency@rc6-idle.html
* igt@i915_pm_rpm@system-suspend:
- shard-glk11: NOTRUN -> [INCOMPLETE][91] ([i915#13356])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-glk11/igt@i915_pm_rpm@system-suspend.html
* igt@i915_pm_rpm@system-suspend-devices:
- shard-rkl: [PASS][92] -> [ABORT][93] ([i915#15060])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-3/igt@i915_pm_rpm@system-suspend-devices.html
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-1/igt@i915_pm_rpm@system-suspend-devices.html
* igt@i915_pm_rps@thresholds:
- shard-dg1: NOTRUN -> [SKIP][94] ([i915#11681])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-dg1-17/igt@i915_pm_rps@thresholds.html
- shard-mtlp: NOTRUN -> [SKIP][95] ([i915#11681])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-mtlp-1/igt@i915_pm_rps@thresholds.html
* igt@i915_pm_rps@thresholds-idle-park:
- shard-dg2: NOTRUN -> [SKIP][96] ([i915#11681]) +1 other test skip
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-dg2-3/igt@i915_pm_rps@thresholds-idle-park.html
* igt@i915_selftest@perf:
- shard-dg2: [PASS][97] -> [DMESG-WARN][98] ([i915#14545])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-dg2-1/igt@i915_selftest@perf.html
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-dg2-4/igt@i915_selftest@perf.html
* igt@i915_suspend@debugfs-reader:
- shard-glk11: NOTRUN -> [INCOMPLETE][99] ([i915#4817])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-glk11/igt@i915_suspend@debugfs-reader.html
* igt@i915_suspend@forcewake:
- shard-glk: NOTRUN -> [INCOMPLETE][100] ([i915#4817])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-glk9/igt@i915_suspend@forcewake.html
* igt@intel_hwmon@hwmon-read:
- shard-rkl: NOTRUN -> [SKIP][101] ([i915#14544] / [i915#7707])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-6/igt@intel_hwmon@hwmon-read.html
- shard-tglu: NOTRUN -> [SKIP][102] ([i915#7707])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-tglu-4/igt@intel_hwmon@hwmon-read.html
- shard-mtlp: NOTRUN -> [SKIP][103] ([i915#7707])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-mtlp-3/igt@intel_hwmon@hwmon-read.html
* igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
- shard-rkl: NOTRUN -> [SKIP][104] ([i915#12454] / [i915#12712])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-4/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
* igt@kms_async_flips@async-flip-suspend-resume:
- shard-glk: NOTRUN -> [INCOMPLETE][105] ([i915#12761]) +1 other test incomplete
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-glk1/igt@kms_async_flips@async-flip-suspend-resume.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-tglu: NOTRUN -> [SKIP][106] ([i915#1769] / [i915#3555])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-tglu-6/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-180:
- shard-tglu-1: NOTRUN -> [SKIP][107] ([i915#5286]) +3 other tests skip
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-tglu-1/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-addfb:
- shard-tglu: NOTRUN -> [SKIP][108] ([i915#5286]) +1 other test skip
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-tglu-7/igt@kms_big_fb@4-tiled-addfb.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180:
- shard-rkl: NOTRUN -> [SKIP][109] ([i915#5286]) +4 other tests skip
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180.html
- shard-dg1: NOTRUN -> [SKIP][110] ([i915#4538] / [i915#5286])
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-dg1-15/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180.html
* igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip:
- shard-dg2: NOTRUN -> [SKIP][111] ([i915#3828])
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-dg2-5/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][112] ([i915#3638])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-7/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][113] ([i915#14544] / [i915#3638])
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-6/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html
- shard-dg1: NOTRUN -> [SKIP][114] ([i915#3638])
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-dg1-16/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-dg2: NOTRUN -> [SKIP][115] ([i915#4538] / [i915#5190]) +9 other tests skip
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-dg2-8/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
- shard-mtlp: NOTRUN -> [SKIP][116] +9 other tests skip
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-mtlp-3/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][117] ([i915#4538]) +2 other tests skip
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-dg1-13/igt@kms_big_fb@yf-tiled-32bpp-rotate-90.html
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][118] ([i915#14544] / [i915#6095]) +12 other tests skip
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-6/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2.html
* igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][119] ([i915#6095]) +41 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-dg2-4/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-1:
- shard-glk10: NOTRUN -> [SKIP][120] +112 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-glk10/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs:
- shard-rkl: NOTRUN -> [SKIP][121] ([i915#12313])
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-8/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
* igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2:
- shard-glk: NOTRUN -> [SKIP][122] +592 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-glk5/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][123] ([i915#6095]) +54 other tests skip
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-tglu-7/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs:
- shard-dg2: NOTRUN -> [SKIP][124] ([i915#12313]) +1 other test skip
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-dg2-3/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
- shard-rkl: NOTRUN -> [SKIP][125] ([i915#12313] / [i915#14544])
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-6/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
- shard-dg1: NOTRUN -> [SKIP][126] ([i915#12313])
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-dg1-16/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
- shard-mtlp: NOTRUN -> [SKIP][127] ([i915#12313])
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-mtlp-4/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][128] ([i915#6095]) +49 other tests skip
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-tglu-1/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs.html
* igt@kms_ccs@crc-primary-basic-y-tiled-ccs@pipe-d-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][129] ([i915#6095]) +24 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-mtlp-5/igt@kms_ccs@crc-primary-basic-y-tiled-ccs@pipe-d-edp-1.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][130] ([i915#12313])
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-tglu-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-1:
- shard-dg1: NOTRUN -> [SKIP][131] ([i915#6095]) +220 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-dg1-14/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-tglu: NOTRUN -> [SKIP][132] ([i915#12805])
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-tglu-4/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs:
- shard-tglu: NOTRUN -> [SKIP][133] ([i915#12313]) +1 other test skip
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-tglu-3/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][134] ([i915#14098] / [i915#14544] / [i915#6095]) +8 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2.html
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs@pipe-c-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][135] ([i915#14098] / [i915#6095]) +56 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-2/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs@pipe-c-hdmi-a-1.html
* igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][136] ([i915#10307] / [i915#10434] / [i915#6095]) +3 other tests skip
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-dg2-4/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][137] ([i915#6095]) +96 other tests skip
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-7/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@random-ccs-data-y-tiled-ccs:
- shard-snb: NOTRUN -> [SKIP][138] +129 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-snb7/igt@kms_ccs@random-ccs-data-y-tiled-ccs.html
* igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][139] ([i915#10307] / [i915#6095]) +96 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-dg2-4/igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-1.html
* igt@kms_chamelium_audio@hdmi-audio-edid:
- shard-tglu: NOTRUN -> [SKIP][140] ([i915#11151] / [i915#7828]) +8 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-tglu-6/igt@kms_chamelium_audio@hdmi-audio-edid.html
* igt@kms_chamelium_color@ctm-green-to-red:
- shard-dg2: NOTRUN -> [SKIP][141] +9 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-dg2-5/igt@kms_chamelium_color@ctm-green-to-red.html
* igt@kms_chamelium_edid@dp-edid-change-during-suspend:
- shard-rkl: NOTRUN -> [SKIP][142] ([i915#11151] / [i915#14544] / [i915#7828]) +1 other test skip
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-6/igt@kms_chamelium_edid@dp-edid-change-during-suspend.html
* igt@kms_chamelium_edid@hdmi-edid-read:
- shard-tglu-1: NOTRUN -> [SKIP][143] ([i915#11151] / [i915#7828]) +5 other tests skip
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-tglu-1/igt@kms_chamelium_edid@hdmi-edid-read.html
* igt@kms_chamelium_edid@vga-edid-read:
- shard-dg1: NOTRUN -> [SKIP][144] ([i915#11151] / [i915#7828]) +3 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-dg1-17/igt@kms_chamelium_edid@vga-edid-read.html
* igt@kms_chamelium_frames@hdmi-crc-fast:
- shard-dg2: NOTRUN -> [SKIP][145] ([i915#11151] / [i915#7828]) +7 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-dg2-1/igt@kms_chamelium_frames@hdmi-crc-fast.html
* igt@kms_chamelium_hpd@vga-hpd:
- shard-mtlp: NOTRUN -> [SKIP][146] ([i915#11151] / [i915#7828]) +3 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-mtlp-8/igt@kms_chamelium_hpd@vga-hpd.html
* igt@kms_chamelium_hpd@vga-hpd-fast:
- shard-rkl: NOTRUN -> [SKIP][147] ([i915#11151] / [i915#7828]) +5 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-2/igt@kms_chamelium_hpd@vga-hpd-fast.html
* igt@kms_color@deep-color:
- shard-tglu: NOTRUN -> [SKIP][148] ([i915#3555] / [i915#9979])
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-tglu-3/igt@kms_color@deep-color.html
* igt@kms_content_protection@dp-mst-lic-type-0-hdcp14:
- shard-rkl: NOTRUN -> [SKIP][149] ([i915#14544] / [i915#15330])
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-6/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html
- shard-dg1: NOTRUN -> [SKIP][150] ([i915#15330])
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-dg1-16/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html
- shard-tglu: NOTRUN -> [SKIP][151] ([i915#15330])
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-tglu-6/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html
- shard-mtlp: NOTRUN -> [SKIP][152] ([i915#15330])
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-mtlp-2/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html
- shard-dg2: NOTRUN -> [SKIP][153] ([i915#15330])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-dg2-5/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-dg2: NOTRUN -> [SKIP][154] ([i915#15330] / [i915#3299])
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-dg2-8/igt@kms_content_protection@dp-mst-lic-type-1.html
- shard-rkl: NOTRUN -> [SKIP][155] ([i915#15330] / [i915#3116]) +1 other test skip
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-4/igt@kms_content_protection@dp-mst-lic-type-1.html
- shard-tglu-1: NOTRUN -> [SKIP][156] ([i915#15330] / [i915#3116] / [i915#3299])
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-tglu-1/igt@kms_content_protection@dp-mst-lic-type-1.html
- shard-dg1: NOTRUN -> [SKIP][157] ([i915#15330] / [i915#3299])
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-dg1-13/igt@kms_content_protection@dp-mst-lic-type-1.html
- shard-mtlp: NOTRUN -> [SKIP][158] ([i915#15330] / [i915#3299])
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-mtlp-4/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@dp-mst-type-0-hdcp14:
- shard-tglu-1: NOTRUN -> [SKIP][159] ([i915#15330])
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-tglu-1/igt@kms_content_protection@dp-mst-type-0-hdcp14.html
* igt@kms_content_protection@mei-interface:
- shard-rkl: NOTRUN -> [SKIP][160] ([i915#15865]) +2 other tests skip
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-2/igt@kms_content_protection@mei-interface.html
- shard-tglu-1: NOTRUN -> [SKIP][161] ([i915#15865])
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-tglu-1/igt@kms_content_protection@mei-interface.html
* igt@kms_content_protection@type1:
- shard-dg2: NOTRUN -> [SKIP][162] ([i915#15865]) +2 other tests skip
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-dg2-1/igt@kms_content_protection@type1.html
- shard-dg1: NOTRUN -> [SKIP][163] ([i915#15865])
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-dg1-15/igt@kms_content_protection@type1.html
- shard-tglu: NOTRUN -> [SKIP][164] ([i915#15865]) +2 other tests skip
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-tglu-7/igt@kms_content_protection@type1.html
- shard-mtlp: NOTRUN -> [SKIP][165] ([i915#15865])
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-mtlp-7/igt@kms_content_protection@type1.html
* igt@kms_cursor_crc@cursor-offscreen-512x170:
- shard-mtlp: NOTRUN -> [SKIP][166] ([i915#13049]) +1 other test skip
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-mtlp-4/igt@kms_cursor_crc@cursor-offscreen-512x170.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-dg2: NOTRUN -> [SKIP][167] ([i915#13049]) +1 other test skip
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-dg2-7/igt@kms_cursor_crc@cursor-offscreen-512x512.html
- shard-rkl: NOTRUN -> [SKIP][168] ([i915#13049]) +2 other tests skip
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-2/igt@kms_cursor_crc@cursor-offscreen-512x512.html
- shard-dg1: NOTRUN -> [SKIP][169] ([i915#13049]) +1 other test skip
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-dg1-17/igt@kms_cursor_crc@cursor-offscreen-512x512.html
- shard-tglu: NOTRUN -> [SKIP][170] ([i915#13049]) +1 other test skip
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-tglu-8/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-onscreen-32x32:
- shard-rkl: NOTRUN -> [SKIP][171] ([i915#3555]) +7 other tests skip
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-8/igt@kms_cursor_crc@cursor-onscreen-32x32.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x10:
- shard-tglu-1: NOTRUN -> [SKIP][172] ([i915#3555]) +2 other tests skip
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-tglu-1/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x170:
- shard-tglu-1: NOTRUN -> [SKIP][173] ([i915#13049]) +2 other tests skip
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-tglu-1/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html
* igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [FAIL][174] ([i915#13566]) +2 other tests fail
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-8/igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1.html
* igt@kms_cursor_crc@cursor-sliding-32x10:
- shard-dg2: NOTRUN -> [SKIP][175] ([i915#3555]) +4 other tests skip
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-dg2-1/igt@kms_cursor_crc@cursor-sliding-32x10.html
- shard-dg1: NOTRUN -> [SKIP][176] ([i915#3555]) +6 other tests skip
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-dg1-19/igt@kms_cursor_crc@cursor-sliding-32x10.html
- shard-mtlp: NOTRUN -> [SKIP][177] ([i915#3555] / [i915#8814])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-mtlp-8/igt@kms_cursor_crc@cursor-sliding-32x10.html
* igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy:
- shard-dg2: NOTRUN -> [SKIP][178] ([i915#13046] / [i915#5354]) +2 other tests skip
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-dg2-1/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-tglu: NOTRUN -> [SKIP][179] ([i915#4103])
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-tglu-7/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@cursora-vs-flipb-legacy:
- shard-rkl: NOTRUN -> [SKIP][180] +14 other tests skip
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-2/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size:
- shard-mtlp: NOTRUN -> [SKIP][181] ([i915#9809]) +1 other test skip
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-mtlp-6/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot:
- shard-tglu-1: NOTRUN -> [SKIP][182] ([i915#9067])
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-tglu-1/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-dg2: NOTRUN -> [SKIP][183] ([i915#4103] / [i915#4213])
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-dg2-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-tglu-1: NOTRUN -> [SKIP][184] ([i915#4103])
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-tglu-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-rkl: NOTRUN -> [SKIP][185] ([i915#9723])
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-7/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_dp_link_training@non-uhbr-mst:
- shard-dg2: NOTRUN -> [SKIP][186] ([i915#13749])
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-dg2-4/igt@kms_dp_link_training@non-uhbr-mst.html
- shard-dg1: NOTRUN -> [SKIP][187] ([i915#13749])
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-dg1-14/igt@kms_dp_link_training@non-uhbr-mst.html
- shard-tglu: NOTRUN -> [SKIP][188] ([i915#13749])
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-tglu-4/igt@kms_dp_link_training@non-uhbr-mst.html
* igt@kms_dp_link_training@uhbr-sst:
- shard-rkl: NOTRUN -> [SKIP][189] ([i915#13748] / [i915#14544])
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-6/igt@kms_dp_link_training@uhbr-sst.html
- shard-dg1: NOTRUN -> [SKIP][190] ([i915#13748])
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-dg1-16/igt@kms_dp_link_training@uhbr-sst.html
- shard-tglu: NOTRUN -> [SKIP][191] ([i915#13748])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-tglu-6/igt@kms_dp_link_training@uhbr-sst.html
- shard-mtlp: NOTRUN -> [SKIP][192] ([i915#13749]) +1 other test skip
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-mtlp-2/igt@kms_dp_link_training@uhbr-sst.html
- shard-dg2: NOTRUN -> [SKIP][193] ([i915#13748])
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-dg2-5/igt@kms_dp_link_training@uhbr-sst.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-rkl: NOTRUN -> [SKIP][194] ([i915#13707])
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-4/igt@kms_dp_linktrain_fallback@dp-fallback.html
- shard-tglu-1: NOTRUN -> [SKIP][195] ([i915#13707])
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-tglu-1/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
- shard-tglu: NOTRUN -> [SKIP][196] ([i915#3840])
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-tglu-2/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-dg2: NOTRUN -> [SKIP][197] ([i915#3555] / [i915#3840]) +1 other test skip
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-dg2-4/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_dsc@dsc-with-formats:
- shard-tglu: NOTRUN -> [SKIP][198] ([i915#3555] / [i915#3840])
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-tglu-2/igt@kms_dsc@dsc-with-formats.html
- shard-mtlp: NOTRUN -> [SKIP][199] ([i915#3555] / [i915#3840])
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-mtlp-6/igt@kms_dsc@dsc-with-formats.html
- shard-dg1: NOTRUN -> [SKIP][200] ([i915#3555] / [i915#3840])
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-dg1-13/igt@kms_dsc@dsc-with-formats.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc:
- shard-rkl: NOTRUN -> [SKIP][201] ([i915#3840] / [i915#9053])
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-3/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
* igt@kms_feature_discovery@display-2x:
- shard-tglu-1: NOTRUN -> [SKIP][202] ([i915#1839])
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-tglu-1/igt@kms_feature_discovery@display-2x.html
* igt@kms_feature_discovery@dp-mst:
- shard-tglu: NOTRUN -> [SKIP][203] ([i915#9337])
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-tglu-3/igt@kms_feature_discovery@dp-mst.html
* igt@kms_feature_discovery@psr1:
- shard-tglu: NOTRUN -> [SKIP][204] ([i915#658])
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-tglu-8/igt@kms_feature_discovery@psr1.html
- shard-dg2: NOTRUN -> [SKIP][205] ([i915#658])
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-dg2-7/igt@kms_feature_discovery@psr1.html
- shard-rkl: NOTRUN -> [SKIP][206] ([i915#658])
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-8/igt@kms_feature_discovery@psr1.html
- shard-dg1: NOTRUN -> [SKIP][207] ([i915#658])
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-dg1-12/igt@kms_feature_discovery@psr1.html
* igt@kms_flip@2x-absolute-wf_vblank:
- shard-dg2: NOTRUN -> [SKIP][208] ([i915#9934]) +5 other tests skip
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-dg2-4/igt@kms_flip@2x-absolute-wf_vblank.html
* igt@kms_flip@2x-dpms-vs-vblank-race:
- shard-tglu-1: NOTRUN -> [SKIP][209] ([i915#3637] / [i915#9934]) +3 other tests skip
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-tglu-1/igt@kms_flip@2x-dpms-vs-vblank-race.html
* igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset:
- shard-dg1: NOTRUN -> [SKIP][210] ([i915#9934]) +2 other tests skip
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-dg1-12/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html
* igt@kms_flip@2x-flip-vs-rmfb-interruptible:
- shard-mtlp: NOTRUN -> [SKIP][211] ([i915#3637] / [i915#9934]) +3 other tests skip
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-mtlp-4/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html
- shard-rkl: NOTRUN -> [SKIP][212] ([i915#14544] / [i915#9934]) +1 other test skip
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-6/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible:
- shard-glk: NOTRUN -> [INCOMPLETE][213] ([i915#12745] / [i915#4839])
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-glk6/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible@ac-hdmi-a1-hdmi-a2:
- shard-glk: NOTRUN -> [INCOMPLETE][214] ([i915#12745])
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-glk6/igt@kms_flip@2x-flip-vs-suspend-interruptible@ac-hdmi-a1-hdmi-a2.html
* igt@kms_flip@2x-modeset-vs-vblank-race:
- shard-tglu: NOTRUN -> [SKIP][215] ([i915#3637] / [i915#9934]) +5 other tests skip
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-tglu-8/igt@kms_flip@2x-modeset-vs-vblank-race.html
* igt@kms_flip@2x-modeset-vs-vblank-race-interruptible:
- shard-rkl: NOTRUN -> [SKIP][216] ([i915#9934]) +9 other tests skip
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-7/igt@kms_flip@2x-modeset-vs-vblank-race-interruptible.html
* igt@kms_flip@flip-vs-suspend-interruptible:
- shard-glk: NOTRUN -> [INCOMPLETE][217] ([i915#12314] / [i915#12745] / [i915#4839] / [i915#6113])
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-glk5/igt@kms_flip@flip-vs-suspend-interruptible.html
* igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1:
- shard-glk: NOTRUN -> [INCOMPLETE][218] ([i915#12314] / [i915#12745])
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-glk5/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
- shard-tglu-1: NOTRUN -> [SKIP][219] ([i915#15643]) +4 other tests skip
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling:
- shard-rkl: NOTRUN -> [SKIP][220] ([i915#15643]) +1 other test skip
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-7/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html
- shard-dg1: NOTRUN -> [SKIP][221] ([i915#15643])
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-dg1-19/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][222] ([i915#8810] / [i915#8813])
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling:
- shard-tglu: NOTRUN -> [SKIP][223] ([i915#15643]) +3 other tests skip
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-tglu-4/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling:
- shard-mtlp: NOTRUN -> [SKIP][224] ([i915#15643]) +1 other test skip
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling:
- shard-mtlp: NOTRUN -> [SKIP][225] ([i915#3555] / [i915#8810] / [i915#8813]) +2 other tests skip
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling:
- shard-dg2: NOTRUN -> [SKIP][226] ([i915#15643]) +2 other tests skip
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-dg2-8/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling:
- shard-dg2: NOTRUN -> [SKIP][227] ([i915#15643] / [i915#5190]) +2 other tests skip
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-dg2-6/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html
* igt@kms_force_connector_basic@force-connector-state:
- shard-mtlp: [PASS][228] -> [SKIP][229] ([i915#15672])
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-mtlp-3/igt@kms_force_connector_basic@force-connector-state.html
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-mtlp-1/igt@kms_force_connector_basic@force-connector-state.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-indfb-draw-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][230] ([i915#15104]) +2 other tests skip
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-dg1-12/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-indfb-draw-mmap-gtt.html
- shard-mtlp: NOTRUN -> [SKIP][231] ([i915#15104]) +1 other test skip
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][232] ([i915#8708]) +17 other tests skip
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-dg2-8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt:
- shard-dg1: NOTRUN -> [SKIP][233] +26 other tests skip
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-dg1-12/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][234] ([i915#5354]) +27 other tests skip
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-onoff:
- shard-tglu: NOTRUN -> [SKIP][235] +50 other tests skip
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-tglu-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-cpu:
- shard-mtlp: NOTRUN -> [SKIP][236] ([i915#1825]) +18 other tests skip
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbc-suspend:
- shard-rkl: NOTRUN -> [INCOMPLETE][237] ([i915#10056])
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-suspend.html
- shard-glk10: NOTRUN -> [INCOMPLETE][238] ([i915#10056])
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-glk10/igt@kms_frontbuffer_tracking@fbc-suspend.html
* igt@kms_frontbuffer_tracking@fbc-tiling-4:
- shard-rkl: NOTRUN -> [SKIP][239] ([i915#5439])
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-8/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][240] ([i915#15104]) +2 other tests skip
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-pwrite:
- shard-dg2: NOTRUN -> [SKIP][241] ([i915#15102]) +1 other test skip
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-render:
- shard-dg1: NOTRUN -> [SKIP][242] ([i915#15102])
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-dg1-19/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move:
- shard-dg1: NOTRUN -> [SKIP][243] ([i915#15102] / [i915#3458]) +4 other tests skip
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-pwrite:
- shard-dg2: NOTRUN -> [SKIP][244] ([i915#10433] / [i915#15102] / [i915#3458])
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff:
- shard-tglu-1: NOTRUN -> [SKIP][245] +43 other tests skip
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][246] ([i915#14544])
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc:
- shard-rkl: NOTRUN -> [SKIP][247] ([i915#15102] / [i915#3023]) +14 other tests skip
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
- shard-dg2: NOTRUN -> [SKIP][248] ([i915#10055])
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
- shard-mtlp: NOTRUN -> [SKIP][249] ([i915#10055])
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
* igt@kms_frontbuffer_tracking@pipe-fbc-rte:
- shard-tglu-1: NOTRUN -> [SKIP][250] ([i915#9766])
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-tglu-1/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-wc:
- shard-rkl: NOTRUN -> [SKIP][251] ([i915#15102]) +4 other tests skip
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][252] ([i915#8708]) +9 other tests skip
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][253] ([i915#8708]) +5 other tests skip
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-mtlp-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt:
- shard-tglu-1: NOTRUN -> [SKIP][254] ([i915#15102]) +12 other tests skip
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-pwrite:
- shard-rkl: NOTRUN -> [SKIP][255] ([i915#14544] / [i915#1825])
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt:
- shard-rkl: NOTRUN -> [SKIP][256] ([i915#1825]) +32 other tests skip
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psr-rgb101010-draw-render:
- shard-rkl: NOTRUN -> [SKIP][257] ([i915#14544] / [i915#15102] / [i915#3023]) +1 other test skip
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-render.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][258] ([i915#15102] / [i915#3458]) +5 other tests skip
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-dg2-3/igt@kms_frontbuffer_tracking@psr-rgb565-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary:
- shard-tglu: NOTRUN -> [SKIP][259] ([i915#15102]) +22 other tests skip
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-tglu-2/igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary.html
* igt@kms_hdmi_inject@inject-4k:
- shard-mtlp: [PASS][260] -> [SKIP][261] ([i915#15725])
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-mtlp-7/igt@kms_hdmi_inject@inject-4k.html
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-mtlp-1/igt@kms_hdmi_inject@inject-4k.html
* igt@kms_hdr@bpc-switch-dpms:
- shard-dg2: [PASS][262] -> [SKIP][263] ([i915#3555] / [i915#8228])
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-dg2-10/igt@kms_hdr@bpc-switch-dpms.html
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-dg2-1/igt@kms_hdr@bpc-switch-dpms.html
* igt@kms_hdr@invalid-hdr:
- shard-tglu: NOTRUN -> [SKIP][264] ([i915#3555] / [i915#8228])
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-tglu-5/igt@kms_hdr@invalid-hdr.html
* igt@kms_hdr@static-swap:
- shard-rkl: NOTRUN -> [SKIP][265] ([i915#3555] / [i915#8228])
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-2/igt@kms_hdr@static-swap.html
* igt@kms_joiner@basic-big-joiner:
- shard-tglu: NOTRUN -> [SKIP][266] ([i915#15460])
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-tglu-6/igt@kms_joiner@basic-big-joiner.html
* igt@kms_joiner@basic-force-big-joiner:
- shard-dg2: NOTRUN -> [SKIP][267] ([i915#15459])
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-dg2-3/igt@kms_joiner@basic-force-big-joiner.html
* igt@kms_joiner@basic-force-ultra-joiner:
- shard-rkl: NOTRUN -> [SKIP][268] ([i915#15458])
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-2/igt@kms_joiner@basic-force-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-tglu: NOTRUN -> [SKIP][269] ([i915#15458])
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-tglu-3/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_pipe_stress@stress-xrgb8888-4tiled:
- shard-tglu-1: NOTRUN -> [SKIP][270] ([i915#14712])
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-tglu-1/igt@kms_pipe_stress@stress-xrgb8888-4tiled.html
* igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier-source-clamping:
- shard-tglu: NOTRUN -> [SKIP][271] ([i915#15709]) +4 other tests skip
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-tglu-3/igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-x-tiled-modifier@pipe-a-plane-7:
- shard-tglu: NOTRUN -> [SKIP][272] ([i915#15608]) +1 other test skip
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-tglu-4/igt@kms_plane@pixel-format-x-tiled-modifier@pipe-a-plane-7.html
* igt@kms_plane@pixel-format-y-tiled-ccs-modifier:
- shard-dg2: NOTRUN -> [SKIP][273] ([i915#15709]) +4 other tests skip
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-dg2-1/igt@kms_plane@pixel-format-y-tiled-ccs-modifier.html
- shard-dg1: NOTRUN -> [SKIP][274] ([i915#15709]) +1 other test skip
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-dg1-15/igt@kms_plane@pixel-format-y-tiled-ccs-modifier.html
- shard-mtlp: NOTRUN -> [SKIP][275] ([i915#15709]) +1 other test skip
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-mtlp-7/igt@kms_plane@pixel-format-y-tiled-ccs-modifier.html
* igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier:
- shard-rkl: NOTRUN -> [SKIP][276] ([i915#15709]) +3 other tests skip
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-2/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier.html
* igt@kms_plane@pixel-format-yf-tiled-ccs-modifier:
- shard-rkl: NOTRUN -> [SKIP][277] ([i915#14544] / [i915#15709])
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-6/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier.html
* igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping:
- shard-tglu-1: NOTRUN -> [SKIP][278] ([i915#15709]) +3 other tests skip
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-tglu-1/igt@kms_plane@pixel-format-yf-tiled-modifier-source-clamping.html
* igt@kms_plane_alpha_blend@alpha-transparent-fb:
- shard-glk: NOTRUN -> [FAIL][279] ([i915#10647] / [i915#12177])
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-glk3/igt@kms_plane_alpha_blend@alpha-transparent-fb.html
* igt@kms_plane_alpha_blend@constant-alpha-max:
- shard-glk: NOTRUN -> [FAIL][280] ([i915#10647] / [i915#12169])
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-glk2/igt@kms_plane_alpha_blend@constant-alpha-max.html
* igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][281] ([i915#10647]) +3 other tests fail
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-glk2/igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1.html
* igt@kms_plane_lowres@tiling-yf:
- shard-dg2: NOTRUN -> [SKIP][282] ([i915#3555] / [i915#8821])
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-dg2-7/igt@kms_plane_lowres@tiling-yf.html
- shard-mtlp: NOTRUN -> [SKIP][283] ([i915#3555] / [i915#8821])
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-mtlp-1/igt@kms_plane_lowres@tiling-yf.html
* igt@kms_plane_multiple@2x-tiling-4:
- shard-rkl: NOTRUN -> [SKIP][284] ([i915#13958]) +1 other test skip
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-8/igt@kms_plane_multiple@2x-tiling-4.html
* igt@kms_plane_multiple@tiling-4:
- shard-rkl: NOTRUN -> [SKIP][285] ([i915#14259])
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-5/igt@kms_plane_multiple@tiling-4.html
- shard-dg1: NOTRUN -> [SKIP][286] ([i915#14259])
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-dg1-15/igt@kms_plane_multiple@tiling-4.html
- shard-tglu: NOTRUN -> [SKIP][287] ([i915#14259])
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-tglu-7/igt@kms_plane_multiple@tiling-4.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c:
- shard-tglu: NOTRUN -> [SKIP][288] ([i915#15329]) +8 other tests skip
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-tglu-3/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b:
- shard-mtlp: NOTRUN -> [SKIP][289] ([i915#15329]) +1 other test skip
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-mtlp-3/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation:
- shard-tglu: NOTRUN -> [SKIP][290] ([i915#15329] / [i915#3555])
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-tglu-8/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d:
- shard-tglu-1: NOTRUN -> [SKIP][291] ([i915#15329]) +4 other tests skip
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-tglu-1/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d.html
* igt@kms_pm_backlight@bad-brightness:
- shard-rkl: NOTRUN -> [SKIP][292] ([i915#5354]) +1 other test skip
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-5/igt@kms_pm_backlight@bad-brightness.html
- shard-dg1: NOTRUN -> [SKIP][293] ([i915#5354]) +1 other test skip
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-dg1-15/igt@kms_pm_backlight@bad-brightness.html
* igt@kms_pm_backlight@brightness-with-dpms:
- shard-rkl: NOTRUN -> [SKIP][294] ([i915#12343])
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-3/igt@kms_pm_backlight@brightness-with-dpms.html
* igt@kms_pm_backlight@fade:
- shard-tglu: NOTRUN -> [SKIP][295] ([i915#9812]) +1 other test skip
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-tglu-3/igt@kms_pm_backlight@fade.html
* igt@kms_pm_dc@dc9-dpms:
- shard-rkl: NOTRUN -> [SKIP][296] ([i915#15739])
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-4/igt@kms_pm_dc@dc9-dpms.html
- shard-tglu: NOTRUN -> [SKIP][297] ([i915#15128])
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-tglu-6/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-dg2: [PASS][298] -> [SKIP][299] ([i915#9340])
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-dg2-4/igt@kms_pm_lpsp@kms-lpsp.html
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-dg2-8/igt@kms_pm_lpsp@kms-lpsp.html
- shard-tglu: NOTRUN -> [SKIP][300] ([i915#3828])
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-tglu-7/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_lpsp@screens-disabled:
- shard-tglu: NOTRUN -> [SKIP][301] ([i915#8430])
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-tglu-3/igt@kms_pm_lpsp@screens-disabled.html
* igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-dg1: [PASS][302] -> [SKIP][303] ([i915#15073])
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-dg1-19/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-dg1-14/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-tglu-1: NOTRUN -> [SKIP][304] ([i915#15073]) +1 other test skip
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-tglu-1/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-rkl: [PASS][305] -> [SKIP][306] ([i915#15073]) +1 other test skip
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-7/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-8/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
- shard-tglu: NOTRUN -> [SKIP][307] ([i915#15073]) +1 other test skip
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-tglu-6/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-dg2: [PASS][308] -> [SKIP][309] ([i915#15073])
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-dg2-5/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-dg2-4/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_pm_rpm@package-g7:
- shard-tglu-1: NOTRUN -> [SKIP][310] ([i915#15403])
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-tglu-1/igt@kms_pm_rpm@package-g7.html
* igt@kms_pm_rpm@system-suspend-idle:
- shard-dg2: NOTRUN -> [INCOMPLETE][311] ([i915#14419])
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-dg2-7/igt@kms_pm_rpm@system-suspend-idle.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area:
- shard-glk: NOTRUN -> [SKIP][312] ([i915#11520]) +12 other tests skip
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-glk8/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area:
- shard-rkl: NOTRUN -> [SKIP][313] ([i915#11520]) +4 other tests skip
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-2/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf:
- shard-tglu-1: NOTRUN -> [SKIP][314] ([i915#11520]) +5 other tests skip
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-tglu-1/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf:
- shard-glk10: NOTRUN -> [SKIP][315] ([i915#11520]) +2 other tests skip
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-glk10/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html
- shard-dg1: NOTRUN -> [SKIP][316] ([i915#11520])
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-dg1-13/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html
- shard-snb: NOTRUN -> [SKIP][317] ([i915#11520])
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-snb6/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][318] ([i915#9808]) +2 other tests skip
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-mtlp-4/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf@pipe-b-edp-1.html
* igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf:
- shard-glk11: NOTRUN -> [SKIP][319] ([i915#11520]) +1 other test skip
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-glk11/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf:
- shard-dg2: NOTRUN -> [SKIP][320] ([i915#11520]) +4 other tests skip
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-dg2-5/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area:
- shard-rkl: NOTRUN -> [SKIP][321] ([i915#11520] / [i915#14544]) +1 other test skip
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-6/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb:
- shard-tglu: NOTRUN -> [SKIP][322] ([i915#11520]) +3 other tests skip
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-tglu-8/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html
* igt@kms_psr@fbc-psr-no-drrs:
- shard-tglu: NOTRUN -> [SKIP][323] ([i915#9732]) +16 other tests skip
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-tglu-9/igt@kms_psr@fbc-psr-no-drrs.html
- shard-mtlp: NOTRUN -> [SKIP][324] ([i915#9688]) +13 other tests skip
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-mtlp-8/igt@kms_psr@fbc-psr-no-drrs.html
* igt@kms_psr@fbc-psr2-basic:
- shard-tglu-1: NOTRUN -> [SKIP][325] ([i915#9732]) +12 other tests skip
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-tglu-1/igt@kms_psr@fbc-psr2-basic.html
* igt@kms_psr@fbc-psr2-primary-blt:
- shard-rkl: NOTRUN -> [SKIP][326] ([i915#1072] / [i915#9732]) +18 other tests skip
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-8/igt@kms_psr@fbc-psr2-primary-blt.html
* igt@kms_psr@psr-primary-blt:
- shard-dg2: NOTRUN -> [SKIP][327] ([i915#1072] / [i915#9732]) +20 other tests skip
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-dg2-1/igt@kms_psr@psr-primary-blt.html
* igt@kms_psr@psr-primary-mmap-gtt@edp-1:
- shard-mtlp: NOTRUN -> [SKIP][328] ([i915#4077] / [i915#9688]) +1 other test skip
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-mtlp-3/igt@kms_psr@psr-primary-mmap-gtt@edp-1.html
* igt@kms_psr@psr2-cursor-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][329] ([i915#1072] / [i915#14544] / [i915#9732]) +5 other tests skip
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-6/igt@kms_psr@psr2-cursor-mmap-gtt.html
- shard-dg1: NOTRUN -> [SKIP][330] ([i915#1072] / [i915#9732]) +12 other tests skip
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-dg1-16/igt@kms_psr@psr2-cursor-mmap-gtt.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0:
- shard-dg2: NOTRUN -> [SKIP][331] ([i915#5190]) +1 other test skip
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-dg2-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
- shard-tglu-1: NOTRUN -> [SKIP][332] ([i915#5289])
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-tglu-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-rkl: NOTRUN -> [SKIP][333] ([i915#5289]) +1 other test skip
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_rotation_crc@sprite-rotation-90:
- shard-dg2: NOTRUN -> [SKIP][334] ([i915#12755] / [i915#15867])
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-dg2-4/igt@kms_rotation_crc@sprite-rotation-90.html
* igt@kms_scaling_modes@scaling-mode-full-aspect:
- shard-tglu: NOTRUN -> [SKIP][335] ([i915#3555]) +5 other tests skip
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-tglu-4/igt@kms_scaling_modes@scaling-mode-full-aspect.html
* igt@kms_setmode@basic:
- shard-snb: NOTRUN -> [FAIL][336] ([i915#15106]) +6 other tests fail
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-snb6/igt@kms_setmode@basic.html
* igt@kms_setmode@clone-exclusive-crtc:
- shard-rkl: NOTRUN -> [SKIP][337] ([i915#14544] / [i915#3555])
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-6/igt@kms_setmode@clone-exclusive-crtc.html
* igt@kms_setmode@invalid-clone-exclusive-crtc:
- shard-mtlp: NOTRUN -> [SKIP][338] ([i915#3555] / [i915#8809] / [i915#8823])
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-mtlp-5/igt@kms_setmode@invalid-clone-exclusive-crtc.html
* igt@kms_setmode@invalid-clone-single-crtc-stealing:
- shard-mtlp: NOTRUN -> [SKIP][339] ([i915#3555] / [i915#8809])
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-mtlp-1/igt@kms_setmode@invalid-clone-single-crtc-stealing.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-glk: NOTRUN -> [FAIL][340] ([i915#10959])
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-glk3/igt@kms_tiled_display@basic-test-pattern.html
- shard-rkl: NOTRUN -> [SKIP][341] ([i915#8623])
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-2/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_vrr@flip-dpms:
- shard-dg2: NOTRUN -> [SKIP][342] ([i915#15243] / [i915#3555])
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-dg2-7/igt@kms_vrr@flip-dpms.html
- shard-rkl: NOTRUN -> [SKIP][343] ([i915#15243] / [i915#3555])
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-2/igt@kms_vrr@flip-dpms.html
- shard-mtlp: NOTRUN -> [SKIP][344] ([i915#3555] / [i915#8808])
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-mtlp-1/igt@kms_vrr@flip-dpms.html
* igt@kms_vrr@lobf:
- shard-dg2: NOTRUN -> [SKIP][345] ([i915#11920])
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-dg2-8/igt@kms_vrr@lobf.html
- shard-tglu-1: NOTRUN -> [SKIP][346] ([i915#11920])
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-tglu-1/igt@kms_vrr@lobf.html
* igt@kms_vrr@negative-basic:
- shard-tglu: NOTRUN -> [SKIP][347] ([i915#3555] / [i915#9906])
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-tglu-8/igt@kms_vrr@negative-basic.html
* igt@kms_vrr@seamless-rr-switch-vrr:
- shard-dg2: NOTRUN -> [SKIP][348] ([i915#9906])
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-dg2-1/igt@kms_vrr@seamless-rr-switch-vrr.html
- shard-rkl: NOTRUN -> [SKIP][349] ([i915#9906])
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-4/igt@kms_vrr@seamless-rr-switch-vrr.html
- shard-dg1: NOTRUN -> [SKIP][350] ([i915#9906])
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-dg1-19/igt@kms_vrr@seamless-rr-switch-vrr.html
- shard-tglu: NOTRUN -> [SKIP][351] ([i915#9906]) +1 other test skip
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-tglu-6/igt@kms_vrr@seamless-rr-switch-vrr.html
- shard-mtlp: NOTRUN -> [SKIP][352] ([i915#8808] / [i915#9906])
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-mtlp-2/igt@kms_vrr@seamless-rr-switch-vrr.html
* igt@perf@global-sseu-config-invalid:
- shard-dg2: NOTRUN -> [SKIP][353] ([i915#7387])
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-dg2-1/igt@perf@global-sseu-config-invalid.html
* igt@perf_pmu@module-unload:
- shard-glk: NOTRUN -> [ABORT][354] ([i915#15778])
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-glk2/igt@perf_pmu@module-unload.html
* igt@perf_pmu@rc6-all-gts:
- shard-glk11: NOTRUN -> [SKIP][355] +24 other tests skip
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-glk11/igt@perf_pmu@rc6-all-gts.html
* igt@perf_pmu@rc6@other-idle-gt0:
- shard-rkl: NOTRUN -> [SKIP][356] ([i915#8516])
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-7/igt@perf_pmu@rc6@other-idle-gt0.html
* igt@sriov_basic@bind-unbind-vf:
- shard-rkl: NOTRUN -> [SKIP][357] ([i915#9917]) +1 other test skip
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-2/igt@sriov_basic@bind-unbind-vf.html
* igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
- shard-dg2: NOTRUN -> [SKIP][358] ([i915#9917])
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-dg2-1/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
#### Possible fixes ####
* igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0:
- shard-dg2: [INCOMPLETE][359] ([i915#12392] / [i915#13356]) -> [PASS][360]
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-dg2-5/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-dg2-6/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html
* igt@gem_exec_big@single:
- shard-rkl: [FAIL][361] -> [PASS][362]
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-7/igt@gem_exec_big@single.html
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-5/igt@gem_exec_big@single.html
- shard-mtlp: [FAIL][363] ([i915#15871]) -> [PASS][364]
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-mtlp-7/igt@gem_exec_big@single.html
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-mtlp-1/igt@gem_exec_big@single.html
* igt@gem_exec_suspend@basic-s3-devices:
- shard-rkl: [ABORT][365] ([i915#15131] / [i915#15542]) -> [PASS][366]
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-1/igt@gem_exec_suspend@basic-s3-devices.html
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-4/igt@gem_exec_suspend@basic-s3-devices.html
* igt@gem_exec_suspend@basic-s3-devices@smem:
- shard-rkl: [ABORT][367] ([i915#15542]) -> [PASS][368]
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-1/igt@gem_exec_suspend@basic-s3-devices@smem.html
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-4/igt@gem_exec_suspend@basic-s3-devices@smem.html
* igt@gem_softpin@noreloc-s3:
- shard-rkl: [INCOMPLETE][369] ([i915#13809]) -> [PASS][370]
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-6/igt@gem_softpin@noreloc-s3.html
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-5/igt@gem_softpin@noreloc-s3.html
* igt@i915_suspend@debugfs-reader:
- shard-rkl: [INCOMPLETE][371] ([i915#4817]) -> [PASS][372]
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-6/igt@i915_suspend@debugfs-reader.html
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-2/igt@i915_suspend@debugfs-reader.html
* igt@i915_suspend@fence-restore-untiled:
- shard-glk: [INCOMPLETE][373] ([i915#4817]) -> [PASS][374]
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-glk9/igt@i915_suspend@fence-restore-untiled.html
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-glk1/igt@i915_suspend@fence-restore-untiled.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing:
- shard-dg2: [FAIL][375] ([i915#5956]) -> [PASS][376] +1 other test pass
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-dg2-8/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-dg2-7/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-mtlp: [FAIL][377] ([i915#15733] / [i915#5138]) -> [PASS][378]
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-mtlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-mtlp-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-0:
- shard-dg1: [DMESG-WARN][379] ([i915#4423]) -> [PASS][380] +1 other test pass
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-dg1-13/igt@kms_big_fb@x-tiled-8bpp-rotate-0.html
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-dg1-14/igt@kms_big_fb@x-tiled-8bpp-rotate-0.html
* igt@kms_cursor_crc@cursor-onscreen-128x42:
- shard-rkl: [FAIL][381] ([i915#13566]) -> [PASS][382] +5 other tests pass
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-3/igt@kms_cursor_crc@cursor-onscreen-128x42.html
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-8/igt@kms_cursor_crc@cursor-onscreen-128x42.html
- shard-tglu: [FAIL][383] ([i915#13566]) -> [PASS][384] +5 other tests pass
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-tglu-6/igt@kms_cursor_crc@cursor-onscreen-128x42.html
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-tglu-6/igt@kms_cursor_crc@cursor-onscreen-128x42.html
* igt@kms_force_connector_basic@force-edid:
- shard-mtlp: [SKIP][385] ([i915#15672]) -> [PASS][386]
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-mtlp-1/igt@kms_force_connector_basic@force-edid.html
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-mtlp-8/igt@kms_force_connector_basic@force-edid.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-dg2: [SKIP][387] ([i915#15073]) -> [PASS][388] +1 other test pass
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-dg2-7/igt@kms_pm_rpm@modeset-lpsp-stress.html
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-dg2-4/igt@kms_pm_rpm@modeset-lpsp-stress.html
- shard-dg1: [SKIP][389] ([i915#15073]) -> [PASS][390] +2 other tests pass
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-dg1-16/igt@kms_pm_rpm@modeset-lpsp-stress.html
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-dg1-14/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-rkl: [SKIP][391] ([i915#15073]) -> [PASS][392]
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-5/igt@kms_pm_rpm@modeset-non-lpsp.html
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-4/igt@kms_pm_rpm@modeset-non-lpsp.html
#### Warnings ####
* igt@gem_basic@multigpu-create-close:
- shard-rkl: [SKIP][393] ([i915#14544] / [i915#7697]) -> [SKIP][394] ([i915#7697])
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-6/igt@gem_basic@multigpu-create-close.html
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-5/igt@gem_basic@multigpu-create-close.html
* igt@gem_create@create-ext-cpu-access-big:
- shard-rkl: [SKIP][395] ([i915#14544] / [i915#6335]) -> [SKIP][396] ([i915#6335])
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-6/igt@gem_create@create-ext-cpu-access-big.html
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-8/igt@gem_create@create-ext-cpu-access-big.html
* igt@gem_create@create-ext-set-pat:
- shard-rkl: [SKIP][397] ([i915#14544] / [i915#8562]) -> [SKIP][398] ([i915#8562])
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-6/igt@gem_create@create-ext-set-pat.html
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-4/igt@gem_create@create-ext-set-pat.html
* igt@gem_ctx_sseu@mmap-args:
- shard-rkl: [SKIP][399] ([i915#14544] / [i915#280]) -> [SKIP][400] ([i915#280])
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-6/igt@gem_ctx_sseu@mmap-args.html
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-8/igt@gem_ctx_sseu@mmap-args.html
* igt@gem_exec_balancer@parallel-bb-first:
- shard-rkl: [SKIP][401] ([i915#14544] / [i915#4525]) -> [SKIP][402] ([i915#4525]) +1 other test skip
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-6/igt@gem_exec_balancer@parallel-bb-first.html
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-4/igt@gem_exec_balancer@parallel-bb-first.html
* igt@gem_exec_balancer@parallel-dmabuf-import-out-fence:
- shard-rkl: [SKIP][403] ([i915#4525]) -> [SKIP][404] ([i915#14544] / [i915#4525])
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-7/igt@gem_exec_balancer@parallel-dmabuf-import-out-fence.html
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-6/igt@gem_exec_balancer@parallel-dmabuf-import-out-fence.html
* igt@gem_exec_reloc@basic-cpu-gtt-noreloc:
- shard-rkl: [SKIP][405] ([i915#3281]) -> [SKIP][406] ([i915#14544] / [i915#3281]) +9 other tests skip
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-2/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-6/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html
* igt@gem_exec_reloc@basic-write-read-active:
- shard-rkl: [SKIP][407] ([i915#14544] / [i915#3281]) -> [SKIP][408] ([i915#3281]) +4 other tests skip
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-6/igt@gem_exec_reloc@basic-write-read-active.html
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-2/igt@gem_exec_reloc@basic-write-read-active.html
* igt@gem_lmem_swapping@parallel-random-engines:
- shard-rkl: [SKIP][409] ([i915#14544] / [i915#4613]) -> [SKIP][410] ([i915#4613])
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-6/igt@gem_lmem_swapping@parallel-random-engines.html
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-7/igt@gem_lmem_swapping@parallel-random-engines.html
* igt@gem_lmem_swapping@parallel-random-verify:
- shard-rkl: [SKIP][411] ([i915#4613]) -> [SKIP][412] ([i915#14544] / [i915#4613]) +1 other test skip
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-7/igt@gem_lmem_swapping@parallel-random-verify.html
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-6/igt@gem_lmem_swapping@parallel-random-verify.html
* igt@gem_partial_pwrite_pread@write-snoop:
- shard-rkl: [SKIP][413] ([i915#14544] / [i915#3282]) -> [SKIP][414] ([i915#3282])
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-6/igt@gem_partial_pwrite_pread@write-snoop.html
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-2/igt@gem_partial_pwrite_pread@write-snoop.html
* igt@gem_set_tiling_vs_blt@tiled-to-untiled:
- shard-rkl: [SKIP][415] ([i915#8411]) -> [SKIP][416] ([i915#14544] / [i915#8411])
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-8/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-6/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
* igt@gem_softpin@evict-snoop:
- shard-rkl: [SKIP][417] -> [SKIP][418] ([i915#14544]) +12 other tests skip
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-2/igt@gem_softpin@evict-snoop.html
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-6/igt@gem_softpin@evict-snoop.html
* igt@gem_tiled_pread_basic@basic:
- shard-rkl: [SKIP][419] ([i915#15656]) -> [SKIP][420] ([i915#14544] / [i915#15656])
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-7/igt@gem_tiled_pread_basic@basic.html
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-6/igt@gem_tiled_pread_basic@basic.html
* igt@gem_userptr_blits@coherency-sync:
- shard-rkl: [SKIP][421] ([i915#3297]) -> [SKIP][422] ([i915#14544] / [i915#3297]) +2 other tests skip
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-2/igt@gem_userptr_blits@coherency-sync.html
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-6/igt@gem_userptr_blits@coherency-sync.html
* igt@gen9_exec_parse@allowed-all:
- shard-rkl: [SKIP][423] ([i915#14544] / [i915#2527]) -> [SKIP][424] ([i915#2527])
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-6/igt@gen9_exec_parse@allowed-all.html
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-8/igt@gen9_exec_parse@allowed-all.html
* igt@i915_pm_freq_api@freq-basic-api:
- shard-rkl: [SKIP][425] ([i915#8399]) -> [SKIP][426] ([i915#14544] / [i915#8399])
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-2/igt@i915_pm_freq_api@freq-basic-api.html
[426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-6/igt@i915_pm_freq_api@freq-basic-api.html
* igt@i915_power@sanity:
- shard-rkl: [SKIP][427] ([i915#14544] / [i915#7984]) -> [SKIP][428] ([i915#7984])
[427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-6/igt@i915_power@sanity.html
[428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-3/igt@i915_power@sanity.html
* igt@i915_query@hwconfig_table:
- shard-rkl: [SKIP][429] ([i915#6245]) -> [SKIP][430] ([i915#14544] / [i915#6245])
[429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-4/igt@i915_query@hwconfig_table.html
[430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-6/igt@i915_query@hwconfig_table.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-rkl: [SKIP][431] ([i915#14544] / [i915#9531]) -> [SKIP][432] ([i915#9531])
[431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-6/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
[432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-2/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-rkl: [SKIP][433] ([i915#14544] / [i915#5286]) -> [SKIP][434] ([i915#5286]) +2 other tests skip
[433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
[434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-5/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip:
- shard-rkl: [SKIP][435] ([i915#5286]) -> [SKIP][436] ([i915#14544] / [i915#5286]) +2 other tests skip
[435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-8/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
[436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
- shard-dg1: [SKIP][437] ([i915#4538] / [i915#5286]) -> [SKIP][438] ([i915#4423] / [i915#4538] / [i915#5286])
[437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-dg1-14/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
[438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-dg1-16/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-90:
- shard-rkl: [SKIP][439] ([i915#3638]) -> [SKIP][440] ([i915#14544] / [i915#3638])
[439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-3/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html
[440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-6/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-64bpp-rotate-90:
- shard-rkl: [SKIP][441] ([i915#14544]) -> [SKIP][442] +6 other tests skip
[441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-6/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html
[442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-2/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html
* igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs:
- shard-rkl: [SKIP][443] ([i915#12313]) -> [SKIP][444] ([i915#12313] / [i915#14544])
[443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-5/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html
[444]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-6/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-basic-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-2:
- shard-rkl: [SKIP][445] ([i915#14544] / [i915#6095]) -> [SKIP][446] ([i915#6095]) +1 other test skip
[445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-6/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-2.html
[446]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-4/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-2.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: [SKIP][447] ([i915#6095]) -> [SKIP][448] ([i915#14544] / [i915#6095]) +5 other tests skip
[447]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-3/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-2.html
[448]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2:
- shard-rkl: [SKIP][449] ([i915#14098] / [i915#6095]) -> [SKIP][450] ([i915#14098] / [i915#14544] / [i915#6095]) +10 other tests skip
[449]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-3/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2.html
[450]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs:
- shard-rkl: [SKIP][451] ([i915#14098] / [i915#14544] / [i915#6095]) -> [SKIP][452] ([i915#14098] / [i915#6095]) +7 other tests skip
[451]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html
[452]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-2/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1:
- shard-glk: [INCOMPLETE][453] ([i915#15582]) -> [INCOMPLETE][454] ([i915#14694] / [i915#15582]) +1 other test incomplete
[453]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-glk8/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1.html
[454]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-glk3/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1.html
* igt@kms_cdclk@mode-transition-all-outputs:
- shard-rkl: [SKIP][455] ([i915#3742]) -> [SKIP][456] ([i915#14544] / [i915#3742])
[455]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-3/igt@kms_cdclk@mode-transition-all-outputs.html
[456]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-6/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_chamelium_hpd@dp-hpd-storm:
- shard-rkl: [SKIP][457] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][458] ([i915#11151] / [i915#7828]) +2 other tests skip
[457]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-6/igt@kms_chamelium_hpd@dp-hpd-storm.html
[458]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-7/igt@kms_chamelium_hpd@dp-hpd-storm.html
* igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode:
- shard-rkl: [SKIP][459] ([i915#11151] / [i915#7828]) -> [SKIP][460] ([i915#11151] / [i915#14544] / [i915#7828]) +4 other tests skip
[459]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-4/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html
[460]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-6/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html
* igt@kms_content_protection@atomic:
- shard-rkl: [SKIP][461] ([i915#14544] / [i915#15865]) -> [SKIP][462] ([i915#15865]) +1 other test skip
[461]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-6/igt@kms_content_protection@atomic.html
[462]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-7/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@dp-mst-type-0-suspend-resume:
- shard-rkl: [SKIP][463] ([i915#15330]) -> [SKIP][464] ([i915#14544] / [i915#15330])
[463]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-8/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html
[464]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-6/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html
* igt@kms_content_protection@mei-interface:
- shard-dg1: [SKIP][465] ([i915#9433]) -> [SKIP][466] ([i915#15865])
[465]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-dg1-13/igt@kms_content_protection@mei-interface.html
[466]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-dg1-14/igt@kms_content_protection@mei-interface.html
* igt@kms_content_protection@srm:
- shard-dg2: [FAIL][467] ([i915#7173]) -> [SKIP][468] ([i915#15865])
[467]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-dg2-10/igt@kms_content_protection@srm.html
[468]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-dg2-3/igt@kms_content_protection@srm.html
- shard-rkl: [SKIP][469] ([i915#15865]) -> [SKIP][470] ([i915#14544] / [i915#15865])
[469]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-3/igt@kms_content_protection@srm.html
[470]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-6/igt@kms_content_protection@srm.html
* igt@kms_cursor_crc@cursor-offscreen-max-size:
- shard-rkl: [SKIP][471] ([i915#14544] / [i915#3555]) -> [SKIP][472] ([i915#3555])
[471]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-6/igt@kms_cursor_crc@cursor-offscreen-max-size.html
[472]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-3/igt@kms_cursor_crc@cursor-offscreen-max-size.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-rkl: [SKIP][473] ([i915#14544] / [i915#4103]) -> [SKIP][474] ([i915#4103])
[473]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
[474]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-rkl: [SKIP][475] ([i915#4103]) -> [SKIP][476] ([i915#14544] / [i915#4103])
[475]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
[476]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
- shard-rkl: [SKIP][477] ([i915#14544] / [i915#9723]) -> [SKIP][478] ([i915#9723])
[477]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-6/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
[478]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-2/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
* igt@kms_dsc@dsc-basic:
- shard-rkl: [SKIP][479] ([i915#14544] / [i915#3555] / [i915#3840]) -> [SKIP][480] ([i915#3555] / [i915#3840]) +1 other test skip
[479]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-6/igt@kms_dsc@dsc-basic.html
[480]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-7/igt@kms_dsc@dsc-basic.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-rkl: [SKIP][481] ([i915#3555] / [i915#3840]) -> [SKIP][482] ([i915#14544] / [i915#3555] / [i915#3840])
[481]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-2/igt@kms_dsc@dsc-with-bpc-formats.html
[482]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-6/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_feature_discovery@psr2:
- shard-rkl: [SKIP][483] ([i915#658]) -> [SKIP][484] ([i915#14544] / [i915#658])
[483]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-7/igt@kms_feature_discovery@psr2.html
[484]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-6/igt@kms_feature_discovery@psr2.html
* igt@kms_flip@2x-plain-flip:
- shard-rkl: [SKIP][485] ([i915#9934]) -> [SKIP][486] ([i915#14544] / [i915#9934])
[485]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-5/igt@kms_flip@2x-plain-flip.html
[486]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-6/igt@kms_flip@2x-plain-flip.html
* igt@kms_flip@2x-plain-flip-interruptible:
- shard-rkl: [SKIP][487] ([i915#14544] / [i915#9934]) -> [SKIP][488] ([i915#9934]) +2 other tests skip
[487]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-6/igt@kms_flip@2x-plain-flip-interruptible.html
[488]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-2/igt@kms_flip@2x-plain-flip-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling:
- shard-rkl: [SKIP][489] ([i915#15643]) -> [SKIP][490] ([i915#14544] / [i915#15643]) +1 other test skip
[489]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-7/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html
[490]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling:
- shard-rkl: [SKIP][491] ([i915#14544] / [i915#15643]) -> [SKIP][492] ([i915#15643]) +2 other tests skip
[491]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html
[492]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt:
- shard-rkl: [SKIP][493] ([i915#1825]) -> [SKIP][494] ([i915#14544] / [i915#1825]) +21 other tests skip
[493]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html
[494]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-gtt:
- shard-rkl: [SKIP][495] ([i915#14544] / [i915#1825]) -> [SKIP][496] ([i915#1825]) +10 other tests skip
[495]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html
[496]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-blt:
- shard-rkl: [SKIP][497] ([i915#15102]) -> [SKIP][498] ([i915#14544] / [i915#15102]) +2 other tests skip
[497]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-blt.html
[498]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move:
- shard-dg2: [SKIP][499] ([i915#15102] / [i915#3458]) -> [SKIP][500] ([i915#10433] / [i915#15102] / [i915#3458])
[499]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-dg2-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move.html
[500]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-cpu:
- shard-rkl: [SKIP][501] ([i915#14544] / [i915#15102] / [i915#3023]) -> [SKIP][502] ([i915#15102] / [i915#3023]) +4 other tests skip
[501]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-cpu.html
[502]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbcpsr-suspend:
- shard-dg2: [SKIP][503] ([i915#10433] / [i915#15102] / [i915#3458]) -> [SKIP][504] ([i915#15102] / [i915#3458]) +2 other tests skip
[503]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html
[504]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-blt:
- shard-rkl: [SKIP][505] ([i915#14544] / [i915#15102]) -> [SKIP][506] ([i915#15102])
[505]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-blt.html
[506]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-suspend:
- shard-rkl: [SKIP][507] ([i915#15102] / [i915#3023]) -> [SKIP][508] ([i915#14544] / [i915#15102] / [i915#3023]) +12 other tests skip
[507]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-suspend.html
[508]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-suspend.html
* igt@kms_hdr@brightness-with-hdr:
- shard-rkl: [SKIP][509] ([i915#12713]) -> [SKIP][510] ([i915#1187] / [i915#12713])
[509]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-5/igt@kms_hdr@brightness-with-hdr.html
[510]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-3/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_joiner@basic-max-non-joiner:
- shard-rkl: [SKIP][511] ([i915#13688]) -> [SKIP][512] ([i915#13688] / [i915#14544])
[511]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-4/igt@kms_joiner@basic-max-non-joiner.html
[512]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-6/igt@kms_joiner@basic-max-non-joiner.html
* igt@kms_joiner@invalid-modeset-force-big-joiner:
- shard-rkl: [SKIP][513] ([i915#14544] / [i915#15459]) -> [SKIP][514] ([i915#15459])
[513]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-6/igt@kms_joiner@invalid-modeset-force-big-joiner.html
[514]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-3/igt@kms_joiner@invalid-modeset-force-big-joiner.html
* igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
- shard-rkl: [SKIP][515] ([i915#15638] / [i915#15722]) -> [SKIP][516] ([i915#14544] / [i915#15638] / [i915#15722])
[515]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-4/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
[516]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-6/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-rkl: [SKIP][517] ([i915#6301]) -> [SKIP][518] ([i915#14544] / [i915#6301])
[517]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-7/igt@kms_panel_fitting@atomic-fastset.html
[518]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-6/igt@kms_panel_fitting@atomic-fastset.html
- shard-dg1: [SKIP][519] ([i915#6301]) -> [SKIP][520] ([i915#4423] / [i915#6301])
[519]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-dg1-17/igt@kms_panel_fitting@atomic-fastset.html
[520]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-dg1-16/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_pipe_stress@stress-xrgb8888-yftiled:
- shard-rkl: [SKIP][521] ([i915#14544] / [i915#14712]) -> [SKIP][522] ([i915#14712])
[521]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-6/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html
[522]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-8/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html
* igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier:
- shard-rkl: [SKIP][523] ([i915#15709]) -> [SKIP][524] ([i915#14544] / [i915#15709]) +2 other tests skip
[523]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-1/igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier.html
[524]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier.html
* igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier:
- shard-rkl: [SKIP][525] ([i915#14544] / [i915#15709]) -> [SKIP][526] ([i915#15709]) +1 other test skip
[525]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier.html
[526]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-3/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier.html
* igt@kms_pm_backlight@basic-brightness:
- shard-rkl: [SKIP][527] ([i915#5354]) -> [SKIP][528] ([i915#14544] / [i915#5354])
[527]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-4/igt@kms_pm_backlight@basic-brightness.html
[528]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-6/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_pm_lpsp@screens-disabled:
- shard-rkl: [SKIP][529] ([i915#8430]) -> [SKIP][530] ([i915#14544] / [i915#8430])
[529]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-1/igt@kms_pm_lpsp@screens-disabled.html
[530]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-6/igt@kms_pm_lpsp@screens-disabled.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-rkl: [SKIP][531] ([i915#14544] / [i915#15073]) -> [SKIP][532] ([i915#15073])
[531]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-6/igt@kms_pm_rpm@modeset-lpsp.html
[532]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-7/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_prime@basic-modeset-hybrid:
- shard-rkl: [SKIP][533] ([i915#6524]) -> [SKIP][534] ([i915#14544] / [i915#6524])
[533]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-8/igt@kms_prime@basic-modeset-hybrid.html
[534]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-6/igt@kms_prime@basic-modeset-hybrid.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf:
- shard-rkl: [SKIP][535] ([i915#11520]) -> [SKIP][536] ([i915#11520] / [i915#14544]) +1 other test skip
[535]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-4/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html
[536]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-6/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf:
- shard-dg1: [SKIP][537] ([i915#11520]) -> [SKIP][538] ([i915#11520] / [i915#4423])
[537]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-dg1-14/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html
[538]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-dg1-19/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html
* igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-sf:
- shard-rkl: [SKIP][539] ([i915#11520] / [i915#14544]) -> [SKIP][540] ([i915#11520]) +1 other test skip
[539]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-6/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-sf.html
[540]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-3/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_su@page_flip-p010:
- shard-rkl: [SKIP][541] ([i915#14544] / [i915#9683]) -> [SKIP][542] ([i915#9683])
[541]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-6/igt@kms_psr2_su@page_flip-p010.html
[542]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-8/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr@fbc-psr-dpms:
- shard-rkl: [SKIP][543] ([i915#1072] / [i915#9732]) -> [SKIP][544] ([i915#1072] / [i915#14544] / [i915#9732]) +9 other tests skip
[543]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-4/igt@kms_psr@fbc-psr-dpms.html
[544]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-6/igt@kms_psr@fbc-psr-dpms.html
* igt@kms_psr@psr-no-drrs:
- shard-rkl: [SKIP][545] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][546] ([i915#1072] / [i915#9732]) +6 other tests skip
[545]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-6/igt@kms_psr@psr-no-drrs.html
[546]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-7/igt@kms_psr@psr-no-drrs.html
* igt@kms_rotation_crc@primary-rotation-270:
- shard-dg2: [SKIP][547] ([i915#15867]) -> [SKIP][548] ([i915#12755] / [i915#15867])
[547]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-dg2-10/igt@kms_rotation_crc@primary-rotation-270.html
[548]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-dg2-5/igt@kms_rotation_crc@primary-rotation-270.html
* igt@kms_setmode@basic-clone-single-crtc:
- shard-rkl: [SKIP][549] ([i915#3555]) -> [SKIP][550] ([i915#14544] / [i915#3555])
[549]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-8/igt@kms_setmode@basic-clone-single-crtc.html
[550]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-6/igt@kms_setmode@basic-clone-single-crtc.html
* igt@kms_vrr@flipline:
- shard-rkl: [SKIP][551] ([i915#15243] / [i915#3555]) -> [SKIP][552] ([i915#14544] / [i915#15243] / [i915#3555])
[551]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-4/igt@kms_vrr@flipline.html
[552]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-6/igt@kms_vrr@flipline.html
* igt@kms_vrr@max-min:
- shard-rkl: [SKIP][553] ([i915#9906]) -> [SKIP][554] ([i915#14544] / [i915#9906])
[553]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-8/igt@kms_vrr@max-min.html
[554]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-6/igt@kms_vrr@max-min.html
* igt@kms_vrr@seamless-rr-switch-virtual:
- shard-rkl: [SKIP][555] ([i915#14544] / [i915#9906]) -> [SKIP][556] ([i915#9906])
[555]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-6/igt@kms_vrr@seamless-rr-switch-virtual.html
[556]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-8/igt@kms_vrr@seamless-rr-switch-virtual.html
* igt@perf_pmu@module-unload:
- shard-dg2: [ABORT][557] ([i915#15778]) -> [ABORT][558] ([i915#13029] / [i915#15778])
[557]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-dg2-5/igt@perf_pmu@module-unload.html
[558]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-dg2-4/igt@perf_pmu@module-unload.html
- shard-dg1: [ABORT][559] ([i915#15778]) -> [ABORT][560] ([i915#13029] / [i915#15778])
[559]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-dg1-16/igt@perf_pmu@module-unload.html
[560]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-dg1-18/igt@perf_pmu@module-unload.html
* igt@perf_pmu@rc6-all-gts:
- shard-rkl: [SKIP][561] ([i915#14544] / [i915#8516]) -> [SKIP][562] ([i915#8516])
[561]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-6/igt@perf_pmu@rc6-all-gts.html
[562]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-2/igt@perf_pmu@rc6-all-gts.html
* igt@prime_vgem@coherency-gtt:
- shard-rkl: [SKIP][563] ([i915#14544] / [i915#3708]) -> [SKIP][564] ([i915#3708])
[563]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8865/shard-rkl-6/igt@prime_vgem@coherency-gtt.html
[564]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/shard-rkl-4/igt@prime_vgem@coherency-gtt.html
[i915#10055]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10055
[i915#10056]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10056
[i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
[i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433
[i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434
[i915#10647]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#10959]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10959
[i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099
[i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078
[i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151
[i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520
[i915#11527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11527
[i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
[i915#1187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1187
[i915#11920]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920
[i915#11965]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11965
[i915#12169]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12169
[i915#12177]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12177
[i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313
[i915#12314]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12314
[i915#12343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12343
[i915#12392]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12392
[i915#12454]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12454
[i915#12712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12712
[i915#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713
[i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745
[i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755
[i915#12761]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12761
[i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805
[i915#13008]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13008
[i915#13029]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13029
[i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046
[i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049
[i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356
[i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566
[i915#13688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13688
[i915#13707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707
[i915#13748]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748
[i915#13749]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749
[i915#13809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13809
[i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958
[i915#14073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14073
[i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098
[i915#14118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14118
[i915#14259]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259
[i915#14419]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14419
[i915#14498]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14498
[i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544
[i915#14545]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14545
[i915#14586]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14586
[i915#14694]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14694
[i915#14712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14712
[i915#15060]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15060
[i915#15073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073
[i915#15102]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102
[i915#15104]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15104
[i915#15106]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15106
[i915#15128]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15128
[i915#15131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15131
[i915#15243]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15243
[i915#15329]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15329
[i915#15330]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330
[i915#15342]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15342
[i915#15403]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15403
[i915#15458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15458
[i915#15459]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15459
[i915#15460]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15460
[i915#15542]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15542
[i915#15582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15582
[i915#15608]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15608
[i915#15638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15638
[i915#15643]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643
[i915#15656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15656
[i915#15672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15672
[i915#15709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709
[i915#15722]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15722
[i915#15725]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15725
[i915#15733]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15733
[i915#15739]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15739
[i915#15778]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15778
[i915#15865]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15865
[i915#15867]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15867
[i915#15871]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15871
[i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769
[i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839
[i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
[i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280
[i915#284]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/284
[i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023
[i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116
[i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
[i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299
[i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458
[i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638
[i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742
[i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
[i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
[i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213
[i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
[i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423
[i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525
[i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817
[i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839
[i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852
[i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860
[i915#4885]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4885
[i915#5138]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5138
[i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
[i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286
[i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#5439]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439
[i915#5882]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5882
[i915#5956]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5956
[i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
[i915#6113]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6113
[i915#6230]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6230
[i915#6245]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6245
[i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301
[i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334
[i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335
[i915#6344]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6344
[i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524
[i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658
[i915#7173]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173
[i915#7387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7387
[i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697
[i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707
[i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828
[i915#7984]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7984
[i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
[i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399
[i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411
[i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428
[i915#8430]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8430
[i915#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516
[i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555
[i915#8562]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8562
[i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623
[i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
[i915#8808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808
[i915#8809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809
[i915#8810]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8810
[i915#8813]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813
[i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814
[i915#8821]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8821
[i915#8823]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8823
[i915#9053]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9053
[i915#9067]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067
[i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323
[i915#9337]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9337
[i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340
[i915#9433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9433
[i915#9531]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9531
[i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683
[i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688
[i915#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
[i915#9766]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9766
[i915#9808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9808
[i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809
[i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812
[i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906
[i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917
[i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934
[i915#9979]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9979
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8865 -> IGTPW_15010
CI-20190529: 20190529
CI_DRM_18350: 898b5aa235c5b269d6c745fd84270b296aa75469 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_15010: 7b47cc44d23ae797e49444d095958f36cfff3c0b @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8865: 1c23bc1bdf01bf0ded2344cb217d7fe88de3b726 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15010/index.html
[-- Attachment #2: Type: text/html, Size: 190828 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2026-04-22 5:16 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-04-17 12:01 [PATCH i-g-t] tests/xe_exec: Add VM rebind stress test under workqueue cpumask cycling S Sebinraj
2026-04-20 8:21 ` Krzysztof Karas
2026-04-22 5:16 ` Sebinraj, S
2026-04-21 11:55 ` ✓ Xe.CI.BAT: success for " Patchwork
2026-04-21 11:59 ` ✓ i915.CI.BAT: " Patchwork
2026-04-21 12:45 ` ✗ Xe.CI.FULL: failure " Patchwork
2026-04-21 16:05 ` ✗ i915.CI.Full: " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox