* [PATCH v4 i-g-t 0/1] tests/intel/xe_evict: overcommit tests for fault-mode and non-fault-mode VMs
@ 2026-02-05 3:50 Sobin Thomas
2026-02-05 3:50 ` [PATCH v4 i-g-t 1/1] " Sobin Thomas
` (5 more replies)
0 siblings, 6 replies; 7+ messages in thread
From: Sobin Thomas @ 2026-02-05 3:50 UTC (permalink / raw)
To: igt-dev; +Cc: nishit.sharma, thomas.hellstrom, Sobin Thomas
The existing tests in xe_evict focuses on system-wide memory allocation
across multiple processes. However, OOM error handling in different VM
modes was not being tested, and the previous test_svm_overcommit() had
a critical bug that prevented proper overcommit scenarios.
Add three new tests to verify graceful OOM failure handling:
- test_evict_oom(): Allocates BOs aggressively in a loop until
OOM occurs. Tests error handling in LR mode and expects
-ENOSPC or -ENOMEM.
- test_vm_nonfault_mode_overcommit(): Verifies that non-fault mode VMs
properly reject overcommit attempts with -ENOSPC or -ENOMEM as
expected.
- test_vm_fault_mode_overcommit(): Validates that fault-mode VMs can
handle memory pressure gracefully by touching pages to trigger page
faults.
Signed-off-by: Sobin Thomas <sobin.thomas@intel.com>
Sobin Thomas (1):
tests/intel/xe_evict: overcommit tests for fault-mode and
non-fault-mode VMs
tests/intel/xe_evict.c | 689 ++++++++++++++++++++++++++++++++++++++++-
1 file changed, 687 insertions(+), 2 deletions(-)
--
2.52.0
^ permalink raw reply [flat|nested] 7+ messages in thread* [PATCH v4 i-g-t 1/1] tests/intel/xe_evict: overcommit tests for fault-mode and non-fault-mode VMs 2026-02-05 3:50 [PATCH v4 i-g-t 0/1] tests/intel/xe_evict: overcommit tests for fault-mode and non-fault-mode VMs Sobin Thomas @ 2026-02-05 3:50 ` Sobin Thomas 2026-02-05 5:54 ` ✓ Xe.CI.BAT: success for tests/intel/xe_evict: overcommit tests for fault-mode and non-fault-mode VMs (rev3) Patchwork ` (4 subsequent siblings) 5 siblings, 0 replies; 7+ messages in thread From: Sobin Thomas @ 2026-02-05 3:50 UTC (permalink / raw) To: igt-dev; +Cc: nishit.sharma, thomas.hellstrom, Sobin Thomas The existing tests in xe_evict focuses on system-wide memory allocation across multiple processes. However, OOM error handling in different VM modes was not being tested, and the previous test_svm_overcommit() had a critical bug that prevented proper overcommit scenarios. Add three new tests to verify graceful OOM failure handling: - test_evict_oom(): Allocates BOs aggressively in a loop until OOM occurs. Tests error handling in LR mode and expects -ENOSPC or -ENOMEM. - test_vm_nonfault_mode_overcommit(): Verifies that non-fault mode VMs properly reject overcommit attempts with -ENOSPC or -ENOMEM as expected. - test_vm_fault_mode_overcommit(): Validates that fault-mode VMs can handle memory pressure gracefully by touching pages to trigger page faults. Signed-off-by: Sobin Thomas <sobin.thomas@intel.com> --- tests/intel/xe_evict.c | 689 ++++++++++++++++++++++++++++++++++++++++- 1 file changed, 687 insertions(+), 2 deletions(-) diff --git a/tests/intel/xe_evict.c b/tests/intel/xe_evict.c index 82a6cde0a..f60b0ad03 100644 --- a/tests/intel/xe_evict.c +++ b/tests/intel/xe_evict.c @@ -1,4 +1,5 @@ // SPDX-License-Identifier: MIT +// /* * Copyright © 2021 Intel Corporation */ @@ -32,6 +33,8 @@ #define BIND_EXEC_QUEUE (0x1 << 6) #define MULTI_QUEUE (0x1 << 7) #define PRIORITY (0x1 << 8) +#define USER_FENCE_VALUE 0xdeadbeefdeadbeefull +#define BATCH_BO_SIZE 0x1000 static void test_evict(int fd, struct drm_xe_engine_class_instance *eci, @@ -235,8 +238,8 @@ test_evict(int fd, struct drm_xe_engine_class_instance *eci, static void test_evict_cm(int fd, struct drm_xe_engine_class_instance *eci, - int n_exec_queues, int n_execs, size_t bo_size, unsigned long flags, - pthread_barrier_t *barrier) + int n_exec_queues, int n_execs, size_t bo_size, unsigned long flags, + pthread_barrier_t *barrier) { uint32_t vm, vm2; uint32_t bind_exec_queues[2] = { 0, 0 }; @@ -415,6 +418,626 @@ test_evict_cm(int fd, struct drm_xe_engine_class_instance *eci, drm_close_driver(fd); } +static void +test_vm_nonfault_mode_overcommit(int fd, struct drm_xe_engine_class_instance *eci, + uint64_t system_size, uint64_t vram_size, + uint64_t overcommit_multiplier) +{ + uint64_t overcommit_size; + uint32_t vm; + uint32_t *bos; + int num_bos; + size_t nf_bo_size = 64 * 1024 * 1024; // 64MB per BO + uint32_t batch_bo; + uint32_t exec_queue; + uint64_t batch_addr = 0x200000000; + int create_ret; + int bind_err; + int i; + int res; + uint32_t bind_exec_queue; + uint64_t data_addr = 0x300000000; + + struct drm_xe_sync bind_sync[1] = { + { + .type = DRM_XE_SYNC_TYPE_USER_FENCE, + .flags = DRM_XE_SYNC_FLAG_SIGNAL, + .timeline_value = USER_FENCE_VALUE }, + }; + struct drm_xe_sync exec_sync[1] = { + { + .type = DRM_XE_SYNC_TYPE_SYNCOBJ, + .flags = DRM_XE_SYNC_FLAG_SIGNAL + }, + }; + + struct drm_xe_exec exec = { + .num_batch_buffer = 1, + .num_syncs = 1, + .syncs = to_user_pointer(exec_sync), + }; + + struct { + uint32_t batch[16]; + } *batch_data; + int b; + + bool overcommit_detected = false; + + overcommit_size = ALIGN(vram_size * overcommit_multiplier, 4096); + + /* Limit overcommit to available memory to avoid OOM killer */ + if (overcommit_size > system_size) { + igt_debug("Limiting overcommit size from %llu MB to %llu MB (available)\n", + (unsigned long long)(overcommit_size >> 20), + (unsigned long long)(system_size >> 20)); + overcommit_size = ALIGN(system_size, 4096); + } + + num_bos = (overcommit_size / nf_bo_size) + 1; + bos = calloc(num_bos, sizeof(*bos)); + igt_assert(bos); + + igt_debug("Non-fault mode overcommit test: allocating %d BOs of %llu MB each, total=%llu MB, vram=%llu MB\n", + num_bos, (unsigned long long)(nf_bo_size >> 20), + (unsigned long long)(num_bos * nf_bo_size >> 20), + (unsigned long long)(vram_size >> 20)); + + /* Create the vm in non fault mode*/ + vm = xe_vm_create(fd, 0, 0); + igt_assert(vm); + bind_exec_queue = xe_bind_exec_queue_create(fd, vm, 0); + + /* Create multiple BOs with VRAM-only placement to force overcommit */ + for (i = 0; i < num_bos; i++) { + struct { + uint64_t vm_sync; + } *data; + + create_ret = __xe_bo_create(fd, vm, nf_bo_size, + vram_memory(fd, eci->gt_id), + DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM, + NULL, &bos[i]); + if (create_ret) { + igt_debug("BO create failed at %d/%d with error %d (%s)" + "overcommit detected\n", + i, num_bos, -create_ret, strerror(-create_ret)); + igt_assert_f(create_ret == -ENOMEM || create_ret == -ENOSPC || + create_ret == -E2BIG || create_ret == -EPERM, + "Unexpected error"); + overcommit_detected = true; + num_bos = i; // Reduce to successfully created BOs + break; + } + + data = xe_bo_map(fd, bos[i], 4096); + bind_sync[0].addr = to_user_pointer(&data->vm_sync); + + bind_err = __xe_vm_bind(fd, vm, bind_exec_queue, bos[i], 0, + data_addr + (i * nf_bo_size), nf_bo_size, + DRM_XE_VM_BIND_OP_MAP, 0, bind_sync, 1, 0, 0, 0); + if (bind_err) { + igt_debug("Bind failed at %d/%d with error %d (%s)\n", + i, num_bos, -bind_err, strerror(-bind_err)); + igt_assert_f(bind_err == -ENOMEM || + bind_err == -ENOSPC || bind_err == -EPERM, + "Unexpected bind error %d (%s)\n", + -bind_err, strerror(-bind_err)); + munmap(data, 4096); + gem_close(fd, bos[i]); + bos[i] = 0; + overcommit_detected = true; + num_bos = i; + break; + } + + xe_wait_ufence(fd, &data->vm_sync, USER_FENCE_VALUE, + bind_exec_queue, 20 * NSEC_PER_SEC); + munmap(data, 4096); + + igt_debug("Created and bound BO %d/%d at 0x%llx\n", + i + 1, num_bos, (unsigned long long)(data_addr + (i * nf_bo_size))); + } + + if (overcommit_detected) + igt_debug("Non-fault mode correctly rejected overcommit (created %d/%d BOs)\n", + num_bos, (int)((overcommit_size / nf_bo_size) + 1)); + else + igt_debug("Warning: All BOs created successfully - system may have had enough memory\n"); + + /* Create batch buffer */ + + batch_bo = xe_bo_create(fd, vm, 0x1000, + vram_memory(fd, eci->gt_id), + DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM); + batch_data = xe_bo_map(fd, batch_bo, 0x1000); + xe_vm_bind_sync(fd, vm, batch_bo, 0, batch_addr, 0x1000); + + /* Create exec queue */ + exec_queue = xe_exec_queue_create(fd, vm, eci, 0); + exec_sync[0].handle = syncobj_create(fd, 0); + + /* Use GPU to write to each BO - this will trigger page faults and migration */ + for (i = 0; i < num_bos; i++) { + for (uint64_t off = 0; off < nf_bo_size; off += 4096) { + uint64_t target_addr = data_addr + (i * nf_bo_size) + off; + + b = 0; + batch_data->batch[b++] = MI_STORE_DWORD_IMM_GEN4; + batch_data->batch[b++] = target_addr & 0xFFFFFFFF; + batch_data->batch[b++] = (target_addr >> 32) & 0xFFFFFFFF; + batch_data->batch[b++] = 0xBB; + batch_data->batch[b++] = MI_BATCH_BUFFER_END; + + /* Submit batch */ + exec.exec_queue_id = exec_queue; + exec.address = batch_addr; + // Wait for previous batch to complete (except on first iteration) + if (off != 0 || i != 0) + igt_assert(syncobj_wait(fd, &exec_sync[0].handle, + 1, INT64_MAX, 0, NULL)); + + syncobj_reset(fd, &exec_sync[0].handle, 1); + res = igt_ioctl(fd, DRM_IOCTL_XE_EXEC, &exec); + if (res != 0) { + if (errno == ENOMEM || errno == ENOSPC) { + igt_debug("Expected Fault ! GPU execution failed"); + goto gpu_done; + } else { + igt_assert("Error in execution"); + } + } + + if (!syncobj_wait(fd, &exec_sync[0].handle, 1, INT64_MAX, 0, NULL)) { + igt_debug("Batch wait failed - memory exhausted" + " BO %d offset 0x%lx\n", i, off); + goto gpu_done; + } + + igt_debug("Accessed BO %d/%d via GPU\n", i + 1, num_bos); + } + } + igt_debug("Fault mode overcommit test completed successfully\n"); + +gpu_done: + igt_debug("GPU access test completed - overcommit correctly detected\n"); + + /* Cleanup */ + syncobj_destroy(fd, exec_sync[0].handle); + xe_exec_queue_destroy(fd, exec_queue); + xe_exec_queue_destroy(fd, bind_exec_queue); + munmap(batch_data, 0x1000); + gem_close(fd, batch_bo); + + for (i = 0; i < num_bos; i++) { + if (bos[i]) + gem_close(fd, bos[i]); + } + + free(bos); + xe_vm_destroy(fd, vm); +} + +static void test_vm_fault_mode_overcommit(int fd, struct drm_xe_engine_class_instance *eci, + uint64_t system_size, uint64_t vram_size, + uint64_t overcommit_multiplier) +{ + uint64_t overcommit_size; + uint32_t vm; + uint32_t *bos; + int num_bos; + uint64_t off; + size_t nf_bo_size = 64 * 1024 * 1024; // 64MB per BO + uint32_t batch_bo; + size_t sync_size; + uint32_t bind_exec_queue; + uint64_t sync_addr = 0x101a0000; + uint64_t batch_addr = 0x200000000; + uint64_t data_addr = 0x300000000; + uint32_t exec_queue; + uint64_t stride = 1024 * 1024; + int64_t timeout = 20 * NSEC_PER_SEC; + int i, b; + int create_ret; + int64_t ret; + int bind_err; + int res; + bool overcommit_detected = false; + + struct drm_xe_sync bind_sync[1] = { + { + .type = DRM_XE_SYNC_TYPE_USER_FENCE, + .flags = DRM_XE_SYNC_FLAG_SIGNAL, + .timeline_value = USER_FENCE_VALUE + }, + }; + + struct drm_xe_sync sync[1] = { + { + .type = DRM_XE_SYNC_TYPE_USER_FENCE, + .flags = DRM_XE_SYNC_FLAG_SIGNAL, + .timeline_value = USER_FENCE_VALUE }, + }; + + struct { + uint32_t batch[16]; + uint64_t pad; + uint32_t data; + uint64_t vm_sync; + } *batch_data; + + uint64_t *exec_sync; + struct drm_xe_exec exec = { + .num_batch_buffer = 1, + .num_syncs = 1, + .syncs = to_user_pointer(sync), + }; + + igt_debug("Starting fault-mode overcommit test\n"); + + overcommit_size = ALIGN(vram_size * overcommit_multiplier, 4096); + + if (overcommit_size > system_size) { + igt_debug("Limiting overcommit size from %llu MB to %llu MB\n", + (unsigned long long)(overcommit_size >> 20), + (unsigned long long)(system_size >> 20)); + overcommit_size = ALIGN(system_size, 4096); + } + + num_bos = (overcommit_size / nf_bo_size) + 1; + bos = calloc(num_bos, sizeof(*bos)); + igt_assert(bos); + + igt_debug("Fault mode: BO of %llu MB containing %d structures" + "(target overcommit=%llu MB, vram=%llu MB)\n", + (unsigned long long)(nf_bo_size >> 20), num_bos, + (unsigned long long)(overcommit_size >> 20), + (unsigned long long)(vram_size >> 20)); + + /* Create fault-mode VM */ + vm = xe_vm_create(fd, DRM_XE_VM_CREATE_FLAG_LR_MODE | + DRM_XE_VM_CREATE_FLAG_FAULT_MODE, 0); + igt_assert(vm); + + bind_exec_queue = xe_bind_exec_queue_create(fd, vm, 0); + /* Create exec_sync area */ + sync_size = sizeof(*exec_sync) * num_bos; + sync_size = xe_bb_size(fd, sync_size); + + exec_sync = mmap(NULL, sync_size, PROT_READ | PROT_WRITE, + MAP_SHARED | MAP_ANONYMOUS, -1, 0); + igt_assert(exec_sync != MAP_FAILED); + memset(exec_sync, 0, sync_size); + + for (i = 0; i < num_bos; i++) { + struct { + uint64_t vm_sync; + } *data; + + /* CREATE BO - should succeed now with reasonable size */ + //bo is created here of size nf_bo_size + // nf_bo_size is 64 MB + // Creating a buffer object of 64 MB size + // In a loop we are creating multiple BOs of 64 MB size + create_ret = __xe_bo_create(fd, 0, nf_bo_size, + vram_if_possible(fd, eci->gt_id), + DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM, + NULL, &bos[i]); + if (create_ret) { + igt_debug("BO create failed with error %d (%s)n\n", + -create_ret, strerror(-create_ret)); + igt_assert_f(create_ret == -ENOMEM || create_ret == -ENOSPC || + create_ret == -E2BIG || create_ret == -EPERM, + "Unexpected error %d (%s)\n", -create_ret, + strerror(-create_ret)); + overcommit_detected = true; + num_bos = i; // Reduce to successfully created BOs + break; + } + igt_debug("BO created successfully - %llu MB\n", + (unsigned long long)(nf_bo_size >> 20)); + + /* MAP BO */ + data = xe_bo_map(fd, bos[i], 4096); + memset(data, 0, 4096); + bind_sync[0].addr = to_user_pointer(&data->vm_sync); + + /* Here we are binging the bos to the bind_exec_queue*/ + bind_err = __xe_vm_bind(fd, vm, bind_exec_queue, bos[i], 0, + data_addr + (i * nf_bo_size), nf_bo_size, + DRM_XE_VM_BIND_OP_MAP, 0, bind_sync, 1, 0, 0, 0); + if (bind_err) { + igt_debug("Bind failed at %d/%d with error %d (%s) -" + "overcommit detected at bind\n", + i, num_bos, -bind_err, strerror(-bind_err)); + igt_assert_f(bind_err == -ENOMEM || bind_err == -ENOSPC || + bind_err == -EPERM, + "Unexpected bind error %d (%s)\n", -bind_err, + strerror(-bind_err)); + munmap(data, 4096); + gem_close(fd, bos[i]); + bos[i] = 0; + overcommit_detected = true; + num_bos = i; + break; + } + xe_wait_ufence(fd, &data->vm_sync, USER_FENCE_VALUE, bind_exec_queue, + 20 * NSEC_PER_SEC); + munmap(data, 4096); + igt_debug("Created and bound BO %d/%d at 0x%llx\n", + i + 1, num_bos, (unsigned long long)(data_addr + (i * nf_bo_size))); + } // End for loop + if (overcommit_detected) + igt_debug("Non-fault mode correctly rejected overcommit"); + else + igt_debug("All BOs created successfully\n"); + + /* Create batch buffer */ + batch_bo = xe_bo_create(fd, vm, 0x1000, + vram_memory(fd, eci->gt_id), + DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM); + batch_data = xe_bo_map(fd, batch_bo, 0x1000); + memset(batch_data, 0, 0x1000); + + /* Bind batch buffer using async bind (fault mode requires this) */ + batch_data[0].vm_sync = 0; + sync[0].addr = to_user_pointer(&batch_data[0].vm_sync); + xe_vm_bind_userptr_async(fd, vm, bind_exec_queue, + to_user_pointer(exec_sync), sync_addr, + sync_size, sync, 1); + xe_wait_ufence(fd, &batch_data[0].vm_sync, USER_FENCE_VALUE, + bind_exec_queue, NSEC_PER_SEC); + xe_vm_bind_async(fd, vm, bind_exec_queue, batch_bo, 0, batch_addr, + 0x1000, sync, 1); + xe_wait_ufence(fd, &batch_data[0].vm_sync, USER_FENCE_VALUE, + bind_exec_queue, NSEC_PER_SEC); + + igt_debug("VM binds done - exec_sync at 0x%llx, batch_bo at 0x%llx\n", + (unsigned long long)sync_addr, (unsigned long long)batch_addr); + + /* Create exec queue */ + exec_queue = xe_exec_queue_create(fd, vm, eci, 0); + //exec_sync[0].handle = syncobj_create(fd, 0); + + /* Use GPU to write to each BO - this will trigger page faults and migration */ + for (i = 0; i < num_bos; i++) { + igt_debug("Writing to BO %d/%d via GPU\n", i + 1, num_bos); + for (off = 0; off < nf_bo_size; off += stride) { + uint64_t target_addr = data_addr + (i * nf_bo_size) + off; + + b = 0; + batch_data->batch[b++] = MI_STORE_DWORD_IMM_GEN4; + batch_data->batch[b++] = target_addr & 0xFFFFFFFF; + batch_data->batch[b++] = (target_addr >> 32) & 0xFFFFFFFF; + batch_data->batch[b++] = 0xBB; + batch_data->batch[b++] = MI_BATCH_BUFFER_END; + + /* Submit batch */ + exec_sync[0] = 0; + sync[0].addr = sync_addr; + exec.exec_queue_id = exec_queue; + exec.address = batch_addr; + // Wait for previous batch to complete (except on first iteration) + + res = igt_ioctl(fd, DRM_IOCTL_XE_EXEC, &exec); + if (res != 0) { + if (errno == ENOMEM || errno == ENOSPC) { + igt_debug("Expected Fault ! GPU execution failed with errno %d (%s)" + "- memory exhausted\n", errno, strerror(errno)); + goto gpu_done; + } + } + ret = __xe_wait_ufence(fd, &exec_sync[0], USER_FENCE_VALUE, exec_queue, + &timeout); + if (ret != 0) { + igt_debug("Batch wait failed - memory exhausted at BO %d offset 0x%lx\n", + i, off); + goto gpu_done; + } + } + igt_debug("Accessed BO %d/%d via GPU\n", i + 1, num_bos); + } + igt_debug("All batches submitted - waiting for GPU completion\n"); + + /* Verify GPU writes by reading back from BOs */ + igt_debug("Verifying GPU writes to BOs...\n"); + for (i = 0; i < num_bos; i++) { + uint32_t *verify_data; + int errors = 0; + + /* Map the BO to read back data */ + verify_data = xe_bo_map(fd, bos[i], nf_bo_size); + + for (off = 0; off < nf_bo_size; off += stride) { + uint32_t expected = 0xBB; + uint32_t actual = verify_data[off / 4]; /* Read at page boundary */ + + if (actual != expected) { + if (errors < 5) { /* Limit error output */ + igt_warn("Mismatch at BO %d offset 0x%llx:" + "expected 0x%x, got 0x%x\n", + i, (unsigned long long)off, + expected, actual); + } + errors++; + } + } + + munmap(verify_data, nf_bo_size); + if (errors == 0) { + igt_debug("BO %d/%d verified successfully - all %llu pages correct\n", + i + 1, num_bos, (unsigned long long)(nf_bo_size / stride)); + } else { + igt_debug("BO %d/%d had %d errors out of %llu pages\n", + i + 1, num_bos, errors, (unsigned long long)(nf_bo_size / stride)); + } +} + +gpu_done: + + igt_debug("GPU access test completed - overcommit correctly detected\n"); + /* Cleanup */ + xe_exec_queue_destroy(fd, exec_queue); + xe_exec_queue_destroy(fd, bind_exec_queue); + munmap(batch_data, 0x1000); + gem_close(fd, batch_bo); + munmap(exec_sync, sync_size); + for (i = 0; i < num_bos; i++) { + if (bos[i]) + gem_close(fd, bos[i]); + } + + free(bos); + xe_vm_destroy(fd, vm); +} + +static int +test_evict_oom(int fd, struct drm_xe_engine_class_instance *eci, + int n_exec_queues, int n_execs, uint64_t system_size, + size_t bo_size, unsigned long flags) +{ + uint32_t vm; + uint32_t bind_exec_queues[1] = { 0 }; + uint64_t addr = 0x100000000; + uint64_t total_alloc_size; + int bind_err = 0; + uint32_t *bo; + int i; + const size_t min_map_size = 4096; /* Add constant with proper type */ + + struct drm_xe_sync sync[1] = { + { .type = DRM_XE_SYNC_TYPE_USER_FENCE, .flags = DRM_XE_SYNC_FLAG_SIGNAL, + .timeline_value = USER_FENCE_VALUE }, + }; + + /* Calculate total allocation size - now for full n_execs */ + total_alloc_size = (uint64_t)n_execs * bo_size; + + if (system_size < (total_alloc_size / 4)) { + igt_warn("Insufficient memory to run OOM test safely\n"); + return -ENOMEM; + } + if (total_alloc_size > system_size) { + int safe_n_execs = system_size / bo_size; + + safe_n_execs = ALIGN_DOWN(safe_n_execs, 4); + if (safe_n_execs < 4) { + igt_warn("Not enough memory to run OOM test\n"); + return -ENOMEM; + } + igt_warn("Reducing n_execs from %d to %d to fit in available memory\n", + n_execs, safe_n_execs); + n_execs = safe_n_execs; + total_alloc_size = (uint64_t)n_execs * bo_size; + } + igt_debug("OOM test: n_execs=%d, bo_size=%llu MB, total_alloc=%llu MB, available=%llu MB\n", + n_execs, (unsigned long long)(bo_size >> 20), + (unsigned long long)(total_alloc_size >> 20), + (unsigned long long)(system_size >> 20)); + + /* Allocate array for n_execs BOs */ + bo = calloc(n_execs, sizeof(*bo)); + igt_assert(bo); + + vm = xe_vm_create(fd, DRM_XE_VM_CREATE_FLAG_LR_MODE, 0); + bind_exec_queues[0] = xe_bind_exec_queue_create(fd, vm, 0); + + igt_debug("\n n_execs = %d, bo_size = %zu\n", n_execs, bo_size); + + /* Try to allocate and bind more than available memory */ + for (i = 0; i < n_execs; i++) { + uint32_t __bo; + struct { + uint64_t vm_sync; + } *data; + int create_ret; + size_t map_size; /* Use size_t for map size */ + + /* Use __xe_bo_create to handle allocation failures gracefully */ + create_ret = __xe_bo_create(fd, 0, bo_size, vram_memory(fd, eci->gt_id), + DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM, + NULL, &__bo); + if (create_ret) { + igt_warn("BO create failed at iteration %d with error %d (%s)\n", + i, create_ret, strerror(-create_ret)); + break; + } + + bo[i] = __bo; + /* Calculate map size with same types */ + map_size = sizeof(*data) > min_map_size ? sizeof(*data) : min_map_size; + data = xe_bo_map(fd, __bo, map_size); + sync[0].addr = to_user_pointer(&data->vm_sync); + bind_err = __xe_vm_bind(fd, vm, bind_exec_queues[0], __bo, 0, addr, + bo_size, DRM_XE_VM_BIND_OP_MAP, 0, sync, + 1, 0, 0, 0); + /* Attempt bind - should eventually fail with -ENOSPC or -ENOMEM */ + if (bind_err) { + bind_err = -errno; + igt_warn("Bind failed at iteration %d with error %d (%s)\n", + i, -bind_err, strerror(-bind_err)); + munmap(data, map_size); + gem_close(fd, __bo); + bo[i] = 0; + break; + } + + xe_wait_ufence(fd, &data->vm_sync, USER_FENCE_VALUE, + bind_exec_queues[0], 20 * NSEC_PER_SEC); + + /* Unmap with the same size we used for mapping */ + munmap(data, map_size); + addr += bo_size; + } + + /* Cleanup allocated BOs - iterate through all n_execs */ + for (int j = 0; j < n_execs; j++) { + if (bo[j]) + gem_close(fd, bo[j]); + } + + xe_exec_queue_destroy(fd, bind_exec_queues[0]); + xe_vm_destroy(fd, vm); + free(bo); + + return bind_err; +} + +static unsigned int oom_working_set(uint64_t vram_size, uint64_t system_size, + uint64_t nf_bo_size) +{ + uint64_t target_allocation; + unsigned int set_size; + + /* + * For VRAM eviction testing, we want to allocate MORE than VRAM size + * to force eviction to system memory. Target 150-200% of VRAM. + * The BOs are created with VRAM placement, so they'll initially go to VRAM + * and then get evicted to system when VRAM fills up. + */ + target_allocation = (vram_size * 150) / 100; /* 150% of VRAM */ + + /* But ensure we don't exceed available system memory */ + if (target_allocation > (system_size * 80) / 100) { + target_allocation = (system_size * 80) / 100; + igt_debug("Limited by system memory: reducing target from %llu MB to %llu MB\n", + (unsigned long long)((vram_size * 150 / 100) >> 20), + (unsigned long long)(target_allocation >> 20)); + } + + set_size = target_allocation / nf_bo_size; + + igt_debug("VRAM stress calculation: vram_size=%" PRIu64 " MB, system=%" PRIu64 + "MB, target_alloc=%" PRIu64 " MB (%.1f%% of VRAM), nf_bo_size=%" + PRIu64 " MB, set_size=%u\n", + (uint64_t)(vram_size >> 20), (uint64_t)(system_size >> 20), + (uint64_t)(target_allocation >> 20), + (double)(target_allocation * 100) / vram_size, + (uint64_t)(nf_bo_size >> 20), set_size); + + return ALIGN_DOWN(set_size, 4); +} + struct thread_data { pthread_t thread; pthread_mutex_t *mutex; @@ -722,7 +1345,29 @@ static unsigned int working_set(uint64_t vram_size, uint64_t system_size, * @beng-threads-large: bind exec_queue threads large * */ +/** + * SUBTEST: evict-vm-nonfault-overcommit + * Description: VM non-fault mode overcommit test - expects bind failure + * Test category: functionality test + * Feature: VM bind + */ +/** + * SUBTEST: evict-vm-fault-overcommit + * Description: VM fault mode overcommit test - touch pages to trigger faults + * Test category: functionality test + * Feature: VM bind, fault mode + */ +/** + * SUBTEST: evict-%s + * Description: %arg[1] out-of-memory evict test - expects graceful failure + * Test category: functionality test + * + * arg[1]: + * + * @oom-graceful: OOM graceful failure with small BOs + * @oom-graceful-large: OOM graceful failure with large BOs + */ /* * Table driven test that attempts to cover all possible scenarios of eviction * (small / large objects, compute mode vs non-compute VMs, external BO or BOs @@ -793,6 +1438,17 @@ int igt_main() MULTI_VM }, { NULL }, }; + const struct section_oom { + const char *name; + int n_exec_queues; + int mul; + int div; + unsigned int flags; +} sections_oom[] = { + { "oom-graceful", 1, 1, 128, BIND_EXEC_QUEUE }, + { "oom-graceful-large", 1, 1, 16, BIND_EXEC_QUEUE }, + { NULL }, +}; const struct section_threads { const char *name; int n_threads; @@ -914,6 +1570,14 @@ int igt_main() } } + igt_subtest("evict-vm-nonfault-overcommit") { + test_vm_nonfault_mode_overcommit(fd, hwe, system_size, vram_size, 2); + } + + igt_subtest("evict-vm-fault-overcommit") { + test_vm_fault_mode_overcommit(fd, hwe, system_size, vram_size, 2); + } + for (const struct section_cm *s = sections_cm; s->name; s++) { igt_subtest_f("evict-%s", s->name) { uint64_t bo_size = calc_bo_size(vram_size, s->mul, s->div); @@ -952,6 +1616,27 @@ int igt_main() bo_size, s->flags); } } + for (const struct section_oom *s = sections_oom; s->name; s++) { + igt_subtest_f("evict-%s", s->name) { + uint64_t bo_size = calc_bo_size(vram_size, s->mul, s->div); + int n_execs = oom_working_set(vram_size, system_size, bo_size); + int ret; + + igt_debug("OOM test: n_execs %d, bo_size %" PRIu64 " MiB\n", + n_execs, bo_size >> 20); + + ret = test_evict_oom(fd, hwe, s->n_exec_queues, n_execs, + system_size, bo_size, s->flags); + + /* Accept success or graceful OOM errors */ + igt_assert(ret == 0 || ret == -ENOSPC || ret == -ENOMEM); + if (ret != 0) + igt_debug("Test passed: Got expected error %d (%s)\n", + ret, strerror(-ret)); + else + igt_debug("Test passed: All allocations and binds succeeded\n"); + } +} igt_fixture() drm_close_driver(fd); -- 2.52.0 ^ permalink raw reply related [flat|nested] 7+ messages in thread
* ✓ Xe.CI.BAT: success for tests/intel/xe_evict: overcommit tests for fault-mode and non-fault-mode VMs (rev3) 2026-02-05 3:50 [PATCH v4 i-g-t 0/1] tests/intel/xe_evict: overcommit tests for fault-mode and non-fault-mode VMs Sobin Thomas 2026-02-05 3:50 ` [PATCH v4 i-g-t 1/1] " Sobin Thomas @ 2026-02-05 5:54 ` Patchwork 2026-02-05 6:09 ` ✓ i915.CI.BAT: " Patchwork ` (3 subsequent siblings) 5 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2026-02-05 5:54 UTC (permalink / raw) To: Sobin Thomas; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 1018 bytes --] == Series Details == Series: tests/intel/xe_evict: overcommit tests for fault-mode and non-fault-mode VMs (rev3) URL : https://patchwork.freedesktop.org/series/159996/ State : success == Summary == CI Bug Log - changes from XEIGT_8737_BAT -> XEIGTPW_14498_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (12 -> 12) ------------------------------ No changes in participating hosts Changes ------- No changes found Build changes ------------- * IGT: IGT_8737 -> IGTPW_14498 * Linux: xe-4499-766d92ea1d85ed3d5b5b8da4d29fbf1804f327cb -> xe-4503-8883ec84c85819dacca94997b60371c3ed57ee29 IGTPW_14498: 14498 IGT_8737: 8737 xe-4499-766d92ea1d85ed3d5b5b8da4d29fbf1804f327cb: 766d92ea1d85ed3d5b5b8da4d29fbf1804f327cb xe-4503-8883ec84c85819dacca94997b60371c3ed57ee29: 8883ec84c85819dacca94997b60371c3ed57ee29 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/index.html [-- Attachment #2: Type: text/html, Size: 1577 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* ✓ i915.CI.BAT: success for tests/intel/xe_evict: overcommit tests for fault-mode and non-fault-mode VMs (rev3) 2026-02-05 3:50 [PATCH v4 i-g-t 0/1] tests/intel/xe_evict: overcommit tests for fault-mode and non-fault-mode VMs Sobin Thomas 2026-02-05 3:50 ` [PATCH v4 i-g-t 1/1] " Sobin Thomas 2026-02-05 5:54 ` ✓ Xe.CI.BAT: success for tests/intel/xe_evict: overcommit tests for fault-mode and non-fault-mode VMs (rev3) Patchwork @ 2026-02-05 6:09 ` Patchwork 2026-02-05 8:28 ` [PATCH v4 i-g-t 0/1] tests/intel/xe_evict: overcommit tests for fault-mode and non-fault-mode VMs Hellstrom, Thomas ` (2 subsequent siblings) 5 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2026-02-05 6:09 UTC (permalink / raw) To: Sobin Thomas; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 1594 bytes --] == Series Details == Series: tests/intel/xe_evict: overcommit tests for fault-mode and non-fault-mode VMs (rev3) URL : https://patchwork.freedesktop.org/series/159996/ State : success == Summary == CI Bug Log - changes from IGT_8737 -> IGTPW_14498 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/index.html Participating hosts (43 -> 41) ------------------------------ Missing (2): bat-dg2-13 fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_14498 that come from known issues: ### IGT changes ### #### Possible fixes #### * igt@i915_selftest@live: - bat-mtlp-8: [DMESG-FAIL][1] ([i915#12061]) -> [PASS][2] +1 other test pass [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8737/bat-mtlp-8/igt@i915_selftest@live.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/bat-mtlp-8/igt@i915_selftest@live.html [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8737 -> IGTPW_14498 * Linux: CI_DRM_17933 -> CI_DRM_17935 CI-20190529: 20190529 CI_DRM_17933: 55e3e3aeecf80d9fd2536acd8ed785282be5a7b3 @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_17935: 8883ec84c85819dacca94997b60371c3ed57ee29 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_14498: 14498 IGT_8737: 8737 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/index.html [-- Attachment #2: Type: text/html, Size: 2194 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH v4 i-g-t 0/1] tests/intel/xe_evict: overcommit tests for fault-mode and non-fault-mode VMs 2026-02-05 3:50 [PATCH v4 i-g-t 0/1] tests/intel/xe_evict: overcommit tests for fault-mode and non-fault-mode VMs Sobin Thomas ` (2 preceding siblings ...) 2026-02-05 6:09 ` ✓ i915.CI.BAT: " Patchwork @ 2026-02-05 8:28 ` Hellstrom, Thomas 2026-02-05 19:29 ` ✓ i915.CI.Full: success for tests/intel/xe_evict: overcommit tests for fault-mode and non-fault-mode VMs (rev3) Patchwork 2026-02-05 22:41 ` ✓ Xe.CI.FULL: " Patchwork 5 siblings, 0 replies; 7+ messages in thread From: Hellstrom, Thomas @ 2026-02-05 8:28 UTC (permalink / raw) To: igt-dev@lists.freedesktop.org, Thomas, Sobin; +Cc: Sharma, Nishit Hi, Thomas On Thu, 2026-02-05 at 03:50 +0000, Sobin Thomas wrote: > The existing tests in xe_evict focuses on system-wide memory > allocation > across multiple processes. However, OOM error handling in different > VM > modes was not being tested, and the previous test_svm_overcommit() > had > a critical bug that prevented proper overcommit scenarios. > > Add three new tests to verify graceful OOM failure handling: > > - test_evict_oom(): Allocates BOs aggressively in a loop until > OOM occurs. Tests error handling in LR mode and expects > -ENOSPC or -ENOMEM. > > - test_vm_nonfault_mode_overcommit(): Verifies that non-fault mode > VMs > properly reject overcommit attempts with -ENOSPC or -ENOMEM as > expected. > > - test_vm_fault_mode_overcommit(): Validates that fault-mode VMs can > handle memory pressure gracefully by touching pages to trigger page > faults. > > Signed-off-by: Sobin Thomas <sobin.thomas@intel.com> > > Sobin Thomas (1): > tests/intel/xe_evict: overcommit tests for fault-mode and > non-fault-mode VMs > > tests/intel/xe_evict.c | 689 > ++++++++++++++++++++++++++++++++++++++++- > 1 file changed, 687 insertions(+), 2 deletions(-) What's the relation to the xe_vm@out-of-memory test? Couldn't we build on and possibly extend that? (I also have a modification in the pipe to test this modification: https://patchwork.freedesktop.org/series/161148/ Thanks, Thomas ^ permalink raw reply [flat|nested] 7+ messages in thread
* ✓ i915.CI.Full: success for tests/intel/xe_evict: overcommit tests for fault-mode and non-fault-mode VMs (rev3) 2026-02-05 3:50 [PATCH v4 i-g-t 0/1] tests/intel/xe_evict: overcommit tests for fault-mode and non-fault-mode VMs Sobin Thomas ` (3 preceding siblings ...) 2026-02-05 8:28 ` [PATCH v4 i-g-t 0/1] tests/intel/xe_evict: overcommit tests for fault-mode and non-fault-mode VMs Hellstrom, Thomas @ 2026-02-05 19:29 ` Patchwork 2026-02-05 22:41 ` ✓ Xe.CI.FULL: " Patchwork 5 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2026-02-05 19:29 UTC (permalink / raw) To: Sobin Thomas; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 175142 bytes --] == Series Details == Series: tests/intel/xe_evict: overcommit tests for fault-mode and non-fault-mode VMs (rev3) URL : https://patchwork.freedesktop.org/series/159996/ State : success == Summary == CI Bug Log - changes from CI_DRM_17935_full -> IGTPW_14498_full ==================================================== Summary ------- **WARNING** Minor unknown changes coming with IGTPW_14498_full need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_14498_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_14498/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_14498_full: ### IGT changes ### #### Warnings #### * igt@gem_pxp@hw-rejects-pxp-buffer: - shard-rkl: [SKIP][1] ([i915#13717] / [i915#14544]) -> [FAIL][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-rkl-6/igt@gem_pxp@hw-rejects-pxp-buffer.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-7/igt@gem_pxp@hw-rejects-pxp-buffer.html New tests --------- New tests have been introduced between CI_DRM_17935_full and IGTPW_14498_full: ### New IGT tests (11) ### * igt@i915_pm_rps@bad-flags-handle-to-fd: - Statuses : - Exec time: [None] s * igt@i915_pm_rps@cursor-tearing-position-change: - Statuses : - Exec time: [None] s * igt@i915_pm_rps@fbcpsr-2p-primscrn-spr-indfb-move: - Statuses : - Exec time: [None] s * igt@i915_pm_rps@fbcpsr-rgb101010-draw-mmap-gtt: - Statuses : - Exec time: [None] s * igt@i915_pm_rps@invalid-fence-array: - Statuses : - Exec time: [None] s * igt@i915_pm_rps@lease-invalid-plane: - Statuses : - Exec time: [None] s * igt@i915_pm_rps@pixel-format-x-tiled-modifier-source-clamping: - Statuses : - Exec time: [None] s * igt@i915_pm_rps@psr-2p-scndscrn-shrfb-msflip-blt: - Statuses : - Exec time: [None] s * igt@i915_pm_rps@psr-farfromfence-mmap-gtt: - Statuses : - Exec time: [None] s * igt@i915_pm_rps@short-flip-after-cursor-atomic-transitions: - Statuses : - Exec time: [None] s * igt@i915_pm_rps@torture-move: - Statuses : - Exec time: [None] s Known issues ------------ Here are the changes found in IGTPW_14498_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@crc32: - shard-rkl: NOTRUN -> [SKIP][3] ([i915#6230]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-1/igt@api_intel_bb@crc32.html - shard-tglu: NOTRUN -> [SKIP][4] ([i915#6230]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-tglu-9/igt@api_intel_bb@crc32.html * igt@api_intel_bb@object-reloc-keep-cache: - shard-dg2: NOTRUN -> [SKIP][5] ([i915#8411]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg2-5/igt@api_intel_bb@object-reloc-keep-cache.html - shard-dg1: NOTRUN -> [SKIP][6] ([i915#8411]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg1-12/igt@api_intel_bb@object-reloc-keep-cache.html - shard-mtlp: NOTRUN -> [SKIP][7] ([i915#8411]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-mtlp-1/igt@api_intel_bb@object-reloc-keep-cache.html * igt@device_reset@cold-reset-bound: - shard-tglu: NOTRUN -> [SKIP][8] ([i915#11078]) +1 other test skip [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-tglu-4/igt@device_reset@cold-reset-bound.html * igt@device_reset@unbind-cold-reset-rebind: - shard-rkl: NOTRUN -> [SKIP][9] ([i915#11078]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-5/igt@device_reset@unbind-cold-reset-rebind.html * igt@gem_basic@multigpu-create-close: - shard-rkl: NOTRUN -> [SKIP][10] ([i915#7697]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-5/igt@gem_basic@multigpu-create-close.html - shard-tglu: NOTRUN -> [SKIP][11] ([i915#7697]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-tglu-2/igt@gem_basic@multigpu-create-close.html * igt@gem_busy@semaphore: - shard-mtlp: NOTRUN -> [SKIP][12] ([i915#3936]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-mtlp-8/igt@gem_busy@semaphore.html * igt@gem_ccs@block-copy-compressed: - shard-rkl: NOTRUN -> [SKIP][13] ([i915#3555] / [i915#9323]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-5/igt@gem_ccs@block-copy-compressed.html - shard-tglu: NOTRUN -> [SKIP][14] ([i915#3555] / [i915#9323]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-tglu-2/igt@gem_ccs@block-copy-compressed.html * igt@gem_ccs@block-multicopy-inplace: - shard-tglu-1: NOTRUN -> [SKIP][15] ([i915#3555] / [i915#9323]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-tglu-1/igt@gem_ccs@block-multicopy-inplace.html * igt@gem_ccs@ctrl-surf-copy-new-ctx: - shard-mtlp: NOTRUN -> [SKIP][16] ([i915#9323]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-mtlp-2/igt@gem_ccs@ctrl-surf-copy-new-ctx.html * igt@gem_create@create-ext-cpu-access-big: - shard-tglu: NOTRUN -> [SKIP][17] ([i915#6335]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-tglu-4/igt@gem_create@create-ext-cpu-access-big.html - shard-rkl: NOTRUN -> [SKIP][18] ([i915#14544] / [i915#6335]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-6/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_create@create-ext-cpu-access-sanity-check: - shard-tglu-1: NOTRUN -> [SKIP][19] ([i915#6335]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-tglu-1/igt@gem_create@create-ext-cpu-access-sanity-check.html * igt@gem_ctx_persistence@heartbeat-hang: - shard-mtlp: NOTRUN -> [SKIP][20] ([i915#8555]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-mtlp-8/igt@gem_ctx_persistence@heartbeat-hang.html * igt@gem_ctx_persistence@heartbeat-hostile: - shard-dg2: NOTRUN -> [SKIP][21] ([i915#8555]) +1 other test skip [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg2-3/igt@gem_ctx_persistence@heartbeat-hostile.html * igt@gem_ctx_persistence@processes: - shard-snb: NOTRUN -> [SKIP][22] ([i915#1099]) +1 other test skip [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-snb6/igt@gem_ctx_persistence@processes.html * igt@gem_ctx_persistence@saturated-hostile-nopreempt: - shard-dg2: NOTRUN -> [SKIP][23] ([i915#5882]) +7 other tests skip [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg2-5/igt@gem_ctx_persistence@saturated-hostile-nopreempt.html * igt@gem_ctx_sseu@mmap-args: - shard-tglu: NOTRUN -> [SKIP][24] ([i915#280]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-tglu-9/igt@gem_ctx_sseu@mmap-args.html * igt@gem_eio@reset-stress@blt: - shard-mtlp: NOTRUN -> [SKIP][25] ([i915#15314]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-mtlp-1/igt@gem_eio@reset-stress@blt.html * igt@gem_exec_balancer@bonded-false-hang: - shard-dg2: NOTRUN -> [SKIP][26] ([i915#4812]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg2-1/igt@gem_exec_balancer@bonded-false-hang.html - shard-mtlp: NOTRUN -> [SKIP][27] ([i915#4812]) +1 other test skip [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-mtlp-5/igt@gem_exec_balancer@bonded-false-hang.html * igt@gem_exec_balancer@parallel-balancer: - shard-rkl: NOTRUN -> [SKIP][28] ([i915#14544] / [i915#4525]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-6/igt@gem_exec_balancer@parallel-balancer.html * igt@gem_exec_balancer@parallel-contexts: - shard-tglu: NOTRUN -> [SKIP][29] ([i915#4525]) +1 other test skip [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-tglu-2/igt@gem_exec_balancer@parallel-contexts.html * igt@gem_exec_balancer@parallel-ordering: - shard-rkl: NOTRUN -> [SKIP][30] ([i915#4525]) +3 other tests skip [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-4/igt@gem_exec_balancer@parallel-ordering.html - shard-tglu-1: NOTRUN -> [SKIP][31] ([i915#4525]) +1 other test skip [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-tglu-1/igt@gem_exec_balancer@parallel-ordering.html * igt@gem_exec_capture@capture: - shard-mtlp: NOTRUN -> [FAIL][32] ([i915#11965]) +1 other test fail [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-mtlp-4/igt@gem_exec_capture@capture.html * igt@gem_exec_capture@capture-invisible@smem0: - shard-rkl: NOTRUN -> [SKIP][33] ([i915#6334]) +1 other test skip [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-4/igt@gem_exec_capture@capture-invisible@smem0.html * igt@gem_exec_capture@capture@vecs0-lmem0: - shard-dg2: NOTRUN -> [FAIL][34] ([i915#11965]) +4 other tests fail [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg2-6/igt@gem_exec_capture@capture@vecs0-lmem0.html - shard-dg1: NOTRUN -> [FAIL][35] ([i915#11965]) +2 other tests fail [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg1-18/igt@gem_exec_capture@capture@vecs0-lmem0.html * igt@gem_exec_flush@basic-uc-set-default: - shard-dg2: NOTRUN -> [SKIP][36] ([i915#3539]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg2-5/igt@gem_exec_flush@basic-uc-set-default.html * igt@gem_exec_flush@basic-wb-ro-before-default: - shard-dg2: NOTRUN -> [SKIP][37] ([i915#3539] / [i915#4852]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg2-8/igt@gem_exec_flush@basic-wb-ro-before-default.html - shard-dg1: NOTRUN -> [SKIP][38] ([i915#3539] / [i915#4852]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg1-18/igt@gem_exec_flush@basic-wb-ro-before-default.html * igt@gem_exec_reloc@basic-cpu-gtt-noreloc: - shard-dg2: NOTRUN -> [SKIP][39] ([i915#3281]) +9 other tests skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg2-6/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html * igt@gem_exec_reloc@basic-gtt-wc-noreloc: - shard-rkl: NOTRUN -> [SKIP][40] ([i915#3281]) +8 other tests skip [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-8/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html - shard-dg1: NOTRUN -> [SKIP][41] ([i915#3281]) +3 other tests skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg1-16/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html - shard-mtlp: NOTRUN -> [SKIP][42] ([i915#3281]) +7 other tests skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-mtlp-8/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html * igt@gem_exec_reloc@basic-write-read-noreloc: - shard-rkl: NOTRUN -> [SKIP][43] ([i915#14544] / [i915#3281]) +2 other tests skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-6/igt@gem_exec_reloc@basic-write-read-noreloc.html * igt@gem_exec_schedule@preempt-queue-contexts-chain: - shard-mtlp: NOTRUN -> [SKIP][44] ([i915#4537] / [i915#4812]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-mtlp-6/igt@gem_exec_schedule@preempt-queue-contexts-chain.html * igt@gem_exec_schedule@semaphore-power: - shard-dg1: NOTRUN -> [SKIP][45] ([i915#4812]) +1 other test skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg1-15/igt@gem_exec_schedule@semaphore-power.html * igt@gem_fence_thrash@bo-write-verify-x: - shard-mtlp: NOTRUN -> [SKIP][46] ([i915#4860]) +1 other test skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-mtlp-4/igt@gem_fence_thrash@bo-write-verify-x.html * igt@gem_fence_thrash@bo-write-verify-y: - shard-dg2: NOTRUN -> [SKIP][47] ([i915#4860]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg2-8/igt@gem_fence_thrash@bo-write-verify-y.html - shard-dg1: NOTRUN -> [SKIP][48] ([i915#4860]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg1-18/igt@gem_fence_thrash@bo-write-verify-y.html * igt@gem_huc_copy@huc-copy: - shard-rkl: NOTRUN -> [SKIP][49] ([i915#14544] / [i915#2190]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-6/igt@gem_huc_copy@huc-copy.html - shard-tglu: NOTRUN -> [SKIP][50] ([i915#2190]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-tglu-4/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_evict@dontneed-evict-race: - shard-rkl: NOTRUN -> [SKIP][51] ([i915#4613] / [i915#7582]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-4/igt@gem_lmem_evict@dontneed-evict-race.html - shard-tglu: NOTRUN -> [SKIP][52] ([i915#4613] / [i915#7582]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-tglu-4/igt@gem_lmem_evict@dontneed-evict-race.html * igt@gem_lmem_swapping@heavy-verify-multi-ccs: - shard-glk: NOTRUN -> [SKIP][53] ([i915#4613]) +4 other tests skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-glk6/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html * igt@gem_lmem_swapping@heavy-verify-random: - shard-rkl: NOTRUN -> [SKIP][54] ([i915#4613]) +3 other tests skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-1/igt@gem_lmem_swapping@heavy-verify-random.html - shard-tglu: NOTRUN -> [SKIP][55] ([i915#4613]) +2 other tests skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-tglu-9/igt@gem_lmem_swapping@heavy-verify-random.html * igt@gem_lmem_swapping@smem-oom: - shard-rkl: NOTRUN -> [SKIP][56] ([i915#14544] / [i915#4613]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-6/igt@gem_lmem_swapping@smem-oom.html * igt@gem_lmem_swapping@verify-random-ccs: - shard-tglu-1: NOTRUN -> [SKIP][57] ([i915#4613]) +1 other test skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-tglu-1/igt@gem_lmem_swapping@verify-random-ccs.html - shard-mtlp: NOTRUN -> [SKIP][58] ([i915#4613]) +2 other tests skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-mtlp-8/igt@gem_lmem_swapping@verify-random-ccs.html * igt@gem_media_fill@media-fill: - shard-dg2: NOTRUN -> [SKIP][59] ([i915#8289]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg2-1/igt@gem_media_fill@media-fill.html * igt@gem_mmap@bad-offset: - shard-dg1: NOTRUN -> [SKIP][60] ([i915#4083]) +1 other test skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg1-18/igt@gem_mmap@bad-offset.html * igt@gem_mmap@basic: - shard-dg2: NOTRUN -> [SKIP][61] ([i915#4083]) +1 other test skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg2-8/igt@gem_mmap@basic.html * igt@gem_mmap_gtt@basic-write-cpu-read-gtt: - shard-mtlp: NOTRUN -> [SKIP][62] ([i915#4077]) +4 other tests skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-mtlp-4/igt@gem_mmap_gtt@basic-write-cpu-read-gtt.html * igt@gem_mmap_gtt@cpuset-big-copy-odd: - shard-dg2: NOTRUN -> [SKIP][63] ([i915#4077]) +6 other tests skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg2-3/igt@gem_mmap_gtt@cpuset-big-copy-odd.html - shard-dg1: NOTRUN -> [SKIP][64] ([i915#4077]) +1 other test skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg1-15/igt@gem_mmap_gtt@cpuset-big-copy-odd.html * igt@gem_mmap_wc@write-read: - shard-mtlp: NOTRUN -> [SKIP][65] ([i915#4083]) +3 other tests skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-mtlp-7/igt@gem_mmap_wc@write-read.html * igt@gem_pread@exhaustion: - shard-glk10: NOTRUN -> [WARN][66] ([i915#2658]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-glk10/igt@gem_pread@exhaustion.html * igt@gem_pread@snoop: - shard-dg2: NOTRUN -> [SKIP][67] ([i915#3282]) +4 other tests skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg2-3/igt@gem_pread@snoop.html - shard-rkl: NOTRUN -> [SKIP][68] ([i915#3282]) +7 other tests skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-5/igt@gem_pread@snoop.html - shard-dg1: NOTRUN -> [SKIP][69] ([i915#3282]) +3 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg1-15/igt@gem_pread@snoop.html * igt@gem_pxp@verify-pxp-execution-after-suspend-resume: - shard-dg2: NOTRUN -> [SKIP][70] ([i915#4270]) +4 other tests skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg2-5/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html - shard-dg1: NOTRUN -> [SKIP][71] ([i915#4270]) +1 other test skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg1-16/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html * igt@gem_readwrite@read-bad-handle: - shard-mtlp: NOTRUN -> [SKIP][72] ([i915#3282]) +9 other tests skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-mtlp-3/igt@gem_readwrite@read-bad-handle.html * igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs: - shard-glk: NOTRUN -> [SKIP][73] +260 other tests skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-glk1/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs.html * igt@gem_render_copy@yf-tiled-to-vebox-yf-tiled: - shard-dg2: NOTRUN -> [SKIP][74] ([i915#5190] / [i915#8428]) +2 other tests skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg2-6/igt@gem_render_copy@yf-tiled-to-vebox-yf-tiled.html - shard-mtlp: NOTRUN -> [SKIP][75] ([i915#8428]) +3 other tests skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-mtlp-1/igt@gem_render_copy@yf-tiled-to-vebox-yf-tiled.html * igt@gem_set_tiling_vs_blt@tiled-to-tiled: - shard-mtlp: NOTRUN -> [SKIP][76] ([i915#4079]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-mtlp-6/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html * igt@gem_set_tiling_vs_blt@tiled-to-untiled: - shard-rkl: NOTRUN -> [SKIP][77] ([i915#8411]) +2 other tests skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-4/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html * igt@gem_softpin@evict-snoop: - shard-rkl: NOTRUN -> [SKIP][78] ([i915#14544]) +3 other tests skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-6/igt@gem_softpin@evict-snoop.html * igt@gem_softpin@evict-snoop-interruptible: - shard-dg2: NOTRUN -> [SKIP][79] ([i915#4885]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg2-6/igt@gem_softpin@evict-snoop-interruptible.html * igt@gem_tiled_pread_basic@basic: - shard-rkl: NOTRUN -> [SKIP][80] ([i915#15656]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-5/igt@gem_tiled_pread_basic@basic.html * igt@gem_userptr_blits@create-destroy-unsync: - shard-dg2: NOTRUN -> [SKIP][81] ([i915#3297]) +2 other tests skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg2-3/igt@gem_userptr_blits@create-destroy-unsync.html - shard-rkl: NOTRUN -> [SKIP][82] ([i915#3297]) +4 other tests skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-2/igt@gem_userptr_blits@create-destroy-unsync.html - shard-dg1: NOTRUN -> [SKIP][83] ([i915#3297]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg1-13/igt@gem_userptr_blits@create-destroy-unsync.html - shard-tglu: NOTRUN -> [SKIP][84] ([i915#3297]) +4 other tests skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-tglu-7/igt@gem_userptr_blits@create-destroy-unsync.html - shard-mtlp: NOTRUN -> [SKIP][85] ([i915#3297]) +2 other tests skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-mtlp-4/igt@gem_userptr_blits@create-destroy-unsync.html * igt@gem_userptr_blits@dmabuf-sync: - shard-tglu-1: NOTRUN -> [SKIP][86] ([i915#3297] / [i915#3323]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-tglu-1/igt@gem_userptr_blits@dmabuf-sync.html * igt@gem_userptr_blits@forbidden-operations: - shard-dg2: NOTRUN -> [SKIP][87] ([i915#3282] / [i915#3297]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg2-11/igt@gem_userptr_blits@forbidden-operations.html * igt@gem_userptr_blits@relocations: - shard-dg2: NOTRUN -> [SKIP][88] ([i915#3281] / [i915#3297]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg2-4/igt@gem_userptr_blits@relocations.html - shard-dg1: NOTRUN -> [SKIP][89] ([i915#3281] / [i915#3297]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg1-13/igt@gem_userptr_blits@relocations.html - shard-mtlp: NOTRUN -> [SKIP][90] ([i915#3281] / [i915#3297]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-mtlp-7/igt@gem_userptr_blits@relocations.html * igt@gem_userptr_blits@sd-probe: - shard-dg2: NOTRUN -> [SKIP][91] ([i915#3297] / [i915#4958]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg2-3/igt@gem_userptr_blits@sd-probe.html - shard-dg1: NOTRUN -> [SKIP][92] ([i915#3297] / [i915#4958]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg1-15/igt@gem_userptr_blits@sd-probe.html * igt@gem_userptr_blits@unsync-overlap: - shard-tglu-1: NOTRUN -> [SKIP][93] ([i915#3297]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-tglu-1/igt@gem_userptr_blits@unsync-overlap.html * igt@gen7_exec_parse@basic-rejected: - shard-dg2: NOTRUN -> [SKIP][94] +9 other tests skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg2-6/igt@gen7_exec_parse@basic-rejected.html * igt@gen9_exec_parse@allowed-single: - shard-tglu-1: NOTRUN -> [SKIP][95] ([i915#2527] / [i915#2856]) +2 other tests skip [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-tglu-1/igt@gen9_exec_parse@allowed-single.html * igt@gen9_exec_parse@basic-rejected-ctx-param: - shard-snb: NOTRUN -> [SKIP][96] +178 other tests skip [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-snb6/igt@gen9_exec_parse@basic-rejected-ctx-param.html * igt@gen9_exec_parse@shadow-peek: - shard-dg2: NOTRUN -> [SKIP][97] ([i915#2856]) +1 other test skip [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg2-8/igt@gen9_exec_parse@shadow-peek.html - shard-rkl: NOTRUN -> [SKIP][98] ([i915#2527]) +2 other tests skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-3/igt@gen9_exec_parse@shadow-peek.html - shard-dg1: NOTRUN -> [SKIP][99] ([i915#2527]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg1-18/igt@gen9_exec_parse@shadow-peek.html * igt@gen9_exec_parse@unaligned-jump: - shard-tglu: NOTRUN -> [SKIP][100] ([i915#2527] / [i915#2856]) +5 other tests skip [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-tglu-9/igt@gen9_exec_parse@unaligned-jump.html - shard-mtlp: NOTRUN -> [SKIP][101] ([i915#2856]) +4 other tests skip [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-mtlp-6/igt@gen9_exec_parse@unaligned-jump.html * igt@i915_module_load@fault-injection@i915_driver_mmio_probe: - shard-dg1: NOTRUN -> [INCOMPLETE][102] ([i915#15481]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg1-13/igt@i915_module_load@fault-injection@i915_driver_mmio_probe.html * igt@i915_module_load@reload-no-display: - shard-dg2: NOTRUN -> [DMESG-WARN][103] ([i915#13029] / [i915#14545]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg2-5/igt@i915_module_load@reload-no-display.html - shard-dg1: NOTRUN -> [DMESG-WARN][104] ([i915#13029] / [i915#14545]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg1-16/igt@i915_module_load@reload-no-display.html - shard-snb: NOTRUN -> [DMESG-WARN][105] ([i915#14545]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-snb5/igt@i915_module_load@reload-no-display.html - shard-tglu: NOTRUN -> [DMESG-WARN][106] ([i915#13029] / [i915#14545]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-tglu-9/igt@i915_module_load@reload-no-display.html * igt@i915_pm_freq_api@freq-reset: - shard-tglu-1: NOTRUN -> [SKIP][107] ([i915#8399]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-tglu-1/igt@i915_pm_freq_api@freq-reset.html * igt@i915_pm_freq_api@freq-suspend: - shard-rkl: NOTRUN -> [SKIP][108] ([i915#8399]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-4/igt@i915_pm_freq_api@freq-suspend.html - shard-tglu: NOTRUN -> [SKIP][109] ([i915#8399]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-tglu-4/igt@i915_pm_freq_api@freq-suspend.html * igt@i915_pm_freq_api@freq-suspend@gt0: - shard-dg2: [PASS][110] -> [INCOMPLETE][111] ([i915#13356] / [i915#13820]) +1 other test incomplete [110]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-dg2-7/igt@i915_pm_freq_api@freq-suspend@gt0.html [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg2-7/igt@i915_pm_freq_api@freq-suspend@gt0.html * igt@i915_pm_freq_mult@media-freq@gt0: - shard-rkl: NOTRUN -> [SKIP][112] ([i915#6590]) +1 other test skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-8/igt@i915_pm_freq_mult@media-freq@gt0.html - shard-tglu: NOTRUN -> [SKIP][113] ([i915#6590]) +1 other test skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-tglu-5/igt@i915_pm_freq_mult@media-freq@gt0.html * igt@i915_pm_rc6_residency@rc6-idle: - shard-tglu: NOTRUN -> [SKIP][114] ([i915#14498]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-tglu-7/igt@i915_pm_rc6_residency@rc6-idle.html * igt@i915_pm_rps@min-max-config-loaded: - shard-dg2: NOTRUN -> [SKIP][115] ([i915#11681] / [i915#6621]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg2-6/igt@i915_pm_rps@min-max-config-loaded.html * igt@i915_pm_rps@waitboost: - shard-mtlp: [PASS][116] -> [FAIL][117] ([i915#15365]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-mtlp-2/igt@i915_pm_rps@waitboost.html [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-mtlp-6/igt@i915_pm_rps@waitboost.html * igt@i915_pm_sseu@full-enable: - shard-dg2: NOTRUN -> [SKIP][118] ([i915#4387]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg2-1/igt@i915_pm_sseu@full-enable.html - shard-rkl: NOTRUN -> [SKIP][119] ([i915#4387]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-5/igt@i915_pm_sseu@full-enable.html - shard-dg1: NOTRUN -> [SKIP][120] ([i915#4387]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg1-14/igt@i915_pm_sseu@full-enable.html - shard-tglu: NOTRUN -> [SKIP][121] ([i915#4387]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-tglu-2/igt@i915_pm_sseu@full-enable.html - shard-mtlp: NOTRUN -> [SKIP][122] ([i915#8437]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-mtlp-4/igt@i915_pm_sseu@full-enable.html * igt@i915_suspend@basic-s3-without-i915: - shard-mtlp: NOTRUN -> [SKIP][123] ([i915#6645]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-mtlp-1/igt@i915_suspend@basic-s3-without-i915.html * igt@i915_suspend@debugfs-reader: - shard-rkl: [PASS][124] -> [INCOMPLETE][125] ([i915#4817]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-rkl-7/igt@i915_suspend@debugfs-reader.html [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-3/igt@i915_suspend@debugfs-reader.html * igt@i915_suspend@forcewake: - shard-glk: NOTRUN -> [INCOMPLETE][126] ([i915#4817]) +1 other test incomplete [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-glk9/igt@i915_suspend@forcewake.html * igt@kms_addfb_basic@addfb25-x-tiled-legacy: - shard-dg2: NOTRUN -> [SKIP][127] ([i915#4212]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg2-4/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-dg2: NOTRUN -> [SKIP][128] ([i915#5190]) +1 other test skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg2-8/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_addfb_basic@tile-pitch-mismatch: - shard-mtlp: NOTRUN -> [SKIP][129] ([i915#4212]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-mtlp-1/igt@kms_addfb_basic@tile-pitch-mismatch.html * igt@kms_async_flips@test-cursor: - shard-mtlp: NOTRUN -> [SKIP][130] ([i915#10333]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-mtlp-1/igt@kms_async_flips@test-cursor.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-mtlp: NOTRUN -> [SKIP][131] ([i915#3555]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-mtlp-5/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html - shard-tglu: NOTRUN -> [SKIP][132] ([i915#9531]) [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-tglu-2/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-glk10: NOTRUN -> [SKIP][133] ([i915#1769]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-glk10/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-3: - shard-dg2: [PASS][134] -> [FAIL][135] ([i915#5956]) +1 other test fail [134]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-dg2-1/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-3.html [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg2-5/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-3.html * igt@kms_big_fb@4-tiled-16bpp-rotate-0: - shard-rkl: NOTRUN -> [SKIP][136] ([i915#5286]) +9 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-4/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html - shard-dg1: NOTRUN -> [SKIP][137] ([i915#4538] / [i915#5286]) +2 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg1-14/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html * igt@kms_big_fb@4-tiled-8bpp-rotate-180: - shard-tglu-1: NOTRUN -> [SKIP][138] ([i915#5286]) +4 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-tglu-1/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html * igt@kms_big_fb@4-tiled-addfb-size-offset-overflow: - shard-tglu: NOTRUN -> [SKIP][139] ([i915#5286]) +8 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-tglu-5/igt@kms_big_fb@4-tiled-addfb-size-offset-overflow.html - shard-rkl: NOTRUN -> [SKIP][140] ([i915#14544] / [i915#5286]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-6/igt@kms_big_fb@4-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@linear-64bpp-rotate-270: - shard-mtlp: NOTRUN -> [SKIP][141] +13 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-mtlp-7/igt@kms_big_fb@linear-64bpp-rotate-270.html * igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip: - shard-rkl: NOTRUN -> [SKIP][142] ([i915#3828]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-4/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip.html - shard-tglu-1: NOTRUN -> [SKIP][143] ([i915#3828]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-tglu-1/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip: - shard-tglu: NOTRUN -> [SKIP][144] ([i915#3828]) +1 other test skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-tglu-7/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-dg2: NOTRUN -> [SKIP][145] ([i915#3828]) +1 other test skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg2-8/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html - shard-dg1: NOTRUN -> [SKIP][146] ([i915#3828]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg1-18/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html - shard-mtlp: NOTRUN -> [SKIP][147] ([i915#3828]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-mtlp-2/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@x-tiled-32bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][148] ([i915#3638]) +2 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-7/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html * igt@kms_big_fb@y-tiled-64bpp-rotate-270: - shard-dg1: NOTRUN -> [SKIP][149] ([i915#3638]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg1-14/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html * igt@kms_big_fb@y-tiled-64bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][150] ([i915#14544] / [i915#3638]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-6/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-dg2: NOTRUN -> [SKIP][151] ([i915#4538] / [i915#5190]) +8 other tests skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg2-6/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-8bpp-rotate-180: - shard-dg1: NOTRUN -> [SKIP][152] ([i915#4538]) +2 other tests skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg1-15/igt@kms_big_fb@yf-tiled-8bpp-rotate-180.html * igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs: - shard-dg2: NOTRUN -> [SKIP][153] ([i915#12313]) +2 other tests skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg2-7/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][154] ([i915#6095]) +202 other tests skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg1-18/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4.html * igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs@pipe-a-dp-3: - shard-dg2: NOTRUN -> [SKIP][155] ([i915#10307] / [i915#6095]) +101 other tests skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg2-11/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs@pipe-a-dp-3.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs: - shard-tglu: NOTRUN -> [SKIP][156] ([i915#12313]) +2 other tests skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-tglu-8/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs: - shard-rkl: NOTRUN -> [SKIP][157] ([i915#12313]) +1 other test skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-rotation-180-y-tiled-ccs@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][158] ([i915#6095]) +29 other tests skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-mtlp-1/igt@kms_ccs@crc-primary-rotation-180-y-tiled-ccs@pipe-a-edp-1.html * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs: - shard-tglu: NOTRUN -> [SKIP][159] ([i915#12805]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-tglu-8/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][160] ([i915#6095]) +63 other tests skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg2-4/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-2: - shard-rkl: [PASS][161] -> [INCOMPLETE][162] ([i915#15582]) +1 other test incomplete [161]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-rkl-3/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-2.html [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-2.html * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs: - shard-rkl: NOTRUN -> [SKIP][163] ([i915#14098] / [i915#6095]) +47 other tests skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-4/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs: - shard-tglu-1: NOTRUN -> [SKIP][164] ([i915#12313]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-tglu-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html - shard-dg1: NOTRUN -> [SKIP][165] ([i915#12313]) +1 other test skip [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg1-17/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html - shard-mtlp: NOTRUN -> [SKIP][166] ([i915#12313]) +2 other tests skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-mtlp-7/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][167] ([i915#14544] / [i915#6095]) +17 other tests skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/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: NOTRUN -> [SKIP][168] ([i915#14098] / [i915#14544] / [i915#6095]) +12 other tests skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/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-tglu-1: NOTRUN -> [SKIP][169] ([i915#6095]) +54 other tests skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-tglu-1/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html * igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc: - shard-tglu: NOTRUN -> [SKIP][170] ([i915#6095]) +84 other tests skip [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-tglu-2/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc.html * igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][171] ([i915#6095]) +67 other tests skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-4/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][172] ([i915#10307] / [i915#10434] / [i915#6095]) +3 other tests skip [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg2-4/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-hdmi-a-1.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-mtlp: NOTRUN -> [SKIP][173] ([i915#13784]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-mtlp-2/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_cdclk@plane-scaling@pipe-c-dp-3: - shard-dg2: NOTRUN -> [SKIP][174] ([i915#13783]) +3 other tests skip [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg2-11/igt@kms_cdclk@plane-scaling@pipe-c-dp-3.html * igt@kms_chamelium_audio@dp-audio: - shard-tglu: NOTRUN -> [SKIP][175] ([i915#11151] / [i915#7828]) +9 other tests skip [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-tglu-4/igt@kms_chamelium_audio@dp-audio.html * igt@kms_chamelium_edid@vga-edid-read: - shard-rkl: NOTRUN -> [SKIP][176] ([i915#11151] / [i915#14544] / [i915#7828]) +1 other test skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-6/igt@kms_chamelium_edid@vga-edid-read.html * igt@kms_chamelium_frames@hdmi-aspect-ratio: - shard-mtlp: NOTRUN -> [SKIP][177] ([i915#11151] / [i915#7828]) +8 other tests skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-mtlp-6/igt@kms_chamelium_frames@hdmi-aspect-ratio.html * igt@kms_chamelium_frames@hdmi-crc-fast: - shard-tglu-1: NOTRUN -> [SKIP][178] ([i915#11151] / [i915#7828]) +3 other tests skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-tglu-1/igt@kms_chamelium_frames@hdmi-crc-fast.html * igt@kms_chamelium_frames@hdmi-crc-multiple: - shard-dg2: NOTRUN -> [SKIP][179] ([i915#11151] / [i915#7828]) +6 other tests skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg2-6/igt@kms_chamelium_frames@hdmi-crc-multiple.html - shard-dg1: NOTRUN -> [SKIP][180] ([i915#11151] / [i915#7828]) +5 other tests skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg1-17/igt@kms_chamelium_frames@hdmi-crc-multiple.html * igt@kms_chamelium_hpd@vga-hpd-fast: - shard-rkl: NOTRUN -> [SKIP][181] ([i915#11151] / [i915#7828]) +12 other tests skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-3/igt@kms_chamelium_hpd@vga-hpd-fast.html * igt@kms_color@deep-color: - shard-dg2: [PASS][182] -> [SKIP][183] ([i915#12655] / [i915#3555]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-dg2-11/igt@kms_color@deep-color.html [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg2-8/igt@kms_color@deep-color.html - shard-tglu: NOTRUN -> [SKIP][184] ([i915#3555] / [i915#9979]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-tglu-8/igt@kms_color@deep-color.html * igt@kms_color_pipeline@plane-lut1d@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [FAIL][185] ([i915#15522]) +4 other tests fail [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-mtlp-6/igt@kms_color_pipeline@plane-lut1d@pipe-d-edp-1.html * igt@kms_content_protection@atomic: - shard-tglu: NOTRUN -> [SKIP][186] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-tglu-2/igt@kms_content_protection@atomic.html * igt@kms_content_protection@dp-mst-lic-type-0-hdcp14: - shard-rkl: NOTRUN -> [SKIP][187] ([i915#15330]) +1 other test skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-3/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html - shard-tglu-1: NOTRUN -> [SKIP][188] ([i915#15330]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-tglu-1/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html * igt@kms_content_protection@dp-mst-type-0: - shard-rkl: NOTRUN -> [SKIP][189] ([i915#15330] / [i915#3116]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-2/igt@kms_content_protection@dp-mst-type-0.html - shard-tglu: NOTRUN -> [SKIP][190] ([i915#15330] / [i915#3116] / [i915#3299]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-tglu-6/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@dp-mst-type-0-hdcp14: - shard-tglu: NOTRUN -> [SKIP][191] ([i915#15330]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-tglu-9/igt@kms_content_protection@dp-mst-type-0-hdcp14.html * igt@kms_content_protection@dp-mst-type-0-suspend-resume: - shard-mtlp: NOTRUN -> [SKIP][192] ([i915#15330]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-mtlp-6/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html * igt@kms_content_protection@legacy-hdcp14: - shard-mtlp: NOTRUN -> [SKIP][193] ([i915#6944]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-mtlp-2/igt@kms_content_protection@legacy-hdcp14.html * igt@kms_content_protection@lic-type-0: - shard-mtlp: NOTRUN -> [SKIP][194] ([i915#6944] / [i915#9424]) +1 other test skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-mtlp-5/igt@kms_content_protection@lic-type-0.html - shard-tglu-1: NOTRUN -> [SKIP][195] ([i915#6944] / [i915#9424]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-tglu-1/igt@kms_content_protection@lic-type-0.html * igt@kms_content_protection@lic-type-0-hdcp14: - shard-dg2: NOTRUN -> [SKIP][196] ([i915#6944]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg2-3/igt@kms_content_protection@lic-type-0-hdcp14.html * igt@kms_content_protection@lic-type-1: - shard-rkl: NOTRUN -> [SKIP][197] ([i915#6944] / [i915#9424]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-8/igt@kms_content_protection@lic-type-1.html - shard-dg1: NOTRUN -> [SKIP][198] ([i915#6944] / [i915#9424]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg1-17/igt@kms_content_protection@lic-type-1.html * igt@kms_content_protection@uevent: - shard-dg2: NOTRUN -> [SKIP][199] ([i915#6944] / [i915#7118] / [i915#9424]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg2-7/igt@kms_content_protection@uevent.html - shard-rkl: NOTRUN -> [SKIP][200] ([i915#6944] / [i915#7118] / [i915#9424]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-4/igt@kms_content_protection@uevent.html - shard-tglu-1: NOTRUN -> [SKIP][201] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-tglu-1/igt@kms_content_protection@uevent.html - shard-dg1: NOTRUN -> [SKIP][202] ([i915#6944] / [i915#7116] / [i915#9424]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg1-14/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-dg2: NOTRUN -> [SKIP][203] ([i915#13049]) +1 other test skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg2-8/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_crc@cursor-onscreen-128x42: - shard-rkl: [PASS][204] -> [FAIL][205] ([i915#13566]) +1 other test fail [204]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-rkl-7/igt@kms_cursor_crc@cursor-onscreen-128x42.html [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-2/igt@kms_cursor_crc@cursor-onscreen-128x42.html * igt@kms_cursor_crc@cursor-onscreen-256x85: - shard-tglu: NOTRUN -> [FAIL][206] ([i915#13566]) +3 other tests fail [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-tglu-7/igt@kms_cursor_crc@cursor-onscreen-256x85.html - shard-mtlp: NOTRUN -> [SKIP][207] ([i915#8814]) +1 other test skip [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-mtlp-6/igt@kms_cursor_crc@cursor-onscreen-256x85.html * igt@kms_cursor_crc@cursor-onscreen-32x32: - shard-rkl: NOTRUN -> [SKIP][208] ([i915#3555]) +3 other tests skip [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-4/igt@kms_cursor_crc@cursor-onscreen-32x32.html - shard-tglu: NOTRUN -> [SKIP][209] ([i915#3555]) +5 other tests skip [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-tglu-4/igt@kms_cursor_crc@cursor-onscreen-32x32.html * igt@kms_cursor_crc@cursor-onscreen-512x512: - shard-rkl: NOTRUN -> [SKIP][210] ([i915#13049]) +1 other test skip [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-4/igt@kms_cursor_crc@cursor-onscreen-512x512.html - shard-tglu-1: NOTRUN -> [SKIP][211] ([i915#13049]) +2 other tests skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-tglu-1/igt@kms_cursor_crc@cursor-onscreen-512x512.html * igt@kms_cursor_crc@cursor-onscreen-64x21@pipe-a-hdmi-a-1: - shard-tglu: [PASS][212] -> [FAIL][213] ([i915#13566]) +1 other test fail [212]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-tglu-4/igt@kms_cursor_crc@cursor-onscreen-64x21@pipe-a-hdmi-a-1.html [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-tglu-4/igt@kms_cursor_crc@cursor-onscreen-64x21@pipe-a-hdmi-a-1.html * igt@kms_cursor_crc@cursor-random-32x10: - shard-dg1: NOTRUN -> [SKIP][214] ([i915#3555]) +1 other test skip [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg1-18/igt@kms_cursor_crc@cursor-random-32x10.html * igt@kms_cursor_crc@cursor-random-512x512: - shard-tglu: NOTRUN -> [SKIP][215] ([i915#13049]) +2 other tests skip [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-tglu-6/igt@kms_cursor_crc@cursor-random-512x512.html * igt@kms_cursor_crc@cursor-rapid-movement-32x10: - shard-mtlp: NOTRUN -> [SKIP][216] ([i915#3555] / [i915#8814]) +2 other tests skip [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-mtlp-2/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html * igt@kms_cursor_crc@cursor-rapid-movement-32x32: - shard-dg2: NOTRUN -> [SKIP][217] ([i915#3555]) +3 other tests skip [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg2-6/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html * igt@kms_cursor_crc@cursor-sliding-512x512: - shard-dg1: NOTRUN -> [SKIP][218] ([i915#13049]) +1 other test skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg1-13/igt@kms_cursor_crc@cursor-sliding-512x512.html - shard-mtlp: NOTRUN -> [SKIP][219] ([i915#13049]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-mtlp-7/igt@kms_cursor_crc@cursor-sliding-512x512.html * igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [FAIL][220] ([i915#13566]) +9 other tests fail [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-5/igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-tglu: NOTRUN -> [SKIP][221] ([i915#4103]) +1 other test skip [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-tglu-3/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html - shard-mtlp: NOTRUN -> [SKIP][222] ([i915#4213]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-mtlp-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@cursora-vs-flipb-atomic: - shard-mtlp: NOTRUN -> [SKIP][223] ([i915#9809]) +2 other tests skip [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-mtlp-7/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html * igt@kms_cursor_legacy@cursorb-vs-flipa-legacy: - shard-rkl: NOTRUN -> [SKIP][224] +23 other tests skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-5/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic: - shard-dg2: NOTRUN -> [SKIP][225] ([i915#13046] / [i915#5354]) +4 other tests skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg2-4/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-tglu-1: NOTRUN -> [SKIP][226] ([i915#9067]) [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-tglu-1/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-dg2: NOTRUN -> [SKIP][227] ([i915#4103] / [i915#4213]) [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg2-8/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt@kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-dg2: NOTRUN -> [SKIP][228] ([i915#9833]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg2-6/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html - shard-rkl: NOTRUN -> [SKIP][229] ([i915#9723]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-3/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html - shard-dg1: NOTRUN -> [SKIP][230] ([i915#9723]) [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg1-17/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html - shard-tglu: NOTRUN -> [SKIP][231] ([i915#9723]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-tglu-6/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html - shard-mtlp: NOTRUN -> [SKIP][232] ([i915#9833]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-mtlp-8/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt@kms_dp_link_training@non-uhbr-mst: - shard-dg2: NOTRUN -> [SKIP][233] ([i915#13749]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg2-7/igt@kms_dp_link_training@non-uhbr-mst.html - shard-rkl: NOTRUN -> [SKIP][234] ([i915#13749]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-4/igt@kms_dp_link_training@non-uhbr-mst.html * igt@kms_dp_linktrain_fallback@dp-fallback: - shard-dg2: [PASS][235] -> [SKIP][236] ([i915#13707]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-dg2-11/igt@kms_dp_linktrain_fallback@dp-fallback.html [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg2-8/igt@kms_dp_linktrain_fallback@dp-fallback.html * igt@kms_dp_linktrain_fallback@dsc-fallback: - shard-tglu-1: NOTRUN -> [SKIP][237] ([i915#13707]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-tglu-1/igt@kms_dp_linktrain_fallback@dsc-fallback.html * igt@kms_dsc@dsc-fractional-bpp: - shard-tglu: NOTRUN -> [SKIP][238] ([i915#3840]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-tglu-4/igt@kms_dsc@dsc-fractional-bpp.html * igt@kms_dsc@dsc-fractional-bpp-with-bpc: - shard-tglu-1: NOTRUN -> [SKIP][239] ([i915#3840]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-tglu-1/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html * igt@kms_dsc@dsc-with-bpc-formats: - shard-rkl: NOTRUN -> [SKIP][240] ([i915#3555] / [i915#3840]) [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-4/igt@kms_dsc@dsc-with-bpc-formats.html - shard-tglu: NOTRUN -> [SKIP][241] ([i915#3555] / [i915#3840]) [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-tglu-4/igt@kms_dsc@dsc-with-bpc-formats.html * igt@kms_fbcon_fbt@psr: - shard-dg2: NOTRUN -> [SKIP][242] ([i915#3469]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg2-6/igt@kms_fbcon_fbt@psr.html * igt@kms_fbcon_fbt@psr-suspend: - shard-rkl: NOTRUN -> [SKIP][243] ([i915#3955]) +1 other test skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-8/igt@kms_fbcon_fbt@psr-suspend.html - shard-tglu: NOTRUN -> [SKIP][244] ([i915#3469]) [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-tglu-3/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_feature_discovery@display-3x: - shard-dg2: NOTRUN -> [SKIP][245] ([i915#1839]) +2 other tests skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg2-11/igt@kms_feature_discovery@display-3x.html - shard-rkl: NOTRUN -> [SKIP][246] ([i915#1839]) +2 other tests skip [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-7/igt@kms_feature_discovery@display-3x.html * igt@kms_feature_discovery@display-4x: - shard-dg1: NOTRUN -> [SKIP][247] ([i915#1839]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg1-17/igt@kms_feature_discovery@display-4x.html - shard-tglu: NOTRUN -> [SKIP][248] ([i915#1839]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-tglu-6/igt@kms_feature_discovery@display-4x.html - shard-mtlp: NOTRUN -> [SKIP][249] ([i915#1839]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-mtlp-8/igt@kms_feature_discovery@display-4x.html * igt@kms_feature_discovery@dp-mst: - shard-dg2: NOTRUN -> [SKIP][250] ([i915#9337]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg2-7/igt@kms_feature_discovery@dp-mst.html - shard-tglu-1: NOTRUN -> [SKIP][251] ([i915#9337]) [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-tglu-1/igt@kms_feature_discovery@dp-mst.html * igt@kms_feature_discovery@psr2: - shard-tglu-1: NOTRUN -> [SKIP][252] ([i915#658]) [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-tglu-1/igt@kms_feature_discovery@psr2.html - shard-dg1: NOTRUN -> [SKIP][253] ([i915#658]) [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg1-17/igt@kms_feature_discovery@psr2.html - shard-dg2: NOTRUN -> [SKIP][254] ([i915#658]) [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg2-4/igt@kms_feature_discovery@psr2.html - shard-rkl: NOTRUN -> [SKIP][255] ([i915#658]) [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-3/igt@kms_feature_discovery@psr2.html * igt@kms_flip@2x-flip-vs-dpms: - shard-rkl: NOTRUN -> [SKIP][256] ([i915#14544] / [i915#9934]) +1 other test skip [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-6/igt@kms_flip@2x-flip-vs-dpms.html * igt@kms_flip@2x-flip-vs-fences: - shard-dg2: NOTRUN -> [SKIP][257] ([i915#8381]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg2-4/igt@kms_flip@2x-flip-vs-fences.html * igt@kms_flip@2x-flip-vs-panning: - shard-dg2: NOTRUN -> [SKIP][258] ([i915#9934]) +5 other tests skip [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg2-1/igt@kms_flip@2x-flip-vs-panning.html - shard-tglu-1: NOTRUN -> [SKIP][259] ([i915#3637] / [i915#9934]) +1 other test skip [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-tglu-1/igt@kms_flip@2x-flip-vs-panning.html * igt@kms_flip@2x-flip-vs-rmfb-interruptible: - shard-mtlp: NOTRUN -> [SKIP][260] ([i915#3637] / [i915#9934]) +6 other tests skip [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-mtlp-8/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html * igt@kms_flip@2x-flip-vs-suspend-interruptible: - shard-snb: [PASS][261] -> [TIMEOUT][262] ([i915#14033] / [i915#14350]) [261]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-snb1/igt@kms_flip@2x-flip-vs-suspend-interruptible.html [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-snb5/igt@kms_flip@2x-flip-vs-suspend-interruptible.html * igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-vga1-hdmi-a1: - shard-snb: [PASS][263] -> [TIMEOUT][264] ([i915#14033]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-snb1/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-vga1-hdmi-a1.html [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-snb5/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-vga1-hdmi-a1.html * igt@kms_flip@2x-flip-vs-wf_vblank-interruptible: - shard-dg1: NOTRUN -> [SKIP][265] ([i915#9934]) +2 other tests skip [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg1-17/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html * igt@kms_flip@2x-plain-flip-fb-recreate-interruptible: - shard-tglu: NOTRUN -> [SKIP][266] ([i915#3637] / [i915#9934]) +7 other tests skip [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-tglu-3/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html * igt@kms_flip@2x-plain-flip-interruptible: - shard-rkl: NOTRUN -> [SKIP][267] ([i915#9934]) +11 other tests skip [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-3/igt@kms_flip@2x-plain-flip-interruptible.html * igt@kms_flip@plain-flip-ts-check-interruptible: - shard-rkl: [PASS][268] -> [FAIL][269] ([i915#10826] / [i915#14600]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-rkl-8/igt@kms_flip@plain-flip-ts-check-interruptible.html [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-4/igt@kms_flip@plain-flip-ts-check-interruptible.html * igt@kms_flip@plain-flip-ts-check-interruptible@a-hdmi-a2: - shard-rkl: NOTRUN -> [FAIL][270] ([i915#10826]) [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-4/igt@kms_flip@plain-flip-ts-check-interruptible@a-hdmi-a2.html * igt@kms_flip@plain-flip-ts-check-interruptible@b-hdmi-a2: - shard-rkl: NOTRUN -> [FAIL][271] ([i915#14600]) [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-4/igt@kms_flip@plain-flip-ts-check-interruptible@b-hdmi-a2.html * igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling: - shard-mtlp: NOTRUN -> [SKIP][272] ([i915#3555] / [i915#8810] / [i915#8813]) +1 other test skip [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-64bpp-linear-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling: - shard-mtlp: NOTRUN -> [SKIP][273] ([i915#15643]) +4 other tests skip [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling: - shard-tglu: NOTRUN -> [SKIP][274] ([i915#15643]) +7 other tests skip [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-tglu-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling: - shard-dg2: NOTRUN -> [SKIP][275] ([i915#15643] / [i915#5190]) [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg2-1/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling: - shard-rkl: NOTRUN -> [SKIP][276] ([i915#14544] / [i915#15643]) +2 other tests skip [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling: - shard-tglu-1: NOTRUN -> [SKIP][277] ([i915#15643]) +2 other tests skip [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html - shard-dg1: NOTRUN -> [SKIP][278] ([i915#15643]) [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg1-14/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling: - shard-rkl: NOTRUN -> [SKIP][279] ([i915#15643]) +5 other tests skip [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-8/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html - shard-dg2: NOTRUN -> [SKIP][280] ([i915#15643]) [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg2-4/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-p016-linear-to-p016-linear-reflect-x: - shard-dg2: NOTRUN -> [SKIP][281] ([i915#15645]) [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg2-6/igt@kms_flip_scaled_crc@flip-p016-linear-to-p016-linear-reflect-x.html * igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][282] ([i915#15104]) +1 other test skip [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][283] ([i915#8708]) +14 other tests skip [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg2-4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render: - shard-mtlp: NOTRUN -> [SKIP][284] ([i915#1825]) +22 other tests skip [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-mtlp-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][285] ([i915#5354]) +23 other tests skip [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-abgr161616f-draw-blt: - shard-dg2: NOTRUN -> [SKIP][286] ([i915#15574]) +1 other test skip [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg2-4/igt@kms_frontbuffer_tracking@fbc-abgr161616f-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-abgr161616f-draw-mmap-gtt: - shard-tglu: NOTRUN -> [SKIP][287] ([i915#15574]) +6 other tests skip [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-tglu-7/igt@kms_frontbuffer_tracking@fbc-abgr161616f-draw-mmap-gtt.html - shard-mtlp: NOTRUN -> [SKIP][288] ([i915#15574]) +3 other tests skip [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-mtlp-6/igt@kms_frontbuffer_tracking@fbc-abgr161616f-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-blt: - shard-rkl: NOTRUN -> [SKIP][289] ([i915#15102]) +5 other tests skip [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-pwrite: - shard-rkl: NOTRUN -> [SKIP][290] ([i915#14544] / [i915#15102]) +1 other test skip [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/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-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][291] ([i915#15102]) +3 other tests skip [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render: - shard-glk10: NOTRUN -> [SKIP][292] +193 other tests skip [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-glk10/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-pwrite: - shard-tglu-1: NOTRUN -> [SKIP][293] +36 other tests skip [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][294] ([i915#8708]) +3 other tests skip [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff: - shard-rkl: NOTRUN -> [SKIP][295] ([i915#1825]) +41 other tests skip [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcpsr-abgr161616f-draw-blt: - shard-tglu-1: NOTRUN -> [SKIP][296] ([i915#15574]) [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-abgr161616f-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-4: - shard-rkl: NOTRUN -> [SKIP][297] ([i915#5439]) [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html * igt@kms_frontbuffer_tracking@pipe-fbc-rte: - shard-rkl: NOTRUN -> [SKIP][298] ([i915#9766]) [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-5/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html - shard-tglu: NOTRUN -> [SKIP][299] ([i915#9766]) [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-tglu-2/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-cpu: - shard-tglu-1: NOTRUN -> [SKIP][300] ([i915#15102]) +13 other tests skip [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-pwrite: - shard-dg1: NOTRUN -> [SKIP][301] ([i915#15102]) +1 other test skip [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg1-15/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-blt: - shard-tglu: NOTRUN -> [SKIP][302] ([i915#15102]) +31 other tests skip [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-tglu-6/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][303] ([i915#8708]) +9 other tests skip [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][304] ([i915#15102] / [i915#3023]) +28 other tests skip [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-1p-rte: - shard-dg2: NOTRUN -> [SKIP][305] ([i915#15102] / [i915#3458]) +13 other tests skip [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg2-6/igt@kms_frontbuffer_tracking@psr-1p-rte.html - shard-dg1: NOTRUN -> [SKIP][306] ([i915#15102] / [i915#3458]) +7 other tests skip [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg1-17/igt@kms_frontbuffer_tracking@psr-1p-rte.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-pgflip-blt: - shard-rkl: NOTRUN -> [SKIP][307] ([i915#14544] / [i915#1825]) +6 other tests skip [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render: - shard-tglu: NOTRUN -> [SKIP][308] +81 other tests skip [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-tglu-9/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-pwrite: - shard-dg1: NOTRUN -> [SKIP][309] +11 other tests skip [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg1-17/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-abgr161616f-draw-blt: - shard-rkl: NOTRUN -> [SKIP][310] ([i915#15574]) +4 other tests skip [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-abgr161616f-draw-blt.html - shard-dg1: NOTRUN -> [SKIP][311] ([i915#15574]) +1 other test skip [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg1-12/igt@kms_frontbuffer_tracking@psr-abgr161616f-draw-blt.html * igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary: - shard-rkl: NOTRUN -> [SKIP][312] ([i915#14544] / [i915#15102] / [i915#3023]) +3 other tests skip [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html * igt@kms_hdmi_inject@inject-audio: - shard-tglu-1: NOTRUN -> [SKIP][313] ([i915#13030]) [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-tglu-1/igt@kms_hdmi_inject@inject-audio.html * igt@kms_hdr@brightness-with-hdr: - shard-dg2: NOTRUN -> [SKIP][314] ([i915#12713]) [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg2-5/igt@kms_hdr@brightness-with-hdr.html * igt@kms_hdr@invalid-hdr: - shard-rkl: NOTRUN -> [SKIP][315] ([i915#14544] / [i915#3555] / [i915#8228]) [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-6/igt@kms_hdr@invalid-hdr.html * igt@kms_hdr@static-swap: - shard-dg2: [PASS][316] -> [SKIP][317] ([i915#3555] / [i915#8228]) +1 other test skip [316]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-dg2-11/igt@kms_hdr@static-swap.html [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg2-4/igt@kms_hdr@static-swap.html * igt@kms_hdr@static-toggle: - shard-dg2: NOTRUN -> [SKIP][318] ([i915#3555] / [i915#8228]) [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg2-6/igt@kms_hdr@static-toggle.html - shard-rkl: NOTRUN -> [SKIP][319] ([i915#3555] / [i915#8228]) +1 other test skip [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-5/igt@kms_hdr@static-toggle.html - shard-dg1: NOTRUN -> [SKIP][320] ([i915#3555] / [i915#8228]) +1 other test skip [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg1-17/igt@kms_hdr@static-toggle.html - shard-tglu: NOTRUN -> [SKIP][321] ([i915#3555] / [i915#8228]) +1 other test skip [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-tglu-2/igt@kms_hdr@static-toggle.html - shard-mtlp: NOTRUN -> [SKIP][322] ([i915#12713] / [i915#3555] / [i915#8228]) [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-mtlp-1/igt@kms_hdr@static-toggle.html * igt@kms_hdr@static-toggle-suspend@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [INCOMPLETE][323] ([i915#15436]) [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-6/igt@kms_hdr@static-toggle-suspend@pipe-a-hdmi-a-2.html * igt@kms_joiner@basic-force-ultra-joiner: - shard-tglu: NOTRUN -> [SKIP][324] ([i915#15458]) [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-tglu-2/igt@kms_joiner@basic-force-ultra-joiner.html * igt@kms_joiner@basic-max-non-joiner: - shard-tglu: NOTRUN -> [SKIP][325] ([i915#13688]) [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-tglu-5/igt@kms_joiner@basic-max-non-joiner.html * igt@kms_joiner@invalid-modeset-force-ultra-joiner: - shard-rkl: NOTRUN -> [SKIP][326] ([i915#15458]) +1 other test skip [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-4/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html - shard-tglu-1: NOTRUN -> [SKIP][327] ([i915#15458]) [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-tglu-1/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html * igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner: - shard-dg2: NOTRUN -> [SKIP][328] ([i915#15638]) [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg2-4/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html - shard-rkl: NOTRUN -> [SKIP][329] ([i915#15638]) [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-3/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html - shard-tglu-1: NOTRUN -> [SKIP][330] ([i915#15638]) [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-tglu-1/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html - shard-dg1: NOTRUN -> [SKIP][331] ([i915#15638]) [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg1-17/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html - shard-mtlp: NOTRUN -> [SKIP][332] ([i915#15638]) [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-mtlp-7/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html * igt@kms_panel_fitting@legacy: - shard-tglu-1: NOTRUN -> [SKIP][333] ([i915#6301]) [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-tglu-1/igt@kms_panel_fitting@legacy.html - shard-dg1: NOTRUN -> [SKIP][334] ([i915#6301]) [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg1-14/igt@kms_panel_fitting@legacy.html * igt@kms_pipe_crc_basic@suspend-read-crc: - shard-rkl: NOTRUN -> [INCOMPLETE][335] ([i915#12756] / [i915#13476]) [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-6/igt@kms_pipe_crc_basic@suspend-read-crc.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [INCOMPLETE][336] ([i915#13476]) [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-6/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-2.html * igt@kms_pipe_stress@stress-xrgb8888-4tiled: - shard-tglu-1: NOTRUN -> [SKIP][337] ([i915#14712]) [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-tglu-1/igt@kms_pipe_stress@stress-xrgb8888-4tiled.html - shard-dg1: NOTRUN -> [SKIP][338] ([i915#14712]) [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg1-17/igt@kms_pipe_stress@stress-xrgb8888-4tiled.html * igt@kms_pipe_stress@stress-xrgb8888-yftiled: - shard-rkl: NOTRUN -> [SKIP][339] ([i915#14712]) [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-5/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html * igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier: - shard-dg1: NOTRUN -> [SKIP][340] ([i915#15608] / [i915#8825]) +1 other test skip [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg1-17/igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier.html * igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier@pipe-a-plane-3: - shard-dg1: NOTRUN -> [SKIP][341] ([i915#15608]) +6 other tests skip [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg1-17/igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier@pipe-a-plane-3.html * igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier: - shard-mtlp: NOTRUN -> [SKIP][342] ([i915#15608] / [i915#8825]) +3 other tests skip [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-mtlp-8/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier.html * igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier-source-clamping: - shard-rkl: NOTRUN -> [SKIP][343] ([i915#15608] / [i915#15609] / [i915#8825]) +1 other test skip [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-7/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier-source-clamping.html * igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier-source-clamping@pipe-a-plane-5: - shard-rkl: NOTRUN -> [SKIP][344] ([i915#15609]) +2 other tests skip [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-7/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier-source-clamping@pipe-a-plane-5.html * igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier@pipe-b-plane-5: - shard-tglu-1: NOTRUN -> [SKIP][345] ([i915#15608]) +18 other tests skip [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-tglu-1/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier@pipe-b-plane-5.html * igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier@pipe-b-plane-7: - shard-tglu-1: NOTRUN -> [SKIP][346] ([i915#15608] / [i915#8825]) +1 other test skip [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-tglu-1/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier@pipe-b-plane-7.html * igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier@pipe-a-plane-0: - shard-rkl: NOTRUN -> [SKIP][347] ([i915#14544] / [i915#15608]) +1 other test skip [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier@pipe-a-plane-0.html * igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier@pipe-b-plane-5: - shard-rkl: NOTRUN -> [SKIP][348] ([i915#14544] / [i915#15608] / [i915#8825]) +1 other test skip [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier@pipe-b-plane-5.html * igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier@pipe-b-plane-3: - shard-mtlp: NOTRUN -> [SKIP][349] ([i915#15608]) +13 other tests skip [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-mtlp-8/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier@pipe-b-plane-3.html * igt@kms_plane@pixel-format-4-tiled-modifier-source-clamping: - shard-tglu-1: NOTRUN -> [SKIP][350] ([i915#15608] / [i915#15609] / [i915#8825]) +1 other test skip [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-tglu-1/igt@kms_plane@pixel-format-4-tiled-modifier-source-clamping.html * igt@kms_plane@pixel-format-4-tiled-modifier-source-clamping@pipe-a-plane-7: - shard-tglu-1: NOTRUN -> [SKIP][351] ([i915#15609]) +1 other test skip [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-tglu-1/igt@kms_plane@pixel-format-4-tiled-modifier-source-clamping@pipe-a-plane-7.html * igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier-source-clamping: - shard-tglu: NOTRUN -> [SKIP][352] ([i915#15608] / [i915#15609] / [i915#8825]) +2 other tests skip [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-tglu-8/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier-source-clamping.html * igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier-source-clamping: - shard-rkl: NOTRUN -> [SKIP][353] ([i915#14544] / [i915#15608] / [i915#15609] / [i915#8825]) [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier-source-clamping.html * igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier-source-clamping@pipe-a-plane-5: - shard-mtlp: NOTRUN -> [SKIP][354] ([i915#15609]) +2 other tests skip [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-mtlp-6/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier-source-clamping@pipe-a-plane-5.html * igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier-source-clamping@pipe-b-plane-5: - shard-rkl: NOTRUN -> [SKIP][355] ([i915#14544] / [i915#15609] / [i915#8825]) [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier-source-clamping@pipe-b-plane-5.html * igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier-source-clamping@pipe-b-plane-7: - shard-tglu: NOTRUN -> [SKIP][356] ([i915#15609] / [i915#8825]) +2 other tests skip [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-tglu-7/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier-source-clamping@pipe-b-plane-7.html * igt@kms_plane@pixel-format-x-tiled-modifier-source-clamping@pipe-b-plane-7: - shard-tglu: NOTRUN -> [SKIP][357] ([i915#15609]) +4 other tests skip [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-tglu-6/igt@kms_plane@pixel-format-x-tiled-modifier-source-clamping@pipe-b-plane-7.html * igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-5: - shard-dg2: NOTRUN -> [SKIP][358] ([i915#15608]) +10 other tests skip [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg2-8/igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-5.html * igt@kms_plane@pixel-format-y-tiled-ccs-modifier: - shard-tglu: NOTRUN -> [SKIP][359] ([i915#15608] / [i915#8825]) +1 other test skip [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-tglu-8/igt@kms_plane@pixel-format-y-tiled-ccs-modifier.html * igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping@pipe-a-plane-3: - shard-rkl: NOTRUN -> [SKIP][360] ([i915#15608]) +31 other tests skip [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-3/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping@pipe-a-plane-3.html * igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping@pipe-a-plane-5: - shard-tglu: NOTRUN -> [SKIP][361] ([i915#15608]) +24 other tests skip [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-tglu-6/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping@pipe-a-plane-5.html * igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping@pipe-b-plane-5: - shard-rkl: NOTRUN -> [SKIP][362] ([i915#15609] / [i915#8825]) +1 other test skip [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-3/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping@pipe-b-plane-5.html * igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier-source-clamping: - shard-mtlp: NOTRUN -> [SKIP][363] ([i915#15608] / [i915#15609] / [i915#8825]) [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-mtlp-4/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier-source-clamping.html * igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier-source-clamping@pipe-b-plane-5: - shard-mtlp: NOTRUN -> [SKIP][364] ([i915#15609] / [i915#8825]) [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-mtlp-4/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier-source-clamping@pipe-b-plane-5.html * igt@kms_plane@pixel-format-y-tiled-modifier-source-clamping: - shard-dg2: NOTRUN -> [SKIP][365] ([i915#15608] / [i915#15609] / [i915#8825]) [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg2-3/igt@kms_plane@pixel-format-y-tiled-modifier-source-clamping.html * igt@kms_plane@pixel-format-y-tiled-modifier-source-clamping@pipe-a-plane-5: - shard-dg2: NOTRUN -> [SKIP][366] ([i915#15609]) [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg2-3/igt@kms_plane@pixel-format-y-tiled-modifier-source-clamping@pipe-a-plane-5.html * igt@kms_plane@pixel-format-y-tiled-modifier-source-clamping@pipe-b-plane-5: - shard-dg2: NOTRUN -> [SKIP][367] ([i915#15609] / [i915#8825]) [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg2-3/igt@kms_plane@pixel-format-y-tiled-modifier-source-clamping@pipe-b-plane-5.html * igt@kms_plane@pixel-format-yf-tiled-ccs-modifier-source-clamping@pipe-b-plane-7: - shard-tglu-1: NOTRUN -> [SKIP][368] ([i915#15609] / [i915#8825]) +1 other test skip [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-tglu-1/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier-source-clamping@pipe-b-plane-7.html * igt@kms_plane@pixel-format-yf-tiled-modifier: - shard-rkl: NOTRUN -> [SKIP][369] ([i915#15608] / [i915#8825]) +5 other tests skip [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-7/igt@kms_plane@pixel-format-yf-tiled-modifier.html - shard-dg2: NOTRUN -> [SKIP][370] ([i915#15608] / [i915#8825]) +1 other test skip [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg2-5/igt@kms_plane@pixel-format-yf-tiled-modifier.html * igt@kms_plane_alpha_blend@alpha-transparent-fb: - shard-glk10: NOTRUN -> [FAIL][371] ([i915#10647] / [i915#12177]) [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-glk10/igt@kms_plane_alpha_blend@alpha-transparent-fb.html * igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1: - shard-glk10: NOTRUN -> [FAIL][372] ([i915#10647]) +1 other test fail [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-glk10/igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1.html * igt@kms_plane_multiple@2x-tiling-4: - shard-rkl: NOTRUN -> [SKIP][373] ([i915#13958]) +1 other test skip [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-5/igt@kms_plane_multiple@2x-tiling-4.html * igt@kms_plane_multiple@2x-tiling-x: - shard-dg2: NOTRUN -> [SKIP][374] ([i915#13958]) [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg2-7/igt@kms_plane_multiple@2x-tiling-x.html - shard-dg1: NOTRUN -> [SKIP][375] ([i915#13958]) [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg1-12/igt@kms_plane_multiple@2x-tiling-x.html - shard-mtlp: NOTRUN -> [SKIP][376] ([i915#13958]) [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-mtlp-5/igt@kms_plane_multiple@2x-tiling-x.html * igt@kms_plane_multiple@2x-tiling-yf: - shard-tglu: NOTRUN -> [SKIP][377] ([i915#13958]) +2 other tests skip [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-tglu-4/igt@kms_plane_multiple@2x-tiling-yf.html * igt@kms_plane_multiple@tiling-4: - shard-tglu-1: NOTRUN -> [SKIP][378] ([i915#14259]) [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-tglu-1/igt@kms_plane_multiple@tiling-4.html * igt@kms_plane_multiple@tiling-yf: - shard-rkl: NOTRUN -> [SKIP][379] ([i915#14259]) [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-8/igt@kms_plane_multiple@tiling-yf.html - shard-tglu: NOTRUN -> [SKIP][380] ([i915#14259]) [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-tglu-5/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@intel-max-src-size: - shard-tglu-1: NOTRUN -> [SKIP][381] ([i915#6953]) [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-tglu-1/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-b: - shard-rkl: NOTRUN -> [SKIP][382] ([i915#15329]) +3 other tests skip [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-7/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-b.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c: - shard-tglu: NOTRUN -> [SKIP][383] ([i915#15329]) +4 other tests skip [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-tglu-5/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b: - shard-tglu-1: NOTRUN -> [SKIP][384] ([i915#15329]) +4 other tests skip [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-tglu-1/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5: - shard-mtlp: NOTRUN -> [SKIP][385] ([i915#15329] / [i915#6953]) [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-mtlp-5/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-c: - shard-mtlp: NOTRUN -> [SKIP][386] ([i915#15329]) +8 other tests skip [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-mtlp-5/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-c.html * igt@kms_pm_backlight@bad-brightness: - shard-tglu-1: NOTRUN -> [SKIP][387] ([i915#9812]) [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-tglu-1/igt@kms_pm_backlight@bad-brightness.html * igt@kms_pm_backlight@basic-brightness: - shard-dg1: NOTRUN -> [SKIP][388] ([i915#5354]) [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg1-17/igt@kms_pm_backlight@basic-brightness.html * igt@kms_pm_backlight@fade-with-suspend: - shard-rkl: NOTRUN -> [SKIP][389] ([i915#5354]) +1 other test skip [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-8/igt@kms_pm_backlight@fade-with-suspend.html - shard-tglu: NOTRUN -> [SKIP][390] ([i915#9812]) +1 other test skip [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-tglu-5/igt@kms_pm_backlight@fade-with-suspend.html * igt@kms_pm_dc@dc3co-vpb-simulation: - shard-rkl: NOTRUN -> [SKIP][391] ([i915#9685]) [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-3/igt@kms_pm_dc@dc3co-vpb-simulation.html * igt@kms_pm_dc@dc5-psr: - shard-dg2: NOTRUN -> [SKIP][392] ([i915#9685]) +1 other test skip [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg2-5/igt@kms_pm_dc@dc5-psr.html - shard-rkl: NOTRUN -> [SKIP][393] ([i915#14544] / [i915#9685]) [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-6/igt@kms_pm_dc@dc5-psr.html - shard-dg1: NOTRUN -> [SKIP][394] ([i915#9685]) [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg1-16/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_dc@dc6-psr: - shard-tglu-1: NOTRUN -> [SKIP][395] ([i915#9685]) +1 other test skip [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-tglu-1/igt@kms_pm_dc@dc6-psr.html * igt@kms_pm_dc@dc9-dpms: - shard-rkl: NOTRUN -> [SKIP][396] ([i915#4281]) [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-4/igt@kms_pm_dc@dc9-dpms.html - shard-tglu-1: NOTRUN -> [SKIP][397] ([i915#4281]) [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-tglu-1/igt@kms_pm_dc@dc9-dpms.html * igt@kms_pm_rpm@dpms-lpsp: - shard-dg2: [PASS][398] -> [SKIP][399] ([i915#15073]) [398]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-dg2-4/igt@kms_pm_rpm@dpms-lpsp.html [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg2-5/igt@kms_pm_rpm@dpms-lpsp.html - shard-rkl: [PASS][400] -> [SKIP][401] ([i915#15073]) +4 other tests skip [400]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-rkl-5/igt@kms_pm_rpm@dpms-lpsp.html [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-7/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-dg1: [PASS][402] -> [SKIP][403] ([i915#15073]) +2 other tests skip [402]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-dg1-17/igt@kms_pm_rpm@modeset-non-lpsp.html [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg1-14/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-tglu-1: NOTRUN -> [SKIP][404] ([i915#15073]) [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-tglu-1/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_prime@basic-crc-hybrid: - shard-tglu: NOTRUN -> [SKIP][405] ([i915#6524]) [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-tglu-9/igt@kms_prime@basic-crc-hybrid.html * igt@kms_prime@d3hot: - shard-mtlp: NOTRUN -> [SKIP][406] ([i915#6524]) [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-mtlp-6/igt@kms_prime@d3hot.html * igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][407] ([i915#11520]) +8 other tests skip [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-glk6/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf: - shard-rkl: NOTRUN -> [SKIP][408] ([i915#11520] / [i915#14544]) +4 other tests skip [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-6/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][409] ([i915#9808]) [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-mtlp-8/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf@pipe-a-edp-1.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][410] ([i915#12316]) +4 other tests skip [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-mtlp-8/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf@pipe-b-edp-1.html * igt@kms_psr2_sf@pr-cursor-plane-update-sf: - shard-glk10: NOTRUN -> [SKIP][411] ([i915#11520]) +4 other tests skip [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-glk10/igt@kms_psr2_sf@pr-cursor-plane-update-sf.html * igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf: - shard-tglu-1: NOTRUN -> [SKIP][412] ([i915#11520]) +5 other tests skip [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-tglu-1/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html * igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area: - shard-tglu: NOTRUN -> [SKIP][413] ([i915#11520]) +11 other tests skip [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-tglu-6/igt@kms_psr2_sf@pr-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area: - shard-dg2: NOTRUN -> [SKIP][414] ([i915#11520]) +4 other tests skip [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg2-7/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html - shard-rkl: NOTRUN -> [SKIP][415] ([i915#11520]) +8 other tests skip [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-4/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html - shard-snb: NOTRUN -> [SKIP][416] ([i915#11520]) +3 other tests skip [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-snb5/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html - shard-dg1: NOTRUN -> [SKIP][417] ([i915#11520]) +2 other tests skip [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg1-14/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_su@page_flip-nv12: - shard-rkl: NOTRUN -> [SKIP][418] ([i915#14544] / [i915#9683]) [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-6/igt@kms_psr2_su@page_flip-nv12.html - shard-tglu: NOTRUN -> [SKIP][419] ([i915#9683]) [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-tglu-5/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr2_su@page_flip-p010: - shard-tglu-1: NOTRUN -> [SKIP][420] ([i915#9683]) [420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-tglu-1/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr@fbc-pr-sprite-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][421] ([i915#1072] / [i915#14544] / [i915#9732]) +4 other tests skip [421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-6/igt@kms_psr@fbc-pr-sprite-mmap-gtt.html * igt@kms_psr@fbc-psr-no-drrs: - shard-tglu: NOTRUN -> [SKIP][422] ([i915#9732]) +25 other tests skip [422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-tglu-5/igt@kms_psr@fbc-psr-no-drrs.html * igt@kms_psr@fbc-psr2-cursor-blt: - shard-tglu-1: NOTRUN -> [SKIP][423] ([i915#9732]) +12 other tests skip [423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-tglu-1/igt@kms_psr@fbc-psr2-cursor-blt.html * igt@kms_psr@fbc-psr2-cursor-blt@edp-1: - shard-mtlp: NOTRUN -> [SKIP][424] ([i915#9688]) +17 other tests skip [424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-mtlp-5/igt@kms_psr@fbc-psr2-cursor-blt@edp-1.html * igt@kms_psr@fbc-psr2-sprite-render: - shard-rkl: NOTRUN -> [SKIP][425] ([i915#1072] / [i915#9732]) +25 other tests skip [425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-8/igt@kms_psr@fbc-psr2-sprite-render.html - shard-dg1: NOTRUN -> [SKIP][426] ([i915#1072] / [i915#9732]) +11 other tests skip [426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg1-15/igt@kms_psr@fbc-psr2-sprite-render.html * igt@kms_psr@psr2-primary-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][427] ([i915#1072] / [i915#9732]) +22 other tests skip [427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg2-3/igt@kms_psr@psr2-primary-mmap-gtt.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-tglu: NOTRUN -> [SKIP][428] ([i915#9685]) +1 other test skip [428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-tglu-8/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_rotation_crc@primary-rotation-270: - shard-dg2: NOTRUN -> [SKIP][429] ([i915#12755]) +3 other tests skip [429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg2-5/igt@kms_rotation_crc@primary-rotation-270.html - shard-mtlp: NOTRUN -> [SKIP][430] ([i915#12755]) +3 other tests skip [430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-mtlp-1/igt@kms_rotation_crc@primary-rotation-270.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-tglu: NOTRUN -> [SKIP][431] ([i915#5289]) +1 other test skip [431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-tglu-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-tglu-1: NOTRUN -> [SKIP][432] ([i915#5289]) [432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-tglu-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-dg2: NOTRUN -> [SKIP][433] ([i915#12755] / [i915#5190]) [433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg2-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html - shard-rkl: NOTRUN -> [SKIP][434] ([i915#5289]) [434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html - shard-dg1: NOTRUN -> [SKIP][435] ([i915#5289]) [435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg1-16/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_scaling_modes@scaling-mode-none: - shard-tglu-1: NOTRUN -> [SKIP][436] ([i915#3555]) [436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-tglu-1/igt@kms_scaling_modes@scaling-mode-none.html * igt@kms_setmode@basic: - shard-snb: [PASS][437] -> [FAIL][438] ([i915#15106]) +2 other tests fail [437]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-snb6/igt@kms_setmode@basic.html [438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-snb1/igt@kms_setmode@basic.html * igt@kms_tiled_display@basic-test-pattern: - shard-glk: NOTRUN -> [FAIL][439] ([i915#10959]) [439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-glk6/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-rkl: NOTRUN -> [SKIP][440] ([i915#8623]) [440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-3/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [INCOMPLETE][441] ([i915#12276]) +3 other tests incomplete [441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-glk5/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-1.html * igt@kms_vrr@flip-dpms: - shard-dg2: NOTRUN -> [SKIP][442] ([i915#15243] / [i915#3555]) [442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg2-6/igt@kms_vrr@flip-dpms.html - shard-rkl: NOTRUN -> [SKIP][443] ([i915#15243] / [i915#3555]) [443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-5/igt@kms_vrr@flip-dpms.html * igt@kms_vrr@flipline: - shard-rkl: NOTRUN -> [SKIP][444] ([i915#14544] / [i915#15243] / [i915#3555]) [444]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-6/igt@kms_vrr@flipline.html * igt@perf@global-sseu-config-invalid: - shard-dg2: NOTRUN -> [SKIP][445] ([i915#7387]) [445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg2-8/igt@perf@global-sseu-config-invalid.html * igt@perf@mi-rpc: - shard-rkl: NOTRUN -> [SKIP][446] ([i915#2434]) [446]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-7/igt@perf@mi-rpc.html * igt@perf_pmu@frequency: - shard-dg2: NOTRUN -> [FAIL][447] ([i915#12549] / [i915#6806]) +1 other test fail [447]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg2-1/igt@perf_pmu@frequency.html - shard-dg1: NOTRUN -> [FAIL][448] ([i915#12549] / [i915#6806]) +1 other test fail [448]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg1-14/igt@perf_pmu@frequency.html * igt@perf_pmu@module-unload: - shard-tglu-1: NOTRUN -> [FAIL][449] ([i915#14433]) [449]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-tglu-1/igt@perf_pmu@module-unload.html * igt@perf_pmu@rc6-suspend: - shard-glk: [PASS][450] -> [INCOMPLETE][451] ([i915#13356] / [i915#14242]) [450]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-glk1/igt@perf_pmu@rc6-suspend.html [451]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-glk9/igt@perf_pmu@rc6-suspend.html - shard-rkl: [PASS][452] -> [ABORT][453] ([i915#15131]) [452]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-rkl-7/igt@perf_pmu@rc6-suspend.html [453]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-1/igt@perf_pmu@rc6-suspend.html * igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem: - shard-dg1: NOTRUN -> [SKIP][454] ([i915#14121]) +1 other test skip [454]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg1-17/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html * igt@prime_vgem@basic-fence-read: - shard-rkl: NOTRUN -> [SKIP][455] ([i915#14544] / [i915#3291] / [i915#3708]) [455]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-6/igt@prime_vgem@basic-fence-read.html * igt@prime_vgem@fence-flip-hang: - shard-dg2: NOTRUN -> [SKIP][456] ([i915#3708]) +1 other test skip [456]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg2-5/igt@prime_vgem@fence-flip-hang.html - shard-rkl: NOTRUN -> [SKIP][457] ([i915#3708]) [457]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-7/igt@prime_vgem@fence-flip-hang.html - shard-dg1: NOTRUN -> [SKIP][458] ([i915#3708]) [458]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg1-14/igt@prime_vgem@fence-flip-hang.html - shard-mtlp: NOTRUN -> [SKIP][459] ([i915#3708]) [459]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-mtlp-1/igt@prime_vgem@fence-flip-hang.html * igt@sriov_basic@bind-unbind-vf: - shard-rkl: NOTRUN -> [SKIP][460] ([i915#9917]) +2 other tests skip [460]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-5/igt@sriov_basic@bind-unbind-vf.html * igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-6: - shard-mtlp: NOTRUN -> [FAIL][461] ([i915#12910]) +9 other tests fail [461]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-mtlp-8/igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-6.html * igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-random: - shard-tglu-1: NOTRUN -> [FAIL][462] ([i915#12910]) +9 other tests fail [462]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-tglu-1/igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-random.html * igt@sriov_basic@enable-vfs-autoprobe-on: - shard-dg2: NOTRUN -> [SKIP][463] ([i915#9917]) +1 other test skip [463]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg2-3/igt@sriov_basic@enable-vfs-autoprobe-on.html * igt@sriov_basic@enable-vfs-bind-unbind-each@numvfs-random: - shard-tglu: NOTRUN -> [FAIL][464] ([i915#12910]) +8 other tests fail [464]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-tglu-8/igt@sriov_basic@enable-vfs-bind-unbind-each@numvfs-random.html * igt@tools_test@sysfs_l3_parity: - shard-dg2: NOTRUN -> [SKIP][465] ([i915#4818]) [465]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg2-4/igt@tools_test@sysfs_l3_parity.html #### Possible fixes #### * igt@gem_ccs@suspend-resume: - shard-dg2: [INCOMPLETE][466] ([i915#13356]) -> [PASS][467] [466]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-dg2-4/igt@gem_ccs@suspend-resume.html [467]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg2-8/igt@gem_ccs@suspend-resume.html * igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0: - shard-dg2: [INCOMPLETE][468] ([i915#12392] / [i915#13356]) -> [PASS][469] [468]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-dg2-4/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0.html [469]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg2-8/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0.html * igt@gem_ctx_isolation@preservation-s3: - shard-rkl: [INCOMPLETE][470] ([i915#13356]) -> [PASS][471] +1 other test pass [470]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-rkl-6/igt@gem_ctx_isolation@preservation-s3.html [471]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-2/igt@gem_ctx_isolation@preservation-s3.html * igt@gem_ctx_isolation@preservation-s3@rcs0: - shard-tglu: [INCOMPLETE][472] ([i915#13356]) -> [PASS][473] +1 other test pass [472]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-tglu-9/igt@gem_ctx_isolation@preservation-s3@rcs0.html [473]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-tglu-6/igt@gem_ctx_isolation@preservation-s3@rcs0.html * igt@gem_eio@in-flight-suspend: - shard-rkl: [INCOMPLETE][474] ([i915#13390]) -> [PASS][475] [474]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-rkl-4/igt@gem_eio@in-flight-suspend.html [475]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-3/igt@gem_eio@in-flight-suspend.html * igt@gem_exec_big@single: - shard-tglu: [ABORT][476] ([i915#11713]) -> [PASS][477] [476]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-tglu-10/igt@gem_exec_big@single.html [477]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-tglu-6/igt@gem_exec_big@single.html * igt@gem_softpin@noreloc-s3: - shard-glk: [INCOMPLETE][478] ([i915#13809]) -> [PASS][479] [478]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-glk1/igt@gem_softpin@noreloc-s3.html [479]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-glk6/igt@gem_softpin@noreloc-s3.html * igt@i915_hangman@detector@rcs0: - shard-glk: [INCOMPLETE][480] -> [PASS][481] +1 other test pass [480]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-glk5/igt@i915_hangman@detector@rcs0.html [481]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-glk6/igt@i915_hangman@detector@rcs0.html * igt@i915_module_load@load: - shard-dg1: ([PASS][482], [PASS][483], [PASS][484], [PASS][485], [PASS][486], [PASS][487], [PASS][488], [PASS][489], [PASS][490], [PASS][491], [PASS][492], [PASS][493], [DMESG-WARN][494], [PASS][495], [PASS][496], [PASS][497], [PASS][498], [PASS][499], [PASS][500], [PASS][501], [PASS][502], [PASS][503], [PASS][504], [PASS][505], [PASS][506]) ([i915#4391] / [i915#4423]) -> ([PASS][507], [PASS][508], [PASS][509], [PASS][510], [PASS][511], [PASS][512], [PASS][513], [PASS][514], [PASS][515], [PASS][516], [PASS][517], [PASS][518], [PASS][519], [PASS][520], [PASS][521], [PASS][522], [PASS][523], [PASS][524], [PASS][525], [PASS][526], [PASS][527], [PASS][528], [PASS][529], [PASS][530], [PASS][531]) [482]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-dg1-12/igt@i915_module_load@load.html [483]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-dg1-12/igt@i915_module_load@load.html [484]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-dg1-12/igt@i915_module_load@load.html [485]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-dg1-12/igt@i915_module_load@load.html [486]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-dg1-13/igt@i915_module_load@load.html [487]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-dg1-13/igt@i915_module_load@load.html [488]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-dg1-13/igt@i915_module_load@load.html [489]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-dg1-13/igt@i915_module_load@load.html [490]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-dg1-14/igt@i915_module_load@load.html [491]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-dg1-14/igt@i915_module_load@load.html [492]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-dg1-14/igt@i915_module_load@load.html [493]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-dg1-14/igt@i915_module_load@load.html [494]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-dg1-14/igt@i915_module_load@load.html [495]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-dg1-15/igt@i915_module_load@load.html [496]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-dg1-16/igt@i915_module_load@load.html [497]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-dg1-16/igt@i915_module_load@load.html [498]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-dg1-16/igt@i915_module_load@load.html [499]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-dg1-16/igt@i915_module_load@load.html [500]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-dg1-17/igt@i915_module_load@load.html [501]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-dg1-17/igt@i915_module_load@load.html [502]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-dg1-17/igt@i915_module_load@load.html [503]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-dg1-18/igt@i915_module_load@load.html [504]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-dg1-18/igt@i915_module_load@load.html [505]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-dg1-18/igt@i915_module_load@load.html [506]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-dg1-18/igt@i915_module_load@load.html [507]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg1-15/igt@i915_module_load@load.html [508]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg1-18/igt@i915_module_load@load.html [509]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg1-14/igt@i915_module_load@load.html [510]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg1-17/igt@i915_module_load@load.html [511]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg1-14/igt@i915_module_load@load.html [512]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg1-16/igt@i915_module_load@load.html [513]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg1-16/igt@i915_module_load@load.html [514]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg1-15/igt@i915_module_load@load.html [515]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg1-12/igt@i915_module_load@load.html [516]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg1-18/igt@i915_module_load@load.html [517]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg1-17/igt@i915_module_load@load.html [518]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg1-12/igt@i915_module_load@load.html [519]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg1-12/igt@i915_module_load@load.html [520]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg1-13/igt@i915_module_load@load.html [521]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg1-15/igt@i915_module_load@load.html [522]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg1-13/igt@i915_module_load@load.html [523]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg1-13/igt@i915_module_load@load.html [524]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg1-17/igt@i915_module_load@load.html [525]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg1-18/igt@i915_module_load@load.html [526]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg1-14/igt@i915_module_load@load.html [527]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg1-16/igt@i915_module_load@load.html [528]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg1-15/igt@i915_module_load@load.html [529]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg1-14/igt@i915_module_load@load.html [530]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg1-17/igt@i915_module_load@load.html [531]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg1-18/igt@i915_module_load@load.html * igt@i915_module_load@resize-bar: - shard-dg2: [DMESG-WARN][532] ([i915#14545]) -> [PASS][533] [532]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-dg2-11/igt@i915_module_load@resize-bar.html [533]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg2-6/igt@i915_module_load@resize-bar.html * igt@i915_pm_rc6_residency@rc6-accuracy: - shard-dg2: [FAIL][534] ([i915#12964]) -> [PASS][535] +1 other test pass [534]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-dg2-6/igt@i915_pm_rc6_residency@rc6-accuracy.html [535]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg2-1/igt@i915_pm_rc6_residency@rc6-accuracy.html * igt@i915_selftest@live@gem_contexts: - shard-dg2: [DMESG-FAIL][536] ([i915#15558]) -> [PASS][537] [536]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-dg2-1/igt@i915_selftest@live@gem_contexts.html [537]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg2-8/igt@i915_selftest@live@gem_contexts.html * igt@kms_big_fb@4-tiled-64bpp-rotate-180: - shard-mtlp: [INCOMPLETE][538] -> [PASS][539] [538]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-mtlp-3/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html [539]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-mtlp-1/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html * igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-2: - shard-rkl: [FAIL][540] ([i915#13566]) -> [PASS][541] +1 other test pass [540]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-rkl-3/igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-2.html [541]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-3/igt@kms_cursor_crc@cursor-random-256x85@pipe-a-hdmi-a-2.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-dg1: [DMESG-WARN][542] ([i915#4423]) -> [PASS][543] +2 other tests pass [542]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-dg1-17/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [543]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg1-18/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_force_connector_basic@prune-stale-modes: - shard-mtlp: [SKIP][544] -> [PASS][545] +1 other test pass [544]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-mtlp-1/igt@kms_force_connector_basic@prune-stale-modes.html [545]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-mtlp-8/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_hdr@bpc-switch: - shard-rkl: [SKIP][546] ([i915#3555] / [i915#8228]) -> [PASS][547] [546]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-rkl-2/igt@kms_hdr@bpc-switch.html [547]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-6/igt@kms_hdr@bpc-switch.html * igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a: - shard-rkl: [INCOMPLETE][548] ([i915#14412]) -> [PASS][549] +1 other test pass [548]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-rkl-3/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html [549]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-8/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html * igt@kms_pm_rpm@dpms-lpsp: - shard-dg1: [SKIP][550] ([i915#15073]) -> [PASS][551] [550]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-dg1-13/igt@kms_pm_rpm@dpms-lpsp.html [551]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg1-14/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-rkl: [SKIP][552] ([i915#15073]) -> [PASS][553] +1 other test pass [552]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-rkl-8/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html [553]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-4/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@kms_pm_rpm@system-suspend-idle: - shard-dg2: [INCOMPLETE][554] ([i915#14419]) -> [PASS][555] [554]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-dg2-3/igt@kms_pm_rpm@system-suspend-idle.html [555]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg2-4/igt@kms_pm_rpm@system-suspend-idle.html * igt@kms_vrr@negative-basic: - shard-mtlp: [FAIL][556] ([i915#15420]) -> [PASS][557] +1 other test pass [556]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-mtlp-6/igt@kms_vrr@negative-basic.html [557]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-mtlp-5/igt@kms_vrr@negative-basic.html * igt@perf_pmu@all-busy-idle-check-all: - shard-dg2: [FAIL][558] ([i915#15453]) -> [PASS][559] [558]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-dg2-3/igt@perf_pmu@all-busy-idle-check-all.html [559]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg2-1/igt@perf_pmu@all-busy-idle-check-all.html - shard-dg1: [FAIL][560] -> [PASS][561] [560]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-dg1-12/igt@perf_pmu@all-busy-idle-check-all.html [561]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg1-14/igt@perf_pmu@all-busy-idle-check-all.html - shard-mtlp: [FAIL][562] ([i915#15453]) -> [PASS][563] [562]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-mtlp-2/igt@perf_pmu@all-busy-idle-check-all.html [563]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-mtlp-4/igt@perf_pmu@all-busy-idle-check-all.html * igt@perf_pmu@render-node-busy-idle: - shard-mtlp: [FAIL][564] ([i915#4349]) -> [PASS][565] +5 other tests pass [564]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-mtlp-1/igt@perf_pmu@render-node-busy-idle.html [565]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-mtlp-6/igt@perf_pmu@render-node-busy-idle.html #### Warnings #### * igt@device_reset@cold-reset-bound: - shard-rkl: [SKIP][566] ([i915#11078]) -> [SKIP][567] ([i915#11078] / [i915#14544]) [566]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-rkl-5/igt@device_reset@cold-reset-bound.html [567]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-6/igt@device_reset@cold-reset-bound.html * igt@gem_ccs@ctrl-surf-copy-new-ctx: - shard-rkl: [SKIP][568] ([i915#9323]) -> [SKIP][569] ([i915#14544] / [i915#9323]) [568]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-rkl-2/igt@gem_ccs@ctrl-surf-copy-new-ctx.html [569]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-6/igt@gem_ccs@ctrl-surf-copy-new-ctx.html * igt@gem_exec_balancer@parallel-keep-in-fence: - shard-rkl: [SKIP][570] ([i915#4525]) -> [SKIP][571] ([i915#14544] / [i915#4525]) [570]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-rkl-5/igt@gem_exec_balancer@parallel-keep-in-fence.html [571]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-6/igt@gem_exec_balancer@parallel-keep-in-fence.html * igt@gem_exec_reloc@basic-wc-cpu: - shard-rkl: [SKIP][572] ([i915#14544] / [i915#3281]) -> [SKIP][573] ([i915#3281]) [572]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-rkl-6/igt@gem_exec_reloc@basic-wc-cpu.html [573]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-2/igt@gem_exec_reloc@basic-wc-cpu.html * igt@gem_exec_reloc@basic-write-wc-active: - shard-rkl: [SKIP][574] ([i915#3281]) -> [SKIP][575] ([i915#14544] / [i915#3281]) +2 other tests skip [574]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-rkl-3/igt@gem_exec_reloc@basic-write-wc-active.html [575]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-6/igt@gem_exec_reloc@basic-write-wc-active.html * igt@gem_lmem_swapping@heavy-verify-random-ccs: - shard-rkl: [SKIP][576] ([i915#14544] / [i915#4613]) -> [SKIP][577] ([i915#4613]) [576]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-rkl-6/igt@gem_lmem_swapping@heavy-verify-random-ccs.html [577]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-2/igt@gem_lmem_swapping@heavy-verify-random-ccs.html * igt@gem_lmem_swapping@random: - shard-rkl: [SKIP][578] ([i915#4613]) -> [SKIP][579] ([i915#14544] / [i915#4613]) +1 other test skip [578]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-rkl-7/igt@gem_lmem_swapping@random.html [579]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-6/igt@gem_lmem_swapping@random.html * igt@gem_partial_pwrite_pread@reads-uncached: - shard-rkl: [SKIP][580] ([i915#14544] / [i915#3282]) -> [SKIP][581] ([i915#3282]) +1 other test skip [580]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-rkl-6/igt@gem_partial_pwrite_pread@reads-uncached.html [581]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-7/igt@gem_partial_pwrite_pread@reads-uncached.html * igt@gem_partial_pwrite_pread@writes-after-reads-uncached: - shard-rkl: [SKIP][582] ([i915#3282]) -> [SKIP][583] ([i915#14544] / [i915#3282]) +1 other test skip [582]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-rkl-7/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html [583]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-6/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html * igt@gem_set_tiling_vs_blt@untiled-to-tiled: - shard-rkl: [SKIP][584] ([i915#8411]) -> [SKIP][585] ([i915#14544] / [i915#8411]) +1 other test skip [584]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-rkl-7/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html [585]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-6/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html * igt@gem_softpin@noreloc-s3: - shard-rkl: [INCOMPLETE][586] ([i915#13809]) -> [ABORT][587] ([i915#15131]) [586]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-rkl-6/igt@gem_softpin@noreloc-s3.html [587]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-1/igt@gem_softpin@noreloc-s3.html * igt@gen7_exec_parse@bitmasks: - shard-rkl: [SKIP][588] ([i915#14544]) -> [SKIP][589] +1 other test skip [588]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-rkl-6/igt@gen7_exec_parse@bitmasks.html [589]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-5/igt@gen7_exec_parse@bitmasks.html * igt@gen9_exec_parse@batch-invalid-length: - shard-rkl: [SKIP][590] ([i915#14544] / [i915#2527]) -> [SKIP][591] ([i915#2527]) [590]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-rkl-6/igt@gen9_exec_parse@batch-invalid-length.html [591]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-3/igt@gen9_exec_parse@batch-invalid-length.html * igt@gen9_exec_parse@bb-chained: - shard-rkl: [SKIP][592] ([i915#2527]) -> [SKIP][593] ([i915#14544] / [i915#2527]) +1 other test skip [592]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-rkl-3/igt@gen9_exec_parse@bb-chained.html [593]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-6/igt@gen9_exec_parse@bb-chained.html * igt@i915_module_load@fault-injection: - shard-dg1: [ABORT][594] ([i915#11815]) -> [ABORT][595] ([i915#11815] / [i915#15481]) +1 other test abort [594]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-dg1-16/igt@i915_module_load@fault-injection.html [595]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg1-13/igt@i915_module_load@fault-injection.html * igt@i915_module_load@resize-bar: - shard-rkl: [SKIP][596] ([i915#6412]) -> [SKIP][597] ([i915#14544] / [i915#6412]) [596]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-rkl-8/igt@i915_module_load@resize-bar.html [597]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-6/igt@i915_module_load@resize-bar.html * igt@i915_query@hwconfig_table: - shard-rkl: [SKIP][598] ([i915#6245]) -> [SKIP][599] ([i915#14544] / [i915#6245]) [598]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-rkl-7/igt@i915_query@hwconfig_table.html [599]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-6/igt@i915_query@hwconfig_table.html * igt@kms_big_fb@4-tiled-addfb-size-overflow: - shard-rkl: [SKIP][600] ([i915#14544] / [i915#5286]) -> [SKIP][601] ([i915#5286]) +1 other test skip [600]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-rkl-6/igt@kms_big_fb@4-tiled-addfb-size-overflow.html [601]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-4/igt@kms_big_fb@4-tiled-addfb-size-overflow.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-rkl: [SKIP][602] ([i915#5286]) -> [SKIP][603] ([i915#14544] / [i915#5286]) +2 other tests skip [602]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-rkl-4/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html [603]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@linear-16bpp-rotate-270: - shard-rkl: [SKIP][604] ([i915#14544] / [i915#3638]) -> [SKIP][605] ([i915#3638]) +1 other test skip [604]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-rkl-6/igt@kms_big_fb@linear-16bpp-rotate-270.html [605]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-8/igt@kms_big_fb@linear-16bpp-rotate-270.html * igt@kms_big_fb@x-tiled-16bpp-rotate-90: - shard-rkl: [SKIP][606] ([i915#3638]) -> [SKIP][607] ([i915#14544] / [i915#3638]) [606]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-rkl-7/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html [607]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-6/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html * igt@kms_ccs@crc-primary-basic-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-2: - shard-rkl: [SKIP][608] ([i915#14544] / [i915#6095]) -> [SKIP][609] ([i915#6095]) +1 other test skip [608]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-rkl-6/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-2.html [609]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-7/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-2.html * igt@kms_ccs@crc-primary-basic-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-2: - shard-rkl: [SKIP][610] ([i915#14098] / [i915#14544] / [i915#6095]) -> [SKIP][611] ([i915#14098] / [i915#6095]) +1 other test skip [610]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-rkl-6/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-2.html [611]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-7/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-2.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc: - shard-rkl: [SKIP][612] ([i915#14098] / [i915#6095]) -> [SKIP][613] ([i915#14098] / [i915#14544] / [i915#6095]) +8 other tests skip [612]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-rkl-7/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc.html [613]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-2: - shard-rkl: [SKIP][614] ([i915#6095]) -> [SKIP][615] ([i915#14544] / [i915#6095]) +3 other tests skip [614]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-rkl-7/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-2.html [615]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-2.html * igt@kms_chamelium_edid@dp-edid-stress-resolution-4k: - shard-dg1: [SKIP][616] ([i915#11151] / [i915#7828]) -> [SKIP][617] ([i915#11151] / [i915#4423] / [i915#7828]) [616]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-dg1-15/igt@kms_chamelium_edid@dp-edid-stress-resolution-4k.html [617]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg1-17/igt@kms_chamelium_edid@dp-edid-stress-resolution-4k.html * igt@kms_chamelium_frames@dp-frame-dump: - shard-rkl: [SKIP][618] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][619] ([i915#11151] / [i915#7828]) +1 other test skip [618]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-rkl-6/igt@kms_chamelium_frames@dp-frame-dump.html [619]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-4/igt@kms_chamelium_frames@dp-frame-dump.html * igt@kms_chamelium_hpd@vga-hpd-for-each-pipe: - shard-rkl: [SKIP][620] ([i915#11151] / [i915#7828]) -> [SKIP][621] ([i915#11151] / [i915#14544] / [i915#7828]) +3 other tests skip [620]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-rkl-8/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html [621]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-6/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html * igt@kms_content_protection@legacy-hdcp14: - shard-rkl: [SKIP][622] ([i915#6944]) -> [SKIP][623] ([i915#14544] / [i915#6944]) +1 other test skip [622]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-rkl-5/igt@kms_content_protection@legacy-hdcp14.html [623]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-6/igt@kms_content_protection@legacy-hdcp14.html * igt@kms_content_protection@mei-interface: - shard-dg1: [SKIP][624] ([i915#9433]) -> [SKIP][625] ([i915#6944] / [i915#9424]) [624]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-dg1-12/igt@kms_content_protection@mei-interface.html [625]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg1-18/igt@kms_content_protection@mei-interface.html * igt@kms_content_protection@type1: - shard-rkl: [SKIP][626] ([i915#14544] / [i915#6944] / [i915#7118] / [i915#9424]) -> [SKIP][627] ([i915#6944] / [i915#7118] / [i915#9424]) [626]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-rkl-6/igt@kms_content_protection@type1.html [627]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-4/igt@kms_content_protection@type1.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-rkl: [SKIP][628] ([i915#13049]) -> [SKIP][629] ([i915#13049] / [i915#14544]) [628]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-rkl-2/igt@kms_cursor_crc@cursor-offscreen-512x512.html [629]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-6/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_crc@cursor-rapid-movement-32x10: - shard-rkl: [SKIP][630] ([i915#3555]) -> [SKIP][631] ([i915#14544] / [i915#3555]) +1 other test skip [630]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-rkl-2/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html [631]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-6/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy: - shard-rkl: [SKIP][632] -> [SKIP][633] ([i915#14544]) +5 other tests skip [632]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-rkl-4/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html [633]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-6/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-rkl: [SKIP][634] ([i915#4103]) -> [SKIP][635] ([i915#14544] / [i915#4103]) [634]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-rkl-4/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html [635]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_dp_linktrain_fallback@dp-fallback: - shard-rkl: [SKIP][636] ([i915#13707]) -> [SKIP][637] ([i915#13707] / [i915#14544]) [636]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-rkl-8/igt@kms_dp_linktrain_fallback@dp-fallback.html [637]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-6/igt@kms_dp_linktrain_fallback@dp-fallback.html * igt@kms_dsc@dsc-basic: - shard-rkl: [SKIP][638] ([i915#14544] / [i915#3555] / [i915#3840]) -> [SKIP][639] ([i915#3555] / [i915#3840]) [638]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-rkl-6/igt@kms_dsc@dsc-basic.html [639]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-7/igt@kms_dsc@dsc-basic.html * igt@kms_dsc@dsc-fractional-bpp: - shard-rkl: [SKIP][640] ([i915#3840]) -> [SKIP][641] ([i915#14544] / [i915#3840]) [640]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-rkl-5/igt@kms_dsc@dsc-fractional-bpp.html [641]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-6/igt@kms_dsc@dsc-fractional-bpp.html * igt@kms_dsc@dsc-with-formats: - shard-rkl: [SKIP][642] ([i915#3555] / [i915#3840]) -> [SKIP][643] ([i915#14544] / [i915#3555] / [i915#3840]) [642]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-rkl-7/igt@kms_dsc@dsc-with-formats.html [643]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-6/igt@kms_dsc@dsc-with-formats.html * igt@kms_dsc@dsc-with-output-formats-with-bpc: - shard-rkl: [SKIP][644] ([i915#3840] / [i915#9053]) -> [SKIP][645] ([i915#14544] / [i915#3840] / [i915#9053]) [644]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-rkl-4/igt@kms_dsc@dsc-with-output-formats-with-bpc.html [645]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-6/igt@kms_dsc@dsc-with-output-formats-with-bpc.html * igt@kms_flip@2x-flip-vs-dpms-on-nop: - shard-rkl: [SKIP][646] ([i915#14544] / [i915#9934]) -> [SKIP][647] ([i915#9934]) [646]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-rkl-6/igt@kms_flip@2x-flip-vs-dpms-on-nop.html [647]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-8/igt@kms_flip@2x-flip-vs-dpms-on-nop.html * igt@kms_flip@2x-modeset-vs-vblank-race: - shard-rkl: [SKIP][648] ([i915#9934]) -> [SKIP][649] ([i915#14544] / [i915#9934]) +3 other tests skip [648]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-rkl-3/igt@kms_flip@2x-modeset-vs-vblank-race.html [649]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-6/igt@kms_flip@2x-modeset-vs-vblank-race.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling: - shard-rkl: [SKIP][650] ([i915#15643]) -> [SKIP][651] ([i915#14544] / [i915#15643]) [650]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-rkl-2/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html [651]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling: - shard-rkl: [SKIP][652] ([i915#14544] / [i915#15643]) -> [SKIP][653] ([i915#15643]) [652]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html [653]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt: - shard-rkl: [SKIP][654] ([i915#14544] / [i915#1825]) -> [SKIP][655] ([i915#1825]) +7 other tests skip [654]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html [655]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-rkl: [SKIP][656] ([i915#1825]) -> [SKIP][657] ([i915#14544] / [i915#1825]) +20 other tests skip [656]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-rkl-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc.html [657]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-tiling-4: - shard-rkl: [SKIP][658] ([i915#5439]) -> [SKIP][659] ([i915#14544] / [i915#5439]) [658]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-rkl-3/igt@kms_frontbuffer_tracking@fbc-tiling-4.html [659]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-tiling-4.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-blt: - shard-dg2: [SKIP][660] ([i915#10433] / [i915#15102] / [i915#3458]) -> [SKIP][661] ([i915#15102] / [i915#3458]) +1 other test skip [660]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-blt.html [661]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg2-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt: - shard-dg2: [SKIP][662] ([i915#15102] / [i915#3458]) -> [SKIP][663] ([i915#10433] / [i915#15102] / [i915#3458]) [662]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-dg2-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt.html [663]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-abgr161616f-draw-render: - shard-rkl: [SKIP][664] ([i915#15574]) -> [SKIP][665] ([i915#14544] / [i915#15574]) +1 other test skip [664]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-rkl-8/igt@kms_frontbuffer_tracking@fbcpsr-abgr161616f-draw-render.html [665]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-abgr161616f-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-gtt: - shard-rkl: [SKIP][666] ([i915#14544] / [i915#15102] / [i915#3023]) -> [SKIP][667] ([i915#15102] / [i915#3023]) +2 other tests skip [666]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-gtt.html [667]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt: - shard-rkl: [SKIP][668] ([i915#15102]) -> [SKIP][669] ([i915#14544] / [i915#15102]) [668]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt.html [669]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-gtt: - shard-rkl: [SKIP][670] ([i915#14544] / [i915#15102]) -> [SKIP][671] ([i915#15102]) [670]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-gtt.html [671]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-cpu: - shard-rkl: [SKIP][672] ([i915#15102] / [i915#3023]) -> [SKIP][673] ([i915#14544] / [i915#15102] / [i915#3023]) +7 other tests skip [672]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-cpu.html [673]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-cpu.html * igt@kms_hdr@static-toggle-suspend: - shard-rkl: [SKIP][674] ([i915#3555] / [i915#8228]) -> [INCOMPLETE][675] ([i915#15436]) [674]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-rkl-5/igt@kms_hdr@static-toggle-suspend.html [675]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-6/igt@kms_hdr@static-toggle-suspend.html * igt@kms_joiner@basic-max-non-joiner: - shard-rkl: [SKIP][676] ([i915#13688]) -> [SKIP][677] ([i915#13688] / [i915#14544]) [676]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-rkl-8/igt@kms_joiner@basic-max-non-joiner.html [677]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-6/igt@kms_joiner@basic-max-non-joiner.html * igt@kms_joiner@basic-ultra-joiner: - shard-rkl: [SKIP][678] ([i915#15458]) -> [SKIP][679] ([i915#14544] / [i915#15458]) [678]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-rkl-5/igt@kms_joiner@basic-ultra-joiner.html [679]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-6/igt@kms_joiner@basic-ultra-joiner.html * igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier-source-clamping: - shard-rkl: [SKIP][680] ([i915#14544] / [i915#15608] / [i915#15609] / [i915#8825]) -> [SKIP][681] ([i915#15608] / [i915#15609] / [i915#8825]) [680]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier-source-clamping.html [681]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-5/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier-source-clamping.html * igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier-source-clamping@pipe-a-plane-0: - shard-rkl: [SKIP][682] ([i915#14544] / [i915#15608]) -> [SKIP][683] ([i915#15608]) [682]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier-source-clamping@pipe-a-plane-0.html [683]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-5/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier-source-clamping@pipe-a-plane-0.html * igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier-source-clamping@pipe-b-plane-5: - shard-rkl: [SKIP][684] ([i915#14544] / [i915#15609] / [i915#8825]) -> [SKIP][685] ([i915#15609] / [i915#8825]) [684]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier-source-clamping@pipe-b-plane-5.html [685]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-5/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier-source-clamping@pipe-b-plane-5.html * igt@kms_plane_multiple@2x-tiling-none: - shard-rkl: [SKIP][686] ([i915#13958]) -> [SKIP][687] ([i915#13958] / [i915#14544]) +1 other test skip [686]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-rkl-2/igt@kms_plane_multiple@2x-tiling-none.html [687]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-6/igt@kms_plane_multiple@2x-tiling-none.html * igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a: - shard-rkl: [SKIP][688] ([i915#15329]) -> [SKIP][689] ([i915#14544] / [i915#15329]) +3 other tests skip [688]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-rkl-5/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a.html [689]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-6/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a.html * igt@kms_pm_backlight@fade-with-dpms: - shard-rkl: [SKIP][690] ([i915#5354]) -> [SKIP][691] ([i915#14544] / [i915#5354]) [690]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-rkl-4/igt@kms_pm_backlight@fade-with-dpms.html [691]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-6/igt@kms_pm_backlight@fade-with-dpms.html * igt@kms_pm_dc@dc5-retention-flops: - shard-rkl: [SKIP][692] ([i915#3828]) -> [SKIP][693] ([i915#14544] / [i915#3828]) [692]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-rkl-8/igt@kms_pm_dc@dc5-retention-flops.html [693]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-6/igt@kms_pm_dc@dc5-retention-flops.html * igt@kms_pm_lpsp@kms-lpsp: - shard-rkl: [SKIP][694] ([i915#9340]) -> [SKIP][695] ([i915#14544] / [i915#9340]) [694]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-rkl-7/igt@kms_pm_lpsp@kms-lpsp.html [695]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-6/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_prime@basic-modeset-hybrid: - shard-rkl: [SKIP][696] ([i915#6524]) -> [SKIP][697] ([i915#14544] / [i915#6524]) [696]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-rkl-5/igt@kms_prime@basic-modeset-hybrid.html [697]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-6/igt@kms_prime@basic-modeset-hybrid.html * igt@kms_prime@d3hot: - shard-dg1: [SKIP][698] ([i915#6524]) -> [SKIP][699] ([i915#4423] / [i915#6524]) [698]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-dg1-13/igt@kms_prime@d3hot.html [699]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg1-17/igt@kms_prime@d3hot.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf: - shard-rkl: [SKIP][700] ([i915#11520]) -> [SKIP][701] ([i915#11520] / [i915#14544]) +1 other test skip [700]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-rkl-2/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf.html [701]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-6/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area: - shard-rkl: [SKIP][702] ([i915#11520] / [i915#14544]) -> [SKIP][703] ([i915#11520]) +1 other test skip [702]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-rkl-6/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html [703]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-8/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-rkl: [SKIP][704] ([i915#14544] / [i915#9683]) -> [SKIP][705] ([i915#9683]) [704]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-rkl-6/igt@kms_psr2_su@page_flip-xrgb8888.html [705]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-7/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@psr-cursor-plane-move: - shard-rkl: [SKIP][706] ([i915#1072] / [i915#9732]) -> [SKIP][707] ([i915#1072] / [i915#14544] / [i915#9732]) +9 other tests skip [706]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-rkl-4/igt@kms_psr@psr-cursor-plane-move.html [707]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-6/igt@kms_psr@psr-cursor-plane-move.html * igt@kms_psr@psr-cursor-render: - shard-rkl: [SKIP][708] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][709] ([i915#1072] / [i915#9732]) +2 other tests skip [708]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-rkl-6/igt@kms_psr@psr-cursor-render.html [709]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-4/igt@kms_psr@psr-cursor-render.html * igt@kms_psr@psr-primary-mmap-gtt: - shard-dg1: [SKIP][710] ([i915#1072] / [i915#4423] / [i915#9732]) -> [SKIP][711] ([i915#1072] / [i915#9732]) [710]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-dg1-17/igt@kms_psr@psr-primary-mmap-gtt.html [711]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-dg1-12/igt@kms_psr@psr-primary-mmap-gtt.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-rkl: [SKIP][712] ([i915#9685]) -> [SKIP][713] ([i915#14544] / [i915#9685]) [712]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-rkl-5/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html [713]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-6/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_vrr@flip-suspend: - shard-rkl: [SKIP][714] ([i915#14544] / [i915#15243] / [i915#3555]) -> [SKIP][715] ([i915#15243] / [i915#3555]) [714]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-rkl-6/igt@kms_vrr@flip-suspend.html [715]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-7/igt@kms_vrr@flip-suspend.html * igt@perf@unprivileged-single-ctx-counters: - shard-rkl: [SKIP][716] ([i915#14544] / [i915#2433]) -> [SKIP][717] ([i915#2433]) [716]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17935/shard-rkl-6/igt@perf@unprivileged-single-ctx-counters.html [717]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/shard-rkl-7/igt@perf@unprivileged-single-ctx-counters.html [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307 [i915#10333]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10333 [i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433 [i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434 [i915#10647]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647 [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#10826]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10826 [i915#10959]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10959 [i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099 [i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078 [i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151 [i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520 [i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681 [i915#11713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11713 [i915#11815]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11815 [i915#11965]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11965 [i915#12177]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12177 [i915#12276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12276 [i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313 [i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316 [i915#12392]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12392 [i915#12549]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12549 [i915#12655]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12655 [i915#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713 [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#12910]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910 [i915#12964]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964 [i915#13029]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13029 [i915#13030]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13030 [i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046 [i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049 [i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356 [i915#13390]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13390 [i915#13476]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13476 [i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566 [i915#13688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13688 [i915#13707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707 [i915#13717]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13717 [i915#13749]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749 [i915#13783]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13783 [i915#13784]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13784 [i915#13809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13809 [i915#13820]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13820 [i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958 [i915#14033]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14033 [i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098 [i915#14121]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14121 [i915#14242]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14242 [i915#14259]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259 [i915#14350]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14350 [i915#14412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14412 [i915#14419]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14419 [i915#14433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14433 [i915#14498]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14498 [i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544 [i915#14545]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14545 [i915#14600]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14600 [i915#14712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14712 [i915#15073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073 [i915#15102]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102 [i915#15104]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15104 [i915#15106]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15106 [i915#15131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15131 [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#15365]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15365 [i915#15420]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15420 [i915#15436]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15436 [i915#15453]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15453 [i915#15458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15458 [i915#15481]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15481 [i915#15522]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15522 [i915#15558]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15558 [i915#15574]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15574 [i915#15582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15582 [i915#15608]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15608 [i915#15609]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15609 [i915#15638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15638 [i915#15643]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643 [i915#15645]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15645 [i915#15656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15656 [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#2433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2433 [i915#2434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2434 [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#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#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458 [i915#3469]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3469 [i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638 [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708 [i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828 [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840 [i915#3936]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3936 [i915#3955]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3955 [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#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270 [i915#4281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4281 [i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349 [i915#4387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4387 [i915#4391]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4391 [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#4818]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4818 [i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852 [i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860 [i915#4885]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4885 [i915#4958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4958 [i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190 [i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289 [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354 [i915#5439]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439 [i915#5882]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5882 [i915#5956]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5956 [i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095 [i915#6230]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6230 [i915#6245]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6245 [i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301 [i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334 [i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335 [i915#6412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6412 [i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658 [i915#6590]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6590 [i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621 [i915#6645]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6645 [i915#6806]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6806 [i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944 [i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953 [i915#7116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118 [i915#7387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7387 [i915#7582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7582 [i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697 [i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828 [i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228 [i915#8289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8289 [i915#8381]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381 [i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399 [i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411 [i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428 [i915#8437]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8437 [i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555 [i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623 [i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708 [i915#8810]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8810 [i915#8813]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813 [i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814 [i915#8825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8825 [i915#9053]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9053 [i915#9067]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067 [i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323 [i915#9337]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9337 [i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340 [i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424 [i915#9433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9433 [i915#9531]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9531 [i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683 [i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685 [i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688 [i915#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723 [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 [i915#9766]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9766 [i915#9808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9808 [i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809 [i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812 [i915#9833]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9833 [i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917 [i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934 [i915#9979]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9979 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8737 -> IGTPW_14498 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_17935: 8883ec84c85819dacca94997b60371c3ed57ee29 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_14498: 14498 IGT_8737: 8737 piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14498/index.html [-- Attachment #2: Type: text/html, Size: 239471 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* ✓ Xe.CI.FULL: success for tests/intel/xe_evict: overcommit tests for fault-mode and non-fault-mode VMs (rev3) 2026-02-05 3:50 [PATCH v4 i-g-t 0/1] tests/intel/xe_evict: overcommit tests for fault-mode and non-fault-mode VMs Sobin Thomas ` (4 preceding siblings ...) 2026-02-05 19:29 ` ✓ i915.CI.Full: success for tests/intel/xe_evict: overcommit tests for fault-mode and non-fault-mode VMs (rev3) Patchwork @ 2026-02-05 22:41 ` Patchwork 5 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2026-02-05 22:41 UTC (permalink / raw) To: Sobin Thomas; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 61710 bytes --] == Series Details == Series: tests/intel/xe_evict: overcommit tests for fault-mode and non-fault-mode VMs (rev3) URL : https://patchwork.freedesktop.org/series/159996/ State : success == Summary == CI Bug Log - changes from XEIGT_8737_FULL -> XEIGTPW_14498_FULL ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (2 -> 2) ------------------------------ No changes in participating hosts New tests --------- New tests have been introduced between XEIGT_8737_FULL and XEIGTPW_14498_FULL: ### New IGT tests (4) ### * igt@xe_evict@evict-oom-graceful: - Statuses : 1 pass(s) 1 skip(s) - Exec time: [0.0, 1.14] s * igt@xe_evict@evict-oom-graceful-large: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@xe_evict@evict-vm-fault-overcommit: - Statuses : 1 pass(s) 1 skip(s) - Exec time: [0.0, 14.65] s * igt@xe_evict@evict-vm-nonfault-overcommit: - Statuses : 1 pass(s) 1 skip(s) - Exec time: [0.0, 2.31] s Known issues ------------ Here are the changes found in XEIGTPW_14498_FULL that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_async_flips@async-flip-with-page-flip-events-linear: - shard-lnl: [PASS][1] -> [FAIL][2] ([Intel XE#5993]) +3 other tests fail [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8737/shard-lnl-5/igt@kms_async_flips@async-flip-with-page-flip-events-linear.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-lnl-4/igt@kms_async_flips@async-flip-with-page-flip-events-linear.html * igt@kms_big_fb@4-tiled-64bpp-rotate-90: - shard-bmg: NOTRUN -> [SKIP][3] ([Intel XE#2327]) [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-bmg-5/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html - shard-lnl: NOTRUN -> [SKIP][4] ([Intel XE#1407]) [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-lnl-7/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html * igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip: - shard-lnl: NOTRUN -> [SKIP][5] ([Intel XE#7059]) [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-lnl-3/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip: - shard-bmg: NOTRUN -> [SKIP][6] ([Intel XE#7059]) +1 other test skip [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-bmg-7/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@y-tiled-8bpp-rotate-180: - shard-lnl: NOTRUN -> [SKIP][7] ([Intel XE#1124]) +5 other tests skip [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-lnl-2/igt@kms_big_fb@y-tiled-8bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#1124]) +4 other tests skip [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-bmg-2/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p: - shard-bmg: [PASS][9] -> [SKIP][10] ([Intel XE#2314] / [Intel XE#2894]) [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8737/shard-bmg-8/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-bmg-5/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html * igt@kms_bw@linear-tiling-2-displays-1920x1080p: - shard-lnl: NOTRUN -> [SKIP][11] ([Intel XE#367]) +1 other test skip [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-lnl-5/igt@kms_bw@linear-tiling-2-displays-1920x1080p.html * igt@kms_bw@linear-tiling-3-displays-1920x1080p: - shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#367]) [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-bmg-10/igt@kms_bw@linear-tiling-3-displays-1920x1080p.html * igt@kms_bw@linear-tiling-4-displays-1920x1080p: - shard-lnl: NOTRUN -> [SKIP][13] ([Intel XE#1512]) [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-lnl-4/igt@kms_bw@linear-tiling-4-displays-1920x1080p.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs@pipe-c-dp-2: - shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#2652] / [Intel XE#787]) +20 other tests skip [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-bmg-4/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs@pipe-c-dp-2.html * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-bmg: [PASS][15] -> [DMESG-WARN][16] ([Intel XE#7181]) [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8737/shard-bmg-7/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-bmg-3/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-d-hdmi-a-3: - shard-bmg: [PASS][17] -> [DMESG-WARN][18] ([Intel XE#3428]) [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8737/shard-bmg-7/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-d-hdmi-a-3.html [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-bmg-3/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-d-hdmi-a-3.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc: - shard-lnl: NOTRUN -> [SKIP][19] ([Intel XE#3432]) +1 other test skip [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-lnl-1/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs: - shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#3432]) [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-bmg-1/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#2887]) +5 other tests skip [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-bmg-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html * igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs: - shard-lnl: NOTRUN -> [SKIP][22] ([Intel XE#2887]) +8 other tests skip [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-lnl-6/igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs.html * igt@kms_chamelium_color@gamma: - shard-lnl: NOTRUN -> [SKIP][23] ([Intel XE#306]) +1 other test skip [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-lnl-6/igt@kms_chamelium_color@gamma.html * igt@kms_chamelium_edid@hdmi-mode-timings: - shard-lnl: NOTRUN -> [SKIP][24] ([Intel XE#373]) +3 other tests skip [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-lnl-8/igt@kms_chamelium_edid@hdmi-mode-timings.html * igt@kms_chamelium_hpd@dp-hpd-storm: - shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#2252]) +4 other tests skip [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-bmg-4/igt@kms_chamelium_hpd@dp-hpd-storm.html * igt@kms_content_protection@atomic@pipe-a-dp-2: - shard-bmg: NOTRUN -> [FAIL][26] ([Intel XE#1178] / [Intel XE#3304]) +1 other test fail [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-bmg-4/igt@kms_content_protection@atomic@pipe-a-dp-2.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#2390] / [Intel XE#6974]) [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-bmg-9/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@dp-mst-type-0-hdcp14: - shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#6974]) +1 other test skip [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-bmg-4/igt@kms_content_protection@dp-mst-type-0-hdcp14.html * igt@kms_content_protection@dp-mst-type-1: - shard-lnl: NOTRUN -> [SKIP][29] ([Intel XE#307] / [Intel XE#6974]) [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-lnl-8/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@uevent: - shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#2341]) [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-bmg-6/igt@kms_content_protection@uevent.html * igt@kms_content_protection@uevent-hdcp14@pipe-a-dp-2: - shard-bmg: NOTRUN -> [FAIL][31] ([Intel XE#6707]) [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-bmg-2/igt@kms_content_protection@uevent-hdcp14@pipe-a-dp-2.html * igt@kms_cursor_crc@cursor-offscreen-256x85: - shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#2320]) +1 other test skip [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-bmg-2/igt@kms_cursor_crc@cursor-offscreen-256x85.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#2321]) +2 other tests skip [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-bmg-6/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_crc@cursor-rapid-movement-512x512: - shard-lnl: NOTRUN -> [SKIP][34] ([Intel XE#2321]) [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-lnl-6/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html * igt@kms_cursor_crc@cursor-rapid-movement-max-size: - shard-lnl: NOTRUN -> [SKIP][35] ([Intel XE#1424]) +3 other tests skip [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-lnl-7/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html * igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic: - shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#2291]) [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-bmg-6/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html * igt@kms_cursor_legacy@cursorb-vs-flipb-toggle: - shard-bmg: [PASS][37] -> [SKIP][38] ([Intel XE#2291]) +1 other test skip [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8737/shard-bmg-7/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html * igt@kms_cursor_legacy@flip-vs-cursor-legacy: - shard-bmg: NOTRUN -> [FAIL][39] ([Intel XE#5299]) [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-bmg-7/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html * igt@kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#1508]) [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-bmg-9/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt@kms_dirtyfb@fbc-dirtyfb-ioctl: - shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#4210]) [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-bmg-6/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html * igt@kms_dp_linktrain_fallback@dp-fallback: - shard-bmg: [PASS][42] -> [SKIP][43] ([Intel XE#4294]) [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8737/shard-bmg-1/igt@kms_dp_linktrain_fallback@dp-fallback.html [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-bmg-6/igt@kms_dp_linktrain_fallback@dp-fallback.html * igt@kms_dsc@dsc-with-bpc-formats: - shard-lnl: NOTRUN -> [SKIP][44] ([Intel XE#2244]) +1 other test skip [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-lnl-3/igt@kms_dsc@dsc-with-bpc-formats.html * igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests: - shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#4422]) [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-bmg-3/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests.html * igt@kms_feature_discovery@dp-mst: - shard-lnl: NOTRUN -> [SKIP][46] ([Intel XE#1137]) [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-lnl-3/igt@kms_feature_discovery@dp-mst.html - shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#2375]) [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-bmg-9/igt@kms_feature_discovery@dp-mst.html * igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible: - shard-lnl: NOTRUN -> [SKIP][48] ([Intel XE#1421]) +2 other tests skip [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-lnl-7/igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible.html * igt@kms_flip@2x-flip-vs-suspend-interruptible: - shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#2316]) +1 other test skip [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-bmg-6/igt@kms_flip@2x-flip-vs-suspend-interruptible.html * igt@kms_flip@2x-flip-vs-wf_vblank: - shard-bmg: [PASS][50] -> [SKIP][51] ([Intel XE#2316]) +5 other tests skip [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8737/shard-bmg-4/igt@kms_flip@2x-flip-vs-wf_vblank.html [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-bmg-5/igt@kms_flip@2x-flip-vs-wf_vblank.html * igt@kms_flip@flip-vs-expired-vblank@a-edp1: - shard-lnl: [PASS][52] -> [FAIL][53] ([Intel XE#301]) [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8737/shard-lnl-8/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html * igt@kms_flip@flip-vs-expired-vblank@c-edp1: - shard-lnl: [PASS][54] -> [FAIL][55] ([Intel XE#301] / [Intel XE#3149]) +1 other test fail [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8737/shard-lnl-8/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html * igt@kms_flip_scaled_crc@flip-32bpp-linear-to-32bpp-linear-reflect-x: - shard-lnl: NOTRUN -> [SKIP][56] ([Intel XE#7179]) [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-lnl-1/igt@kms_flip_scaled_crc@flip-32bpp-linear-to-32bpp-linear-reflect-x.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling: - shard-bmg: NOTRUN -> [SKIP][57] ([Intel XE#7178]) +1 other test skip [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-bmg-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling: - shard-lnl: NOTRUN -> [SKIP][58] ([Intel XE#7178]) +2 other tests skip [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-lnl-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html * igt@kms_force_connector_basic@force-connector-state: - shard-lnl: NOTRUN -> [SKIP][59] ([Intel XE#352]) [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-lnl-7/igt@kms_force_connector_basic@force-connector-state.html * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-render: - shard-lnl: NOTRUN -> [SKIP][60] ([Intel XE#651]) +5 other tests skip [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-lnl-3/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-fullscreen: - shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#2311]) +13 other tests skip [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render: - shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#6703]) +6 other tests skip [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-blt: - shard-lnl: NOTRUN -> [SKIP][63] ([Intel XE#656]) +26 other tests skip [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-lnl-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-tiling-linear: - shard-bmg: NOTRUN -> [SKIP][64] ([Intel XE#4141]) +5 other tests skip [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-tiling-linear.html * igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-indfb-draw-render: - shard-lnl: NOTRUN -> [SKIP][65] ([Intel XE#6312]) [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-lnl-3/igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscreen-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcdrrs-argb161616f-draw-mmap-wc: - shard-lnl: NOTRUN -> [SKIP][66] ([Intel XE#7061]) +2 other tests skip [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-lnl-6/igt@kms_frontbuffer_tracking@fbcdrrs-argb161616f-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-render: - shard-bmg: NOTRUN -> [SKIP][67] ([Intel XE#2312]) +3 other tests skip [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt: - shard-bmg: NOTRUN -> [SKIP][68] ([Intel XE#2313]) +11 other tests skip [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt.html * igt@kms_hdr@static-toggle: - shard-lnl: NOTRUN -> [SKIP][69] ([Intel XE#1503]) [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-lnl-2/igt@kms_hdr@static-toggle.html * igt@kms_joiner@invalid-modeset-ultra-joiner: - shard-lnl: NOTRUN -> [SKIP][70] ([Intel XE#6900]) +1 other test skip [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-lnl-8/igt@kms_joiner@invalid-modeset-ultra-joiner.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-bmg: NOTRUN -> [SKIP][71] ([Intel XE#2501]) [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-bmg-5/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html - shard-lnl: NOTRUN -> [SKIP][72] ([Intel XE#356]) [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-lnl-8/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier@pipe-a-plane-5: - shard-bmg: NOTRUN -> [SKIP][73] ([Intel XE#7130]) +18 other tests skip [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-bmg-4/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier@pipe-a-plane-5.html * igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier@pipe-b-plane-5: - shard-bmg: NOTRUN -> [SKIP][74] ([Intel XE#7111] / [Intel XE#7130]) +5 other tests skip [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-bmg-4/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier@pipe-b-plane-5.html * igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping@pipe-a-plane-5: - shard-lnl: NOTRUN -> [SKIP][75] ([Intel XE#7131]) +1 other test skip [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-lnl-1/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping@pipe-a-plane-5.html * igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-5: - shard-lnl: NOTRUN -> [SKIP][76] ([Intel XE#7130]) +15 other tests skip [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-lnl-1/igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-5.html * igt@kms_plane@pixel-format-y-tiled-modifier-source-clamping: - shard-bmg: NOTRUN -> [SKIP][77] ([Intel XE#7111] / [Intel XE#7130] / [Intel XE#7131]) [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-bmg-6/igt@kms_plane@pixel-format-y-tiled-modifier-source-clamping.html * igt@kms_plane@pixel-format-y-tiled-modifier-source-clamping@pipe-a-plane-5: - shard-bmg: NOTRUN -> [SKIP][78] ([Intel XE#7131]) [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-bmg-6/igt@kms_plane@pixel-format-y-tiled-modifier-source-clamping@pipe-a-plane-5.html * igt@kms_plane@pixel-format-y-tiled-modifier-source-clamping@pipe-b-plane-5: - shard-bmg: NOTRUN -> [SKIP][79] ([Intel XE#7111] / [Intel XE#7131]) [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-bmg-6/igt@kms_plane@pixel-format-y-tiled-modifier-source-clamping@pipe-b-plane-5.html * igt@kms_plane_multiple@2x-tiling-yf: - shard-lnl: NOTRUN -> [SKIP][80] ([Intel XE#4596]) [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-lnl-2/igt@kms_plane_multiple@2x-tiling-yf.html * igt@kms_plane_scaling@2x-scaler-multi-pipe: - shard-bmg: [PASS][81] -> [SKIP][82] ([Intel XE#2571]) [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8737/shard-bmg-8/igt@kms_plane_scaling@2x-scaler-multi-pipe.html [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-bmg-5/igt@kms_plane_scaling@2x-scaler-multi-pipe.html * igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25: - shard-lnl: NOTRUN -> [SKIP][83] ([Intel XE#6886]) +7 other tests skip [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-lnl-5/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-factor-0-25.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b: - shard-bmg: NOTRUN -> [SKIP][84] ([Intel XE#6886]) +9 other tests skip [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-bmg-8/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b.html * igt@kms_pm_backlight@basic-brightness: - shard-bmg: NOTRUN -> [SKIP][85] ([Intel XE#870]) [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-bmg-5/igt@kms_pm_backlight@basic-brightness.html * igt@kms_pm_dc@dc3co-vpb-simulation: - shard-lnl: NOTRUN -> [SKIP][86] ([Intel XE#736]) [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-lnl-5/igt@kms_pm_dc@dc3co-vpb-simulation.html - shard-bmg: NOTRUN -> [SKIP][87] ([Intel XE#2391]) [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-bmg-1/igt@kms_pm_dc@dc3co-vpb-simulation.html * igt@kms_pm_dc@deep-pkgc: - shard-lnl: NOTRUN -> [FAIL][88] ([Intel XE#2029]) [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-lnl-4/igt@kms_pm_dc@deep-pkgc.html * igt@kms_pm_rpm@i2c: - shard-bmg: [PASS][89] -> [SKIP][90] ([Intel XE#6693]) [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8737/shard-bmg-3/igt@kms_pm_rpm@i2c.html [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-bmg-2/igt@kms_pm_rpm@i2c.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf: - shard-lnl: NOTRUN -> [SKIP][91] ([Intel XE#1406] / [Intel XE#2893]) +1 other test skip [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-lnl-6/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-sf: - shard-bmg: NOTRUN -> [SKIP][92] ([Intel XE#1406] / [Intel XE#1489]) +4 other tests skip [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-bmg-4/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-bmg: NOTRUN -> [SKIP][93] ([Intel XE#1406] / [Intel XE#2387]) [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-bmg-4/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr2_su@page_flip-nv12: - shard-lnl: NOTRUN -> [SKIP][94] ([Intel XE#1128] / [Intel XE#1406]) [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-lnl-1/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr@fbc-psr2-primary-page-flip@edp-1: - shard-lnl: NOTRUN -> [SKIP][95] ([Intel XE#1406] / [Intel XE#4609]) +1 other test skip [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-lnl-5/igt@kms_psr@fbc-psr2-primary-page-flip@edp-1.html * igt@kms_psr@fbc-psr2-sprite-plane-onoff: - shard-lnl: NOTRUN -> [SKIP][96] ([Intel XE#1406]) +1 other test skip [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-lnl-4/igt@kms_psr@fbc-psr2-sprite-plane-onoff.html * igt@kms_psr@psr2-sprite-plane-onoff: - shard-bmg: NOTRUN -> [SKIP][97] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) +4 other tests skip [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-bmg-7/igt@kms_psr@psr2-sprite-plane-onoff.html * igt@kms_rotation_crc@bad-pixel-format: - shard-bmg: NOTRUN -> [SKIP][98] ([Intel XE#3414] / [Intel XE#3904]) +1 other test skip [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-bmg-10/igt@kms_rotation_crc@bad-pixel-format.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-90: - shard-lnl: NOTRUN -> [SKIP][99] ([Intel XE#3414] / [Intel XE#3904]) [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-lnl-6/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html * igt@kms_setmode@basic@pipe-a-edp-1: - shard-lnl: [PASS][100] -> [FAIL][101] ([Intel XE#6361]) +1 other test fail [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8737/shard-lnl-6/igt@kms_setmode@basic@pipe-a-edp-1.html [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-lnl-7/igt@kms_setmode@basic@pipe-a-edp-1.html * igt@kms_sharpness_filter@invalid-filter-with-scaling-mode: - shard-bmg: NOTRUN -> [SKIP][102] ([Intel XE#6503]) +2 other tests skip [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-bmg-1/igt@kms_sharpness_filter@invalid-filter-with-scaling-mode.html * igt@kms_tiled_display@basic-test-pattern: - shard-bmg: NOTRUN -> [SKIP][103] ([Intel XE#2426]) [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-bmg-9/igt@kms_tiled_display@basic-test-pattern.html * igt@xe_compute@eu-busy-10s: - shard-bmg: NOTRUN -> [SKIP][104] ([Intel XE#6599]) [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-bmg-1/igt@xe_compute@eu-busy-10s.html * igt@xe_eudebug@connect-user: - shard-bmg: NOTRUN -> [SKIP][105] ([Intel XE#4837]) +3 other tests skip [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-bmg-6/igt@xe_eudebug@connect-user.html * igt@xe_eudebug@multiple-sessions: - shard-lnl: NOTRUN -> [SKIP][106] ([Intel XE#4837]) +4 other tests skip [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-lnl-7/igt@xe_eudebug@multiple-sessions.html * igt@xe_eudebug_online@pagefault-write-stress: - shard-lnl: NOTRUN -> [SKIP][107] ([Intel XE#6665]) [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-lnl-6/igt@xe_eudebug_online@pagefault-write-stress.html * igt@xe_eudebug_online@writes-caching-sram-bb-sram-target-sram: - shard-lnl: NOTRUN -> [SKIP][108] ([Intel XE#4837] / [Intel XE#6665]) +1 other test skip [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-lnl-7/igt@xe_eudebug_online@writes-caching-sram-bb-sram-target-sram.html * igt@xe_evict@evict-large-multi-vm: - shard-lnl: NOTRUN -> [SKIP][109] ([Intel XE#688]) +8 other tests skip [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-lnl-4/igt@xe_evict@evict-large-multi-vm.html * igt@xe_evict@evict-small-multi-queue-priority-cm: - shard-bmg: NOTRUN -> [SKIP][110] ([Intel XE#7140]) [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-bmg-4/igt@xe_evict@evict-small-multi-queue-priority-cm.html * igt@xe_exec_basic@many-execqueues-null-defer-bind: - shard-bmg: [PASS][111] -> [SKIP][112] ([Intel XE#6703]) +97 other tests skip [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8737/shard-bmg-10/igt@xe_exec_basic@many-execqueues-null-defer-bind.html [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-bmg-2/igt@xe_exec_basic@many-execqueues-null-defer-bind.html * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate: - shard-bmg: NOTRUN -> [SKIP][113] ([Intel XE#2322]) +2 other tests skip [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-bmg-5/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate.html * igt@xe_exec_basic@multigpu-once-userptr-invalidate: - shard-lnl: NOTRUN -> [SKIP][114] ([Intel XE#1392]) +3 other tests skip [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-lnl-7/igt@xe_exec_basic@multigpu-once-userptr-invalidate.html * igt@xe_exec_fault_mode@many-multi-queue-invalid-fault: - shard-bmg: NOTRUN -> [SKIP][115] ([Intel XE#7136]) +5 other tests skip [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-bmg-4/igt@xe_exec_fault_mode@many-multi-queue-invalid-fault.html * igt@xe_exec_fault_mode@twice-multi-queue-userptr-invalidate-race-imm: - shard-lnl: NOTRUN -> [SKIP][116] ([Intel XE#7136]) +6 other tests skip [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-lnl-1/igt@xe_exec_fault_mode@twice-multi-queue-userptr-invalidate-race-imm.html * igt@xe_exec_multi_queue@few-execs-preempt-mode-userptr-invalidate: - shard-bmg: NOTRUN -> [SKIP][117] ([Intel XE#6874]) +14 other tests skip [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-bmg-9/igt@xe_exec_multi_queue@few-execs-preempt-mode-userptr-invalidate.html * igt@xe_exec_multi_queue@two-queues-close-fd-smem: - shard-lnl: NOTRUN -> [SKIP][118] ([Intel XE#6874]) +17 other tests skip [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-lnl-5/igt@xe_exec_multi_queue@two-queues-close-fd-smem.html * igt@xe_exec_system_allocator@many-64k-mmap-free-huge: - shard-lnl: NOTRUN -> [SKIP][119] ([Intel XE#5007]) [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-lnl-5/igt@xe_exec_system_allocator@many-64k-mmap-free-huge.html * igt@xe_exec_system_allocator@many-large-execqueues-new-bo-map-nomemset: - shard-bmg: [PASS][120] -> [DMESG-FAIL][121] ([Intel XE#5213] / [Intel XE#5545] / [Intel XE#6652]) [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8737/shard-bmg-8/igt@xe_exec_system_allocator@many-large-execqueues-new-bo-map-nomemset.html [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-bmg-2/igt@xe_exec_system_allocator@many-large-execqueues-new-bo-map-nomemset.html * igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap-new-huge: - shard-bmg: NOTRUN -> [SKIP][122] ([Intel XE#4943]) +12 other tests skip [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-bmg-4/igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap-new-huge.html * igt@xe_exec_system_allocator@threads-shared-vm-many-large-mmap-new-huge-nomemset: - shard-lnl: NOTRUN -> [SKIP][123] ([Intel XE#4943]) +12 other tests skip [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-lnl-4/igt@xe_exec_system_allocator@threads-shared-vm-many-large-mmap-new-huge-nomemset.html * igt@xe_exec_system_allocator@threads-shared-vm-many-large-mmap-remap-dontunmap: - shard-bmg: [PASS][124] -> [ABORT][125] ([Intel XE#7169]) [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8737/shard-bmg-4/igt@xe_exec_system_allocator@threads-shared-vm-many-large-mmap-remap-dontunmap.html [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-bmg-2/igt@xe_exec_system_allocator@threads-shared-vm-many-large-mmap-remap-dontunmap.html * igt@xe_exec_threads@threads-many-queues: - shard-lnl: NOTRUN -> [FAIL][126] ([Intel XE#7166]) [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-lnl-2/igt@xe_exec_threads@threads-many-queues.html * igt@xe_exec_threads@threads-multi-queue-cm-shared-vm-userptr-invalidate: - shard-bmg: NOTRUN -> [SKIP][127] ([Intel XE#7138]) +3 other tests skip [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-bmg-3/igt@xe_exec_threads@threads-multi-queue-cm-shared-vm-userptr-invalidate.html * igt@xe_exec_threads@threads-multi-queue-shared-vm-basic: - shard-lnl: NOTRUN -> [SKIP][128] ([Intel XE#7138]) +3 other tests skip [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-lnl-6/igt@xe_exec_threads@threads-multi-queue-shared-vm-basic.html * igt@xe_media_fill@media-fill: - shard-lnl: NOTRUN -> [SKIP][129] ([Intel XE#560]) [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-lnl-5/igt@xe_media_fill@media-fill.html * igt@xe_multigpu_svm@mgpu-atomic-op-prefetch: - shard-bmg: NOTRUN -> [SKIP][130] ([Intel XE#6964]) +1 other test skip [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-bmg-10/igt@xe_multigpu_svm@mgpu-atomic-op-prefetch.html * igt@xe_multigpu_svm@mgpu-xgpu-access-prefetch: - shard-lnl: NOTRUN -> [SKIP][131] ([Intel XE#6964]) +1 other test skip [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-lnl-2/igt@xe_multigpu_svm@mgpu-xgpu-access-prefetch.html * igt@xe_pm@d3hot-mmap-vram: - shard-lnl: NOTRUN -> [SKIP][132] ([Intel XE#1948]) [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-lnl-7/igt@xe_pm@d3hot-mmap-vram.html * igt@xe_pm@s4-d3cold-basic-exec: - shard-lnl: NOTRUN -> [SKIP][133] ([Intel XE#2284] / [Intel XE#366]) [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-lnl-2/igt@xe_pm@s4-d3cold-basic-exec.html * igt@xe_query@multigpu-query-engines: - shard-lnl: NOTRUN -> [SKIP][134] ([Intel XE#944]) +1 other test skip [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-lnl-5/igt@xe_query@multigpu-query-engines.html * igt@xe_query@multigpu-query-invalid-cs-cycles: - shard-bmg: NOTRUN -> [SKIP][135] ([Intel XE#944]) +1 other test skip [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-bmg-3/igt@xe_query@multigpu-query-invalid-cs-cycles.html * igt@xe_sriov_admin@bulk-sched-priority-vfs-disabled: - shard-lnl: NOTRUN -> [SKIP][136] ([Intel XE#7174]) +1 other test skip [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-lnl-5/igt@xe_sriov_admin@bulk-sched-priority-vfs-disabled.html * igt@xe_sriov_flr@flr-each-isolation: - shard-bmg: [PASS][137] -> [FAIL][138] ([Intel XE#6569]) [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8737/shard-bmg-5/igt@xe_sriov_flr@flr-each-isolation.html [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-bmg-2/igt@xe_sriov_flr@flr-each-isolation.html * igt@xe_sriov_flr@flr-vfs-parallel: - shard-lnl: NOTRUN -> [SKIP][139] ([Intel XE#4273]) [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-lnl-1/igt@xe_sriov_flr@flr-vfs-parallel.html * igt@xe_sriov_scheduling@equal-throughput@numvfs-random: - shard-bmg: NOTRUN -> [FAIL][140] ([Intel XE#5937]) +1 other test fail [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-bmg-6/igt@xe_sriov_scheduling@equal-throughput@numvfs-random.html * igt@xe_sriov_vram@vf-access-after-resize-up: - shard-bmg: [PASS][141] -> [FAIL][142] ([Intel XE#5937]) [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8737/shard-bmg-3/igt@xe_sriov_vram@vf-access-after-resize-up.html [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-bmg-7/igt@xe_sriov_vram@vf-access-after-resize-up.html #### Possible fixes #### * igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1: - shard-lnl: [FAIL][143] ([Intel XE#6054]) -> [PASS][144] +3 other tests pass [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8737/shard-lnl-3/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1.html [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-lnl-3/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0: - shard-bmg: [DMESG-WARN][145] -> [PASS][146] [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8737/shard-bmg-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-bmg-10/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0.html * igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p: - shard-bmg: [SKIP][147] ([Intel XE#2314] / [Intel XE#2894]) -> [PASS][148] [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8737/shard-bmg-5/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-bmg-10/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html * igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions: - shard-bmg: [SKIP][149] ([Intel XE#2291]) -> [PASS][150] +4 other tests pass [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8737/shard-bmg-6/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions.html [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-bmg-2/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions.html * igt@kms_flip@2x-blocking-wf_vblank: - shard-bmg: [SKIP][151] ([Intel XE#2316]) -> [PASS][152] +9 other tests pass [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8737/shard-bmg-6/igt@kms_flip@2x-blocking-wf_vblank.html [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-bmg-9/igt@kms_flip@2x-blocking-wf_vblank.html * igt@kms_flip@flip-vs-expired-vblank-interruptible: - shard-lnl: [FAIL][153] ([Intel XE#301]) -> [PASS][154] +1 other test pass [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8737/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank-interruptible.html [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-lnl-8/igt@kms_flip@flip-vs-expired-vblank-interruptible.html * igt@kms_hdr@invalid-hdr: - shard-bmg: [SKIP][155] ([Intel XE#1503]) -> [PASS][156] [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8737/shard-bmg-4/igt@kms_hdr@invalid-hdr.html [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-bmg-7/igt@kms_hdr@invalid-hdr.html * igt@kms_pm_dc@dc5-psr: - shard-lnl: [FAIL][157] ([Intel XE#718]) -> [PASS][158] [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8737/shard-lnl-5/igt@kms_pm_dc@dc5-psr.html [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-lnl-5/igt@kms_pm_dc@dc5-psr.html * igt@xe_ccs@block-copy-compressed-inc-dimension@xmajor-compressed-compfmt0-vram01-vram01-421x421: - shard-bmg: [FAIL][159] -> [PASS][160] +144 other tests pass [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8737/shard-bmg-2/igt@xe_ccs@block-copy-compressed-inc-dimension@xmajor-compressed-compfmt0-vram01-vram01-421x421.html [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-bmg-9/igt@xe_ccs@block-copy-compressed-inc-dimension@xmajor-compressed-compfmt0-vram01-vram01-421x421.html #### Warnings #### * igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip: - shard-bmg: [SKIP][161] ([Intel XE#7059]) -> [SKIP][162] ([Intel XE#6703]) [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8737/shard-bmg-2/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-bmg-2/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@y-tiled-32bpp-rotate-180: - shard-bmg: [SKIP][163] ([Intel XE#1124]) -> [SKIP][164] ([Intel XE#6703]) +1 other test skip [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8737/shard-bmg-8/igt@kms_big_fb@y-tiled-32bpp-rotate-180.html [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-bmg-2/igt@kms_big_fb@y-tiled-32bpp-rotate-180.html * igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p: - shard-bmg: [SKIP][165] ([Intel XE#2314] / [Intel XE#2894]) -> [SKIP][166] ([Intel XE#6703]) [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8737/shard-bmg-7/igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p.html [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-bmg-2/igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p.html * igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs: - shard-bmg: [SKIP][167] ([Intel XE#2887]) -> [SKIP][168] ([Intel XE#6703]) +1 other test skip [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8737/shard-bmg-7/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs.html [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-bmg-2/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs.html * igt@kms_chamelium_edid@dp-edid-stress-resolution-4k: - shard-bmg: [SKIP][169] ([Intel XE#2252]) -> [SKIP][170] ([Intel XE#6703]) +1 other test skip [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8737/shard-bmg-3/igt@kms_chamelium_edid@dp-edid-stress-resolution-4k.html [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-bmg-2/igt@kms_chamelium_edid@dp-edid-stress-resolution-4k.html * igt@kms_content_protection@atomic: - shard-bmg: [SKIP][171] ([Intel XE#2341]) -> [FAIL][172] ([Intel XE#1178] / [Intel XE#3304]) +1 other test fail [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8737/shard-bmg-5/igt@kms_content_protection@atomic.html [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-bmg-4/igt@kms_content_protection@atomic.html * igt@kms_content_protection@atomic-dpms: - shard-bmg: [FAIL][173] ([Intel XE#1178] / [Intel XE#3304]) -> [SKIP][174] ([Intel XE#2341]) [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8737/shard-bmg-7/igt@kms_content_protection@atomic-dpms.html [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-bmg-5/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@uevent-hdcp14: - shard-bmg: [SKIP][175] ([Intel XE#7194]) -> [FAIL][176] ([Intel XE#6707]) [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8737/shard-bmg-5/igt@kms_content_protection@uevent-hdcp14.html [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-bmg-2/igt@kms_content_protection@uevent-hdcp14.html * igt@kms_cursor_crc@cursor-onscreen-64x21: - shard-bmg: [SKIP][177] ([Intel XE#2320]) -> [SKIP][178] ([Intel XE#6703]) [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8737/shard-bmg-10/igt@kms_cursor_crc@cursor-onscreen-64x21.html [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-bmg-2/igt@kms_cursor_crc@cursor-onscreen-64x21.html * igt@kms_feature_discovery@display-3x: - shard-bmg: [SKIP][179] ([Intel XE#2373]) -> [SKIP][180] ([Intel XE#6703]) [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8737/shard-bmg-5/igt@kms_feature_discovery@display-3x.html [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-bmg-2/igt@kms_feature_discovery@display-3x.html * igt@kms_flip@2x-flip-vs-panning-vs-hang: - shard-bmg: [SKIP][181] ([Intel XE#2316]) -> [SKIP][182] ([Intel XE#6703]) [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8737/shard-bmg-5/igt@kms_flip@2x-flip-vs-panning-vs-hang.html [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-bmg-2/igt@kms_flip@2x-flip-vs-panning-vs-hang.html * igt@kms_frontbuffer_tracking@drrs-rgb565-draw-render: - shard-bmg: [SKIP][183] ([Intel XE#2311]) -> [SKIP][184] ([Intel XE#6703]) +3 other tests skip [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8737/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-rgb565-draw-render.html [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-rgb565-draw-render.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc: - shard-bmg: [SKIP][185] ([Intel XE#4141]) -> [SKIP][186] ([Intel XE#6703]) [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8737/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc.html [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-blt: - shard-bmg: [SKIP][187] ([Intel XE#2312]) -> [SKIP][188] ([Intel XE#4141]) +4 other tests skip [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8737/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-blt.html [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc: - shard-bmg: [SKIP][189] ([Intel XE#4141]) -> [SKIP][190] ([Intel XE#2312]) +4 other tests skip [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8737/shard-bmg-10/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render: - shard-bmg: [SKIP][191] ([Intel XE#2312]) -> [SKIP][192] ([Intel XE#6703]) +2 other tests skip [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8737/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc: - shard-bmg: [SKIP][193] ([Intel XE#2311]) -> [SKIP][194] ([Intel XE#2312]) +13 other tests skip [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8737/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render: - shard-bmg: [SKIP][195] ([Intel XE#2312]) -> [SKIP][196] ([Intel XE#2311]) +19 other tests skip [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8737/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render.html [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc: - shard-bmg: [ABORT][197] ([Intel XE#7169]) -> [SKIP][198] ([Intel XE#2313]) [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8737/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc.html [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt: - shard-bmg: [SKIP][199] ([Intel XE#2312]) -> [SKIP][200] ([Intel XE#2313]) +17 other tests skip [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8737/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt.html [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-bmg-10/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-blt: - shard-bmg: [SKIP][201] ([Intel XE#2313]) -> [SKIP][202] ([Intel XE#6703]) +4 other tests skip [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8737/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-blt.html [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-render: - shard-bmg: [SKIP][203] ([Intel XE#2313]) -> [SKIP][204] ([Intel XE#2312]) +9 other tests skip [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8737/shard-bmg-3/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-render.html [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-render.html * igt@kms_psr@psr2-cursor-plane-onoff: - shard-bmg: [SKIP][205] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) -> [SKIP][206] ([Intel XE#1406] / [Intel XE#6703]) [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8737/shard-bmg-3/igt@kms_psr@psr2-cursor-plane-onoff.html [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-bmg-2/igt@kms_psr@psr2-cursor-plane-onoff.html * igt@xe_eudebug@basic-vm-access-parameters-userptr: - shard-bmg: [SKIP][207] ([Intel XE#4837]) -> [SKIP][208] ([Intel XE#6703]) [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8737/shard-bmg-6/igt@xe_eudebug@basic-vm-access-parameters-userptr.html [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-bmg-2/igt@xe_eudebug@basic-vm-access-parameters-userptr.html * igt@xe_exec_fault_mode@twice-multi-queue-imm: - shard-bmg: [SKIP][209] ([Intel XE#7136]) -> [SKIP][210] ([Intel XE#6703]) [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8737/shard-bmg-8/igt@xe_exec_fault_mode@twice-multi-queue-imm.html [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-bmg-2/igt@xe_exec_fault_mode@twice-multi-queue-imm.html * igt@xe_exec_multi_queue@two-queues-preempt-mode-fault-userptr-invalidate: - shard-bmg: [SKIP][211] ([Intel XE#6874]) -> [SKIP][212] ([Intel XE#6703]) +3 other tests skip [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8737/shard-bmg-2/igt@xe_exec_multi_queue@two-queues-preempt-mode-fault-userptr-invalidate.html [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-bmg-2/igt@xe_exec_multi_queue@two-queues-preempt-mode-fault-userptr-invalidate.html * igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-mmap-free-huge: - shard-bmg: [SKIP][213] ([Intel XE#4943]) -> [SKIP][214] ([Intel XE#6703]) +4 other tests skip [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8737/shard-bmg-5/igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-mmap-free-huge.html [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-bmg-2/igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-mmap-free-huge.html * igt@xe_exec_threads@threads-multi-queue-userptr-rebind: - shard-bmg: [SKIP][215] ([Intel XE#7138]) -> [SKIP][216] ([Intel XE#6703]) +1 other test skip [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8737/shard-bmg-5/igt@xe_exec_threads@threads-multi-queue-userptr-rebind.html [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-bmg-2/igt@xe_exec_threads@threads-multi-queue-userptr-rebind.html * igt@xe_query@multigpu-query-invalid-extension: - shard-bmg: [SKIP][217] ([Intel XE#944]) -> [SKIP][218] ([Intel XE#6703]) [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8737/shard-bmg-3/igt@xe_query@multigpu-query-invalid-extension.html [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/shard-bmg-2/igt@xe_query@multigpu-query-invalid-extension.html [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128 [Intel XE#1137]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1137 [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#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [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#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512 [Intel XE#1948]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1948 [Intel XE#2029]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2029 [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#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291 [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 [Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312 [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313 [Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314 [Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316 [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320 [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321 [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322 [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327 [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341 [Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373 [Intel XE#2375]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2375 [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#2391]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2391 [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426 [Intel XE#2501]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2501 [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#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#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306 [Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307 [Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149 [Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304 [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414 [Intel XE#3428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3428 [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432 [Intel XE#352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/352 [Intel XE#356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/356 [Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366 [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367 [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373 [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904 [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141 [Intel XE#4210]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4210 [Intel XE#4273]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4273 [Intel XE#4294]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4294 [Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422 [Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596 [Intel XE#4609]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4609 [Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837 [Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943 [Intel XE#5007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5007 [Intel XE#5213]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5213 [Intel XE#5299]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5299 [Intel XE#5545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5545 [Intel XE#560]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/560 [Intel XE#5937]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5937 [Intel XE#5993]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5993 [Intel XE#6054]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6054 [Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312 [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#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656 [Intel XE#6569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6569 [Intel XE#6599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6599 [Intel XE#6652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6652 [Intel XE#6665]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6665 [Intel XE#6693]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6693 [Intel XE#6703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6703 [Intel XE#6707]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6707 [Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874 [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#6886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886 [Intel XE#6900]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6900 [Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964 [Intel XE#6974]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6974 [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#7111]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7111 [Intel XE#7130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7130 [Intel XE#7131]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7131 [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#7166]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7166 [Intel XE#7169]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7169 [Intel XE#7174]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7174 [Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178 [Intel XE#7179]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7179 [Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718 [Intel XE#7181]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7181 [Intel XE#7194]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7194 [Intel XE#736]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/736 [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787 [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 Build changes ------------- * IGT: IGT_8737 -> IGTPW_14498 * Linux: xe-4499-766d92ea1d85ed3d5b5b8da4d29fbf1804f327cb -> xe-4503-8883ec84c85819dacca94997b60371c3ed57ee29 IGTPW_14498: 14498 IGT_8737: 8737 xe-4499-766d92ea1d85ed3d5b5b8da4d29fbf1804f327cb: 766d92ea1d85ed3d5b5b8da4d29fbf1804f327cb xe-4503-8883ec84c85819dacca94997b60371c3ed57ee29: 8883ec84c85819dacca94997b60371c3ed57ee29 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14498/index.html [-- Attachment #2: Type: text/html, Size: 73447 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2026-02-05 22:41 UTC | newest] Thread overview: 7+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2026-02-05 3:50 [PATCH v4 i-g-t 0/1] tests/intel/xe_evict: overcommit tests for fault-mode and non-fault-mode VMs Sobin Thomas 2026-02-05 3:50 ` [PATCH v4 i-g-t 1/1] " Sobin Thomas 2026-02-05 5:54 ` ✓ Xe.CI.BAT: success for tests/intel/xe_evict: overcommit tests for fault-mode and non-fault-mode VMs (rev3) Patchwork 2026-02-05 6:09 ` ✓ i915.CI.BAT: " Patchwork 2026-02-05 8:28 ` [PATCH v4 i-g-t 0/1] tests/intel/xe_evict: overcommit tests for fault-mode and non-fault-mode VMs Hellstrom, Thomas 2026-02-05 19:29 ` ✓ i915.CI.Full: success for tests/intel/xe_evict: overcommit tests for fault-mode and non-fault-mode VMs (rev3) Patchwork 2026-02-05 22:41 ` ✓ Xe.CI.FULL: " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox