* [PATCH i-g-t v5] test/intel/xe_vm:Add oversubscribe concurrent bind stress subtest
@ 2026-04-27 2:40 Sobin Thomas
2026-04-27 3:54 ` ✓ Xe.CI.BAT: success for " Patchwork
` (4 more replies)
0 siblings, 5 replies; 6+ messages in thread
From: Sobin Thomas @ 2026-04-27 2:40 UTC (permalink / raw)
To: igt-dev, thomas.hellstrom; +Cc: nishit.sharma, Sobin Thomas
Add test for oversubscribing VRAM in multi process environment that
creates VM, bind large BOs and submit workloads nearly simultaneously.
Previous coverage lacked a scenario combining multi-process bind
with VRAM oversubscription. This generates memory pressure with
multi-process VM Bind activity and concurrent submission, exercising
the bind pipeline under eviction pressure.
v2: Removed helper APIs usage clock_nanosleep and commented
code.(Nishit)
v3: Refactored code to smaller functions.
Added check for available SRAM usage and keep the max process to 20.
v4: Remove explicit macros definition
Replace Bind ioctl with library calls.(Thomas)
v5: Remove unused query_mem_info
Fix xe_exec_with_retry (Thomas)
Rename align_to_page_size with ALIGN macro (kamil/Thomas)
Signed-off-by: Sobin Thomas <sobin.thomas@intel.com>
---
tests/intel/xe_vm.c | 402 ++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 402 insertions(+)
diff --git a/tests/intel/xe_vm.c b/tests/intel/xe_vm.c
index d75b0730d..5246a854a 100644
--- a/tests/intel/xe_vm.c
+++ b/tests/intel/xe_vm.c
@@ -21,6 +21,71 @@
#include "xe/xe_spin.h"
#include <string.h>
+#define GB(x) (1024ULL * 1024ULL * 1024ULL * (x))
+struct gem_bo {
+ uint32_t handle;
+ uint64_t size;
+ int *ptr;
+ uint64_t addr;
+};
+
+struct xe_test_ctx {
+ uint32_t vm_id;
+ uint32_t exec_queue_id;
+};
+
+struct mem_bind_sync {
+ struct gem_bo *bufs;
+ int n_bufs;
+ uint64_t *binds_ufence;
+};
+
+static void create_exec_queue(int fd, struct xe_test_ctx *ctx)
+{
+ struct drm_xe_engine_class_instance *hwe;
+ struct drm_xe_engine_class_instance eci = { 0 };
+
+ /* Use first available engine */
+ xe_for_each_engine(fd, hwe) {
+ eci = *hwe;
+ break;
+ }
+ ctx->exec_queue_id = xe_exec_queue_create(fd, ctx->vm_id, &eci, 0);
+}
+
+static uint64_t *
+vm_bind_bo_batch(int fd, struct xe_test_ctx *ctx, struct gem_bo *bos, int size)
+{
+ uint64_t *ufence;
+ struct drm_xe_sync bind_sync;
+ struct drm_xe_vm_bind_op binds[size];
+ int i;
+
+ ufence = calloc(1, sizeof(uint64_t));
+ *ufence = 0;
+ igt_assert(ufence != MAP_FAILED);
+ *ufence = 0;
+ bind_sync = (struct drm_xe_sync) {
+ .type = DRM_XE_SYNC_TYPE_USER_FENCE,
+ .flags = DRM_XE_SYNC_FLAG_SIGNAL,
+ .addr = to_user_pointer(ufence),
+ .timeline_value = 1,
+ };
+
+ for (i = 0; i < size; i++) {
+ binds[i] = (struct drm_xe_vm_bind_op) {
+ .obj = bos[i].handle,
+ .obj_offset = 0,
+ .range = bos[i].size,
+ .addr = bos[i].addr,
+ .op = DRM_XE_VM_BIND_OP_MAP,
+ .flags = 0,
+ };
+ }
+ xe_vm_bind_array(fd, ctx->vm_id, 0, binds, size, &bind_sync, 1);
+ return ufence;
+}
+
static uint32_t
addr_low(uint64_t addr)
{
@@ -2696,6 +2761,338 @@ static void test_get_property(int fd, void (*func)(int fd, uint32_t vm))
xe_vm_destroy(fd, vm);
}
+static int build_add_batch(struct gem_bo *batch_bo, struct gem_bo *integers_bo,
+ struct gem_bo *result_bo, int ints_to_add)
+{
+ int pos = 0;
+ uint64_t tmp_addr;
+ #define GPR_RX_ADDR(x) (0x600 + (x) * 8)
+
+ batch_bo->ptr[pos++] = MI_LOAD_REGISTER_MEM_CMD | MI_LRI_LRM_CS_MMIO | 2;
+ batch_bo->ptr[pos++] = GPR_RX_ADDR(0);
+ tmp_addr = integers_bo->addr + 0 * sizeof(uint32_t);
+ batch_bo->ptr[pos++] = tmp_addr & 0xFFFFFFFF;
+ batch_bo->ptr[pos++] = (tmp_addr >> 32) & 0xFFFFFFFF;
+ for (int i = 1; i < ints_to_add; i++) {
+ /* r1 = integers_bo[i] */
+ batch_bo->ptr[pos++] = MI_LOAD_REGISTER_MEM_CMD | MI_LRI_LRM_CS_MMIO | 2;
+ batch_bo->ptr[pos++] = GPR_RX_ADDR(1);
+ tmp_addr = integers_bo->addr + i * sizeof(uint32_t);
+ batch_bo->ptr[pos++] = tmp_addr & 0xFFFFFFFF;
+ batch_bo->ptr[pos++] = (tmp_addr >> 32) & 0xFFFFFFFF;
+ /* r0 = r0 + r1 */
+ batch_bo->ptr[pos++] = MI_MATH(4);
+ batch_bo->ptr[pos++] = MI_MATH_LOAD(MI_MATH_REG_SRCA, MI_MATH_REG(0));
+ batch_bo->ptr[pos++] = MI_MATH_LOAD(MI_MATH_REG_SRCB, MI_MATH_REG(1));
+ batch_bo->ptr[pos++] = MI_MATH_ADD;
+ batch_bo->ptr[pos++] = MI_MATH_STORE(MI_MATH_REG(0), MI_MATH_REG_ACCU);
+ }
+ /* result_bo[0] = r0 */
+ batch_bo->ptr[pos++] = MI_STORE_REGISTER_MEM_GEN8 | MI_LRI_LRM_CS_MMIO;
+ batch_bo->ptr[pos++] = GPR_RX_ADDR(0);
+ tmp_addr = result_bo->addr + 0 * sizeof(uint32_t);
+ batch_bo->ptr[pos++] = tmp_addr & 0xFFFFFFFF;
+ batch_bo->ptr[pos++] = (tmp_addr >> 32) & 0xFFFFFFFF;
+
+ batch_bo->ptr[pos++] = MI_BATCH_BUFFER_END;
+ while (pos % 4 != 0)
+ batch_bo->ptr[pos++] = MI_NOOP;
+ return pos;
+}
+
+static void create_test_bos(int fd, struct xe_test_ctx *ctx, struct mem_bind_sync *bind,
+ uint32_t placement, uint64_t *addr)
+{
+ const char *mem_type = (placement & vram_memory(fd, 0)) ? "VRAM" : "SRAM";
+
+ for (int i = 0; i < bind->n_bufs; i++) {
+ struct gem_bo *bo = &bind->bufs[i];
+ int ret;
+
+ bo->size = GB(1);
+ ret = __xe_bo_create_caching(fd, ctx->vm_id, bo->size,
+ placement, 0,
+ DRM_XE_GEM_CPU_CACHING_WC,
+ &bo->handle);
+ if (ret == -ENOMEM || ret == -ENOSPC) {
+ bind->n_bufs = i;/* stop creating more */
+ igt_debug("%s allocation failed at buffer %d\n", mem_type, i);
+ break;
+ }
+ bo->ptr = NULL;
+ bo->addr = *addr;
+ *addr += bo->size;
+ igt_debug("%s buffer %d created at 0x%016lx\n", mem_type, i, bo->addr);
+ }
+}
+
+static int fill_random_integers(struct gem_bo *int_bo, int ints_to_add)
+{
+ uint32_t expected_result = 0;
+
+ for (int i = 0; i < ints_to_add; i++) {
+ int random_int = rand() % 8;
+
+ int_bo->ptr[i] = random_int;
+ expected_result += random_int;
+
+ igt_debug("%d", random_int);
+ if (i + 1 != ints_to_add)
+ igt_debug(" + ");
+ else
+ igt_debug(" = ");
+ }
+ igt_debug("%d\n", expected_result);
+ return expected_result;
+}
+
+/*
+ * In concurrent VM bind stress tests, multiple threads simultaneously bind
+ * buffers to GPU virtual address space and submit batch operations. This
+ * creates significant GPU memory pressure where the kernel may transiently
+ * fail batch submission when:
+ * - GPU page tables are being updated across multiple bindings
+ * - GPU memory is fragmented across many concurrent buffer mappings
+ * - Multiple processes compete for finite GPU resources
+ *
+ * Without retries, transient ENOMEM/ENOSPC failures cause false test failures.
+ * Retrying lets us distinguish temporary resource exhaustion from actual
+ * driver bugs. Non ENOMEM/ENOSPC errors still fail immediately and are properly
+ * reported with full errno context for debugging.
+ */
+static int xe_exec_with_retry(int fd, struct drm_xe_exec *exec, int max_retries)
+{
+ int rc = 0, retries = 0;
+
+ for (retries = 0; retries < max_retries; retries++) {
+ rc = igt_ioctl(fd, DRM_IOCTL_XE_EXEC, exec);
+
+ if (!(rc && (errno == ENOMEM || errno == ENOSPC)))
+ break;
+
+ usleep(100 * retries);
+ if (retries == 0)
+ igt_warn("got %s, retrying\n", strerror(errno));
+ }
+
+ if (retries == max_retries)
+ igt_warn("gave up after %d retries\n", retries);
+
+ if (rc)
+ igt_warn("errno: %d (%s)\n", errno, strerror(errno));
+
+ return rc;
+}
+
+static void cleanup_bo_resources(int fd, struct gem_bo *bo)
+{
+ if (bo->ptr) {
+ igt_assert_eq(munmap(bo->ptr, bo->size), 0);
+ bo->ptr = NULL;
+ }
+ if (bo->handle)
+ gem_close(fd, bo->handle);
+}
+
+static void cleanup_sram_vram_objs(int fd, struct mem_bind_sync *vram_bind,
+ struct mem_bind_sync *sram_bind)
+{
+ for (int i = 0; i < vram_bind->n_bufs; i++)
+ gem_close(fd, vram_bind->bufs[i].handle);
+ for (int i = 0; i < sram_bind->n_bufs; i++)
+ gem_close(fd, sram_bind->bufs[i].handle);
+ free(vram_bind->bufs);
+ free(sram_bind->bufs);
+ if (vram_bind->n_bufs)
+ free(vram_bind->binds_ufence);
+ if (sram_bind->n_bufs)
+ free(sram_bind->binds_ufence);
+}
+
+/**
+ * SUBTEST: oversubscribe-concurrent-bind
+ * Description: Test for oversubscribing the VM with multiple processes
+ * doing binds at the same time, and ensure they all complete successfully.
+ * Functionality: This check is for a specific bug where if multiple processes
+ * oversubscribe the VM, some of the binds may fail with ENOMEM due to
+ * deadlock in the bind code.
+ * Test category: stress test
+ */
+static void test_vm_oversubscribe_concurrent_bind(int fd)
+{
+ #define MIN_BUFS_PER_PROC 2
+ #define MAX_THREADS 20
+ int n_proc = 0, n_vram_bufs = 0, n_sram_bufs = 0;
+ uint32_t max_by_mem;
+ uint64_t total_vram_demand = 0;
+ uint64_t vram_size = xe_visible_available_vram_size(fd, 0);
+ uint64_t sram_avail = (uint64_t)igt_get_avail_ram_mb() << 20;
+ uint64_t target_vram = vram_size * 2; /* 2 of VRAM */
+ uint64_t target_sram = sram_avail * 50 / 100; /* 50% system RAM */
+
+ int total_vram_bufs = target_vram / GB(1);
+ int total_sram_bufs = target_sram / GB(1);
+
+ /* determine concurrency from memory pressure */
+
+ pthread_barrier_t *barrier;
+ pthread_barrierattr_t attr;
+
+ max_by_mem = min(total_vram_bufs / MIN_BUFS_PER_PROC,
+ total_sram_bufs / MIN_BUFS_PER_PROC);
+ igt_info("\n max_by_mem = %d", max_by_mem);
+ n_proc = min_t(uint32_t, max_by_mem, 20);
+ igt_require_f(n_proc > 0, "Not enough VRAM/RAM for oversubscription test\n");
+
+ n_vram_bufs = max(2, total_vram_bufs / n_proc);
+ n_sram_bufs = max(2, total_sram_bufs / n_proc);
+ total_vram_demand = (uint64_t)n_proc * n_vram_bufs * GB(1);
+
+ igt_debug("VRAM size: %" PRIu64 "MB, System RAM available: %" PRIu64 "MB\n",
+ vram_size >> 20, sram_avail >> 20);
+
+ igt_debug(" n_proc = %d\n", n_proc);
+ igt_debug("VRAM: %" PRIu64 "GB\n", vram_size >> 30);
+ igt_debug("VRAM demand: %" PRIu64 "MB (%.2fx oversubscription)\n",
+ total_vram_demand >> 20, (double)total_vram_demand / vram_size);
+ igt_debug("Processes=%d VRAM_bufs=%d SRAM_bufs=%d\n", n_proc,
+ n_vram_bufs, n_sram_bufs);
+
+ barrier = mmap(NULL, sizeof(pthread_barrier_t),
+ PROT_READ | PROT_WRITE,
+ MAP_SHARED | MAP_ANONYMOUS, -1, 0);
+ igt_assert(barrier != MAP_FAILED);
+ pthread_barrierattr_init(&attr);
+ pthread_barrierattr_setpshared(&attr, PTHREAD_PROCESS_SHARED);
+ pthread_barrier_init(barrier, &attr, n_proc);
+
+ igt_fork(child, n_proc) {
+ struct xe_test_ctx ctx = {0};
+ int rc;
+ uint64_t addr = 0x40000000;
+ int expected_result = 0, ints_to_add = 4;
+ int max_retries = 1024;
+ struct gem_bo integers_bo, result_bo, batch_bo, *vram_bufs, *sram_bufs;
+ int pos = 0;
+ struct mem_bind_sync vram_bind = {0};
+ struct mem_bind_sync sram_bind = {0};
+ struct drm_xe_sync batch_syncs[1];
+ struct drm_xe_exec exec;
+ struct gem_bo ufence_bo = {0};
+
+ vram_bufs = (struct gem_bo *)calloc(n_vram_bufs, sizeof(struct gem_bo));
+ sram_bufs = (struct gem_bo *)calloc(n_sram_bufs, sizeof(struct gem_bo));
+ srand(child);
+
+ igt_assert(vram_bufs && sram_bufs);
+
+ ctx.vm_id = xe_vm_create(fd, DRM_XE_VM_CREATE_FLAG_SCRATCH_PAGE, 0);
+ create_exec_queue(fd, &ctx);
+ vram_bind.bufs = vram_bufs;
+ vram_bind.n_bufs = n_vram_bufs;
+ sram_bind.bufs = sram_bufs;
+ sram_bind.n_bufs = n_sram_bufs;
+
+ create_test_bos(fd, &ctx, &vram_bind, vram_memory(fd, 0), &addr);
+ create_test_bos(fd, &ctx, &sram_bind, system_memory(fd), &addr);
+
+ pthread_barrier_wait(barrier);
+
+ if (n_vram_bufs)
+ vram_bind.binds_ufence = vm_bind_bo_batch(fd, &ctx, vram_bufs,
+ n_vram_bufs);
+
+ if (n_sram_bufs)
+ sram_bind.binds_ufence = vm_bind_bo_batch(fd, &ctx, sram_bufs,
+ n_sram_bufs);
+
+ integers_bo.size = ALIGN(sizeof(int) * ints_to_add, 4096);
+ integers_bo.handle = xe_bo_create_caching(fd, ctx.vm_id, integers_bo.size,
+ system_memory(fd), 0,
+ DRM_XE_GEM_CPU_CACHING_WC);
+ integers_bo.ptr = (int *)xe_bo_map(fd, integers_bo.handle, integers_bo.size);
+ integers_bo.addr = 0x100000;
+
+ expected_result = fill_random_integers(&integers_bo, ints_to_add);
+ igt_debug("%d\n", expected_result);
+
+ result_bo.size = ALIGN(sizeof(int), 4096);
+ result_bo.handle = xe_bo_create_caching(fd, ctx.vm_id, result_bo.size,
+ system_memory(fd), 0,
+ DRM_XE_GEM_CPU_CACHING_WC);
+ result_bo.ptr = NULL;
+ result_bo.addr = 0x200000;
+
+ batch_bo.size = 4096;
+ batch_bo.handle = xe_bo_create_caching(fd, ctx.vm_id, batch_bo.size,
+ system_memory(fd), 0,
+ DRM_XE_GEM_CPU_CACHING_WC);
+
+ batch_bo.ptr = (int *)xe_bo_map(fd, batch_bo.handle, batch_bo.size);
+ batch_bo.addr = 0x300000;
+
+ pos = build_add_batch(&batch_bo, &integers_bo, &result_bo, ints_to_add);
+
+ igt_assert(pos * sizeof(int) <= batch_bo.size);
+
+ /* Wait for large bind operations to complete before binding small BOs */
+ if (vram_bind.n_bufs)
+ xe_wait_ufence(fd, vram_bind.binds_ufence, 1, 0, INT64_MAX);
+ if (sram_bind.n_bufs)
+ xe_wait_ufence(fd, sram_bind.binds_ufence, 1, 0, INT64_MAX);
+
+ xe_vm_bind_lr_sync(fd, ctx.vm_id, integers_bo.handle, 0, integers_bo.addr,
+ integers_bo.size, 0);
+ xe_vm_bind_lr_sync(fd, ctx.vm_id, result_bo.handle, 0, result_bo.addr,
+ result_bo.size, 0);
+ xe_vm_bind_lr_sync(fd, ctx.vm_id, batch_bo.handle, 0, batch_bo.addr,
+ batch_bo.size, 0);
+
+ ufence_bo.size = 4096;
+ ufence_bo.handle = xe_bo_create_caching(fd, ctx.vm_id, ufence_bo.size,
+ system_memory(fd), 0,
+ DRM_XE_GEM_CPU_CACHING_WB);
+ ufence_bo.ptr = (int *)xe_bo_map(fd, ufence_bo.handle, ufence_bo.size);
+ ufence_bo.addr = 0x400000;
+ memset(ufence_bo.ptr, 0, ufence_bo.size);
+ xe_vm_bind_lr_sync(fd, ctx.vm_id, ufence_bo.handle, 0, ufence_bo.addr,
+ ufence_bo.size, 0);
+
+ batch_syncs[0] = (struct drm_xe_sync){
+ .type = DRM_XE_SYNC_TYPE_USER_FENCE,
+ .flags = DRM_XE_SYNC_FLAG_SIGNAL,
+ .addr = ufence_bo.addr,
+ .timeline_value = 1,
+ };
+
+ exec = (struct drm_xe_exec) {
+ .exec_queue_id = ctx.exec_queue_id,
+ .num_syncs = 1,
+ .syncs = (uintptr_t)batch_syncs,
+ .address = batch_bo.addr,
+ .num_batch_buffer = 1,
+ };
+
+ rc = xe_exec_with_retry(fd, &exec, max_retries);
+ igt_assert_eq(rc, 0);
+ xe_wait_ufence(fd, (uint64_t *)ufence_bo.ptr, 1, ctx.exec_queue_id, INT64_MAX);
+ result_bo.ptr = (int *)xe_bo_map(fd, result_bo.handle, result_bo.size);
+ igt_assert_eq(result_bo.ptr[0], expected_result);
+ cleanup_bo_resources(fd, &ufence_bo);
+ cleanup_bo_resources(fd, &result_bo);
+ cleanup_bo_resources(fd, &batch_bo);
+ cleanup_bo_resources(fd, &integers_bo);
+ cleanup_sram_vram_objs(fd, &vram_bind, &sram_bind);
+ xe_exec_queue_destroy(fd, ctx.exec_queue_id);
+ xe_vm_destroy(fd, ctx.vm_id);
+ close(fd);
+ }
+ igt_waitchildren();
+ pthread_barrier_destroy(barrier);
+ pthread_barrierattr_destroy(&attr);
+ igt_assert_eq(munmap(barrier, sizeof(pthread_barrier_t)), 0);
+}
+
int igt_main()
{
struct drm_xe_engine_class_instance *hwe, *hwe_non_copy = NULL;
@@ -3088,6 +3485,11 @@ int igt_main()
igt_subtest_f("invalid-flag-%s", s->name)
invalid_flag(fd, s->flags);
}
+ igt_subtest("oversubscribe-concurrent-bind")
+ {
+ igt_require(xe_has_vram(fd));
+ test_vm_oversubscribe_concurrent_bind(fd);
+ }
igt_subtest("invalid-extensions")
invalid_extensions(fd);
--
2.52.0
^ permalink raw reply related [flat|nested] 6+ messages in thread
* ✓ Xe.CI.BAT: success for test/intel/xe_vm:Add oversubscribe concurrent bind stress subtest
2026-04-27 2:40 [PATCH i-g-t v5] test/intel/xe_vm:Add oversubscribe concurrent bind stress subtest Sobin Thomas
@ 2026-04-27 3:54 ` Patchwork
2026-04-27 3:54 ` ✓ i915.CI.BAT: " Patchwork
` (3 subsequent siblings)
4 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2026-04-27 3:54 UTC (permalink / raw)
To: Sobin Thomas; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 1181 bytes --]
== Series Details ==
Series: test/intel/xe_vm:Add oversubscribe concurrent bind stress subtest
URL : https://patchwork.freedesktop.org/series/165481/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8873_BAT -> XEIGTPW_15056_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (13 -> 13)
------------------------------
No changes in participating hosts
Changes
-------
No changes found
Build changes
-------------
* IGT: IGT_8873 -> IGTPW_15056
* Linux: xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e -> xe-4937-d431883e767cbff24c73721cac729c08579cc4b2
IGTPW_15056: 754249326a17737b170fa00c32496fe8b8ba19a5 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8873: a5c5d655807ead8204e01754b6434f0ecae40b96 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e: 15ccea1aede9d776f85ed002cf0df3c8ea8bd81e
xe-4937-d431883e767cbff24c73721cac729c08579cc4b2: d431883e767cbff24c73721cac729c08579cc4b2
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/index.html
[-- Attachment #2: Type: text/html, Size: 1740 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* ✓ i915.CI.BAT: success for test/intel/xe_vm:Add oversubscribe concurrent bind stress subtest
2026-04-27 2:40 [PATCH i-g-t v5] test/intel/xe_vm:Add oversubscribe concurrent bind stress subtest Sobin Thomas
2026-04-27 3:54 ` ✓ Xe.CI.BAT: success for " Patchwork
@ 2026-04-27 3:54 ` Patchwork
2026-04-27 5:01 ` ✗ Xe.CI.FULL: failure " Patchwork
` (2 subsequent siblings)
4 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2026-04-27 3:54 UTC (permalink / raw)
To: Sobin Thomas; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 11272 bytes --]
== Series Details ==
Series: test/intel/xe_vm:Add oversubscribe concurrent bind stress subtest
URL : https://patchwork.freedesktop.org/series/165481/
State : success
== Summary ==
CI Bug Log - changes from IGT_8873 -> IGTPW_15056
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/index.html
Participating hosts (40 -> 38)
------------------------------
Additional (2): bat-dg2-9 bat-adls-6
Missing (4): bat-dg2-13 fi-glk-j4005 fi-cfl-8700k fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_15056 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@dmabuf@all-tests:
- bat-dg2-9: NOTRUN -> [SKIP][1] ([i915#15931])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/bat-dg2-9/igt@dmabuf@all-tests.html
- fi-ivb-3770: NOTRUN -> [SKIP][2]
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/fi-ivb-3770/igt@dmabuf@all-tests.html
- bat-adls-6: NOTRUN -> [SKIP][3] ([i915#15931])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/bat-adls-6/igt@dmabuf@all-tests.html
* igt@gem_lmem_swapping@parallel-random-engines:
- bat-adls-6: NOTRUN -> [SKIP][4] ([i915#4613]) +3 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/bat-adls-6/igt@gem_lmem_swapping@parallel-random-engines.html
* igt@gem_mmap@basic:
- bat-dg2-9: NOTRUN -> [SKIP][5] ([i915#4083])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/bat-dg2-9/igt@gem_mmap@basic.html
* igt@gem_mmap_gtt@basic:
- bat-dg2-9: NOTRUN -> [SKIP][6] ([i915#4077]) +2 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/bat-dg2-9/igt@gem_mmap_gtt@basic.html
* igt@gem_render_tiled_blits@basic:
- bat-dg2-9: NOTRUN -> [SKIP][7] ([i915#4079])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/bat-dg2-9/igt@gem_render_tiled_blits@basic.html
* igt@gem_tiled_pread_basic@basic:
- bat-dg2-9: NOTRUN -> [SKIP][8] ([i915#15657])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/bat-dg2-9/igt@gem_tiled_pread_basic@basic.html
- bat-adls-6: NOTRUN -> [SKIP][9] ([i915#15656])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/bat-adls-6/igt@gem_tiled_pread_basic@basic.html
* igt@i915_pm_rps@basic-api:
- bat-dg2-9: NOTRUN -> [SKIP][10] ([i915#11681] / [i915#6621])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/bat-dg2-9/igt@i915_pm_rps@basic-api.html
* igt@i915_selftest@live:
- bat-mtlp-8: [PASS][11] -> [DMESG-FAIL][12] ([i915#12061]) +1 other test dmesg-fail
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8873/bat-mtlp-8/igt@i915_selftest@live.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/bat-mtlp-8/igt@i915_selftest@live.html
* igt@i915_selftest@live@workarounds:
- bat-dg2-9: NOTRUN -> [DMESG-FAIL][13] ([i915#12061]) +1 other test dmesg-fail
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/bat-dg2-9/igt@i915_selftest@live@workarounds.html
* igt@intel_hwmon@hwmon-read:
- bat-adls-6: NOTRUN -> [SKIP][14] ([i915#7707]) +1 other test skip
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/bat-adls-6/igt@intel_hwmon@hwmon-read.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- bat-dg2-9: NOTRUN -> [SKIP][15] ([i915#5190])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/bat-dg2-9/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_addfb_basic@basic-y-tiled-legacy:
- bat-dg2-9: NOTRUN -> [SKIP][16] ([i915#4215] / [i915#5190])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/bat-dg2-9/igt@kms_addfb_basic@basic-y-tiled-legacy.html
* igt@kms_addfb_basic@framebuffer-vs-set-tiling:
- bat-dg2-9: NOTRUN -> [SKIP][17] ([i915#4212]) +7 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/bat-dg2-9/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- bat-adls-6: NOTRUN -> [SKIP][18] ([i915#4103]) +1 other test skip
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/bat-adls-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
- bat-dg2-9: NOTRUN -> [SKIP][19] ([i915#4103] / [i915#4213]) +1 other test skip
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/bat-dg2-9/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_dsc@dsc-basic:
- bat-adls-6: NOTRUN -> [SKIP][20] ([i915#3555] / [i915#3840])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/bat-adls-6/igt@kms_dsc@dsc-basic.html
* igt@kms_force_connector_basic@force-load-detect:
- bat-adls-6: NOTRUN -> [SKIP][21]
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/bat-adls-6/igt@kms_force_connector_basic@force-load-detect.html
- bat-dg2-9: NOTRUN -> [SKIP][22]
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/bat-dg2-9/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_pm_backlight@basic-brightness:
- bat-adls-6: NOTRUN -> [SKIP][23] ([i915#5354])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/bat-adls-6/igt@kms_pm_backlight@basic-brightness.html
- bat-dg2-9: NOTRUN -> [SKIP][24] ([i915#5354])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/bat-dg2-9/igt@kms_pm_backlight@basic-brightness.html
* igt@kms_psr@psr-primary-mmap-gtt:
- bat-adls-6: NOTRUN -> [SKIP][25] ([i915#1072] / [i915#9732]) +3 other tests skip
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/bat-adls-6/igt@kms_psr@psr-primary-mmap-gtt.html
* igt@kms_psr@psr-primary-page-flip:
- bat-dg2-9: NOTRUN -> [SKIP][26] ([i915#1072] / [i915#9732]) +3 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/bat-dg2-9/igt@kms_psr@psr-primary-page-flip.html
* igt@kms_setmode@basic-clone-single-crtc:
- bat-dg2-9: NOTRUN -> [SKIP][27] ([i915#3555])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/bat-dg2-9/igt@kms_setmode@basic-clone-single-crtc.html
- bat-adls-6: NOTRUN -> [SKIP][28] ([i915#3555])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/bat-adls-6/igt@kms_setmode@basic-clone-single-crtc.html
* igt@prime_vgem@basic-fence-flip:
- bat-dg2-9: NOTRUN -> [SKIP][29] ([i915#3708])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/bat-dg2-9/igt@prime_vgem@basic-fence-flip.html
* igt@prime_vgem@basic-fence-mmap:
- bat-dg2-9: NOTRUN -> [SKIP][30] ([i915#3708] / [i915#4077]) +1 other test skip
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/bat-dg2-9/igt@prime_vgem@basic-fence-mmap.html
* igt@prime_vgem@basic-fence-read:
- bat-adls-6: NOTRUN -> [SKIP][31] ([i915#3291]) +2 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/bat-adls-6/igt@prime_vgem@basic-fence-read.html
* igt@prime_vgem@basic-write:
- bat-dg2-9: NOTRUN -> [SKIP][32] ([i915#3291] / [i915#3708]) +2 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/bat-dg2-9/igt@prime_vgem@basic-write.html
#### Possible fixes ####
* igt@i915_selftest@live:
- fi-ivb-3770: [INCOMPLETE][33] -> [PASS][34] +1 other test pass
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8873/fi-ivb-3770/igt@i915_selftest@live.html
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/fi-ivb-3770/igt@i915_selftest@live.html
* igt@i915_selftest@live@workarounds:
- bat-arls-5: [DMESG-FAIL][35] ([i915#12061]) -> [PASS][36] +1 other test pass
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8873/bat-arls-5/igt@i915_selftest@live@workarounds.html
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/bat-arls-5/igt@i915_selftest@live@workarounds.html
- bat-mtlp-9: [DMESG-FAIL][37] ([i915#12061]) -> [PASS][38] +1 other test pass
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8873/bat-mtlp-9/igt@i915_selftest@live@workarounds.html
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/bat-mtlp-9/igt@i915_selftest@live@workarounds.html
- bat-arls-6: [DMESG-FAIL][39] ([i915#12061]) -> [PASS][40] +1 other test pass
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8873/bat-arls-6/igt@i915_selftest@live@workarounds.html
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/bat-arls-6/igt@i915_selftest@live@workarounds.html
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#15656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15656
[i915#15657]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15657
[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#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708
[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#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213
[i915#4215]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4215
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621
[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_8873 -> IGTPW_15056
* Linux: CI_DRM_18361 -> CI_DRM_18366
CI-20190529: 20190529
CI_DRM_18361: 15ccea1aede9d776f85ed002cf0df3c8ea8bd81e @ git://anongit.freedesktop.org/gfx-ci/linux
CI_DRM_18366: d431883e767cbff24c73721cac729c08579cc4b2 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_15056: 754249326a17737b170fa00c32496fe8b8ba19a5 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8873: a5c5d655807ead8204e01754b6434f0ecae40b96 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/index.html
[-- Attachment #2: Type: text/html, Size: 13776 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* ✗ Xe.CI.FULL: failure for test/intel/xe_vm:Add oversubscribe concurrent bind stress subtest
2026-04-27 2:40 [PATCH i-g-t v5] test/intel/xe_vm:Add oversubscribe concurrent bind stress subtest Sobin Thomas
2026-04-27 3:54 ` ✓ Xe.CI.BAT: success for " Patchwork
2026-04-27 3:54 ` ✓ i915.CI.BAT: " Patchwork
@ 2026-04-27 5:01 ` Patchwork
2026-04-27 5:41 ` ✗ i915.CI.Full: " Patchwork
2026-04-27 9:07 ` [PATCH i-g-t v5] " Hellstrom, Thomas
4 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2026-04-27 5:01 UTC (permalink / raw)
To: Sobin Thomas; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 92363 bytes --]
== Series Details ==
Series: test/intel/xe_vm:Add oversubscribe concurrent bind stress subtest
URL : https://patchwork.freedesktop.org/series/165481/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8873_FULL -> XEIGTPW_15056_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_15056_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_15056_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_15056_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@xe_exec_balancer@once-cm-parallel-basic:
- shard-bmg: NOTRUN -> [SKIP][1] +3 other tests skip
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-9/igt@xe_exec_balancer@once-cm-parallel-basic.html
* igt@xe_exec_store@long-shader-bb-check@gt0-drm_xe_engine_class_render0-bb-system-target-system:
- shard-bmg: [PASS][2] -> [FAIL][3] +1 other test fail
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-8/igt@xe_exec_store@long-shader-bb-check@gt0-drm_xe_engine_class_render0-bb-system-target-system.html
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-9/igt@xe_exec_store@long-shader-bb-check@gt0-drm_xe_engine_class_render0-bb-system-target-system.html
* igt@xe_oa@syncs-syncobj-wait-cfg:
- shard-bmg: [PASS][4] -> [SKIP][5] +37 other tests skip
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-5/igt@xe_oa@syncs-syncobj-wait-cfg.html
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-9/igt@xe_oa@syncs-syncobj-wait-cfg.html
* igt@xe_vm@oversubscribe-concurrent-bind (NEW):
- shard-lnl: NOTRUN -> [SKIP][6]
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-lnl-4/igt@xe_vm@oversubscribe-concurrent-bind.html
#### Warnings ####
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-bmg: [SKIP][7] ([Intel XE#4156] / [Intel XE#7425]) -> [SKIP][8]
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-2/igt@kms_fbcon_fbt@fbc-suspend.html
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-9/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_joiner@invalid-modeset-force-ultra-joiner:
- shard-bmg: [SKIP][9] ([Intel XE#6911] / [Intel XE#7466]) -> [SKIP][10]
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-10/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-9/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
* igt@xe_evict@evict-mixed-many-threads-small:
- shard-bmg: [INCOMPLETE][11] ([Intel XE#6321]) -> [SKIP][12]
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-3/igt@xe_evict@evict-mixed-many-threads-small.html
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-9/igt@xe_evict@evict-mixed-many-threads-small.html
* igt@xe_prefetch_fault@prefetch-fault-svm:
- shard-bmg: [SKIP][13] ([Intel XE#7599]) -> [SKIP][14]
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-8/igt@xe_prefetch_fault@prefetch-fault-svm.html
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-9/igt@xe_prefetch_fault@prefetch-fault-svm.html
New tests
---------
New tests have been introduced between XEIGT_8873_FULL and XEIGTPW_15056_FULL:
### New IGT tests (1) ###
* igt@xe_vm@oversubscribe-concurrent-bind:
- Statuses : 1 pass(s) 1 skip(s)
- Exec time: [0.0, 7.75] s
Known issues
------------
Here are the changes found in XEIGTPW_15056_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@fbdev@read:
- shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#2134])
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-9/igt@fbdev@read.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- shard-bmg: [PASS][16] -> [SKIP][17] ([Intel XE#2233])
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-9/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-7/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#7825]) +2 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-9/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-270:
- shard-lnl: NOTRUN -> [SKIP][19] ([Intel XE#1407]) +1 other test skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-lnl-4/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-32bpp-rotate-0:
- shard-lnl: NOTRUN -> [SKIP][20] ([Intel XE#1124]) +2 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-lnl-3/igt@kms_big_fb@y-tiled-32bpp-rotate-0.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#1124]) +2 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-2/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc:
- shard-lnl: NOTRUN -> [SKIP][22] ([Intel XE#2887]) +1 other test skip
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-lnl-7/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs:
- shard-lnl: NOTRUN -> [SKIP][23] ([Intel XE#3432])
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-lnl-5/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
- shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#2887]) +2 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-5/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_chamelium_color@ctm-max:
- shard-lnl: NOTRUN -> [SKIP][25] ([Intel XE#306] / [Intel XE#7358])
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-lnl-5/igt@kms_chamelium_color@ctm-max.html
* igt@kms_chamelium_edid@hdmi-edid-change-during-suspend:
- shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#2252])
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-2/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html
* igt@kms_color@ctm-signed:
- shard-bmg: [PASS][27] -> [SKIP][28] ([Intel XE#3297])
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-3/igt@kms_color@ctm-signed.html
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-9/igt@kms_color@ctm-signed.html
* igt@kms_color_pipeline@plane-lut1d-lut1d:
- shard-bmg: [PASS][29] -> [SKIP][30] ([Intel XE#7006]) +1 other test skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-5/igt@kms_color_pipeline@plane-lut1d-lut1d.html
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-9/igt@kms_color_pipeline@plane-lut1d-lut1d.html
* igt@kms_color_pipeline@plane-lut3d-green-only@pipe-b-plane-0:
- shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#6969]) +10 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-5/igt@kms_color_pipeline@plane-lut3d-green-only@pipe-b-plane-0.html
* igt@kms_color_pipeline@plane-lut3d-green-only@pipe-d-plane-2:
- shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#6969] / [Intel XE#7006])
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-5/igt@kms_color_pipeline@plane-lut3d-green-only@pipe-d-plane-2.html
* igt@kms_content_protection@content-type-change:
- shard-lnl: NOTRUN -> [SKIP][33] ([Intel XE#7642])
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-lnl-4/igt@kms_content_protection@content-type-change.html
* igt@kms_content_protection@legacy:
- shard-bmg: NOTRUN -> [FAIL][34] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) +2 other tests fail
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-3/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@uevent@pipe-a-dp-2:
- shard-bmg: NOTRUN -> [FAIL][35] ([Intel XE#6707] / [Intel XE#7439])
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-1/igt@kms_content_protection@uevent@pipe-a-dp-2.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-lnl: NOTRUN -> [SKIP][36] ([Intel XE#2321] / [Intel XE#7355]) +1 other test skip
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-lnl-5/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-sliding-256x85:
- shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#2320]) +1 other test skip
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-6/igt@kms_cursor_crc@cursor-sliding-256x85.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
- shard-bmg: [PASS][38] -> [SKIP][39] ([Intel XE#7825]) +51 other tests skip
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-8/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-9/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-legacy:
- shard-lnl: NOTRUN -> [SKIP][40] ([Intel XE#309] / [Intel XE#7343])
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-lnl-4/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic:
- shard-bmg: [PASS][41] -> [FAIL][42] ([Intel XE#7571])
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-10/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-8/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-lnl: NOTRUN -> [SKIP][43] ([Intel XE#2244])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-lnl-6/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_fbcon_fbt@fbc:
- shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#4156] / [Intel XE#7425])
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-3/igt@kms_fbcon_fbt@fbc.html
* igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible:
- shard-lnl: NOTRUN -> [SKIP][45] ([Intel XE#1421]) +1 other test skip
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-lnl-5/igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible.html
* igt@kms_flip@2x-flip-vs-wf_vblank:
- shard-bmg: [PASS][46] -> [SKIP][47] ([Intel XE#2316]) +3 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-10/igt@kms_flip@2x-flip-vs-wf_vblank.html
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-9/igt@kms_flip@2x-flip-vs-wf_vblank.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible:
- shard-lnl: [PASS][48] -> [FAIL][49] ([Intel XE#301] / [Intel XE#3149]) +1 other test fail
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-lnl-8/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
* igt@kms_flip@flip-vs-panning-vs-hang:
- shard-bmg: [PASS][50] -> [SKIP][51] ([Intel XE#2482]) +7 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-3/igt@kms_flip@flip-vs-panning-vs-hang.html
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-9/igt@kms_flip@flip-vs-panning-vs-hang.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling:
- shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#7178] / [Intel XE#7351])
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling:
- shard-bmg: [PASS][53] -> [SKIP][54] ([Intel XE#7178])
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-9/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-upscaling:
- shard-bmg: [PASS][55] -> [SKIP][56] ([Intel XE#2380]) +1 other test skip
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-7/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-upscaling.html
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-9/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-upscaling.html
* igt@kms_flip_tiling@flip-change-tiling:
- shard-bmg: [PASS][57] -> [SKIP][58] ([Intel XE#2682])
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-8/igt@kms_flip_tiling@flip-change-tiling.html
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-9/igt@kms_flip_tiling@flip-change-tiling.html
* igt@kms_frontbuffer_tracking@drrs-1p-offscreen-pri-indfb-draw-blt:
- shard-lnl: NOTRUN -> [SKIP][59] ([Intel XE#6312])
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-lnl-4/igt@kms_frontbuffer_tracking@drrs-1p-offscreen-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@drrs-argb161616f-draw-mmap-wc:
- shard-lnl: NOTRUN -> [SKIP][60] ([Intel XE#7061] / [Intel XE#7356]) +1 other test skip
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-lnl-3/igt@kms_frontbuffer_tracking@drrs-argb161616f-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#2434] / [Intel XE#2548] / [Intel XE#6314]) +1 other test skip
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-9/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt:
- shard-lnl: NOTRUN -> [SKIP][62] ([Intel XE#656]) +10 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-lnl-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt:
- shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#4141])
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-blt:
- shard-bmg: [PASS][64] -> [SKIP][65] ([Intel XE#2548] / [Intel XE#6314])
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-blt.html
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-9/igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][66] ([Intel XE#2311])
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc:
- shard-lnl: NOTRUN -> [SKIP][67] ([Intel XE#6312] / [Intel XE#651]) +4 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-lnl-5/igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-argb161616f-draw-render:
- shard-bmg: NOTRUN -> [SKIP][68] ([Intel XE#7061] / [Intel XE#7356])
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-argb161616f-draw-render.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][69] ([Intel XE#2313]) +6 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-blt.html
* igt@kms_invalid_mode@bad-vsync-end:
- shard-bmg: [PASS][70] -> [SKIP][71] ([Intel XE#2568]) +3 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-2/igt@kms_invalid_mode@bad-vsync-end.html
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-9/igt@kms_invalid_mode@bad-vsync-end.html
* igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier-source-clamping:
- shard-bmg: NOTRUN -> [SKIP][72] ([Intel XE#7283]) +2 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-7/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-4-tiled-modifier@pipe-b-plane-5:
- shard-bmg: NOTRUN -> [SKIP][73] ([Intel XE#7130]) +1 other test skip
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-1/igt@kms_plane@pixel-format-4-tiled-modifier@pipe-b-plane-5.html
* igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier:
- shard-lnl: NOTRUN -> [SKIP][74] ([Intel XE#7283])
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-lnl-2/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier.html
* igt@kms_plane@pixel-format-x-tiled-modifier:
- shard-bmg: [PASS][75] -> [SKIP][76] ([Intel XE#7111])
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-7/igt@kms_plane@pixel-format-x-tiled-modifier.html
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-9/igt@kms_plane@pixel-format-x-tiled-modifier.html
* igt@kms_plane@planar-pixel-format-settings:
- shard-bmg: [PASS][77] -> [SKIP][78] ([Intel XE#7780])
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-10/igt@kms_plane@planar-pixel-format-settings.html
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-9/igt@kms_plane@planar-pixel-format-settings.html
* igt@kms_plane_alpha_blend@coverage-7efc:
- shard-bmg: [PASS][79] -> [SKIP][80] ([Intel XE#7082]) +1 other test skip
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-1/igt@kms_plane_alpha_blend@coverage-7efc.html
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-9/igt@kms_plane_alpha_blend@coverage-7efc.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-lnl: NOTRUN -> [SKIP][81] ([Intel XE#3307])
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-lnl-6/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@invalid-num-scalers:
- shard-bmg: [PASS][82] -> [SKIP][83] ([Intel XE#3307])
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-1/igt@kms_plane_scaling@invalid-num-scalers.html
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-9/igt@kms_plane_scaling@invalid-num-scalers.html
* igt@kms_plane_scaling@invalid-parameters:
- shard-bmg: [PASS][84] -> [SKIP][85] ([Intel XE#7687])
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-6/igt@kms_plane_scaling@invalid-parameters.html
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-9/igt@kms_plane_scaling@invalid-parameters.html
* igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers:
- shard-bmg: [PASS][86] -> [SKIP][87] ([Intel XE#2763] / [Intel XE#6886]) +14 other tests skip
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-1/igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers.html
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-9/igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers.html
* igt@kms_pm_backlight@fade-with-suspend:
- shard-bmg: NOTRUN -> [SKIP][88] ([Intel XE#7376] / [Intel XE#870])
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-3/igt@kms_pm_backlight@fade-with-suspend.html
* igt@kms_pm_rpm@dpms-non-lpsp:
- shard-bmg: [PASS][89] -> [SKIP][90] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#7383])
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-5/igt@kms_pm_rpm@dpms-non-lpsp.html
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-9/igt@kms_pm_rpm@dpms-non-lpsp.html
* igt@kms_pm_rpm@legacy-planes:
- shard-bmg: [PASS][91] -> [SKIP][92] ([Intel XE#4886])
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-10/igt@kms_pm_rpm@legacy-planes.html
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-9/igt@kms_pm_rpm@legacy-planes.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf:
- shard-lnl: NOTRUN -> [SKIP][93] ([Intel XE#2893] / [Intel XE#7304])
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-lnl-6/igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-bmg: NOTRUN -> [SKIP][94] ([Intel XE#2387] / [Intel XE#7429])
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-7/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@fbc-pr-sprite-plane-move:
- shard-lnl: NOTRUN -> [SKIP][95] ([Intel XE#1406]) +1 other test skip
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-lnl-8/igt@kms_psr@fbc-pr-sprite-plane-move.html
* igt@kms_psr@psr2-primary-page-flip:
- shard-bmg: NOTRUN -> [SKIP][96] ([Intel XE#2234] / [Intel XE#2850]) +1 other test skip
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-7/igt@kms_psr@psr2-primary-page-flip.html
* igt@kms_rotation_crc@primary-rotation-90:
- shard-lnl: NOTRUN -> [SKIP][97] ([Intel XE#3414] / [Intel XE#3904] / [Intel XE#7342]) +1 other test skip
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-lnl-5/igt@kms_rotation_crc@primary-rotation-90.html
* igt@kms_setmode@clone-exclusive-crtc:
- shard-bmg: [PASS][98] -> [SKIP][99] ([Intel XE#1435])
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-5/igt@kms_setmode@clone-exclusive-crtc.html
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-9/igt@kms_setmode@clone-exclusive-crtc.html
* igt@kms_sharpness_filter@invalid-plane-with-filter:
- shard-bmg: NOTRUN -> [SKIP][100] ([Intel XE#6503])
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-7/igt@kms_sharpness_filter@invalid-plane-with-filter.html
* igt@kms_vrr@lobf:
- shard-bmg: NOTRUN -> [SKIP][101] ([Intel XE#2168] / [Intel XE#7444])
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-7/igt@kms_vrr@lobf.html
* igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1:
- shard-lnl: [PASS][102] -> [FAIL][103] ([Intel XE#2142]) +1 other test fail
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-lnl-8/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-lnl-3/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html
* igt@xe_create@create-big-vram:
- shard-lnl: NOTRUN -> [SKIP][104] ([Intel XE#1062] / [Intel XE#7318] / [Intel XE#7457])
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-lnl-5/igt@xe_create@create-big-vram.html
* igt@xe_create@multigpu-create-massive-size:
- shard-lnl: NOTRUN -> [SKIP][105] ([Intel XE#7319] / [Intel XE#7350] / [Intel XE#944])
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-lnl-8/igt@xe_create@multigpu-create-massive-size.html
* igt@xe_eu_stall@invalid-event-report-count:
- shard-bmg: [PASS][106] -> [SKIP][107] ([Intel XE#6568])
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-7/igt@xe_eu_stall@invalid-event-report-count.html
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-9/igt@xe_eu_stall@invalid-event-report-count.html
* igt@xe_eudebug@basic-client:
- shard-lnl: NOTRUN -> [SKIP][108] ([Intel XE#7636]) +5 other tests skip
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-lnl-6/igt@xe_eudebug@basic-client.html
* igt@xe_eudebug@basic-vm-bind-discovery:
- shard-bmg: NOTRUN -> [SKIP][109] ([Intel XE#7636]) +2 other tests skip
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-6/igt@xe_eudebug@basic-vm-bind-discovery.html
* igt@xe_evict@evict-threads-small-multi-queue:
- shard-bmg: NOTRUN -> [SKIP][110] ([Intel XE#7140])
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-8/igt@xe_evict@evict-threads-small-multi-queue.html
* igt@xe_evict_ccs@evict-overcommit-parallel-instantfree-reopen:
- shard-lnl: NOTRUN -> [SKIP][111] ([Intel XE#6540] / [Intel XE#688]) +3 other tests skip
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-lnl-6/igt@xe_evict_ccs@evict-overcommit-parallel-instantfree-reopen.html
* igt@xe_exec_balancer@many-virtual-rebind:
- shard-bmg: [PASS][112] -> [SKIP][113] ([Intel XE#7827]) +7 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-3/igt@xe_exec_balancer@many-virtual-rebind.html
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-9/igt@xe_exec_balancer@many-virtual-rebind.html
* igt@xe_exec_balancer@once-cm-parallel-userptr:
- shard-lnl: NOTRUN -> [SKIP][114] ([Intel XE#7482]) +2 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-lnl-4/igt@xe_exec_balancer@once-cm-parallel-userptr.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue:
- shard-bmg: NOTRUN -> [SKIP][115] ([Intel XE#2322] / [Intel XE#7372]) +2 other tests skip
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-1/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue.html
* igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate:
- shard-lnl: NOTRUN -> [SKIP][116] ([Intel XE#1392])
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-lnl-5/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr-invalidate.html
* igt@xe_exec_fault_mode@twice-multi-queue-imm:
- shard-bmg: NOTRUN -> [SKIP][117] ([Intel XE#7136]) +3 other tests skip
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-10/igt@xe_exec_fault_mode@twice-multi-queue-imm.html
* igt@xe_exec_fault_mode@twice-multi-queue-userptr-rebind-prefetch:
- shard-lnl: NOTRUN -> [SKIP][118] ([Intel XE#7136]) +1 other test skip
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-lnl-2/igt@xe_exec_fault_mode@twice-multi-queue-userptr-rebind-prefetch.html
* igt@xe_exec_fault_mode@twice-userptr-invalidate-race-imm:
- shard-bmg: [PASS][119] -> [SKIP][120] ([Intel XE#7826]) +23 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-3/igt@xe_exec_fault_mode@twice-userptr-invalidate-race-imm.html
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-9/igt@xe_exec_fault_mode@twice-userptr-invalidate-race-imm.html
* igt@xe_exec_multi_queue@max-queues-preempt-mode-close-fd-smem:
- shard-bmg: NOTRUN -> [SKIP][121] ([Intel XE#6874]) +6 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-9/igt@xe_exec_multi_queue@max-queues-preempt-mode-close-fd-smem.html
* igt@xe_exec_multi_queue@one-queue-preempt-mode-fault-priority-smem:
- shard-lnl: NOTRUN -> [SKIP][122] ([Intel XE#6874]) +4 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-lnl-4/igt@xe_exec_multi_queue@one-queue-preempt-mode-fault-priority-smem.html
* igt@xe_exec_system_allocator@many-execqueues-new-busy:
- shard-bmg: [PASS][123] -> [SKIP][124] ([Intel XE#7824]) +281 other tests skip
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-6/igt@xe_exec_system_allocator@many-execqueues-new-busy.html
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-9/igt@xe_exec_system_allocator@many-execqueues-new-busy.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-malloc-race:
- shard-bmg: NOTRUN -> [SKIP][125] ([Intel XE#7824]) +13 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-9/igt@xe_exec_system_allocator@threads-shared-vm-many-malloc-race.html
* igt@xe_exec_threads@threads-multi-queue-hang-fd-userptr-invalidate-race:
- shard-bmg: NOTRUN -> [SKIP][126] ([Intel XE#7138]) +1 other test skip
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-9/igt@xe_exec_threads@threads-multi-queue-hang-fd-userptr-invalidate-race.html
* igt@xe_exec_threads@threads-multi-queue-userptr-invalidate-race:
- shard-lnl: NOTRUN -> [SKIP][127] ([Intel XE#7138]) +1 other test skip
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-lnl-5/igt@xe_exec_threads@threads-multi-queue-userptr-invalidate-race.html
* igt@xe_live_ktest@xe_bo:
- shard-bmg: [PASS][128] -> [SKIP][129] ([Intel XE#2229]) +1 other test skip
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-2/igt@xe_live_ktest@xe_bo.html
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-9/igt@xe_live_ktest@xe_bo.html
* igt@xe_mmap@pci-membarrier-parallel:
- shard-bmg: [PASS][130] -> [SKIP][131] ([Intel XE#5100])
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-2/igt@xe_mmap@pci-membarrier-parallel.html
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-9/igt@xe_mmap@pci-membarrier-parallel.html
* igt@xe_multigpu_svm@mgpu-pagefault-basic:
- shard-bmg: NOTRUN -> [SKIP][132] ([Intel XE#6964])
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-9/igt@xe_multigpu_svm@mgpu-pagefault-basic.html
* igt@xe_page_reclaim@prl-max-entries:
- shard-lnl: NOTRUN -> [SKIP][133] ([Intel XE#7793])
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-lnl-6/igt@xe_page_reclaim@prl-max-entries.html
* igt@xe_pm@d3cold-i2c:
- shard-bmg: NOTRUN -> [SKIP][134] ([Intel XE#5694] / [Intel XE#7370])
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-8/igt@xe_pm@d3cold-i2c.html
* igt@xe_pm@d3cold-mocs:
- shard-lnl: NOTRUN -> [SKIP][135] ([Intel XE#2284] / [Intel XE#7370])
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-lnl-4/igt@xe_pm@d3cold-mocs.html
* igt@xe_pm@d3cold-multiple-execs:
- shard-bmg: NOTRUN -> [SKIP][136] ([Intel XE#2284] / [Intel XE#7370])
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-9/igt@xe_pm@d3cold-multiple-execs.html
* igt@xe_pm@s3-d3hot-basic-exec:
- shard-lnl: NOTRUN -> [SKIP][137] ([Intel XE#584] / [Intel XE#7369])
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-lnl-1/igt@xe_pm@s3-d3hot-basic-exec.html
* igt@xe_query@multigpu-query-hwconfig:
- shard-bmg: NOTRUN -> [SKIP][138] ([Intel XE#944]) +1 other test skip
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-5/igt@xe_query@multigpu-query-hwconfig.html
* igt@xe_sriov_auto_provisioning@selfconfig-reprovision-reduce-numvfs:
- shard-lnl: NOTRUN -> [SKIP][139] ([Intel XE#4130] / [Intel XE#7366])
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-lnl-4/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-reduce-numvfs.html
* igt@xe_sriov_flr@flr-vfs-parallel:
- shard-bmg: [PASS][140] -> [FAIL][141] ([Intel XE#6569])
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-3/igt@xe_sriov_flr@flr-vfs-parallel.html
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-1/igt@xe_sriov_flr@flr-vfs-parallel.html
* igt@xe_sriov_vram@vf-access-provisioned@numvfs-random:
- shard-bmg: NOTRUN -> [FAIL][142] ([Intel XE#5937])
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-7/igt@xe_sriov_vram@vf-access-provisioned@numvfs-random.html
* igt@xe_wedged@wedged-at-any-timeout:
- shard-bmg: [PASS][143] -> [DMESG-WARN][144] ([Intel XE#5545])
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-9/igt@xe_wedged@wedged-at-any-timeout.html
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-5/igt@xe_wedged@wedged-at-any-timeout.html
#### Possible fixes ####
* igt@fbdev@unaligned-read:
- shard-bmg: [SKIP][145] ([Intel XE#2134]) -> [PASS][146] +1 other test pass
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-9/igt@fbdev@unaligned-read.html
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-2/igt@fbdev@unaligned-read.html
* igt@intel_hwmon@hwmon-write:
- shard-bmg: [FAIL][147] ([Intel XE#7445]) -> [PASS][148]
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-5/igt@intel_hwmon@hwmon-write.html
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-1/igt@intel_hwmon@hwmon-write.html
* igt@kms_color@ctm-red-to-blue:
- shard-bmg: [SKIP][149] ([Intel XE#3297]) -> [PASS][150]
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-9/igt@kms_color@ctm-red-to-blue.html
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-5/igt@kms_color@ctm-red-to-blue.html
* igt@kms_color_pipeline@plane-lut1d-pre-ctm3x4:
- shard-bmg: [SKIP][151] ([Intel XE#7006]) -> [PASS][152] +1 other test pass
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-9/igt@kms_color_pipeline@plane-lut1d-pre-ctm3x4.html
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-1/igt@kms_color_pipeline@plane-lut1d-pre-ctm3x4.html
* igt@kms_flip@2x-blocking-wf_vblank:
- shard-bmg: [SKIP][153] ([Intel XE#2316]) -> [PASS][154] +10 other tests pass
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-9/igt@kms_flip@2x-blocking-wf_vblank.html
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-5/igt@kms_flip@2x-blocking-wf_vblank.html
* igt@kms_flip@2x-dpms-vs-vblank-race-interruptible@ad-dp2-hdmi-a3:
- shard-bmg: [FAIL][155] ([Intel XE#5408] / [Intel XE#6266]) -> [PASS][156] +2 other tests pass
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-6/igt@kms_flip@2x-dpms-vs-vblank-race-interruptible@ad-dp2-hdmi-a3.html
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-1/igt@kms_flip@2x-dpms-vs-vblank-race-interruptible@ad-dp2-hdmi-a3.html
* igt@kms_flip@2x-dpms-vs-vblank-race-interruptible@cd-dp2-hdmi-a3:
- shard-bmg: [FAIL][157] ([Intel XE#3149] / [Intel XE#5408] / [Intel XE#6266]) -> [PASS][158] +1 other test pass
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-6/igt@kms_flip@2x-dpms-vs-vblank-race-interruptible@cd-dp2-hdmi-a3.html
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-1/igt@kms_flip@2x-dpms-vs-vblank-race-interruptible@cd-dp2-hdmi-a3.html
* igt@kms_flip@flip-vs-dpms-on-nop-interruptible:
- shard-bmg: [SKIP][159] ([Intel XE#4882]) -> [PASS][160]
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-9/igt@kms_flip@flip-vs-dpms-on-nop-interruptible.html
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-5/igt@kms_flip@flip-vs-dpms-on-nop-interruptible.html
* igt@kms_flip@flip-vs-rmfb-interruptible:
- shard-bmg: [SKIP][161] ([Intel XE#2482]) -> [PASS][162] +6 other tests pass
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-9/igt@kms_flip@flip-vs-rmfb-interruptible.html
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-7/igt@kms_flip@flip-vs-rmfb-interruptible.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling:
- shard-bmg: [SKIP][163] ([Intel XE#7178]) -> [PASS][164]
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-9/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling:
- shard-bmg: [SKIP][165] ([Intel XE#2380]) -> [PASS][166] +1 other test pass
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-9/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling.html
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-2/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling.html
* igt@kms_invalid_mode@clock-too-high:
- shard-bmg: [SKIP][167] ([Intel XE#2568]) -> [PASS][168] +1 other test pass
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-9/igt@kms_invalid_mode@clock-too-high.html
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-5/igt@kms_invalid_mode@clock-too-high.html
* igt@kms_joiner@basic-force-big-joiner:
- shard-bmg: [SKIP][169] ([Intel XE#7086]) -> [PASS][170]
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-9/igt@kms_joiner@basic-force-big-joiner.html
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-6/igt@kms_joiner@basic-force-big-joiner.html
* igt@kms_pipe_stress@stress-xrgb8888-untiled:
- shard-bmg: [SKIP][171] ([Intel XE#7825]) -> [PASS][172] +62 other tests pass
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-9/igt@kms_pipe_stress@stress-xrgb8888-untiled.html
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-6/igt@kms_pipe_stress@stress-xrgb8888-untiled.html
* igt@kms_plane@pixel-format-4-tiled-modifier:
- shard-bmg: [SKIP][173] ([Intel XE#7283]) -> [PASS][174]
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-9/igt@kms_plane@pixel-format-4-tiled-modifier.html
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-1/igt@kms_plane@pixel-format-4-tiled-modifier.html
* igt@kms_plane@plane-panning-bottom-right-suspend:
- shard-bmg: [SKIP][175] ([Intel XE#7111]) -> [PASS][176] +1 other test pass
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-9/igt@kms_plane@plane-panning-bottom-right-suspend.html
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-10/igt@kms_plane@plane-panning-bottom-right-suspend.html
* igt@kms_plane_scaling@2x-scaler-multi-pipe:
- shard-bmg: [SKIP][177] ([Intel XE#2571] / [Intel XE#7343]) -> [PASS][178]
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-9/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
[178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-7/igt@kms_plane_scaling@2x-scaler-multi-pipe.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-b:
- shard-bmg: [SKIP][179] ([Intel XE#2763] / [Intel XE#6886]) -> [PASS][180] +34 other tests pass
[179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-9/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-b.html
[180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-6/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-b.html
* igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-bmg: [SKIP][181] ([Intel XE#1439] / [Intel XE#7402] / [Intel XE#836]) -> [PASS][182]
[181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-9/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
[182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-6/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@kms_pm_rpm@i2c:
- shard-bmg: [SKIP][183] ([Intel XE#7079]) -> [PASS][184]
[183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-9/igt@kms_pm_rpm@i2c.html
[184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-7/igt@kms_pm_rpm@i2c.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-bmg: [SKIP][185] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#7383]) -> [PASS][186]
[185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-9/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
[186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-1/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_pm_rpm@universal-planes-dpms:
- shard-bmg: [SKIP][187] ([Intel XE#4886]) -> [PASS][188]
[187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-9/igt@kms_pm_rpm@universal-planes-dpms.html
[188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-5/igt@kms_pm_rpm@universal-planes-dpms.html
* igt@kms_properties@colorop-properties-legacy:
- shard-bmg: [SKIP][189] ([Intel XE#7089]) -> [PASS][190]
[189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-9/igt@kms_properties@colorop-properties-legacy.html
[190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-7/igt@kms_properties@colorop-properties-legacy.html
* igt@kms_properties@plane-properties-atomic:
- shard-bmg: [SKIP][191] ([Intel XE#7112]) -> [PASS][192] +1 other test pass
[191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-9/igt@kms_properties@plane-properties-atomic.html
[192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-2/igt@kms_properties@plane-properties-atomic.html
* igt@xe_eu_stall@invalid-sampling-rate:
- shard-bmg: [SKIP][193] ([Intel XE#6568]) -> [PASS][194]
[193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-9/igt@xe_eu_stall@invalid-sampling-rate.html
[194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-6/igt@xe_eu_stall@invalid-sampling-rate.html
* igt@xe_exec_balancer@many-execqueues-cm-virtual-userptr-rebind:
- shard-bmg: [SKIP][195] ([Intel XE#7827]) -> [PASS][196] +1 other test pass
[195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-9/igt@xe_exec_balancer@many-execqueues-cm-virtual-userptr-rebind.html
[196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-10/igt@xe_exec_balancer@many-execqueues-cm-virtual-userptr-rebind.html
* igt@xe_exec_balancer@many-parallel-userptr-invalidate:
- shard-bmg: [SKIP][197] -> [PASS][198] +50 other tests pass
[197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-9/igt@xe_exec_balancer@many-parallel-userptr-invalidate.html
[198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-8/igt@xe_exec_balancer@many-parallel-userptr-invalidate.html
* igt@xe_exec_fault_mode@twice-userptr-invalidate:
- shard-bmg: [SKIP][199] ([Intel XE#7826]) -> [PASS][200] +22 other tests pass
[199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-9/igt@xe_exec_fault_mode@twice-userptr-invalidate.html
[200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-8/igt@xe_exec_fault_mode@twice-userptr-invalidate.html
* igt@xe_exec_store@mem-write-ordering-check:
- shard-bmg: [FAIL][201] -> [PASS][202] +2 other tests pass
[201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-9/igt@xe_exec_store@mem-write-ordering-check.html
[202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-10/igt@xe_exec_store@mem-write-ordering-check.html
* igt@xe_exec_system_allocator@many-free-race-nomemset:
- shard-bmg: [SKIP][203] ([Intel XE#7824]) -> [PASS][204] +337 other tests pass
[203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-9/igt@xe_exec_system_allocator@many-free-race-nomemset.html
[204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-6/igt@xe_exec_system_allocator@many-free-race-nomemset.html
* igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-multi-vma:
- shard-lnl: [FAIL][205] ([Intel XE#7815]) -> [PASS][206] +1 other test pass
[205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-lnl-1/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-multi-vma.html
[206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-lnl-7/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-multi-vma.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init:
- shard-bmg: [ABORT][207] ([Intel XE#5545]) -> [PASS][208]
[207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-9/igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init.html
[208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-7/igt@xe_fault_injection@inject-fault-probe-function-xe_wopcm_init.html
* igt@xe_pat@bo-comp-disable-bind:
- shard-bmg: [SKIP][209] ([Intel XE#6775] / [Intel XE#7590]) -> [PASS][210]
[209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-9/igt@xe_pat@bo-comp-disable-bind.html
[210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-5/igt@xe_pat@bo-comp-disable-bind.html
* igt@xe_pat@display-vs-wb-transient:
- shard-bmg: [SKIP][211] ([Intel XE#7590]) -> [PASS][212] +1 other test pass
[211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-9/igt@xe_pat@display-vs-wb-transient.html
[212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-3/igt@xe_pat@display-vs-wb-transient.html
* igt@xe_pmu@all-fn-engine-activity-load@engine-drm_xe_engine_class_render0:
- shard-bmg: [TIMEOUT][213] -> [PASS][214] +1 other test pass
[213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-9/igt@xe_pmu@all-fn-engine-activity-load@engine-drm_xe_engine_class_render0.html
[214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-7/igt@xe_pmu@all-fn-engine-activity-load@engine-drm_xe_engine_class_render0.html
* igt@xe_vm@vm-get-property-exercise:
- shard-bmg: [DMESG-FAIL][215] -> [PASS][216]
[215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-9/igt@xe_vm@vm-get-property-exercise.html
[216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-7/igt@xe_vm@vm-get-property-exercise.html
#### Warnings ####
* igt@fbdev@pan:
- shard-bmg: [FAIL][217] ([Intel XE#2488]) -> [SKIP][218] ([Intel XE#2134])
[217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-10/igt@fbdev@pan.html
[218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-9/igt@fbdev@pan.html
* igt@kms_big_fb@linear-64bpp-rotate-270:
- shard-bmg: [SKIP][219] ([Intel XE#7825]) -> [SKIP][220] ([Intel XE#2327]) +2 other tests skip
[219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-9/igt@kms_big_fb@linear-64bpp-rotate-270.html
[220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-8/igt@kms_big_fb@linear-64bpp-rotate-270.html
* igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip:
- shard-bmg: [SKIP][221] ([Intel XE#7059] / [Intel XE#7085]) -> [SKIP][222] ([Intel XE#7825])
[221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-2/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip.html
[222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-9/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-90:
- shard-bmg: [SKIP][223] ([Intel XE#2327]) -> [SKIP][224] ([Intel XE#7825]) +2 other tests skip
[223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-10/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html
[224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-9/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180:
- shard-bmg: [SKIP][225] ([Intel XE#7825]) -> [SKIP][226] ([Intel XE#1124]) +13 other tests skip
[225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-9/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180.html
[226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-6/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-bmg: [SKIP][227] ([Intel XE#1124]) -> [SKIP][228] ([Intel XE#7825]) +12 other tests skip
[227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-3/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
[228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-9/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc:
- shard-bmg: [SKIP][229] ([Intel XE#7825]) -> [SKIP][230] ([Intel XE#2887]) +13 other tests skip
[229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-9/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc.html
[230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-2/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs:
- shard-bmg: [SKIP][231] ([Intel XE#2652]) -> [SKIP][232] ([Intel XE#7825])
[231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-2/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html
[232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-9/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs:
- shard-bmg: [SKIP][233] ([Intel XE#2887]) -> [SKIP][234] ([Intel XE#7825]) +13 other tests skip
[233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs.html
[234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-9/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs.html
* igt@kms_cdclk@mode-transition:
- shard-bmg: [SKIP][235] -> [SKIP][236] ([Intel XE#2724] / [Intel XE#7449])
[235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-9/igt@kms_cdclk@mode-transition.html
[236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-7/igt@kms_cdclk@mode-transition.html
* igt@kms_color_pipeline@plane-lut3d-green-only:
- shard-bmg: [SKIP][237] ([Intel XE#7006]) -> [SKIP][238] ([Intel XE#6969] / [Intel XE#7006])
[237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-9/igt@kms_color_pipeline@plane-lut3d-green-only.html
[238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-5/igt@kms_color_pipeline@plane-lut3d-green-only.html
* igt@kms_content_protection@atomic:
- shard-bmg: [FAIL][239] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) -> [SKIP][240] ([Intel XE#7825]) +1 other test skip
[239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-8/igt@kms_content_protection@atomic.html
[240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-9/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@dp-mst-lic-type-0:
- shard-bmg: [SKIP][241] ([Intel XE#7825]) -> [SKIP][242] ([Intel XE#2390] / [Intel XE#6974])
[241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-9/igt@kms_content_protection@dp-mst-lic-type-0.html
[242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-10/igt@kms_content_protection@dp-mst-lic-type-0.html
* igt@kms_content_protection@suspend-resume:
- shard-bmg: [SKIP][243] ([Intel XE#7825]) -> [FAIL][244] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374])
[243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-9/igt@kms_content_protection@suspend-resume.html
[244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-2/igt@kms_content_protection@suspend-resume.html
* igt@kms_content_protection@uevent:
- shard-bmg: [SKIP][245] ([Intel XE#7825]) -> [FAIL][246] ([Intel XE#6707] / [Intel XE#7439])
[245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-9/igt@kms_content_protection@uevent.html
[246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-1/igt@kms_content_protection@uevent.html
* igt@kms_cursor_crc@cursor-offscreen-32x10:
- shard-bmg: [SKIP][247] ([Intel XE#2320]) -> [SKIP][248] ([Intel XE#7825]) +5 other tests skip
[247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-3/igt@kms_cursor_crc@cursor-offscreen-32x10.html
[248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-9/igt@kms_cursor_crc@cursor-offscreen-32x10.html
* igt@kms_cursor_crc@cursor-onscreen-512x170:
- shard-bmg: [SKIP][249] ([Intel XE#2321] / [Intel XE#7355]) -> [SKIP][250] ([Intel XE#7825]) +1 other test skip
[249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-2/igt@kms_cursor_crc@cursor-onscreen-512x170.html
[250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-9/igt@kms_cursor_crc@cursor-onscreen-512x170.html
* igt@kms_cursor_crc@cursor-onscreen-64x21:
- shard-bmg: [SKIP][251] ([Intel XE#7825]) -> [SKIP][252] ([Intel XE#2320]) +2 other tests skip
[251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-9/igt@kms_cursor_crc@cursor-onscreen-64x21.html
[252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-7/igt@kms_cursor_crc@cursor-onscreen-64x21.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-bmg: [SKIP][253] ([Intel XE#7825]) -> [SKIP][254] ([Intel XE#2321] / [Intel XE#7355]) +3 other tests skip
[253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-9/igt@kms_cursor_crc@cursor-sliding-512x512.html
[254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-6/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size:
- shard-bmg: [SKIP][255] ([Intel XE#7825]) -> [SKIP][256] ([Intel XE#2286] / [Intel XE#6035])
[255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-9/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
[256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-bmg: [SKIP][257] ([Intel XE#1508]) -> [SKIP][258] ([Intel XE#7825]) +1 other test skip
[257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-10/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
[258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-9/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_dp_link_training@uhbr-sst:
- shard-bmg: [SKIP][259] ([Intel XE#7825]) -> [SKIP][260] ([Intel XE#4354] / [Intel XE#5870])
[259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-9/igt@kms_dp_link_training@uhbr-sst.html
[260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-6/igt@kms_dp_link_training@uhbr-sst.html
* igt@kms_dsc@dsc-fractional-bpp:
- shard-bmg: [SKIP][261] ([Intel XE#7825]) -> [SKIP][262] ([Intel XE#2244]) +1 other test skip
[261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-9/igt@kms_dsc@dsc-fractional-bpp.html
[262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-8/igt@kms_dsc@dsc-fractional-bpp.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-bmg: [SKIP][263] ([Intel XE#2244]) -> [SKIP][264] ([Intel XE#7825])
[263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-1/igt@kms_dsc@dsc-with-output-formats.html
[264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-9/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
- shard-bmg: [SKIP][265] ([Intel XE#7178]) -> [SKIP][266] ([Intel XE#7178] / [Intel XE#7349]) +1 other test skip
[265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-9/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
[266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-10/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling:
- shard-bmg: [SKIP][267] ([Intel XE#7178] / [Intel XE#7351]) -> [SKIP][268] ([Intel XE#7178])
[267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-3/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling.html
[268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-9/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling:
- shard-bmg: [SKIP][269] ([Intel XE#7178] / [Intel XE#7351]) -> [SKIP][270] ([Intel XE#2380])
[269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-5/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling.html
[270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-9/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling:
- shard-bmg: [SKIP][271] ([Intel XE#7178]) -> [SKIP][272] ([Intel XE#7178] / [Intel XE#7351]) +1 other test skip
[271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-9/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
[272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html
* igt@kms_frontbuffer_tracking@drrs-argb161616f-draw-render:
- shard-bmg: [SKIP][273] ([Intel XE#6314]) -> [SKIP][274] ([Intel XE#7061] / [Intel XE#7356])
[273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-9/igt@kms_frontbuffer_tracking@drrs-argb161616f-draw-render.html
[274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-3/igt@kms_frontbuffer_tracking@drrs-argb161616f-draw-render.html
* igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-blt:
- shard-bmg: [SKIP][275] ([Intel XE#2311]) -> [SKIP][276] ([Intel XE#2434] / [Intel XE#2548] / [Intel XE#6314]) +22 other tests skip
[275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-blt.html
[276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-9/igt@kms_frontbuffer_tracking@drrs-rgb101010-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-mmap-wc:
- shard-bmg: [SKIP][277] ([Intel XE#6314]) -> [SKIP][278] ([Intel XE#4141]) +2 other tests skip
[277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-9/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-mmap-wc.html
[278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt:
- shard-bmg: [SKIP][279] ([Intel XE#2434] / [Intel XE#2548] / [Intel XE#6314]) -> [SKIP][280] ([Intel XE#4141]) +16 other tests skip
[279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-9/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html
[280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-10/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render:
- shard-bmg: [SKIP][281] ([Intel XE#4141]) -> [SKIP][282] ([Intel XE#2434] / [Intel XE#2548] / [Intel XE#6314]) +6 other tests skip
[281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html
[282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-9/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-tiling-4:
- shard-bmg: [SKIP][283] ([Intel XE#2548] / [Intel XE#6314]) -> [SKIP][284] ([Intel XE#4141]) +1 other test skip
[283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-9/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
[284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
* igt@kms_frontbuffer_tracking@fbc-tiling-linear:
- shard-bmg: [SKIP][285] ([Intel XE#4141]) -> [SKIP][286] ([Intel XE#2548] / [Intel XE#6314]) +1 other test skip
[285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-tiling-linear.html
[286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-9/igt@kms_frontbuffer_tracking@fbc-tiling-linear.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-shrfb-draw-blt:
- shard-bmg: [SKIP][287] ([Intel XE#6314]) -> [SKIP][288] ([Intel XE#2311]) +1 other test skip
[287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-9/igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-shrfb-draw-blt.html
[288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt:
- shard-bmg: [SKIP][289] ([Intel XE#2434] / [Intel XE#2548] / [Intel XE#6314]) -> [SKIP][290] ([Intel XE#2311]) +25 other tests skip
[289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-9/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt.html
[290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][291] ([Intel XE#2548] / [Intel XE#6314]) -> [SKIP][292] ([Intel XE#2311]) +7 other tests skip
[291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-9/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html
[292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-render:
- shard-bmg: [SKIP][293] ([Intel XE#2311]) -> [SKIP][294] ([Intel XE#2548] / [Intel XE#6314]) +3 other tests skip
[293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-render.html
[294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-9/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-move:
- shard-bmg: [SKIP][295] ([Intel XE#2312]) -> [SKIP][296] ([Intel XE#2311])
[295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-move.html
[296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-spr-indfb-move.html
* igt@kms_frontbuffer_tracking@fbcdrrs-argb161616f-draw-render:
- shard-bmg: [SKIP][297] ([Intel XE#7061] / [Intel XE#7356]) -> [SKIP][298] ([Intel XE#6314]) +4 other tests skip
[297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcdrrs-argb161616f-draw-render.html
[298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-9/igt@kms_frontbuffer_tracking@fbcdrrs-argb161616f-draw-render.html
* igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y:
- shard-bmg: [SKIP][299] ([Intel XE#2352] / [Intel XE#7399]) -> [SKIP][300] ([Intel XE#2548] / [Intel XE#6314])
[299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-10/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
[300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-9/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-render:
- shard-bmg: [SKIP][301] ([Intel XE#2313]) -> [SKIP][302] ([Intel XE#6314]) +1 other test skip
[301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-render.html
[302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-9/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-render:
- shard-bmg: [SKIP][303] ([Intel XE#6314]) -> [SKIP][304] ([Intel XE#2313]) +1 other test skip
[303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-9/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-render.html
[304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt:
- shard-bmg: [SKIP][305] ([Intel XE#2313]) -> [SKIP][306] ([Intel XE#2548] / [Intel XE#6314]) +28 other tests skip
[305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt.html
[306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-9/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
- shard-bmg: [SKIP][307] ([Intel XE#2548] / [Intel XE#6314]) -> [SKIP][308] ([Intel XE#2352] / [Intel XE#7399])
[307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-9/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
[308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
* igt@kms_frontbuffer_tracking@plane-fbc-rte:
- shard-bmg: [SKIP][309] ([Intel XE#2350] / [Intel XE#7503]) -> [SKIP][310] ([Intel XE#2548] / [Intel XE#6314])
[309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-8/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
[310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-9/igt@kms_frontbuffer_tracking@plane-fbc-rte.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc:
- shard-bmg: [SKIP][311] ([Intel XE#2548] / [Intel XE#6314]) -> [SKIP][312] ([Intel XE#2313]) +31 other tests skip
[311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-9/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc.html
[312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-7/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-render:
- shard-bmg: [SKIP][313] ([Intel XE#2312]) -> [SKIP][314] ([Intel XE#2548] / [Intel XE#6314])
[313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-render.html
[314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-9/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-render.html
* igt@kms_hdr@brightness-with-hdr:
- shard-bmg: [SKIP][315] ([Intel XE#3544]) -> [SKIP][316] ([Intel XE#3374] / [Intel XE#3544])
[315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-10/igt@kms_hdr@brightness-with-hdr.html
[316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-7/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_hdr@invalid-hdr:
- shard-bmg: [SKIP][317] ([Intel XE#7825]) -> [SKIP][318] ([Intel XE#1503])
[317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-9/igt@kms_hdr@invalid-hdr.html
[318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-2/igt@kms_hdr@invalid-hdr.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-bmg: [SKIP][319] -> [SKIP][320] ([Intel XE#6911] / [Intel XE#7378])
[319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-9/igt@kms_joiner@basic-ultra-joiner.html
[320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-8/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_pipe_stress@stress-xrgb8888-yftiled:
- shard-bmg: [SKIP][321] ([Intel XE#7825]) -> [SKIP][322] ([Intel XE#6912] / [Intel XE#7375])
[321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-9/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html
[322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-5/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html
* igt@kms_plane_multiple@2x-tiling-y:
- shard-bmg: [SKIP][323] ([Intel XE#5021] / [Intel XE#7377]) -> [SKIP][324] ([Intel XE#7825])
[323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-10/igt@kms_plane_multiple@2x-tiling-y.html
[324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-9/igt@kms_plane_multiple@2x-tiling-y.html
* igt@kms_plane_multiple@tiling-yf:
- shard-bmg: [SKIP][325] ([Intel XE#7825]) -> [SKIP][326] ([Intel XE#5020] / [Intel XE#7348])
[325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-9/igt@kms_plane_multiple@tiling-yf.html
[326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-7/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-90:
- shard-bmg: [SKIP][327] ([Intel XE#7825]) -> [SKIP][328] ([Intel XE#3904] / [Intel XE#7342]) +1 other test skip
[327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-9/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
[328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-6/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-bmg: [SKIP][329] ([Intel XE#2330] / [Intel XE#5813]) -> [SKIP][330] ([Intel XE#7825])
[329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
[330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-9/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
- shard-bmg: [SKIP][331] ([Intel XE#3904] / [Intel XE#7342]) -> [SKIP][332] ([Intel XE#7825]) +1 other test skip
[331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
[332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-9/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
* igt@kms_setmode@basic:
- shard-bmg: [FAIL][333] ([Intel XE#6361]) -> [SKIP][334] ([Intel XE#1435])
[333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-5/igt@kms_setmode@basic.html
[334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-9/igt@kms_setmode@basic.html
* igt@kms_sharpness_filter@filter-formats:
- shard-bmg: [SKIP][335] ([Intel XE#6503]) -> [SKIP][336] ([Intel XE#7825])
[335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-7/igt@kms_sharpness_filter@filter-formats.html
[336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-9/igt@kms_sharpness_filter@filter-formats.html
* igt@kms_sharpness_filter@invalid-filter-with-scaling-mode:
- shard-bmg: [SKIP][337] ([Intel XE#7825]) -> [SKIP][338] ([Intel XE#6503]) +1 other test skip
[337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-9/igt@kms_sharpness_filter@invalid-filter-with-scaling-mode.html
[338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-6/igt@kms_sharpness_filter@invalid-filter-with-scaling-mode.html
* igt@kms_vrr@flip-basic-fastset:
- shard-bmg: [SKIP][339] ([Intel XE#1499]) -> [SKIP][340] ([Intel XE#7825])
[339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-1/igt@kms_vrr@flip-basic-fastset.html
[340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-9/igt@kms_vrr@flip-basic-fastset.html
* igt@kms_vrr@flip-suspend:
- shard-bmg: [SKIP][341] ([Intel XE#7825]) -> [SKIP][342] ([Intel XE#1499]) +2 other tests skip
[341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-9/igt@kms_vrr@flip-suspend.html
[342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-6/igt@kms_vrr@flip-suspend.html
* igt@xe_evict@evict-small-multi-queue-priority-cm:
- shard-bmg: [SKIP][343] -> [SKIP][344] ([Intel XE#7140]) +1 other test skip
[343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-9/igt@xe_evict@evict-small-multi-queue-priority-cm.html
[344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-8/igt@xe_evict@evict-small-multi-queue-priority-cm.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-mmap:
- shard-bmg: [DMESG-WARN][345] -> [SKIP][346] ([Intel XE#2322] / [Intel XE#7372])
[345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-9/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-mmap.html
[346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-9/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null-defer-mmap.html
* igt@xe_exec_basic@multigpu-once-userptr-invalidate:
- shard-bmg: [DMESG-FAIL][347] ([Intel XE#6652]) -> [SKIP][348] ([Intel XE#2322] / [Intel XE#7372])
[347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-9/igt@xe_exec_basic@multigpu-once-userptr-invalidate.html
[348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-5/igt@xe_exec_basic@multigpu-once-userptr-invalidate.html
* igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr-invalidate-imm:
- shard-bmg: [SKIP][349] ([Intel XE#7136]) -> [SKIP][350] ([Intel XE#7826]) +10 other tests skip
[349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-5/igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr-invalidate-imm.html
[350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-9/igt@xe_exec_fault_mode@many-execqueues-multi-queue-userptr-invalidate-imm.html
* igt@xe_exec_fault_mode@many-multi-queue-rebind-prefetch:
- shard-bmg: [SKIP][351] ([Intel XE#7826]) -> [SKIP][352] ([Intel XE#7136]) +14 other tests skip
[351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-9/igt@xe_exec_fault_mode@many-multi-queue-rebind-prefetch.html
[352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-1/igt@xe_exec_fault_mode@many-multi-queue-rebind-prefetch.html
* igt@xe_exec_system_allocator@many-stride-new-prefetch:
- shard-bmg: [INCOMPLETE][353] ([Intel XE#7098]) -> [SKIP][354] ([Intel XE#7824])
[353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-5/igt@xe_exec_system_allocator@many-stride-new-prefetch.html
[354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-9/igt@xe_exec_system_allocator@many-stride-new-prefetch.html
* igt@xe_mmap@small-bar:
- shard-bmg: [SKIP][355] ([Intel XE#586] / [Intel XE#7323] / [Intel XE#7384]) -> [SKIP][356] ([Intel XE#7323] / [Intel XE#7384])
[355]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-7/igt@xe_mmap@small-bar.html
[356]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-9/igt@xe_mmap@small-bar.html
* igt@xe_sriov_vram@vf-access-provisioned:
- shard-bmg: [SKIP][357] -> [FAIL][358] ([Intel XE#5937])
[357]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8873/shard-bmg-9/igt@xe_sriov_vram@vf-access-provisioned.html
[358]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/shard-bmg-7/igt@xe_sriov_vram@vf-access-provisioned.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#1062]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1062
[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#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
[Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[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#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508
[Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134
[Intel XE#2142]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2142
[Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168
[Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229
[Intel XE#2233]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2233
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330
[Intel XE#2350]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2350
[Intel XE#2352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2352
[Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
[Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387
[Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
[Intel XE#2434]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2434
[Intel XE#2482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2482
[Intel XE#2488]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2488
[Intel XE#2548]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2548
[Intel XE#2568]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2568
[Intel XE#2571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2571
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2682]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2682
[Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724
[Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
[Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149
[Intel XE#3297]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3297
[Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304
[Intel XE#3307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3307
[Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
[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#4130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130
[Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141
[Intel XE#4156]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4156
[Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354
[Intel XE#4882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4882
[Intel XE#4886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4886
[Intel XE#5020]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5020
[Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021
[Intel XE#5100]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5100
[Intel XE#5408]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5408
[Intel XE#5545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5545
[Intel XE#5694]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5694
[Intel XE#5813]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5813
[Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584
[Intel XE#586]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/586
[Intel XE#5870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5870
[Intel XE#5937]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5937
[Intel XE#6035]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6035
[Intel XE#6266]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6266
[Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312
[Intel XE#6314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6314
[Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321
[Intel XE#6361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6361
[Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#6540]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6540
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#6568]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6568
[Intel XE#6569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6569
[Intel XE#6652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6652
[Intel XE#6707]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6707
[Intel XE#6775]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6775
[Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874
[Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688
[Intel XE#6886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886
[Intel XE#6911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6911
[Intel XE#6912]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6912
[Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964
[Intel XE#6969]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6969
[Intel XE#6974]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6974
[Intel XE#7006]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7006
[Intel XE#7059]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7059
[Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061
[Intel XE#7079]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7079
[Intel XE#7082]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7082
[Intel XE#7085]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7085
[Intel XE#7086]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7086
[Intel XE#7089]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7089
[Intel XE#7098]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7098
[Intel XE#7111]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7111
[Intel XE#7112]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7112
[Intel XE#7130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7130
[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#7140]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7140
[Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178
[Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283
[Intel XE#7304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7304
[Intel XE#7318]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7318
[Intel XE#7319]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7319
[Intel XE#7323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7323
[Intel XE#7342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7342
[Intel XE#7343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7343
[Intel XE#7348]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7348
[Intel XE#7349]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7349
[Intel XE#7350]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7350
[Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351
[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#7358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7358
[Intel XE#7366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7366
[Intel XE#7369]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7369
[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#7375]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7375
[Intel XE#7376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7376
[Intel XE#7377]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7377
[Intel XE#7378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7378
[Intel XE#7383]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7383
[Intel XE#7384]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7384
[Intel XE#7399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7399
[Intel XE#7402]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7402
[Intel XE#7425]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7425
[Intel XE#7429]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7429
[Intel XE#7439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7439
[Intel XE#7444]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7444
[Intel XE#7445]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7445
[Intel XE#7449]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7449
[Intel XE#7457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7457
[Intel XE#7466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7466
[Intel XE#7482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7482
[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#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#7687]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7687
[Intel XE#7780]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7780
[Intel XE#7793]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7793
[Intel XE#7815]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7815
[Intel XE#7824]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7824
[Intel XE#7825]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7825
[Intel XE#7826]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7826
[Intel XE#7827]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7827
[Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* IGT: IGT_8873 -> IGTPW_15056
* Linux: xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e -> xe-4937-d431883e767cbff24c73721cac729c08579cc4b2
IGTPW_15056: 754249326a17737b170fa00c32496fe8b8ba19a5 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8873: a5c5d655807ead8204e01754b6434f0ecae40b96 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-4932-15ccea1aede9d776f85ed002cf0df3c8ea8bd81e: 15ccea1aede9d776f85ed002cf0df3c8ea8bd81e
xe-4937-d431883e767cbff24c73721cac729c08579cc4b2: d431883e767cbff24c73721cac729c08579cc4b2
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15056/index.html
[-- Attachment #2: Type: text/html, Size: 111231 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* ✗ i915.CI.Full: failure for test/intel/xe_vm:Add oversubscribe concurrent bind stress subtest
2026-04-27 2:40 [PATCH i-g-t v5] test/intel/xe_vm:Add oversubscribe concurrent bind stress subtest Sobin Thomas
` (2 preceding siblings ...)
2026-04-27 5:01 ` ✗ Xe.CI.FULL: failure " Patchwork
@ 2026-04-27 5:41 ` Patchwork
2026-04-27 9:07 ` [PATCH i-g-t v5] " Hellstrom, Thomas
4 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2026-04-27 5:41 UTC (permalink / raw)
To: Sobin Thomas; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 138818 bytes --]
== Series Details ==
Series: test/intel/xe_vm:Add oversubscribe concurrent bind stress subtest
URL : https://patchwork.freedesktop.org/series/165481/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_18366_full -> IGTPW_15056_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_15056_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_15056_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_15056/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_15056_full:
### IGT changes ###
#### Possible regressions ####
* igt@gem_create@create-clear@smem0:
- shard-dg1: [PASS][1] -> [ABORT][2] +1 other test abort
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18366/shard-dg1-12/igt@gem_create@create-clear@smem0.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-dg1-14/igt@gem_create@create-clear@smem0.html
* igt@gem_exec_big@single:
- shard-rkl: [PASS][3] -> [FAIL][4]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18366/shard-rkl-4/igt@gem_exec_big@single.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-4/igt@gem_exec_big@single.html
Known issues
------------
Here are the changes found in IGTPW_15056_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@crc32:
- shard-rkl: NOTRUN -> [SKIP][5] ([i915#6230])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-7/igt@api_intel_bb@crc32.html
- shard-tglu: NOTRUN -> [SKIP][6] ([i915#6230])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-tglu-7/igt@api_intel_bb@crc32.html
* igt@drm_buddy@drm_buddy:
- shard-rkl: NOTRUN -> [SKIP][7] ([i915#15678])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-4/igt@drm_buddy@drm_buddy.html
* igt@gem_ccs@large-ctrl-surf-copy:
- shard-rkl: NOTRUN -> [SKIP][8] ([i915#13008])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-8/igt@gem_ccs@large-ctrl-surf-copy.html
* igt@gem_ccs@suspend-resume:
- shard-rkl: NOTRUN -> [SKIP][9] ([i915#9323])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-5/igt@gem_ccs@suspend-resume.html
- shard-tglu: NOTRUN -> [SKIP][10] ([i915#9323])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-tglu-10/igt@gem_ccs@suspend-resume.html
* igt@gem_create@create-ext-cpu-access-sanity-check:
- shard-tglu: NOTRUN -> [SKIP][11] ([i915#6335])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-tglu-6/igt@gem_create@create-ext-cpu-access-sanity-check.html
- shard-mtlp: NOTRUN -> [SKIP][12] ([i915#6335])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-mtlp-7/igt@gem_create@create-ext-cpu-access-sanity-check.html
* igt@gem_ctx_isolation@preservation-s3:
- shard-rkl: [PASS][13] -> [INCOMPLETE][14] ([i915#13356]) +3 other tests incomplete
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18366/shard-rkl-3/igt@gem_ctx_isolation@preservation-s3.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-3/igt@gem_ctx_isolation@preservation-s3.html
* igt@gem_ctx_isolation@preservation-s3@rcs0:
- shard-glk: NOTRUN -> [INCOMPLETE][15] ([i915#13356]) +1 other test incomplete
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-glk9/igt@gem_ctx_isolation@preservation-s3@rcs0.html
* igt@gem_ctx_persistence@heartbeat-hang:
- shard-dg2: NOTRUN -> [SKIP][16] ([i915#8555])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-dg2-6/igt@gem_ctx_persistence@heartbeat-hang.html
- shard-dg1: NOTRUN -> [SKIP][17] ([i915#8555])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-dg1-13/igt@gem_ctx_persistence@heartbeat-hang.html
- shard-mtlp: NOTRUN -> [SKIP][18] ([i915#8555])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-mtlp-4/igt@gem_ctx_persistence@heartbeat-hang.html
* igt@gem_ctx_persistence@legacy-engines-queued:
- shard-snb: NOTRUN -> [SKIP][19] ([i915#1099]) +1 other test skip
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-snb6/igt@gem_ctx_persistence@legacy-engines-queued.html
* igt@gem_ctx_sseu@invalid-sseu:
- shard-rkl: NOTRUN -> [SKIP][20] ([i915#280])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-3/igt@gem_ctx_sseu@invalid-sseu.html
* igt@gem_eio@reset-stress@blt:
- shard-mtlp: NOTRUN -> [SKIP][21] ([i915#15314])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-mtlp-5/igt@gem_eio@reset-stress@blt.html
* igt@gem_eio@reset-stress@bsd:
- shard-snb: NOTRUN -> [FAIL][22] ([i915#8898]) +1 other test fail
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-snb5/igt@gem_eio@reset-stress@bsd.html
* igt@gem_exec_balancer@bonded-false-hang:
- shard-dg2: NOTRUN -> [SKIP][23] ([i915#4812])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-dg2-4/igt@gem_exec_balancer@bonded-false-hang.html
- shard-mtlp: NOTRUN -> [SKIP][24] ([i915#4812])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-mtlp-2/igt@gem_exec_balancer@bonded-false-hang.html
* igt@gem_exec_balancer@parallel-contexts:
- shard-rkl: NOTRUN -> [SKIP][25] ([i915#4525])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-2/igt@gem_exec_balancer@parallel-contexts.html
- shard-tglu: NOTRUN -> [SKIP][26] ([i915#4525])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-tglu-6/igt@gem_exec_balancer@parallel-contexts.html
* igt@gem_exec_balancer@parallel-ordering:
- shard-tglu-1: NOTRUN -> [SKIP][27] ([i915#4525]) +1 other test skip
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-tglu-1/igt@gem_exec_balancer@parallel-ordering.html
* igt@gem_exec_flush@basic-uc-prw-default:
- shard-dg2: NOTRUN -> [SKIP][28] ([i915#3539])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-dg2-1/igt@gem_exec_flush@basic-uc-prw-default.html
- shard-dg1: NOTRUN -> [SKIP][29] ([i915#3539])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-dg1-16/igt@gem_exec_flush@basic-uc-prw-default.html
* igt@gem_exec_flush@basic-wb-rw-before-default:
- shard-dg2: NOTRUN -> [SKIP][30] ([i915#3539] / [i915#4852])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-dg2-6/igt@gem_exec_flush@basic-wb-rw-before-default.html
* igt@gem_exec_params@rsvd2-dirt:
- shard-mtlp: NOTRUN -> [SKIP][31] ([i915#5107])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-mtlp-6/igt@gem_exec_params@rsvd2-dirt.html
- shard-dg2: NOTRUN -> [SKIP][32] ([i915#5107])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-dg2-3/igt@gem_exec_params@rsvd2-dirt.html
* igt@gem_exec_reloc@basic-cpu-active:
- shard-rkl: NOTRUN -> [SKIP][33] ([i915#14544] / [i915#3281])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-6/igt@gem_exec_reloc@basic-cpu-active.html
* igt@gem_exec_reloc@basic-softpin:
- shard-dg2: NOTRUN -> [SKIP][34] ([i915#3281]) +4 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-dg2-7/igt@gem_exec_reloc@basic-softpin.html
* igt@gem_exec_reloc@basic-wc-cpu-noreloc:
- shard-dg1: NOTRUN -> [SKIP][35] ([i915#3281]) +3 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-dg1-18/igt@gem_exec_reloc@basic-wc-cpu-noreloc.html
- shard-mtlp: NOTRUN -> [SKIP][36] ([i915#3281]) +3 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-mtlp-5/igt@gem_exec_reloc@basic-wc-cpu-noreloc.html
* igt@gem_exec_reloc@basic-write-read-active:
- shard-rkl: NOTRUN -> [SKIP][37] ([i915#3281]) +10 other tests skip
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-4/igt@gem_exec_reloc@basic-write-read-active.html
* igt@gem_exec_schedule@preempt-queue-contexts:
- shard-dg1: NOTRUN -> [SKIP][38] ([i915#4812]) +1 other test skip
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-dg1-17/igt@gem_exec_schedule@preempt-queue-contexts.html
- shard-mtlp: NOTRUN -> [SKIP][39] ([i915#4537] / [i915#4812])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-mtlp-7/igt@gem_exec_schedule@preempt-queue-contexts.html
- shard-dg2: NOTRUN -> [SKIP][40] ([i915#4537] / [i915#4812])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-dg2-4/igt@gem_exec_schedule@preempt-queue-contexts.html
* igt@gem_fence_thrash@bo-write-verify-y:
- shard-dg1: NOTRUN -> [SKIP][41] ([i915#4860])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-dg1-13/igt@gem_fence_thrash@bo-write-verify-y.html
* igt@gem_huc_copy@huc-copy:
- shard-rkl: NOTRUN -> [SKIP][42] ([i915#2190])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-2/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@heavy-verify-multi-ccs:
- shard-tglu: NOTRUN -> [SKIP][43] ([i915#4613]) +2 other tests skip
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-tglu-9/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html
* igt@gem_lmem_swapping@heavy-verify-random:
- shard-rkl: NOTRUN -> [SKIP][44] ([i915#4613]) +3 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-7/igt@gem_lmem_swapping@heavy-verify-random.html
* igt@gem_lmem_swapping@parallel-random:
- shard-rkl: NOTRUN -> [SKIP][45] ([i915#14544] / [i915#4613])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-6/igt@gem_lmem_swapping@parallel-random.html
* igt@gem_lmem_swapping@random-engines:
- shard-glk: NOTRUN -> [SKIP][46] ([i915#4613]) +9 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-glk9/igt@gem_lmem_swapping@random-engines.html
* igt@gem_lmem_swapping@verify-random:
- shard-tglu-1: NOTRUN -> [SKIP][47] ([i915#4613]) +1 other test skip
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-tglu-1/igt@gem_lmem_swapping@verify-random.html
* igt@gem_media_vme:
- shard-tglu-1: NOTRUN -> [SKIP][48] ([i915#284])
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-tglu-1/igt@gem_media_vme.html
* igt@gem_mmap_gtt@ptrace:
- shard-dg2: NOTRUN -> [SKIP][49] ([i915#4077]) +3 other tests skip
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-dg2-4/igt@gem_mmap_gtt@ptrace.html
- shard-dg1: NOTRUN -> [SKIP][50] ([i915#4077]) +4 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-dg1-19/igt@gem_mmap_gtt@ptrace.html
- shard-mtlp: NOTRUN -> [SKIP][51] ([i915#4077]) +4 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-mtlp-2/igt@gem_mmap_gtt@ptrace.html
* igt@gem_mmap_wc@bad-object:
- shard-dg2: NOTRUN -> [SKIP][52] ([i915#4083]) +1 other test skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-dg2-7/igt@gem_mmap_wc@bad-object.html
- shard-dg1: NOTRUN -> [SKIP][53] ([i915#4083]) +1 other test skip
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-dg1-18/igt@gem_mmap_wc@bad-object.html
- shard-mtlp: NOTRUN -> [SKIP][54] ([i915#4083]) +1 other test skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-mtlp-5/igt@gem_mmap_wc@bad-object.html
* igt@gem_partial_pwrite_pread@writes-after-reads:
- shard-rkl: NOTRUN -> [SKIP][55] ([i915#3282]) +7 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-5/igt@gem_partial_pwrite_pread@writes-after-reads.html
* igt@gem_partial_pwrite_pread@writes-after-reads-snoop:
- shard-dg2: NOTRUN -> [SKIP][56] ([i915#3282])
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-dg2-10/igt@gem_partial_pwrite_pread@writes-after-reads-snoop.html
- shard-dg1: NOTRUN -> [SKIP][57] ([i915#3282])
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-dg1-12/igt@gem_partial_pwrite_pread@writes-after-reads-snoop.html
- shard-mtlp: NOTRUN -> [SKIP][58] ([i915#3282])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-mtlp-2/igt@gem_partial_pwrite_pread@writes-after-reads-snoop.html
* igt@gem_pwrite@basic-exhaustion:
- shard-glk10: NOTRUN -> [WARN][59] ([i915#14702] / [i915#2658])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-glk10/igt@gem_pwrite@basic-exhaustion.html
* igt@gem_pxp@create-regular-context-2:
- shard-dg1: NOTRUN -> [SKIP][60] ([i915#4270]) +1 other test skip
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-dg1-15/igt@gem_pxp@create-regular-context-2.html
* igt@gem_pxp@verify-pxp-stale-buf-optout-execution:
- shard-dg2: NOTRUN -> [SKIP][61] ([i915#4270])
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-dg2-5/igt@gem_pxp@verify-pxp-stale-buf-optout-execution.html
* igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs:
- shard-glk: NOTRUN -> [SKIP][62] +394 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-glk3/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs.html
* igt@gem_render_copy@y-tiled-to-vebox-yf-tiled:
- shard-dg2: NOTRUN -> [SKIP][63] ([i915#5190] / [i915#8428]) +2 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-dg2-10/igt@gem_render_copy@y-tiled-to-vebox-yf-tiled.html
* igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-tiled:
- shard-mtlp: NOTRUN -> [SKIP][64] ([i915#8428])
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-mtlp-5/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-y-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_15056/shard-dg2-10/igt@gem_render_tiled_blits@basic.html
* igt@gem_set_tiling_vs_pwrite:
- shard-dg1: NOTRUN -> [SKIP][66] ([i915#4079]) +1 other test skip
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-dg1-13/igt@gem_set_tiling_vs_pwrite.html
- shard-mtlp: NOTRUN -> [SKIP][67] ([i915#4079]) +1 other test skip
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-mtlp-4/igt@gem_set_tiling_vs_pwrite.html
* igt@gem_userptr_blits@access-control:
- shard-mtlp: NOTRUN -> [SKIP][68] ([i915#3297])
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-mtlp-3/igt@gem_userptr_blits@access-control.html
- shard-dg2: NOTRUN -> [SKIP][69] ([i915#3297])
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-dg2-7/igt@gem_userptr_blits@access-control.html
- shard-dg1: NOTRUN -> [SKIP][70] ([i915#3297])
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-dg1-13/igt@gem_userptr_blits@access-control.html
- shard-tglu: NOTRUN -> [SKIP][71] ([i915#3297])
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-tglu-6/igt@gem_userptr_blits@access-control.html
* igt@gem_userptr_blits@dmabuf-sync:
- shard-glk: NOTRUN -> [SKIP][72] ([i915#3323])
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-glk1/igt@gem_userptr_blits@dmabuf-sync.html
* igt@gem_userptr_blits@readonly-unsync:
- shard-rkl: NOTRUN -> [SKIP][73] ([i915#3297]) +1 other test skip
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-8/igt@gem_userptr_blits@readonly-unsync.html
* igt@gen9_exec_parse@allowed-single:
- shard-glk11: [PASS][74] -> [ABORT][75] ([i915#5566])
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18366/shard-glk11/igt@gen9_exec_parse@allowed-single.html
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-glk11/igt@gen9_exec_parse@allowed-single.html
* igt@gen9_exec_parse@batch-without-end:
- shard-dg2: NOTRUN -> [SKIP][76] ([i915#2856]) +2 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-dg2-8/igt@gen9_exec_parse@batch-without-end.html
- shard-rkl: NOTRUN -> [SKIP][77] ([i915#2527]) +3 other tests skip
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-8/igt@gen9_exec_parse@batch-without-end.html
* igt@gen9_exec_parse@bb-start-out:
- shard-dg1: NOTRUN -> [SKIP][78] ([i915#2527]) +1 other test skip
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-dg1-13/igt@gen9_exec_parse@bb-start-out.html
* igt@gen9_exec_parse@secure-batches:
- shard-tglu-1: NOTRUN -> [SKIP][79] ([i915#2527] / [i915#2856]) +1 other test skip
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-tglu-1/igt@gen9_exec_parse@secure-batches.html
* igt@gen9_exec_parse@unaligned-jump:
- shard-tglu: NOTRUN -> [SKIP][80] ([i915#2527] / [i915#2856]) +3 other tests skip
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-tglu-5/igt@gen9_exec_parse@unaligned-jump.html
- shard-mtlp: NOTRUN -> [SKIP][81] ([i915#2856]) +1 other test skip
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-mtlp-7/igt@gen9_exec_parse@unaligned-jump.html
* igt@i915_drm_fdinfo@most-busy-check-all@bcs0:
- shard-mtlp: NOTRUN -> [SKIP][82] ([i915#14073]) +6 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-mtlp-4/igt@i915_drm_fdinfo@most-busy-check-all@bcs0.html
* igt@i915_drm_fdinfo@most-busy-check-all@vcs1:
- shard-dg1: NOTRUN -> [SKIP][83] ([i915#14073]) +5 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-dg1-13/igt@i915_drm_fdinfo@most-busy-check-all@vcs1.html
* igt@i915_drm_fdinfo@most-busy-check-all@vecs0:
- shard-dg2: NOTRUN -> [SKIP][84] ([i915#14073]) +7 other tests skip
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-dg2-6/igt@i915_drm_fdinfo@most-busy-check-all@vecs0.html
* igt@i915_drm_fdinfo@virtual-busy-idle-all:
- shard-dg1: NOTRUN -> [SKIP][85] ([i915#14118])
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-dg1-18/igt@i915_drm_fdinfo@virtual-busy-idle-all.html
* igt@i915_module_load@resize-bar:
- shard-rkl: NOTRUN -> [SKIP][86] ([i915#6412])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-7/igt@i915_module_load@resize-bar.html
* igt@i915_pm_freq_api@freq-basic-api:
- shard-tglu-1: NOTRUN -> [SKIP][87] ([i915#8399])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-tglu-1/igt@i915_pm_freq_api@freq-basic-api.html
* igt@i915_pm_freq_api@freq-suspend:
- shard-rkl: NOTRUN -> [SKIP][88] ([i915#8399])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-4/igt@i915_pm_freq_api@freq-suspend.html
- shard-tglu: NOTRUN -> [SKIP][89] ([i915#8399])
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-tglu-5/igt@i915_pm_freq_api@freq-suspend.html
* igt@i915_pm_rpm@system-suspend-execbuf:
- shard-glk: [PASS][90] -> [INCOMPLETE][91] ([i915#13356] / [i915#15172])
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18366/shard-glk3/igt@i915_pm_rpm@system-suspend-execbuf.html
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-glk5/igt@i915_pm_rpm@system-suspend-execbuf.html
* igt@i915_pm_rps@thresholds:
- shard-dg2: NOTRUN -> [SKIP][92] ([i915#11681])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-dg2-8/igt@i915_pm_rps@thresholds.html
- shard-dg1: NOTRUN -> [SKIP][93] ([i915#11681])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-dg1-12/igt@i915_pm_rps@thresholds.html
- shard-mtlp: NOTRUN -> [SKIP][94] ([i915#11681])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-mtlp-4/igt@i915_pm_rps@thresholds.html
* igt@i915_pm_sseu@full-enable:
- shard-tglu-1: NOTRUN -> [SKIP][95] ([i915#4387])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-tglu-1/igt@i915_pm_sseu@full-enable.html
* igt@i915_selftest@live@workarounds:
- shard-dg2: NOTRUN -> [DMESG-FAIL][96] ([i915#12061]) +1 other test dmesg-fail
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-dg2-7/igt@i915_selftest@live@workarounds.html
* igt@i915_suspend@basic-s3-without-i915:
- shard-glk11: NOTRUN -> [INCOMPLETE][97] ([i915#4817])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-glk11/igt@i915_suspend@basic-s3-without-i915.html
* igt@i915_suspend@debugfs-reader:
- shard-glk: NOTRUN -> [INCOMPLETE][98] ([i915#4817])
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-glk8/igt@i915_suspend@debugfs-reader.html
* igt@intel_hwmon@hwmon-read:
- shard-rkl: NOTRUN -> [SKIP][99] ([i915#7707])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-7/igt@intel_hwmon@hwmon-read.html
* igt@kms_atomic_interruptible@legacy-cursor:
- shard-dg1: [PASS][100] -> [DMESG-WARN][101] ([i915#4423]) +2 other tests dmesg-warn
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18366/shard-dg1-19/igt@kms_atomic_interruptible@legacy-cursor.html
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-dg1-17/igt@kms_atomic_interruptible@legacy-cursor.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-rkl: NOTRUN -> [SKIP][102] ([i915#1769] / [i915#3555])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-5/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
- shard-glk10: NOTRUN -> [SKIP][103] ([i915#1769])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-glk10/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels:
- shard-glk: NOTRUN -> [SKIP][104] ([i915#1769])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-glk3/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-0:
- shard-tglu-1: NOTRUN -> [SKIP][105] ([i915#5286]) +1 other test skip
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-tglu-1/igt@kms_big_fb@4-tiled-32bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-270:
- shard-dg1: NOTRUN -> [SKIP][106] ([i915#4538] / [i915#5286])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-dg1-12/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-90:
- shard-dg2: NOTRUN -> [SKIP][107] +4 other tests skip
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-dg2-10/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
- shard-tglu: NOTRUN -> [SKIP][108] ([i915#5286]) +2 other tests skip
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-tglu-2/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-rkl: NOTRUN -> [SKIP][109] ([i915#5286]) +4 other tests skip
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-4/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: NOTRUN -> [SKIP][110] ([i915#14544] / [i915#5286])
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-mtlp: [PASS][111] -> [FAIL][112] ([i915#15733] / [i915#5138])
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18366/shard-mtlp-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-mtlp-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@linear-32bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][113] ([i915#3638]) +5 other tests skip
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-7/igt@kms_big_fb@linear-32bpp-rotate-90.html
* igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip:
- shard-rkl: NOTRUN -> [SKIP][114] ([i915#3828])
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-2/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip.html
- shard-tglu-1: NOTRUN -> [SKIP][115] ([i915#3828])
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-tglu-1/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip:
- shard-tglu: NOTRUN -> [SKIP][116] ([i915#3828]) +1 other test skip
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-tglu-9/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-270:
- shard-dg2: NOTRUN -> [SKIP][117] ([i915#4538] / [i915#5190]) +1 other test skip
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-dg2-8/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html
- shard-dg1: NOTRUN -> [SKIP][118] ([i915#3638])
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-dg1-18/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][119] ([i915#14544]) +2 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-6/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html
* igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-1:
- shard-glk10: NOTRUN -> [SKIP][120] +117 other tests skip
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-glk10/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][121] ([i915#10307] / [i915#10434] / [i915#6095]) +3 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-dg2-4/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@bad-pixel-format-yf-tiled-ccs@pipe-c-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][122] ([i915#10307] / [i915#6095]) +118 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-dg2-4/igt@kms_ccs@bad-pixel-format-yf-tiled-ccs@pipe-c-hdmi-a-1.html
* igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs:
- shard-rkl: NOTRUN -> [SKIP][123] ([i915#12313] / [i915#14544])
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-6/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
* igt@kms_ccs@bad-rotation-90-y-tiled-ccs@pipe-c-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][124] ([i915#14098] / [i915#14544] / [i915#6095]) +5 other tests skip
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-6/igt@kms_ccs@bad-rotation-90-y-tiled-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][125] ([i915#14544] / [i915#6095]) +9 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-6/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][126] ([i915#12313]) +1 other test skip
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-tglu-1/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-basic-y-tiled-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][127] ([i915#6095]) +54 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-tglu-1/igt@kms_ccs@crc-primary-basic-y-tiled-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs:
- shard-dg1: NOTRUN -> [SKIP][128] ([i915#12313]) +1 other test skip
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-dg1-16/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html
- shard-tglu: NOTRUN -> [SKIP][129] ([i915#12313]) +1 other test skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-tglu-9/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html
- shard-mtlp: NOTRUN -> [SKIP][130] ([i915#12313]) +1 other test skip
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-mtlp-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [INCOMPLETE][131] ([i915#15582]) +1 other test incomplete
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-glk2/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1.html
* igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs:
- shard-rkl: NOTRUN -> [SKIP][132] ([i915#14098] / [i915#6095]) +40 other tests skip
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-3/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][133] ([i915#6095]) +32 other tests skip
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-dg2-4/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs:
- shard-dg2: NOTRUN -> [SKIP][134] ([i915#12313]) +2 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-dg2-1/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
- shard-rkl: NOTRUN -> [SKIP][135] ([i915#12313]) +1 other test skip
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-4/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][136] ([i915#4423] / [i915#6095])
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-dg1-17/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-4.html
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc:
- shard-tglu: NOTRUN -> [SKIP][137] ([i915#6095]) +54 other tests skip
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-tglu-5/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@random-ccs-data-y-tiled-ccs@pipe-b-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][138] ([i915#6095]) +61 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-8/igt@kms_ccs@random-ccs-data-y-tiled-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc@pipe-b-hdmi-a-1:
- shard-glk11: NOTRUN -> [SKIP][139] +74 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-glk11/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc@pipe-b-hdmi-a-1.html
* igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-a-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][140] ([i915#6095]) +213 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-dg1-12/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-a-hdmi-a-3.html
* igt@kms_cdclk@mode-transition:
- shard-rkl: NOTRUN -> [SKIP][141] ([i915#3742])
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-2/igt@kms_cdclk@mode-transition.html
* igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][142] ([i915#13781]) +3 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-dg2-7/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html
* igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][143] ([i915#13783]) +3 other tests skip
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-dg2-7/igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3.html
* igt@kms_chamelium_audio@hdmi-audio:
- shard-rkl: NOTRUN -> [SKIP][144] ([i915#11151] / [i915#14544] / [i915#7828])
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-6/igt@kms_chamelium_audio@hdmi-audio.html
* igt@kms_chamelium_color@ctm-limited-range:
- shard-mtlp: NOTRUN -> [SKIP][145] +2 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-mtlp-2/igt@kms_chamelium_color@ctm-limited-range.html
* igt@kms_chamelium_edid@dp-mode-timings:
- shard-dg1: NOTRUN -> [SKIP][146] ([i915#11151] / [i915#7828]) +3 other tests skip
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-dg1-17/igt@kms_chamelium_edid@dp-mode-timings.html
- shard-mtlp: NOTRUN -> [SKIP][147] ([i915#11151] / [i915#7828]) +3 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-mtlp-7/igt@kms_chamelium_edid@dp-mode-timings.html
* igt@kms_chamelium_frames@dp-frame-dump:
- shard-dg2: NOTRUN -> [SKIP][148] ([i915#11151] / [i915#7828]) +5 other tests skip
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-dg2-6/igt@kms_chamelium_frames@dp-frame-dump.html
* igt@kms_chamelium_frames@hdmi-frame-dump:
- shard-rkl: NOTRUN -> [SKIP][149] ([i915#11151] / [i915#7828]) +8 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-2/igt@kms_chamelium_frames@hdmi-frame-dump.html
* igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode:
- shard-tglu: NOTRUN -> [SKIP][150] ([i915#11151] / [i915#7828]) +5 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-tglu-4/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html
* igt@kms_chamelium_hpd@dp-hpd-storm:
- shard-tglu-1: NOTRUN -> [SKIP][151] ([i915#11151] / [i915#7828]) +5 other tests skip
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-tglu-1/igt@kms_chamelium_hpd@dp-hpd-storm.html
* igt@kms_color@deep-color:
- shard-dg2: [PASS][152] -> [SKIP][153] ([i915#12655] / [i915#3555])
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18366/shard-dg2-10/igt@kms_color@deep-color.html
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-dg2-4/igt@kms_color@deep-color.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-rkl: NOTRUN -> [SKIP][154] ([i915#15330] / [i915#3116])
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-4/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-tglu-1: NOTRUN -> [SKIP][155] ([i915#15330] / [i915#3116] / [i915#3299])
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-tglu-1/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_content_protection@legacy-hdcp14:
- shard-tglu-1: NOTRUN -> [SKIP][156] ([i915#15865])
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-tglu-1/igt@kms_content_protection@legacy-hdcp14.html
* igt@kms_content_protection@lic-type-0-hdcp14:
- shard-rkl: NOTRUN -> [SKIP][157] ([i915#15865]) +1 other test skip
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-5/igt@kms_content_protection@lic-type-0-hdcp14.html
- shard-dg1: NOTRUN -> [SKIP][158] ([i915#15865])
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-dg1-19/igt@kms_content_protection@lic-type-0-hdcp14.html
- shard-tglu: NOTRUN -> [SKIP][159] ([i915#15865])
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-tglu-10/igt@kms_content_protection@lic-type-0-hdcp14.html
- shard-mtlp: NOTRUN -> [SKIP][160] ([i915#15865])
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-mtlp-2/igt@kms_content_protection@lic-type-0-hdcp14.html
* igt@kms_cursor_crc@cursor-offscreen-512x170:
- shard-tglu-1: NOTRUN -> [SKIP][161] ([i915#13049]) +2 other tests skip
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-tglu-1/igt@kms_cursor_crc@cursor-offscreen-512x170.html
* igt@kms_cursor_crc@cursor-onscreen-128x42:
- shard-rkl: [PASS][162] -> [FAIL][163] ([i915#13566]) +2 other tests fail
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18366/shard-rkl-2/igt@kms_cursor_crc@cursor-onscreen-128x42.html
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-3/igt@kms_cursor_crc@cursor-onscreen-128x42.html
- shard-tglu: NOTRUN -> [FAIL][164] ([i915#13566]) +1 other test fail
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-tglu-6/igt@kms_cursor_crc@cursor-onscreen-128x42.html
* igt@kms_cursor_crc@cursor-onscreen-64x21:
- shard-rkl: NOTRUN -> [FAIL][165] ([i915#13566]) +2 other tests fail
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-3/igt@kms_cursor_crc@cursor-onscreen-64x21.html
* igt@kms_cursor_crc@cursor-onscreen-64x21@pipe-a-hdmi-a-1:
- shard-tglu-1: NOTRUN -> [FAIL][166] ([i915#13566]) +1 other test fail
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-tglu-1/igt@kms_cursor_crc@cursor-onscreen-64x21@pipe-a-hdmi-a-1.html
* igt@kms_cursor_crc@cursor-onscreen-max-size:
- shard-dg2: NOTRUN -> [SKIP][167] ([i915#3555])
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-dg2-1/igt@kms_cursor_crc@cursor-onscreen-max-size.html
- shard-rkl: NOTRUN -> [SKIP][168] ([i915#3555]) +2 other tests skip
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-4/igt@kms_cursor_crc@cursor-onscreen-max-size.html
- shard-dg1: NOTRUN -> [SKIP][169] ([i915#3555]) +1 other test skip
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-dg1-16/igt@kms_cursor_crc@cursor-onscreen-max-size.html
- shard-mtlp: NOTRUN -> [SKIP][170] ([i915#3555] / [i915#8814])
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-mtlp-8/igt@kms_cursor_crc@cursor-onscreen-max-size.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-rkl: NOTRUN -> [SKIP][171] ([i915#13049]) +1 other test skip
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-8/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-sliding-32x10:
- shard-tglu: NOTRUN -> [SKIP][172] ([i915#3555]) +1 other test skip
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-tglu-7/igt@kms_cursor_crc@cursor-sliding-32x10.html
* igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1:
- shard-tglu: [PASS][173] -> [FAIL][174] ([i915#13566]) +3 other tests fail
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18366/shard-tglu-6/igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1.html
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-tglu-10/igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1.html
* igt@kms_cursor_crc@cursor-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][175] ([i915#12358] / [i915#14152] / [i915#7882])
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-glk1/igt@kms_cursor_crc@cursor-suspend.html
- shard-rkl: NOTRUN -> [ABORT][176] ([i915#15132]) +1 other test abort
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-1/igt@kms_cursor_crc@cursor-suspend.html
* igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [INCOMPLETE][177] ([i915#12358] / [i915#14152])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-glk1/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1.html
* igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic:
- shard-mtlp: NOTRUN -> [SKIP][178] ([i915#9809])
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-mtlp-2/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html
- shard-dg2: NOTRUN -> [SKIP][179] ([i915#13046] / [i915#5354])
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-dg2-4/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html
* igt@kms_cursor_legacy@cursora-vs-flipb-varying-size:
- shard-rkl: NOTRUN -> [SKIP][180] +18 other tests skip
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-7/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
- shard-glk: NOTRUN -> [FAIL][181] ([i915#15804]) +1 other test fail
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-glk6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
* igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot:
- shard-tglu: NOTRUN -> [SKIP][182] ([i915#9067])
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-tglu-5/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions:
- shard-tglu-1: NOTRUN -> [SKIP][183] ([i915#4103])
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-tglu-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc:
- shard-rkl: NOTRUN -> [SKIP][184] ([i915#14544] / [i915#3555] / [i915#3804])
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][185] ([i915#14544] / [i915#3804])
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html
* igt@kms_dp_aux_dev@basic:
- shard-rkl: NOTRUN -> [SKIP][186] ([i915#1257])
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-5/igt@kms_dp_aux_dev@basic.html
* igt@kms_dp_linktrain_fallback@dsc-fallback:
- shard-tglu-1: NOTRUN -> [SKIP][187] ([i915#13707]) +1 other test skip
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-tglu-1/igt@kms_dp_linktrain_fallback@dsc-fallback.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
- shard-rkl: NOTRUN -> [SKIP][188] ([i915#3840])
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-3/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* igt@kms_dsc@dsc-with-bpc:
- shard-dg2: NOTRUN -> [SKIP][189] ([i915#3555] / [i915#3840])
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-dg2-10/igt@kms_dsc@dsc-with-bpc.html
- shard-rkl: NOTRUN -> [SKIP][190] ([i915#3555] / [i915#3840])
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-2/igt@kms_dsc@dsc-with-bpc.html
- shard-tglu-1: NOTRUN -> [SKIP][191] ([i915#3555] / [i915#3840])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-tglu-1/igt@kms_dsc@dsc-with-bpc.html
- shard-dg1: NOTRUN -> [SKIP][192] ([i915#3555] / [i915#3840])
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-dg1-12/igt@kms_dsc@dsc-with-bpc.html
- shard-mtlp: NOTRUN -> [SKIP][193] ([i915#3555] / [i915#3840])
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-mtlp-2/igt@kms_dsc@dsc-with-bpc.html
* igt@kms_feature_discovery@chamelium:
- shard-rkl: NOTRUN -> [SKIP][194] ([i915#4854])
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-7/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@display-4x:
- shard-tglu-1: NOTRUN -> [SKIP][195] ([i915#1839])
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-tglu-1/igt@kms_feature_discovery@display-4x.html
* igt@kms_feature_discovery@dp-mst:
- shard-rkl: NOTRUN -> [SKIP][196] ([i915#9337])
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-2/igt@kms_feature_discovery@dp-mst.html
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank:
- shard-tglu: NOTRUN -> [SKIP][197] ([i915#3637] / [i915#9934]) +4 other tests skip
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-tglu-5/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html
- shard-mtlp: NOTRUN -> [SKIP][198] ([i915#3637] / [i915#9934]) +1 other test skip
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-mtlp-8/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html
* igt@kms_flip@2x-plain-flip-fb-recreate:
- shard-dg2: NOTRUN -> [SKIP][199] ([i915#9934]) +1 other test skip
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-dg2-6/igt@kms_flip@2x-plain-flip-fb-recreate.html
- shard-dg1: NOTRUN -> [SKIP][200] ([i915#9934]) +1 other test skip
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-dg1-13/igt@kms_flip@2x-plain-flip-fb-recreate.html
* igt@kms_flip@2x-wf_vblank-ts-check:
- shard-rkl: NOTRUN -> [SKIP][201] ([i915#9934]) +5 other tests skip
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-2/igt@kms_flip@2x-wf_vblank-ts-check.html
- shard-tglu-1: NOTRUN -> [SKIP][202] ([i915#3637] / [i915#9934])
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-tglu-1/igt@kms_flip@2x-wf_vblank-ts-check.html
* igt@kms_flip@flip-vs-absolute-wf_vblank:
- shard-snb: [PASS][203] -> [FAIL][204] ([i915#14600]) +1 other test fail
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18366/shard-snb5/igt@kms_flip@flip-vs-absolute-wf_vblank.html
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-snb6/igt@kms_flip@flip-vs-absolute-wf_vblank.html
- shard-tglu: [PASS][205] -> [FAIL][206] ([i915#14600]) +3 other tests fail
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18366/shard-tglu-3/igt@kms_flip@flip-vs-absolute-wf_vblank.html
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-tglu-8/igt@kms_flip@flip-vs-absolute-wf_vblank.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1:
- shard-mtlp: [PASS][207] -> [FAIL][208] ([i915#13027]) +1 other test fail
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18366/shard-mtlp-7/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1.html
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-mtlp-1/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1.html
* igt@kms_flip@flip-vs-fences:
- shard-mtlp: NOTRUN -> [SKIP][209] ([i915#8381])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-mtlp-5/igt@kms_flip@flip-vs-fences.html
- shard-dg2: NOTRUN -> [SKIP][210] ([i915#8381])
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-dg2-7/igt@kms_flip@flip-vs-fences.html
- shard-dg1: NOTRUN -> [SKIP][211] ([i915#8381])
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-dg1-18/igt@kms_flip@flip-vs-fences.html
* igt@kms_flip@flip-vs-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][212] ([i915#12745] / [i915#4839] / [i915#6113])
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-glk3/igt@kms_flip@flip-vs-suspend.html
* igt@kms_flip@flip-vs-suspend@a-hdmi-a1:
- shard-glk: NOTRUN -> [INCOMPLETE][213] ([i915#12745] / [i915#6113])
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-glk3/igt@kms_flip@flip-vs-suspend@a-hdmi-a1.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling:
- shard-dg2: NOTRUN -> [SKIP][214] ([i915#15643])
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-dg2-4/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
- shard-rkl: NOTRUN -> [SKIP][215] ([i915#15643]) +2 other tests skip
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-5/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
- shard-dg1: NOTRUN -> [SKIP][216] ([i915#15643]) +1 other test skip
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-dg1-19/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
- shard-tglu: NOTRUN -> [SKIP][217] ([i915#15643]) +2 other tests skip
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-tglu-8/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
- shard-mtlp: NOTRUN -> [SKIP][218] ([i915#15643]) +1 other test skip
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling:
- shard-dg2: NOTRUN -> [SKIP][219] ([i915#15643] / [i915#5190])
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-dg2-7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html
- shard-tglu-1: NOTRUN -> [SKIP][220] ([i915#15643]) +2 other tests skip
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling:
- shard-rkl: NOTRUN -> [SKIP][221] ([i915#14544] / [i915#15643])
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][222] ([i915#8708]) +3 other tests skip
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu:
- shard-tglu-1: NOTRUN -> [SKIP][223] +44 other tests skip
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-tglu-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu.html
- shard-dg1: NOTRUN -> [SKIP][224] +14 other tests skip
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-dg1-18/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu.html
- shard-mtlp: NOTRUN -> [SKIP][225] ([i915#1825]) +9 other tests skip
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-cpu:
- shard-dg2: [PASS][226] -> [FAIL][227] ([i915#15389] / [i915#6880])
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18366/shard-dg2-8/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-cpu.html
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@fbc-tiling-4:
- shard-rkl: NOTRUN -> [SKIP][228] ([i915#5439])
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-3/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-render:
- shard-dg2: NOTRUN -> [SKIP][229] ([i915#15102])
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-render.html
- shard-rkl: NOTRUN -> [SKIP][230] ([i915#14544] / [i915#15102])
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw:
- shard-rkl: NOTRUN -> [SKIP][231] ([i915#15102] / [i915#3023]) +13 other tests skip
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html
- shard-dg1: NOTRUN -> [SKIP][232] ([i915#15102] / [i915#3458]) +3 other tests skip
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-dg1-15/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render:
- shard-rkl: NOTRUN -> [SKIP][233] ([i915#14544] / [i915#15102] / [i915#3023]) +4 other tests skip
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-shrfb-fliptrack-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][234] ([i915#8708]) +2 other tests skip
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-dg1-19/igt@kms_frontbuffer_tracking@fbcpsr-1p-shrfb-fliptrack-mmap-gtt.html
- shard-mtlp: NOTRUN -> [SKIP][235] ([i915#8708]) +2 other tests skip
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-shrfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][236] ([i915#14544] / [i915#1825]) +7 other tests skip
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][237] ([i915#5354]) +9 other tests skip
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt:
- shard-rkl: NOTRUN -> [SKIP][238] ([i915#1825]) +27 other tests skip
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
- shard-tglu-1: NOTRUN -> [SKIP][239] ([i915#5439])
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-gtt:
- shard-tglu-1: NOTRUN -> [SKIP][240] ([i915#15102]) +16 other tests skip
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-wc:
- shard-rkl: NOTRUN -> [SKIP][241] ([i915#15102]) +2 other tests skip
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-cpu:
- shard-tglu: NOTRUN -> [SKIP][242] ([i915#15102]) +17 other tests skip
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-tglu-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite:
- shard-dg2: NOTRUN -> [SKIP][243] ([i915#15102] / [i915#3458]) +4 other tests skip
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-dg2-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc:
- shard-tglu: NOTRUN -> [SKIP][244] +36 other tests skip
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-tglu-7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_hdr@bpc-switch:
- shard-tglu-1: NOTRUN -> [SKIP][245] ([i915#3555] / [i915#8228])
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-tglu-1/igt@kms_hdr@bpc-switch.html
* igt@kms_hdr@bpc-switch-dpms:
- shard-dg2: NOTRUN -> [SKIP][246] ([i915#3555] / [i915#8228])
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-dg2-1/igt@kms_hdr@bpc-switch-dpms.html
- shard-rkl: NOTRUN -> [SKIP][247] ([i915#3555] / [i915#8228])
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-4/igt@kms_hdr@bpc-switch-dpms.html
- shard-dg1: NOTRUN -> [SKIP][248] ([i915#3555] / [i915#8228])
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-dg1-16/igt@kms_hdr@bpc-switch-dpms.html
* igt@kms_hdr@static-toggle:
- shard-tglu: NOTRUN -> [SKIP][249] ([i915#3555] / [i915#8228]) +1 other test skip
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-tglu-4/igt@kms_hdr@static-toggle.html
* igt@kms_joiner@invalid-modeset-big-joiner:
- shard-dg2: NOTRUN -> [SKIP][250] ([i915#15460])
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-dg2-8/igt@kms_joiner@invalid-modeset-big-joiner.html
- shard-rkl: NOTRUN -> [SKIP][251] ([i915#15460])
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-3/igt@kms_joiner@invalid-modeset-big-joiner.html
- shard-tglu: NOTRUN -> [SKIP][252] ([i915#15460])
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-tglu-6/igt@kms_joiner@invalid-modeset-big-joiner.html
* igt@kms_joiner@invalid-modeset-force-big-joiner:
- shard-rkl: NOTRUN -> [SKIP][253] ([i915#15459])
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-2/igt@kms_joiner@invalid-modeset-force-big-joiner.html
- shard-tglu-1: NOTRUN -> [SKIP][254] ([i915#15459])
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-tglu-1/igt@kms_joiner@invalid-modeset-force-big-joiner.html
* igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
- shard-tglu-1: NOTRUN -> [SKIP][255] ([i915#15638] / [i915#15722])
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-tglu-1/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
* igt@kms_pipe_crc_basic@suspend-read-crc:
- shard-glk: NOTRUN -> [INCOMPLETE][256] ([i915#12756] / [i915#13409] / [i915#13476])
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-glk4/igt@kms_pipe_crc_basic@suspend-read-crc.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-2:
- shard-glk: NOTRUN -> [INCOMPLETE][257] ([i915#13409] / [i915#13476])
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-glk4/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-2.html
* igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping:
- shard-dg2: NOTRUN -> [SKIP][258] ([i915#15709]) +1 other test skip
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-dg2-4/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping.html
- shard-dg1: NOTRUN -> [SKIP][259] ([i915#15709])
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-dg1-17/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping.html
- shard-mtlp: NOTRUN -> [SKIP][260] ([i915#15709])
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-mtlp-6/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier:
- shard-rkl: NOTRUN -> [SKIP][261] ([i915#15709]) +4 other tests skip
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-2/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier.html
- shard-tglu: NOTRUN -> [SKIP][262] ([i915#15709]) +2 other tests skip
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-tglu-6/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier.html
* igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier@pipe-a-plane-7:
- shard-tglu-1: NOTRUN -> [SKIP][263] ([i915#15608]) +3 other tests skip
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-tglu-1/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier@pipe-a-plane-7.html
* igt@kms_plane@pixel-format-y-tiled-modifier@pipe-b-plane-7:
- shard-dg1: NOTRUN -> [SKIP][264] ([i915#15608]) +1 other test skip
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-dg1-18/igt@kms_plane@pixel-format-y-tiled-modifier@pipe-b-plane-7.html
* igt@kms_plane@pixel-format-yf-tiled-ccs-modifier:
- shard-tglu-1: NOTRUN -> [SKIP][265] ([i915#15709])
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-tglu-1/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier.html
* igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b:
- shard-glk: NOTRUN -> [INCOMPLETE][266] ([i915#13026]) +1 other test incomplete
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-glk3/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b.html
* igt@kms_plane_alpha_blend@alpha-basic:
- shard-glk: NOTRUN -> [FAIL][267] ([i915#12178])
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-glk2/igt@kms_plane_alpha_blend@alpha-basic.html
* igt@kms_plane_alpha_blend@alpha-basic@pipe-a-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][268] ([i915#7862]) +1 other test fail
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-glk2/igt@kms_plane_alpha_blend@alpha-basic@pipe-a-hdmi-a-1.html
* igt@kms_plane_alpha_blend@constant-alpha-max:
- shard-glk: NOTRUN -> [FAIL][269] ([i915#10647] / [i915#12169])
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-glk8/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][270] ([i915#10647]) +1 other test fail
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-glk8/igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1.html
* igt@kms_plane_multiple@2x-tiling-x:
- shard-tglu-1: NOTRUN -> [SKIP][271] ([i915#13958])
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-tglu-1/igt@kms_plane_multiple@2x-tiling-x.html
* igt@kms_plane_multiple@2x-tiling-yf:
- shard-tglu: NOTRUN -> [SKIP][272] ([i915#13958])
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-tglu-4/igt@kms_plane_multiple@2x-tiling-yf.html
* igt@kms_plane_multiple@tiling-4:
- shard-dg1: NOTRUN -> [SKIP][273] ([i915#14259])
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-dg1-12/igt@kms_plane_multiple@tiling-4.html
- shard-tglu: NOTRUN -> [SKIP][274] ([i915#14259])
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-tglu-4/igt@kms_plane_multiple@tiling-4.html
* igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b:
- shard-tglu-1: NOTRUN -> [SKIP][275] ([i915#15329]) +4 other tests skip
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-tglu-1/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b.html
- shard-dg1: NOTRUN -> [SKIP][276] ([i915#15329]) +4 other tests skip
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-dg1-18/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-c:
- shard-rkl: NOTRUN -> [SKIP][277] ([i915#15329]) +7 other tests skip
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-2/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-c.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25@pipe-a:
- shard-snb: NOTRUN -> [SKIP][278] +80 other tests skip
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-snb4/igt@kms_plane_scaling@planes-upscale-factor-0-25@pipe-a.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-tglu-1: NOTRUN -> [SKIP][279] ([i915#15948])
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-tglu-1/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-rkl: [PASS][280] -> [SKIP][281] ([i915#15073]) +2 other tests skip
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18366/shard-rkl-5/igt@kms_pm_rpm@dpms-lpsp.html
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-7/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-dg1: [PASS][282] -> [SKIP][283] ([i915#15073]) +1 other test skip
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18366/shard-dg1-15/igt@kms_pm_rpm@modeset-lpsp.html
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-dg1-19/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_pm_rpm@system-suspend-modeset:
- shard-glk10: NOTRUN -> [INCOMPLETE][284] ([i915#10553])
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-glk10/igt@kms_pm_rpm@system-suspend-modeset.html
* igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area:
- shard-dg2: NOTRUN -> [SKIP][285] ([i915#11520]) +3 other tests skip
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-dg2-7/igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area.html
- shard-rkl: NOTRUN -> [SKIP][286] ([i915#11520]) +6 other tests skip
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-2/igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf:
- shard-glk11: NOTRUN -> [SKIP][287] ([i915#11520]) +2 other tests skip
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-glk11/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area:
- shard-snb: NOTRUN -> [SKIP][288] ([i915#11520]) +2 other tests skip
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-snb7/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html
- shard-mtlp: NOTRUN -> [SKIP][289] ([i915#12316]) +2 other tests skip
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-mtlp-2/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][290] ([i915#9808])
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-mtlp-2/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area@pipe-a-edp-1.html
* igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area:
- shard-rkl: NOTRUN -> [SKIP][291] ([i915#11520] / [i915#14544]) +1 other test skip
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-6/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html
* igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area:
- shard-glk10: NOTRUN -> [SKIP][292] ([i915#11520]) +2 other tests skip
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-glk10/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf:
- shard-dg1: NOTRUN -> [SKIP][293] ([i915#11520]) +4 other tests skip
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-dg1-16/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html
- shard-tglu: NOTRUN -> [SKIP][294] ([i915#11520]) +6 other tests skip
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-tglu-9/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html
* igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area:
- shard-glk: NOTRUN -> [SKIP][295] ([i915#11520]) +9 other tests skip
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-glk2/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb:
- shard-tglu-1: NOTRUN -> [SKIP][296] ([i915#11520]) +4 other tests skip
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-tglu-1/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html
* igt@kms_psr@fbc-pr-primary-render:
- shard-rkl: NOTRUN -> [SKIP][297] ([i915#1072] / [i915#14544] / [i915#9732]) +1 other test skip
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-6/igt@kms_psr@fbc-pr-primary-render.html
* igt@kms_psr@fbc-psr2-no-drrs@edp-1:
- shard-mtlp: NOTRUN -> [SKIP][298] ([i915#9688]) +4 other tests skip
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-mtlp-2/igt@kms_psr@fbc-psr2-no-drrs@edp-1.html
* igt@kms_psr@fbc-psr2-primary-mmap-gtt:
- shard-tglu: NOTRUN -> [SKIP][299] ([i915#9732]) +14 other tests skip
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-tglu-6/igt@kms_psr@fbc-psr2-primary-mmap-gtt.html
* igt@kms_psr@fbc-psr2-sprite-render:
- shard-rkl: NOTRUN -> [SKIP][300] ([i915#1072] / [i915#9732]) +18 other tests skip
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-4/igt@kms_psr@fbc-psr2-sprite-render.html
* igt@kms_psr@pr-cursor-plane-onoff:
- shard-dg1: NOTRUN -> [SKIP][301] ([i915#1072] / [i915#9732]) +4 other tests skip
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-dg1-13/igt@kms_psr@pr-cursor-plane-onoff.html
* igt@kms_psr@psr-sprite-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][302] ([i915#1072] / [i915#9732]) +8 other tests skip
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-dg2-5/igt@kms_psr@psr-sprite-mmap-gtt.html
* igt@kms_psr@psr-sprite-mmap-gtt@edp-1:
- shard-mtlp: NOTRUN -> [SKIP][303] ([i915#4077] / [i915#9688]) +1 other test skip
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-mtlp-8/igt@kms_psr@psr-sprite-mmap-gtt@edp-1.html
* igt@kms_psr@psr2-cursor-plane-move:
- shard-tglu-1: NOTRUN -> [SKIP][304] ([i915#9732]) +14 other tests skip
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-tglu-1/igt@kms_psr@psr2-cursor-plane-move.html
* igt@kms_rotation_crc@exhaust-fences:
- shard-dg2: NOTRUN -> [SKIP][305] ([i915#4235])
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-dg2-6/igt@kms_rotation_crc@exhaust-fences.html
- shard-dg1: NOTRUN -> [SKIP][306] ([i915#4884])
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-dg1-13/igt@kms_rotation_crc@exhaust-fences.html
- shard-mtlp: NOTRUN -> [SKIP][307] ([i915#4235])
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-mtlp-4/igt@kms_rotation_crc@exhaust-fences.html
* igt@kms_rotation_crc@multiplane-rotation-cropping-bottom:
- shard-glk: NOTRUN -> [INCOMPLETE][308] ([i915#15500])
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-glk2/igt@kms_rotation_crc@multiplane-rotation-cropping-bottom.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
- shard-tglu-1: NOTRUN -> [SKIP][309] ([i915#5289])
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-tglu-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
* igt@kms_rotation_crc@sprite-rotation-270:
- shard-dg2: NOTRUN -> [SKIP][310] ([i915#12755] / [i915#15867])
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-dg2-6/igt@kms_rotation_crc@sprite-rotation-270.html
- shard-mtlp: NOTRUN -> [SKIP][311] ([i915#12755] / [i915#15867])
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-mtlp-4/igt@kms_rotation_crc@sprite-rotation-270.html
* igt@kms_scaling_modes@scaling-mode-center:
- shard-tglu-1: NOTRUN -> [SKIP][312] ([i915#3555])
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-tglu-1/igt@kms_scaling_modes@scaling-mode-center.html
* igt@kms_selftest@drm_framebuffer:
- shard-rkl: NOTRUN -> [ABORT][313] ([i915#13179]) +1 other test abort
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-1/igt@kms_selftest@drm_framebuffer.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-rkl: NOTRUN -> [SKIP][314] ([i915#8623])
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-2/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_vrr@flipline:
- shard-rkl: NOTRUN -> [SKIP][315] ([i915#15243] / [i915#3555])
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-8/igt@kms_vrr@flipline.html
* igt@kms_vrr@seamless-rr-switch-virtual:
- shard-rkl: NOTRUN -> [SKIP][316] ([i915#9906])
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-7/igt@kms_vrr@seamless-rr-switch-virtual.html
- shard-tglu: NOTRUN -> [SKIP][317] ([i915#9906])
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-tglu-3/igt@kms_vrr@seamless-rr-switch-virtual.html
* igt@perf_pmu@busy-idle-check-all@bcs0:
- shard-mtlp: [PASS][318] -> [FAIL][319] ([i915#4349]) +5 other tests fail
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18366/shard-mtlp-3/igt@perf_pmu@busy-idle-check-all@bcs0.html
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-mtlp-6/igt@perf_pmu@busy-idle-check-all@bcs0.html
* igt@perf_pmu@rc6-all-gts:
- shard-dg2: NOTRUN -> [SKIP][320] ([i915#8516])
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-dg2-7/igt@perf_pmu@rc6-all-gts.html
- shard-rkl: NOTRUN -> [SKIP][321] ([i915#8516])
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-5/igt@perf_pmu@rc6-all-gts.html
- shard-tglu: NOTRUN -> [SKIP][322] ([i915#8516])
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-tglu-8/igt@perf_pmu@rc6-all-gts.html
* igt@perf_pmu@rc6-suspend:
- shard-glk: [PASS][323] -> [INCOMPLETE][324] ([i915#13356] / [i915#14242])
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18366/shard-glk3/igt@perf_pmu@rc6-suspend.html
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-glk4/igt@perf_pmu@rc6-suspend.html
* igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
- shard-rkl: NOTRUN -> [SKIP][325] ([i915#9917])
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-1/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
#### Possible fixes ####
* igt@i915_pm_rpm@system-suspend:
- shard-rkl: [INCOMPLETE][326] ([i915#13356]) -> [PASS][327]
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18366/shard-rkl-6/igt@i915_pm_rpm@system-suspend.html
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-4/igt@i915_pm_rpm@system-suspend.html
* igt@i915_suspend@fence-restore-tiled2untiled:
- shard-glk: [INCOMPLETE][328] ([i915#4817]) -> [PASS][329]
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18366/shard-glk4/igt@i915_suspend@fence-restore-tiled2untiled.html
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-glk5/igt@i915_suspend@fence-restore-tiled2untiled.html
* igt@kms_3d@basic:
- shard-mtlp: [SKIP][330] ([i915#15726]) -> [PASS][331]
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18366/shard-mtlp-1/igt@kms_3d@basic.html
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-mtlp-3/igt@kms_3d@basic.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1:
- shard-mtlp: [FAIL][332] ([i915#5956]) -> [PASS][333] +1 other test pass
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18366/shard-mtlp-4/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1.html
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-mtlp-3/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1.html
* igt@kms_atomic_transition@plane-all-transition-fencing:
- shard-dg1: [DMESG-WARN][334] ([i915#4423]) -> [PASS][335] +1 other test pass
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18366/shard-dg1-12/igt@kms_atomic_transition@plane-all-transition-fencing.html
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-dg1-13/igt@kms_atomic_transition@plane-all-transition-fencing.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-2:
- shard-rkl: [INCOMPLETE][336] ([i915#14694] / [i915#15582]) -> [PASS][337] +1 other test pass
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18366/shard-rkl-3/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-2.html
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-4/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-2.html
* igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1:
- shard-tglu: [FAIL][338] ([i915#13566]) -> [PASS][339] +3 other tests pass
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18366/shard-tglu-7/igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1.html
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-tglu-8/igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1.html
* igt@kms_cursor_crc@cursor-sliding-128x42:
- shard-rkl: [FAIL][340] ([i915#13566]) -> [PASS][341] +3 other tests pass
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18366/shard-rkl-7/igt@kms_cursor_crc@cursor-sliding-128x42.html
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-6/igt@kms_cursor_crc@cursor-sliding-128x42.html
* igt@kms_cursor_crc@cursor-sliding-256x85:
- shard-tglu-1: [FAIL][342] ([i915#13566]) -> [PASS][343] +1 other test pass
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18366/shard-tglu-1/igt@kms_cursor_crc@cursor-sliding-256x85.html
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-tglu-1/igt@kms_cursor_crc@cursor-sliding-256x85.html
* igt@kms_cursor_crc@cursor-suspend:
- shard-dg2: [INCOMPLETE][344] ([i915#12358] / [i915#14152] / [i915#7882]) -> [PASS][345]
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18366/shard-dg2-1/igt@kms_cursor_crc@cursor-suspend.html
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-dg2-3/igt@kms_cursor_crc@cursor-suspend.html
* igt@kms_cursor_crc@cursor-suspend@pipe-d-hdmi-a-3:
- shard-dg2: [INCOMPLETE][346] ([i915#12358] / [i915#14152]) -> [PASS][347]
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18366/shard-dg2-1/igt@kms_cursor_crc@cursor-suspend@pipe-d-hdmi-a-3.html
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-dg2-3/igt@kms_cursor_crc@cursor-suspend@pipe-d-hdmi-a-3.html
* igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions:
- shard-rkl: [FAIL][348] ([i915#15967]) -> [PASS][349]
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18366/shard-rkl-8/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions.html
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-7/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions.html
* igt@kms_flip@flip-vs-dpms-on-nop:
- shard-rkl: [FAIL][350] ([i915#10826]) -> [PASS][351] +1 other test pass
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18366/shard-rkl-7/igt@kms_flip@flip-vs-dpms-on-nop.html
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-4/igt@kms_flip@flip-vs-dpms-on-nop.html
* igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a3:
- shard-dg2: [FAIL][352] ([i915#13027]) -> [PASS][353] +1 other test pass
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18366/shard-dg2-3/igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a3.html
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-dg2-3/igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a3.html
* igt@kms_flip@wf_vblank-ts-check-interruptible:
- shard-dg1: [FAIL][354] ([i915#10826]) -> [PASS][355]
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18366/shard-dg1-16/igt@kms_flip@wf_vblank-ts-check-interruptible.html
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-dg1-19/igt@kms_flip@wf_vblank-ts-check-interruptible.html
* igt@kms_flip@wf_vblank-ts-check-interruptible@a-hdmi-a4:
- shard-dg1: [FAIL][356] -> [PASS][357]
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18366/shard-dg1-16/igt@kms_flip@wf_vblank-ts-check-interruptible@a-hdmi-a4.html
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-dg1-19/igt@kms_flip@wf_vblank-ts-check-interruptible@a-hdmi-a4.html
* igt@kms_flip@wf_vblank-ts-check-interruptible@c-edp1:
- shard-mtlp: [FAIL][358] ([i915#14600]) -> [PASS][359] +1 other test pass
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18366/shard-mtlp-7/igt@kms_flip@wf_vblank-ts-check-interruptible@c-edp1.html
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-mtlp-2/igt@kms_flip@wf_vblank-ts-check-interruptible@c-edp1.html
* igt@kms_force_connector_basic@force-edid:
- shard-mtlp: [SKIP][360] ([i915#15672]) -> [PASS][361]
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18366/shard-mtlp-1/igt@kms_force_connector_basic@force-edid.html
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-mtlp-5/igt@kms_force_connector_basic@force-edid.html
* igt@kms_hdr@bpc-switch:
- shard-dg2: [SKIP][362] ([i915#3555] / [i915#8228]) -> [PASS][363]
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18366/shard-dg2-8/igt@kms_hdr@bpc-switch.html
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-dg2-10/igt@kms_hdr@bpc-switch.html
* igt@kms_joiner@invalid-modeset-force-big-joiner:
- shard-dg2: [SKIP][364] ([i915#15459]) -> [PASS][365]
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18366/shard-dg2-4/igt@kms_joiner@invalid-modeset-force-big-joiner.html
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-dg2-10/igt@kms_joiner@invalid-modeset-force-big-joiner.html
* igt@kms_pm_rpm@dpms-non-lpsp:
- shard-dg1: [SKIP][366] ([i915#15073]) -> [PASS][367]
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18366/shard-dg1-14/igt@kms_pm_rpm@dpms-non-lpsp.html
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-dg1-16/igt@kms_pm_rpm@dpms-non-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-dg2: [SKIP][368] ([i915#15073]) -> [PASS][369]
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18366/shard-dg2-3/igt@kms_pm_rpm@modeset-lpsp.html
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-dg2-4/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-rkl: [SKIP][370] ([i915#15073]) -> [PASS][371] +1 other test pass
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18366/shard-rkl-5/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-3/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_pm_rpm@system-suspend-idle:
- shard-rkl: [INCOMPLETE][372] ([i915#14419]) -> [PASS][373]
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18366/shard-rkl-4/igt@kms_pm_rpm@system-suspend-idle.html
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-8/igt@kms_pm_rpm@system-suspend-idle.html
* igt@kms_setmode@basic:
- shard-dg1: [FAIL][374] ([i915#15106]) -> [PASS][375] +2 other tests pass
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18366/shard-dg1-16/igt@kms_setmode@basic.html
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-dg1-16/igt@kms_setmode@basic.html
- shard-tglu: [FAIL][376] ([i915#15106]) -> [PASS][377] +2 other tests pass
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18366/shard-tglu-4/igt@kms_setmode@basic.html
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-tglu-5/igt@kms_setmode@basic.html
* igt@kms_setmode@basic@pipe-c-hdmi-a-3:
- shard-dg2: [FAIL][378] ([i915#15106]) -> [PASS][379] +2 other tests pass
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18366/shard-dg2-8/igt@kms_setmode@basic@pipe-c-hdmi-a-3.html
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-dg2-1/igt@kms_setmode@basic@pipe-c-hdmi-a-3.html
* igt@perf@polling@0-rcs0:
- shard-tglu: [FAIL][380] ([i915#10538]) -> [PASS][381] +1 other test pass
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18366/shard-tglu-9/igt@perf@polling@0-rcs0.html
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-tglu-4/igt@perf@polling@0-rcs0.html
* igt@perf_pmu@busy-accuracy-98@rcs0:
- shard-rkl: [FAIL][382] ([i915#4349]) -> [PASS][383] +1 other test pass
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18366/shard-rkl-5/igt@perf_pmu@busy-accuracy-98@rcs0.html
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-5/igt@perf_pmu@busy-accuracy-98@rcs0.html
* igt@perf_pmu@busy-double-start@bcs0:
- shard-mtlp: [FAIL][384] ([i915#4349]) -> [PASS][385]
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18366/shard-mtlp-5/igt@perf_pmu@busy-double-start@bcs0.html
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-mtlp-5/igt@perf_pmu@busy-double-start@bcs0.html
* igt@perf_pmu@rc6-suspend:
- shard-rkl: [INCOMPLETE][386] ([i915#13520]) -> [PASS][387]
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18366/shard-rkl-6/igt@perf_pmu@rc6-suspend.html
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-2/igt@perf_pmu@rc6-suspend.html
#### Warnings ####
* igt@device_reset@cold-reset-bound:
- shard-rkl: [SKIP][388] ([i915#11078] / [i915#14544]) -> [SKIP][389] ([i915#11078])
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18366/shard-rkl-6/igt@device_reset@cold-reset-bound.html
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-2/igt@device_reset@cold-reset-bound.html
* igt@gem_create@create-ext-set-pat:
- shard-rkl: [SKIP][390] ([i915#14544] / [i915#8562]) -> [SKIP][391] ([i915#8562])
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18366/shard-rkl-6/igt@gem_create@create-ext-set-pat.html
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-3/igt@gem_create@create-ext-set-pat.html
* igt@gem_ctx_sseu@mmap-args:
- shard-rkl: [SKIP][392] ([i915#14544] / [i915#280]) -> [SKIP][393] ([i915#280])
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18366/shard-rkl-6/igt@gem_ctx_sseu@mmap-args.html
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-7/igt@gem_ctx_sseu@mmap-args.html
* igt@gem_exec_big@single:
- shard-tglu: [FAIL][394] ([i915#15816]) -> [FAIL][395] ([i915#15944])
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18366/shard-tglu-4/igt@gem_exec_big@single.html
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-tglu-9/igt@gem_exec_big@single.html
* igt@gem_exec_capture@capture-invisible@smem0:
- shard-rkl: [SKIP][396] ([i915#14544] / [i915#6334]) -> [SKIP][397] ([i915#6334]) +1 other test skip
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18366/shard-rkl-6/igt@gem_exec_capture@capture-invisible@smem0.html
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-2/igt@gem_exec_capture@capture-invisible@smem0.html
* igt@gem_exec_capture@capture-recoverable:
- shard-rkl: [SKIP][398] ([i915#6344]) -> [SKIP][399] ([i915#14544] / [i915#6344])
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18366/shard-rkl-3/igt@gem_exec_capture@capture-recoverable.html
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-6/igt@gem_exec_capture@capture-recoverable.html
* igt@gem_exec_reloc@basic-gtt-cpu:
- shard-rkl: [SKIP][400] ([i915#14544] / [i915#3281]) -> [SKIP][401] ([i915#3281]) +6 other tests skip
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18366/shard-rkl-6/igt@gem_exec_reloc@basic-gtt-cpu.html
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-7/igt@gem_exec_reloc@basic-gtt-cpu.html
* igt@gem_exec_reloc@basic-write-read:
- shard-rkl: [SKIP][402] ([i915#3281]) -> [SKIP][403] ([i915#14544] / [i915#3281]) +2 other tests skip
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18366/shard-rkl-4/igt@gem_exec_reloc@basic-write-read.html
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-6/igt@gem_exec_reloc@basic-write-read.html
* igt@gem_exec_schedule@semaphore-power:
- shard-rkl: [SKIP][404] ([i915#7276]) -> [SKIP][405] ([i915#14544] / [i915#7276])
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18366/shard-rkl-1/igt@gem_exec_schedule@semaphore-power.html
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-6/igt@gem_exec_schedule@semaphore-power.html
* igt@gem_lmem_swapping@heavy-verify-random-ccs:
- shard-rkl: [SKIP][406] ([i915#4613]) -> [SKIP][407] ([i915#14544] / [i915#4613])
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18366/shard-rkl-8/igt@gem_lmem_swapping@heavy-verify-random-ccs.html
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-6/igt@gem_lmem_swapping@heavy-verify-random-ccs.html
* igt@gem_lmem_swapping@massive:
- shard-rkl: [SKIP][408] ([i915#14544] / [i915#4613]) -> [SKIP][409] ([i915#4613])
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18366/shard-rkl-6/igt@gem_lmem_swapping@massive.html
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-1/igt@gem_lmem_swapping@massive.html
* igt@gem_partial_pwrite_pread@reads:
- shard-rkl: [SKIP][410] ([i915#14544] / [i915#3282]) -> [SKIP][411] ([i915#3282]) +1 other test skip
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18366/shard-rkl-6/igt@gem_partial_pwrite_pread@reads.html
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-5/igt@gem_partial_pwrite_pread@reads.html
* igt@gem_readwrite@write-bad-handle:
- shard-rkl: [SKIP][412] ([i915#3282]) -> [SKIP][413] ([i915#14544] / [i915#3282]) +1 other test skip
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18366/shard-rkl-8/igt@gem_readwrite@write-bad-handle.html
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-6/igt@gem_readwrite@write-bad-handle.html
* igt@gem_userptr_blits@dmabuf-unsync:
- shard-rkl: [SKIP][414] ([i915#3297]) -> [SKIP][415] ([i915#14544] / [i915#3297]) +1 other test skip
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18366/shard-rkl-3/igt@gem_userptr_blits@dmabuf-unsync.html
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-6/igt@gem_userptr_blits@dmabuf-unsync.html
* igt@gem_userptr_blits@unsync-overlap:
- shard-rkl: [SKIP][416] ([i915#14544] / [i915#3297]) -> [SKIP][417] ([i915#3297])
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18366/shard-rkl-6/igt@gem_userptr_blits@unsync-overlap.html
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-4/igt@gem_userptr_blits@unsync-overlap.html
* igt@gen9_exec_parse@allowed-single:
- shard-rkl: [SKIP][418] ([i915#2527]) -> [SKIP][419] ([i915#14544] / [i915#2527])
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18366/shard-rkl-8/igt@gen9_exec_parse@allowed-single.html
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-6/igt@gen9_exec_parse@allowed-single.html
* igt@gen9_exec_parse@bb-start-param:
- shard-rkl: [SKIP][420] ([i915#14544] / [i915#2527]) -> [SKIP][421] ([i915#2527]) +1 other test skip
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18366/shard-rkl-6/igt@gen9_exec_parse@bb-start-param.html
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-7/igt@gen9_exec_parse@bb-start-param.html
* igt@i915_pm_freq_api@freq-reset:
- shard-rkl: [SKIP][422] ([i915#14544] / [i915#8399]) -> [SKIP][423] ([i915#8399])
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18366/shard-rkl-6/igt@i915_pm_freq_api@freq-reset.html
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-3/igt@i915_pm_freq_api@freq-reset.html
* igt@i915_pm_sseu@full-enable:
- shard-rkl: [SKIP][424] ([i915#4387]) -> [SKIP][425] ([i915#14544] / [i915#4387])
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18366/shard-rkl-3/igt@i915_pm_sseu@full-enable.html
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-6/igt@i915_pm_sseu@full-enable.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-90:
- shard-rkl: [SKIP][426] ([i915#5286]) -> [SKIP][427] ([i915#14544] / [i915#5286]) +1 other test skip
[426]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18366/shard-rkl-4/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
[427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-6/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip:
- shard-rkl: [SKIP][428] ([i915#14544] / [i915#5286]) -> [SKIP][429] ([i915#5286]) +1 other test skip
[428]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18366/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
[429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-2/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@linear-16bpp-rotate-90:
- shard-rkl: [SKIP][430] ([i915#3638]) -> [SKIP][431] ([i915#14544] / [i915#3638])
[430]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18366/shard-rkl-5/igt@kms_big_fb@linear-16bpp-rotate-90.html
[431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-6/igt@kms_big_fb@linear-16bpp-rotate-90.html
* igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip:
- shard-rkl: [SKIP][432] ([i915#3828]) -> [SKIP][433] ([i915#14544] / [i915#3828])
[432]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18366/shard-rkl-2/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip.html
[433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-6/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180:
- shard-rkl: [SKIP][434] -> [SKIP][435] ([i915#14544]) +9 other tests skip
[434]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18366/shard-rkl-7/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180.html
[435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-6/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180.html
* igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2:
- shard-rkl: [SKIP][436] ([i915#14544] / [i915#6095]) -> [SKIP][437] ([i915#6095]) +11 other tests skip
[436]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18366/shard-rkl-6/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2.html
[437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-3/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs:
- shard-rkl: [SKIP][438] ([i915#14098] / [i915#14544] / [i915#6095]) -> [SKIP][439] ([i915#14098] / [i915#6095]) +13 other tests skip
[438]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18366/shard-rkl-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs.html
[439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-7/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-rkl: [SKIP][440] ([i915#12805]) -> [SKIP][441] ([i915#12805] / [i915#14544]) +1 other test skip
[440]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18366/shard-rkl-4/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
[441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-2:
- shard-rkl: [SKIP][442] ([i915#6095]) -> [SKIP][443] ([i915#14544] / [i915#6095]) +3 other tests skip
[442]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18366/shard-rkl-7/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-2.html
[443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-6/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-2.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-2:
- shard-rkl: [SKIP][444] ([i915#14098] / [i915#6095]) -> [SKIP][445] ([i915#14098] / [i915#14544] / [i915#6095]) +7 other tests skip
[444]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18366/shard-rkl-7/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-2.html
[445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-6/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc:
- shard-dg1: [SKIP][446] ([i915#6095]) -> [SKIP][447] ([i915#4423] / [i915#6095])
[446]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18366/shard-dg1-12/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
[447]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-dg1-17/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_chamelium_hpd@dp-hpd-storm:
- shard-rkl: [SKIP][448] ([i915#11151] / [i915#7828]) -> [SKIP][449] ([i915#11151] / [i915#14544] / [i915#7828]) +3 other tests skip
[448]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18366/shard-rkl-3/igt@kms_chamelium_hpd@dp-hpd-storm.html
[449]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-6/igt@kms_chamelium_hpd@dp-hpd-storm.html
* igt@kms_chamelium_hpd@vga-hpd-fast:
- shard-rkl: [SKIP][450] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][451] ([i915#11151] / [i915#7828]) +1 other test skip
[450]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18366/shard-rkl-6/igt@kms_chamelium_hpd@vga-hpd-fast.html
[451]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-2/igt@kms_chamelium_hpd@vga-hpd-fast.html
* igt@kms_content_protection@mei-interface:
- shard-rkl: [SKIP][452] ([i915#15865]) -> [SKIP][453] ([i915#14544] / [i915#15865]) +2 other tests skip
[452]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18366/shard-rkl-2/igt@kms_content_protection@mei-interface.html
[453]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-6/igt@kms_content_protection@mei-interface.html
* igt@kms_content_protection@srm:
- shard-rkl: [SKIP][454] ([i915#14544] / [i915#15865]) -> [SKIP][455] ([i915#15865]) +2 other tests skip
[454]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18366/shard-rkl-6/igt@kms_content_protection@srm.html
[455]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-8/igt@kms_content_protection@srm.html
* igt@kms_cursor_crc@cursor-offscreen-32x32:
- shard-dg1: [SKIP][456] ([i915#3555]) -> [SKIP][457] ([i915#3555] / [i915#4423])
[456]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18366/shard-dg1-14/igt@kms_cursor_crc@cursor-offscreen-32x32.html
[457]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-dg1-17/igt@kms_cursor_crc@cursor-offscreen-32x32.html
* igt@kms_cursor_crc@cursor-offscreen-512x170:
- shard-dg2: [SKIP][458] ([i915#13049]) -> [SKIP][459] ([i915#13049] / [i915#3359])
[458]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18366/shard-dg2-5/igt@kms_cursor_crc@cursor-offscreen-512x170.html
[459]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-dg2-10/igt@kms_cursor_crc@cursor-offscreen-512x170.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-rkl: [SKIP][460] ([i915#13049] / [i915#14544]) -> [SKIP][461] ([i915#13049]) +1 other test skip
[460]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18366/shard-rkl-6/igt@kms_cursor_crc@cursor-offscreen-512x512.html
[461]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-7/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x512:
- shard-rkl: [SKIP][462] ([i915#13049]) -> [SKIP][463] ([i915#13049] / [i915#14544])
[462]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18366/shard-rkl-3/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
[463]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-6/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
- shard-rkl: [SKIP][464] ([i915#4103]) -> [SKIP][465] ([i915#14544] / [i915#4103])
[464]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18366/shard-rkl-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
[465]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size:
- shard-rkl: [SKIP][466] ([i915#14544]) -> [SKIP][467] +4 other tests skip
[466]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18366/shard-rkl-6/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
[467]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-7/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-rkl: [SKIP][468] ([i915#14544] / [i915#4103]) -> [SKIP][469] ([i915#4103])
[468]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18366/shard-rkl-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
[469]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-7/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_display_modes@extended-mode-basic:
- shard-rkl: [SKIP][470] ([i915#13691] / [i915#14544]) -> [SKIP][471] ([i915#13691])
[470]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18366/shard-rkl-6/igt@kms_display_modes@extended-mode-basic.html
[471]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-4/igt@kms_display_modes@extended-mode-basic.html
* igt@kms_dp_link_training@uhbr-sst:
- shard-rkl: [SKIP][472] ([i915#13748] / [i915#14544]) -> [SKIP][473] ([i915#13748])
[472]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18366/shard-rkl-6/igt@kms_dp_link_training@uhbr-sst.html
[473]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-7/igt@kms_dp_link_training@uhbr-sst.html
* igt@kms_dp_linktrain_fallback@dsc-fallback:
- shard-rkl: [SKIP][474] ([i915#13707]) -> [SKIP][475] ([i915#13707] / [i915#14544])
[474]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18366/shard-rkl-3/igt@kms_dp_linktrain_fallback@dsc-fallback.html
[475]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-6/igt@kms_dp_linktrain_fallback@dsc-fallback.html
* igt@kms_dsc@dsc-with-formats:
- shard-rkl: [SKIP][476] ([i915#14544] / [i915#3555] / [i915#3840]) -> [SKIP][477] ([i915#3555] / [i915#3840])
[476]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18366/shard-rkl-6/igt@kms_dsc@dsc-with-formats.html
[477]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-8/igt@kms_dsc@dsc-with-formats.html
* igt@kms_flip@2x-blocking-wf_vblank:
- shard-rkl: [SKIP][478] ([i915#9934]) -> [SKIP][479] ([i915#14544] / [i915#9934]) +3 other tests skip
[478]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18366/shard-rkl-5/igt@kms_flip@2x-blocking-wf_vblank.html
[479]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-6/igt@kms_flip@2x-blocking-wf_vblank.html
* igt@kms_flip@2x-flip-vs-panning:
- shard-rkl: [SKIP][480] ([i915#14544] / [i915#9934]) -> [SKIP][481] ([i915#9934]) +1 other test skip
[480]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18366/shard-rkl-6/igt@kms_flip@2x-flip-vs-panning.html
[481]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-4/igt@kms_flip@2x-flip-vs-panning.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling:
- shard-rkl: [SKIP][482] ([i915#15643]) -> [SKIP][483] ([i915#14544] / [i915#15643]) +1 other test skip
[482]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18366/shard-rkl-7/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html
[483]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling:
- shard-rkl: [SKIP][484] ([i915#14544] / [i915#15643]) -> [SKIP][485] ([i915#15643]) +2 other tests skip
[484]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18366/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html
[485]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-pwrite:
- shard-rkl: [SKIP][486] ([i915#15102]) -> [SKIP][487] ([i915#14544] / [i915#15102]) +1 other test skip
[486]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18366/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-pwrite.html
[487]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-blt:
- shard-rkl: [SKIP][488] ([i915#14544] / [i915#15102]) -> [SKIP][489] ([i915#15102]) +1 other test skip
[488]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18366/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-blt.html
[489]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt:
- shard-rkl: [SKIP][490] ([i915#1825]) -> [SKIP][491] ([i915#14544] / [i915#1825]) +15 other tests skip
[490]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18366/shard-rkl-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html
[491]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move:
- shard-rkl: [SKIP][492] ([i915#15102] / [i915#3023]) -> [SKIP][493] ([i915#14544] / [i915#15102] / [i915#3023]) +8 other tests skip
[492]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18366/shard-rkl-8/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html
[493]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc:
- shard-rkl: [SKIP][494] ([i915#14544] / [i915#1825]) -> [SKIP][495] ([i915#1825]) +24 other tests skip
[494]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18366/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc.html
[495]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary:
- shard-dg2: [SKIP][496] ([i915#10433] / [i915#15102] / [i915#3458]) -> [SKIP][497] ([i915#15102] / [i915#3458]) +1 other test skip
[496]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18366/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html
[497]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-dg2-5/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-cpu:
- shard-dg2: [SKIP][498] ([i915#15102] / [i915#3458]) -> [SKIP][499] ([i915#10433] / [i915#15102] / [i915#3458])
[498]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18366/shard-dg2-6/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-cpu.html
[499]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-render:
- shard-rkl: [SKIP][500] ([i915#14544] / [i915#15102] / [i915#3023]) -> [SKIP][501] ([i915#15102] / [i915#3023]) +7 other tests skip
[500]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18366/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-rgb565-draw-render.html
[501]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-rgb565-draw-render.html
* igt@kms_hdr@brightness-with-hdr:
- shard-mtlp: [SKIP][502] ([i915#1187] / [i915#12713]) -> [SKIP][503] ([i915#12713])
[502]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18366/shard-mtlp-1/igt@kms_hdr@brightness-with-hdr.html
[503]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-mtlp-3/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_hdr@static-toggle-suspend:
- shard-rkl: [INCOMPLETE][504] ([i915#15436]) -> [SKIP][505] ([i915#3555] / [i915#8228])
[504]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18366/shard-rkl-6/igt@kms_hdr@static-toggle-suspend.html
[505]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-8/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_joiner@basic-force-big-joiner:
- shard-rkl: [SKIP][506] ([i915#15459]) -> [SKIP][507] ([i915#14544] / [i915#15459])
[506]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18366/shard-rkl-4/igt@kms_joiner@basic-force-big-joiner.html
[507]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-6/igt@kms_joiner@basic-force-big-joiner.html
* igt@kms_joiner@basic-max-non-joiner:
- shard-rkl: [SKIP][508] ([i915#13688]) -> [SKIP][509] ([i915#13688] / [i915#14544])
[508]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18366/shard-rkl-8/igt@kms_joiner@basic-max-non-joiner.html
[509]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-6/igt@kms_joiner@basic-max-non-joiner.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-rkl: [SKIP][510] ([i915#14544] / [i915#15458]) -> [SKIP][511] ([i915#15458])
[510]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18366/shard-rkl-6/igt@kms_joiner@basic-ultra-joiner.html
[511]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-5/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
- shard-rkl: [SKIP][512] ([i915#14544] / [i915#15638] / [i915#15722]) -> [SKIP][513] ([i915#15638] / [i915#15722])
[512]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18366/shard-rkl-6/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
[513]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-3/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-rkl: [SKIP][514] ([i915#6301]) -> [SKIP][515] ([i915#14544] / [i915#6301])
[514]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18366/shard-rkl-8/igt@kms_panel_fitting@atomic-fastset.html
[515]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-6/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_panel_fitting@legacy:
- shard-rkl: [SKIP][516] ([i915#14544] / [i915#6301]) -> [SKIP][517] ([i915#6301])
[516]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18366/shard-rkl-6/igt@kms_panel_fitting@legacy.html
[517]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-3/igt@kms_panel_fitting@legacy.html
* igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping:
- shard-rkl: [SKIP][518] ([i915#15709]) -> [SKIP][519] ([i915#14544] / [i915#15709]) +2 other tests skip
[518]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18366/shard-rkl-5/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping.html
[519]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-yf-tiled-modifier:
- shard-rkl: [SKIP][520] ([i915#14544] / [i915#15709]) -> [SKIP][521] ([i915#15709]) +3 other tests skip
[520]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18366/shard-rkl-6/igt@kms_plane@pixel-format-yf-tiled-modifier.html
[521]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-2/igt@kms_plane@pixel-format-yf-tiled-modifier.html
* igt@kms_plane_multiple@2x-tiling-4:
- shard-rkl: [SKIP][522] ([i915#13958]) -> [SKIP][523] ([i915#13958] / [i915#14544])
[522]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18366/shard-rkl-5/igt@kms_plane_multiple@2x-tiling-4.html
[523]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-6/igt@kms_plane_multiple@2x-tiling-4.html
* igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a:
- shard-rkl: [SKIP][524] ([i915#15329]) -> [SKIP][525] ([i915#14544] / [i915#15329]) +3 other tests skip
[524]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18366/shard-rkl-4/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a.html
[525]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-6/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a.html
* igt@kms_pm_dc@dc5-retention-flops:
- shard-rkl: [SKIP][526] ([i915#14544] / [i915#3828]) -> [SKIP][527] ([i915#3828])
[526]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18366/shard-rkl-6/igt@kms_pm_dc@dc5-retention-flops.html
[527]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-8/igt@kms_pm_dc@dc5-retention-flops.html
* igt@kms_pm_dc@dc6-psr:
- shard-rkl: [SKIP][528] ([i915#15948]) -> [SKIP][529] ([i915#14544] / [i915#15948]) +1 other test skip
[528]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18366/shard-rkl-2/igt@kms_pm_dc@dc6-psr.html
[529]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-6/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_dc@dc9-dpms:
- shard-tglu: [SKIP][530] ([i915#15128]) -> [SKIP][531] ([i915#15739])
[530]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18366/shard-tglu-6/igt@kms_pm_dc@dc9-dpms.html
[531]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-tglu-3/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf:
- shard-rkl: [SKIP][532] ([i915#11520]) -> [SKIP][533] ([i915#11520] / [i915#14544]) +1 other test skip
[532]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18366/shard-rkl-3/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf.html
[533]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-6/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf:
- shard-rkl: [SKIP][534] ([i915#11520] / [i915#14544]) -> [SKIP][535] ([i915#11520]) +3 other tests skip
[534]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18366/shard-rkl-6/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html
[535]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-7/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-rkl: [SKIP][536] ([i915#9683]) -> [SKIP][537] ([i915#14544] / [i915#9683])
[536]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18366/shard-rkl-4/igt@kms_psr2_su@page_flip-xrgb8888.html
[537]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-6/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@psr2-cursor-plane-move:
- shard-rkl: [SKIP][538] ([i915#1072] / [i915#9732]) -> [SKIP][539] ([i915#1072] / [i915#14544] / [i915#9732]) +10 other tests skip
[538]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18366/shard-rkl-5/igt@kms_psr@psr2-cursor-plane-move.html
[539]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-6/igt@kms_psr@psr2-cursor-plane-move.html
* igt@kms_psr@psr2-sprite-mmap-cpu:
- shard-rkl: [SKIP][540] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][541] ([i915#1072] / [i915#9732]) +7 other tests skip
[540]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18366/shard-rkl-6/igt@kms_psr@psr2-sprite-mmap-cpu.html
[541]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-7/igt@kms_psr@psr2-sprite-mmap-cpu.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-rkl: [SKIP][542] ([i915#14544] / [i915#15949]) -> [SKIP][543] ([i915#15949])
[542]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18366/shard-rkl-6/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
[543]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-7/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-0:
- shard-rkl: [SKIP][544] ([i915#5289]) -> [SKIP][545] ([i915#14544] / [i915#5289])
[544]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18366/shard-rkl-2/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html
[545]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-6/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
- shard-dg2: [SKIP][546] ([i915#15867] / [i915#5190]) -> [SKIP][547] ([i915#12755] / [i915#15867] / [i915#5190])
[546]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18366/shard-dg2-10/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
[547]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-dg2-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
* igt@kms_scaling_modes@scaling-mode-none:
- shard-rkl: [SKIP][548] ([i915#3555]) -> [SKIP][549] ([i915#14544] / [i915#3555]) +2 other tests skip
[548]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18366/shard-rkl-2/igt@kms_scaling_modes@scaling-mode-none.html
[549]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-6/igt@kms_scaling_modes@scaling-mode-none.html
* igt@kms_vrr@flip-suspend:
- shard-rkl: [SKIP][550] ([i915#15243] / [i915#3555]) -> [SKIP][551] ([i915#14544] / [i915#15243] / [i915#3555])
[550]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18366/shard-rkl-8/igt@kms_vrr@flip-suspend.html
[551]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-6/igt@kms_vrr@flip-suspend.html
* igt@perf@gen8-unprivileged-single-ctx-counters:
- shard-rkl: [SKIP][552] ([i915#2436]) -> [SKIP][553] ([i915#14544] / [i915#2436])
[552]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18366/shard-rkl-8/igt@perf@gen8-unprivileged-single-ctx-counters.html
[553]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-6/igt@perf@gen8-unprivileged-single-ctx-counters.html
* igt@perf@per-context-mode-unprivileged:
- shard-rkl: [SKIP][554] ([i915#14544] / [i915#2435]) -> [SKIP][555] ([i915#2435])
[554]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18366/shard-rkl-6/igt@perf@per-context-mode-unprivileged.html
[555]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-5/igt@perf@per-context-mode-unprivileged.html
* igt@prime_vgem@basic-fence-read:
- shard-rkl: [SKIP][556] ([i915#14544] / [i915#3291] / [i915#3708]) -> [SKIP][557] ([i915#3291] / [i915#3708])
[556]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18366/shard-rkl-6/igt@prime_vgem@basic-fence-read.html
[557]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-7/igt@prime_vgem@basic-fence-read.html
* igt@prime_vgem@fence-read-hang:
- shard-rkl: [SKIP][558] ([i915#3708]) -> [SKIP][559] ([i915#14544] / [i915#3708]) +1 other test skip
[558]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18366/shard-rkl-5/igt@prime_vgem@fence-read-hang.html
[559]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-6/igt@prime_vgem@fence-read-hang.html
* igt@sriov_basic@enable-vfs-autoprobe-on:
- shard-rkl: [SKIP][560] ([i915#9917]) -> [SKIP][561] ([i915#14544] / [i915#9917])
[560]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18366/shard-rkl-2/igt@sriov_basic@enable-vfs-autoprobe-on.html
[561]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/shard-rkl-6/igt@sriov_basic@enable-vfs-autoprobe-on.html
[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#10538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10538
[i915#10553]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10553
[i915#10647]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#10826]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10826
[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#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
[i915#1187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1187
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#12169]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12169
[i915#12178]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12178
[i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313
[i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316
[i915#12358]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12358
[i915#1257]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257
[i915#12655]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12655
[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#12756]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12756
[i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805
[i915#13008]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13008
[i915#13026]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13026
[i915#13027]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13027
[i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046
[i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049
[i915#13179]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13179
[i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356
[i915#13409]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13409
[i915#13476]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13476
[i915#13520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13520
[i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566
[i915#13688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13688
[i915#13691]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13691
[i915#13707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707
[i915#13748]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748
[i915#13781]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13781
[i915#13783]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13783
[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#14152]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14152
[i915#14242]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14242
[i915#14259]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259
[i915#14419]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14419
[i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544
[i915#14600]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14600
[i915#14694]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14694
[i915#14702]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14702
[i915#15073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073
[i915#15102]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102
[i915#15106]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15106
[i915#15128]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15128
[i915#15132]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15132
[i915#15172]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15172
[i915#15243]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15243
[i915#15314]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15314
[i915#15329]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15329
[i915#15330]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330
[i915#15389]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15389
[i915#15436]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15436
[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#15500]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15500
[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#15672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15672
[i915#15678]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15678
[i915#15709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709
[i915#15722]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15722
[i915#15726]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15726
[i915#15733]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15733
[i915#15739]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15739
[i915#15804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15804
[i915#15816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15816
[i915#15865]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15865
[i915#15867]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15867
[i915#15944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15944
[i915#15948]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15948
[i915#15949]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15949
[i915#15967]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15967
[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#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190
[i915#2435]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2435
[i915#2436]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2436
[i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
[i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658
[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#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291
[i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299
[i915#3323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3323
[i915#3359]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3359
[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#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804
[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#4235]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4235
[i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
[i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349
[i915#4387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4387
[i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423
[i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525
[i915#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537
[i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812
[i915#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#4854]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4854
[i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860
[i915#4884]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4884
[i915#5107]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5107
[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#5566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5566
[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#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#6412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6412
[i915#6880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880
[i915#7276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7276
[i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707
[i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828
[i915#7862]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7862
[i915#7882]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7882
[i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
[i915#8381]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381
[i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399
[i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428
[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#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814
[i915#8898]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8898
[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#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683
[i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
[i915#9808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9808
[i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809
[i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906
[i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917
[i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8873 -> IGTPW_15056
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_18366: d431883e767cbff24c73721cac729c08579cc4b2 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_15056: 754249326a17737b170fa00c32496fe8b8ba19a5 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
IGT_8873: a5c5d655807ead8204e01754b6434f0ecae40b96 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15056/index.html
[-- Attachment #2: Type: text/html, Size: 185928 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH i-g-t v5] test/intel/xe_vm:Add oversubscribe concurrent bind stress subtest
2026-04-27 2:40 [PATCH i-g-t v5] test/intel/xe_vm:Add oversubscribe concurrent bind stress subtest Sobin Thomas
` (3 preceding siblings ...)
2026-04-27 5:41 ` ✗ i915.CI.Full: " Patchwork
@ 2026-04-27 9:07 ` Hellstrom, Thomas
4 siblings, 0 replies; 6+ messages in thread
From: Hellstrom, Thomas @ 2026-04-27 9:07 UTC (permalink / raw)
To: igt-dev@lists.freedesktop.org, Thomas, Sobin; +Cc: Sharma, Nishit
Hi,
Attaching an review from Claude with review-prompts:
Thanks,
Thomas
commit e43b1bbe229b268bc5e5f3e1213e067d4ac8c4b2
Author: Sobin Thomas <sobin.thomas@intel.com>
test/intel/xe_vm:Add oversubscribe concurrent bind stress subtest
Adds a multi-process stress subtest that oversubscribes VRAM, binds
large BOs from each child process simultaneously, and verifies GPU
workloads complete correctly under eviction pressure.
> diff --git a/tests/intel/xe_vm.c b/tests/intel/xe_vm.c
> index d75b0730d..5246a854a 100644
> --- a/tests/intel/xe_vm.c
> +++ b/tests/intel/xe_vm.c
[ ... ]
> +static uint64_t *
> +vm_bind_bo_batch(int fd, struct xe_test_ctx *ctx, struct gem_bo
*bos, int size)
> +{
> + uint64_t *ufence;
> + struct drm_xe_sync bind_sync;
> + struct drm_xe_vm_bind_op binds[size];
> + int i;
> +
> + ufence = calloc(1, sizeof(uint64_t));
> + *ufence = 0;
> + igt_assert(ufence != MAP_FAILED);
Does this dereference ufence before checking it? calloc() returns NULL
on failure, not MAP_FAILED. The dereference (*ufence = 0) happens
before the assert, and the assert checks for the wrong sentinel value.
If calloc() fails, *ufence = 0 crashes before the assert is reached.
And even if the order were swapped, NULL != MAP_FAILED would cause the
assert to pass with a NULL pointer.
Should this be igt_assert(ufence) placed before the first dereference?
> + *ufence = 0;
[ ... ]
> +static void create_test_bos(int fd, struct xe_test_ctx *ctx,
> + struct mem_bind_sync *bind,
> + uint32_t placement, uint64_t *addr)
> +{
> + ret = __xe_bo_create_caching(fd, ctx->vm_id, bo->size,
> + placement, 0,
> +
DRM_XE_GEM_CPU_CACHING_WC,
> + &bo->handle);
> + if (ret == -ENOMEM || ret == -ENOSPC) {
> + bind->n_bufs = i;/* stop creating more */
Can this OOM path ever be reached?
__xe_bo_create_caching() calls ___xe_bo_create() which returns the raw
result of igt_ioctl():
err = igt_ioctl(fd, DRM_IOCTL_XE_GEM_CREATE, &create);
if (err)
return err;
igt_ioctl() is drmIoctl(), which returns -1 on ioctl failure, not
-errno. So ret will be -1 on any allocation failure, never -ENOMEM
(-12) or -ENOSPC (-28).
Compare with ___xe_vm_bind() which does this correctly:
if (igt_ioctl(fd, DRM_IOCTL_XE_VM_BIND, &bind))
return -errno;
With ___xe_bo_create() missing the -errno conversion, the ENOMEM/ENOSPC
check here is dead code. Any BO allocation failure silently continues
the loop with bo->handle left at 0 (from calloc zero-fill), and
bind->n_bufs is never reduced to reflect the actual number of
successfully created BOs.
[ ... ]
> + if (n_vram_bufs)
> + vram_bind.binds_ufence = vm_bind_bo_batch(fd,
&ctx, vram_bufs,
> +
n_vram_bufs);
> +
> + if (n_sram_bufs)
> + sram_bind.binds_ufence = vm_bind_bo_batch(fd,
&ctx, sram_bufs,
> +
n_sram_bufs);
Once the OOM detection in create_test_bos() is fixed, this becomes a
problem. create_test_bos() may reduce vram_bind.n_bufs when allocation
fails partway through, but vm_bind_bo_batch() is called with the
original n_vram_bufs count.
vm_bind_bo_batch() then builds bind ops for BOs that were never
created, with handle=0. xe_vm_bind_array() asserts that the ioctl
succeeds, so a bind with an invalid handle aborts the child process
rather than being handled gracefully.
Should the count argument use vram_bind.n_bufs and sram_bind.n_bufs
after create_test_bos() updates them?
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2026-04-27 9:07 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-04-27 2:40 [PATCH i-g-t v5] test/intel/xe_vm:Add oversubscribe concurrent bind stress subtest Sobin Thomas
2026-04-27 3:54 ` ✓ Xe.CI.BAT: success for " Patchwork
2026-04-27 3:54 ` ✓ i915.CI.BAT: " Patchwork
2026-04-27 5:01 ` ✗ Xe.CI.FULL: failure " Patchwork
2026-04-27 5:41 ` ✗ i915.CI.Full: " Patchwork
2026-04-27 9:07 ` [PATCH i-g-t v5] " Hellstrom, Thomas
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox