* [PATCH 0/1] Add xe_bo_alloc test
@ 2024-04-10 7:12 Matthew Brost
2024-04-10 7:12 ` [PATCH 1/1] xe: " Matthew Brost
` (4 more replies)
0 siblings, 5 replies; 6+ messages in thread
From: Matthew Brost @ 2024-04-10 7:12 UTC (permalink / raw)
To: igt-dev; +Cc: Matthew Brost
In an attempt to recreate [1] in an IGT add xe_bo_alloc test.
I believe I've seen the new IGT fail similar to [1] with a certain seed,
more investigation is needed. Regardless this seems to a good test to
add to the suite.
[1] https://gitlab.freedesktop.org/drm/xe/kernel/-/issues/799
Matthew Brost (1):
xe: Add xe_bo_alloc test
lib/xe/xe_ioctl.c | 12 +
lib/xe/xe_ioctl.h | 1 +
tests/intel/xe_bo_alloc.c | 568 ++++++++++++++++++++++++++++++++++++++
tests/meson.build | 1 +
4 files changed, 582 insertions(+)
create mode 100644 tests/intel/xe_bo_alloc.c
--
2.34.1
^ permalink raw reply [flat|nested] 6+ messages in thread* [PATCH 1/1] xe: Add xe_bo_alloc test 2024-04-10 7:12 [PATCH 0/1] Add xe_bo_alloc test Matthew Brost @ 2024-04-10 7:12 ` Matthew Brost 2024-04-10 8:05 ` ✗ GitLab.Pipeline: warning for " Patchwork ` (3 subsequent siblings) 4 siblings, 0 replies; 6+ messages in thread From: Matthew Brost @ 2024-04-10 7:12 UTC (permalink / raw) To: igt-dev; +Cc: Matthew Brost Add xe_bo_alloc test which allocates BOs of various sizes, binds them, and does an exec with a dword on every single page. Varies sections exist to few or many BOs, leak binds, leak BO mappings, trigger evictions run with threads, and run with multiple processes. Signed-off-by: Matthew Brost <matthew.brost@intel.com> --- lib/xe/xe_ioctl.c | 12 + lib/xe/xe_ioctl.h | 1 + tests/intel/xe_bo_alloc.c | 568 ++++++++++++++++++++++++++++++++++++++ tests/meson.build | 1 + 4 files changed, 582 insertions(+) create mode 100644 tests/intel/xe_bo_alloc.c diff --git a/lib/xe/xe_ioctl.c b/lib/xe/xe_ioctl.c index 934c877ebc..d2eaa8ecf2 100644 --- a/lib/xe/xe_ioctl.c +++ b/lib/xe/xe_ioctl.c @@ -424,6 +424,18 @@ void *xe_bo_map(int fd, uint32_t bo, size_t size) return __xe_bo_map(fd, bo, size, PROT_WRITE); } +void *xe_bo_map_fixed(int fd, uint32_t bo, size_t size, uint64_t addr) +{ + uint64_t mmo; + void *map; + + mmo = xe_bo_mmap_offset(fd, bo); + map = mmap((void *)addr, size, PROT_WRITE, MAP_SHARED | MAP_FIXED, fd, mmo); + igt_assert(map != MAP_FAILED); + + return map; +} + void *xe_bo_mmap_ext(int fd, uint32_t bo, size_t size, int prot) { return __xe_bo_map(fd, bo, size, prot); diff --git a/lib/xe/xe_ioctl.h b/lib/xe/xe_ioctl.h index 4d08402e0b..44657acd65 100644 --- a/lib/xe/xe_ioctl.h +++ b/lib/xe/xe_ioctl.h @@ -81,6 +81,7 @@ uint32_t xe_exec_queue_create_class(int fd, uint32_t vm, uint16_t class); void xe_exec_queue_destroy(int fd, uint32_t exec_queue); uint64_t xe_bo_mmap_offset(int fd, uint32_t bo); void *xe_bo_map(int fd, uint32_t bo, size_t size); +void *xe_bo_map_fixed(int fd, uint32_t bo, size_t size, uint64_t addr); void *xe_bo_mmap_ext(int fd, uint32_t bo, size_t size, int prot); int __xe_exec(int fd, struct drm_xe_exec *exec); void xe_exec(int fd, struct drm_xe_exec *exec); diff --git a/tests/intel/xe_bo_alloc.c b/tests/intel/xe_bo_alloc.c new file mode 100644 index 0000000000..68c9494fc2 --- /dev/null +++ b/tests/intel/xe_bo_alloc.c @@ -0,0 +1,568 @@ +// SPDX-License-Identifier: MIT +/* + * Copyright © 2024 Intel Corporation + */ + +/** + * TEST: Check if BO allocation functionality is working + * Category: Software building block + * Sub-category: BO + * Functionality: BO allocation, BO eviction, VNA binding + */ + +#include <fcntl.h> + +#include "igt.h" + +#include "lib/igt_syncobj.h" +#include "lib/intel_reg.h" + +#include "xe/xe_ioctl.h" +#include "xe/xe_query.h" + +#include "xe_drm.h" + +/** + * SUBTEST: all-sizes-once + * Description: Test all BO allocations sizes in test table + * Test category: functionality test + * + * SUBTEST: rand-sizes-10 + * Description: Test 10 random BO allocation sizes in test table + * Test category: functionality test + * + * SUBTEST: rand-sizes-100 + * Description: Test 100 random BO allocation sizes in test table + * Test category: functionality test + * + * SUBTEST: rand-sizes-100-unaligned + * Description: Test 100 random BO allocation sizes in test table, unaligned bind addresses + * Test category: functionality test + * + * SUBTEST: threads-rand-sizes-50 + * description: test 50 random bo allocation sizes in test table with a thread per engine + * test category: stress test + * + * SUBTEST: threads-rand-sizes-50-unaligned + * description: test 50 random bo allocation sizes in test table with a thread per engine, unaligned bind addresses + * test category: stress test + * + * SUBTEST: threads-leak-binding-rand-sizes-50 + * Description: Test 50 random BO allocation sizes in test table with a thread per engine, leak the binding + * Test category: stress test + * + * SUBTEST: threads-leak-binding-rand-sizes-50-unaligned + * Description: Test 50 random BO allocation sizes in test table with a thread per engine, leak the binding, unaligned bind addresses + * Test category: stress test + * + * SUBTEST: processes-rand-sizes-50 + * Description: Test 50 random BO allocation sizes in test table with 2 process per engine + * Test category: stress test + * + * SUBTEST: processes-rand-sizes-50-unaligned + * Description: Test 50 random BO allocation sizes in test table with 2 process per engine, unaligned bind addresses + * Test category: stress test + * + * SUBTEST: processes-leak-binding-rand-sizes-50 + * Description: Test 50 random BO allocation sizes in test table with 2 process per engine, leak the binding + * Test category: stress test + * + * SUBTEST: processes-leak-binding-rand-sizes-50-unaligned + * Description: Test 50 random BO allocation sizes in test table with 2 process per engine, leak the binding, unaligned bind addresses + * Test category: stress test + * + * SUBTEST: processes-leak-bo-rand-sizes-50 + * Description: Test 50 random BO allocation sizes in test table with 2 process per engine, leak the BO munmap / gem close + * Test category: stress test + * + * SUBTEST: processes-leak-bo-rand-sizes-50-unaligned + * Description: Test 50 random BO allocation sizes in test table with 2 process per engine, leak the BO munmap / gem close, unaligned bind addresses + * Test category: stress test + * + * SUBTEST: processes-leak-bo-rand-sizes-evict + * Description: Test enough random BO allocation sizes in test table to trigger evictions with 2 process per engine, leak the BO munmap / gem close + * Test category: stress test + * + * SUBTEST: processes-leak-bo-rand-sizes-evict-unaligned + * Description: Test enough random BO allocation sizes in test table to trigger evictions with 2 process per engine, leak the BO munmap / gem close, unaligned bind addresses + * Test category: stress test + */ + +#define SZ_4K_SHIFT 12 + +#define N_ALLOC_SIZES 256 +static uint64_t *alloc_sizes = NULL; + +static void alloc_sizes_init(void) +{ + int i; + + alloc_sizes = malloc(sizeof(*alloc_sizes) * N_ALLOC_SIZES); + + /* For now just do incremnts of 64k */ + for (i = 0; i < N_ALLOC_SIZES; ++i) + alloc_sizes[i] = 0x10000ull * (i + 1); +} + +static void alloc_sizes_fini(void) +{ + free(alloc_sizes); +} + +struct batch_data { + uint32_t batch[16]; + uint64_t pad; + uint32_t data; +}; + +static uint32_t wkey = 0xc0ffeeull; +#define WRITE_VALUE(page) (((wkey) << 8) | (page)) + +static void check_exec_data(void *ptr, int n_pages) +{ + int i; + + for (i = 0; i < n_pages; ++i) { + struct batch_data *data = ptr + i * SZ_4K; + + igt_assert_eq(data->data, WRITE_VALUE(i)); + } +} + +static void touch_all_pages(int fd, uint32_t q, void *ptr, uint64_t bo_size) +{ + struct drm_xe_sync sync = { + .type = DRM_XE_SYNC_TYPE_SYNCOBJ, .flags = DRM_XE_SYNC_FLAG_SIGNAL, + .handle = syncobj_create(fd, 0), + }; + struct drm_xe_exec exec = { + .num_batch_buffer = 1, + .num_syncs = 0, + .exec_queue_id = q, + .syncs = to_user_pointer(&sync), + }; + int i, n_pages = bo_size >> SZ_4K_SHIFT; + struct batch_data *data = NULL; + uint64_t addr = to_user_pointer(ptr); + + for (i = 0; i < n_pages; ++i, addr += SZ_4K) { + uint64_t batch_offset = (char *)&data->batch - (char *)data; + uint64_t batch_addr = addr + batch_offset; + uint64_t sdi_offset = (char *)&data->data - (char *)data; + uint64_t sdi_addr = addr + sdi_offset; + int b = 0; + + data = ptr + i * SZ_4K; + data->batch[b++] = MI_STORE_DWORD_IMM_GEN4; + data->batch[b++] = sdi_addr; + data->batch[b++] = sdi_addr >> 32; + data->batch[b++] = WRITE_VALUE(i); + data->batch[b++] = MI_BATCH_BUFFER_END; + igt_assert(b <= ARRAY_SIZE(data->batch)); + + exec.address = batch_addr; + if (i + 1 == n_pages) + exec.num_syncs = 1; + xe_exec(fd, &exec); + } + + igt_assert(syncobj_wait(fd, &sync.handle, 1, INT64_MAX, 0, NULL)); + check_exec_data(ptr, n_pages); + + syncobj_destroy(fd, sync.handle); +} + +#define LEAK_BINDING (0x1 << 0) +#define LEAK_BO (0x1 << 1) +#define EVICT (0x1 << 2) +#define UNALIGNED (0x1 << 3) + +struct leak { + void *ptr; + uint64_t bo_size; + uint32_t bo; +}; + +static struct leak *test_alloc_size(int fd, uint32_t vm, uint32_t q, + uint16_t gt_id, uint64_t bo_size, + uint32_t flags) +{ + uint32_t bo; + void *ptr; + + if (flags & UNALIGNED) + ptr = aligned_alloc(0x10000, bo_size); + else + ptr = aligned_alloc(bo_size, bo_size); + igt_assert(ptr); + + bo = xe_bo_create(fd, !(flags & EVICT) ? vm : 0, bo_size, + vram_if_possible(fd, gt_id), + DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM); + xe_vm_bind_sync(fd, vm, bo, 0, to_user_pointer(ptr), bo_size); + ptr = xe_bo_map_fixed(fd, bo, bo_size, to_user_pointer(ptr)); + + touch_all_pages(fd, q, ptr, bo_size); + + if (!(flags & LEAK_BINDING)) + xe_vm_unbind_sync(fd, vm, 0, to_user_pointer(ptr), bo_size); + + if (!(flags & LEAK_BO)) { + munmap(ptr, bo_size); + gem_close(fd, bo); + } else { + struct leak *leak; + + leak = malloc(sizeof(*leak)); + igt_assert(leak); + + leak->ptr = ptr; + leak->bo_size = bo_size; + leak->bo = bo; + + return leak; + } + + return NULL; +} + +static void all_sizes_once(int fd, struct drm_xe_engine_class_instance *hwe) +{ + uint32_t vm, q; + int i; + + vm = xe_vm_create(fd, 0, 0); + q = xe_exec_queue_create(fd, vm, hwe, 0); + + for (i = 0; i < N_ALLOC_SIZES; ++i) + test_alloc_size(fd, vm, q, hwe->gt_id, alloc_sizes[i], 0); + + xe_exec_queue_destroy(fd, q); + xe_vm_destroy(fd, vm); +} + +static void check_leak(int fd, uint32_t vm, struct leak *leak, uint32_t flags) +{ + check_exec_data(leak->ptr, leak->bo_size >> SZ_4K_SHIFT); + + /* Migrate buffer back into VRAM, recheck */ + if (flags & EVICT) { + xe_vm_bind_sync(fd, vm, leak->bo, 0, + to_user_pointer(leak->ptr), leak->bo_size); + + check_exec_data(leak->ptr, leak->bo_size >> SZ_4K_SHIFT); + + xe_vm_unbind_sync(fd, vm, 0, to_user_pointer(leak->ptr), + leak->bo_size); + } + + munmap(leak->ptr, leak->bo_size); + gem_close(fd, leak->bo); +} + +static void check_leaks(int fd, uint32_t vm, struct leak **leaks, int count, + uint32_t flags) +{ + int i; + + for (i = 0; i < count; ++i) { + if (!leaks[i]) + continue; + + check_leak(fd, vm, leaks[i], flags); + free(leaks[i]); + } +} + +static void rand_sizes(int fd, struct drm_xe_engine_class_instance *hwe, + int count, uint64_t vram_per_process, + pthread_barrier_t *barrier, uint32_t flags) +{ + struct leak **leaks = NULL; + uint32_t vm, q; + uint64_t vram_used = 0; + int i, alloc = (count == -1) ? 50000 : count; + + igt_assert(count > 0 || (flags & EVICT && flags & LEAK_BO)); + + leaks = malloc(sizeof(leaks) * alloc); + igt_assert(leaks); + + vm = xe_vm_create(fd, 0, 0); + q = xe_exec_queue_create(fd, vm, hwe, 0); + + for (i = 0; i < count || vram_used < vram_per_process; ++i) { + uint32_t bo_size = alloc_sizes[rand() % N_ALLOC_SIZES]; + + igt_assert(i < alloc); + leaks[i] = test_alloc_size(fd, vm, q, hwe->gt_id, bo_size, flags); + if (leaks[i]) + vram_used += leaks[i]->bo_size; + } + + if (barrier) + pthread_barrier_wait(barrier); + check_leaks(fd, vm, leaks, i, flags); + + xe_exec_queue_destroy(fd, q); + xe_vm_destroy(fd, vm); + free(leaks); +} + +struct thread_data { + pthread_t thread; + pthread_mutex_t *mutex; + pthread_cond_t *cond; + struct drm_xe_engine_class_instance *hwe; + int fd; + int count; + uint32_t vm; + uint32_t flags; + bool *go; +}; + +static void *thread(void *data) +{ + struct thread_data *t = data; + uint32_t q; + int i; + + igt_assert(!(t->flags & LEAK_BO)); + + pthread_mutex_lock(t->mutex); + while (!*t->go) + pthread_cond_wait(t->cond, t->mutex); + pthread_mutex_unlock(t->mutex); + + q = xe_exec_queue_create(t->fd, t->vm, t->hwe, 0); + + for (i = 0; i < t->count; ++i) + test_alloc_size(t->fd, t->vm, q, t->hwe->gt_id, + alloc_sizes[rand() % N_ALLOC_SIZES], + t->flags); + + xe_exec_queue_destroy(t->fd, q); + + return NULL; +} + +static void threads(int fd, int count, uint32_t flags) +{ + struct drm_xe_engine_class_instance *hwe; + struct thread_data *threads_data; + pthread_mutex_t mutex; + pthread_cond_t cond; + int n_engines = 0, i = 0; + uint32_t vm = 0; + bool go = false; + + vm = xe_vm_create(fd, 0, 0); + + xe_for_each_engine(fd, hwe) + ++n_engines; + + threads_data = calloc(n_engines, sizeof(*threads_data)); + igt_assert(threads_data); + + pthread_mutex_init(&mutex, 0); + pthread_cond_init(&cond, 0); + + xe_for_each_engine(fd, hwe) { + threads_data[i].mutex = &mutex; + threads_data[i].cond = &cond; + threads_data[i].hwe = hwe; + threads_data[i].fd = fd; + threads_data[i].count = count; + threads_data[i].vm = vm; + threads_data[i].flags = flags; + threads_data[i].go = &go; + pthread_create(&threads_data[i].thread, 0, thread, + &threads_data[i]); + ++i; + } + + pthread_mutex_lock(&mutex); + go = true; + pthread_cond_broadcast(&cond); + pthread_mutex_unlock(&mutex); + + for (i = 0; i < n_engines; ++i) + pthread_join(threads_data[i].thread, NULL); + + xe_vm_destroy(fd, vm); +} + +#define SYNC_FILE "/tmp/xe_bo_alloc_sync" + +struct process_data { + pthread_mutex_t mutex; + pthread_cond_t cond; + pthread_barrier_t barrier; + bool go; +}; + +static void process(struct drm_xe_engine_class_instance *hwe, + int count, uint64_t vram_per_process, uint32_t flags) +{ + struct process_data *pdata; + int map_fd; + int fd; + + wkey = rand() & 0xffffffull; + + map_fd = open(SYNC_FILE, O_RDWR, 0x666); + pdata = mmap(NULL, sizeof(*pdata), PROT_READ | + PROT_WRITE, MAP_SHARED, map_fd, 0); + + pthread_mutex_lock(&pdata->mutex); + while (!pdata->go) + pthread_cond_wait(&pdata->cond, &pdata->mutex); + pthread_mutex_unlock(&pdata->mutex); + + fd = drm_open_driver(DRIVER_XE); + rand_sizes(fd, hwe, count, vram_per_process, &pdata->barrier, flags); + drm_close_driver(fd); + + close(map_fd); + munmap(pdata, sizeof(*pdata)); +} + +static void processes(int fd, int count, uint32_t flags) +{ + struct drm_xe_engine_class_instance *hwe; + struct process_data *pdata; + pthread_mutexattr_t mutex_attr; + pthread_condattr_t cond_attr; + pthread_barrierattr_t barrier_attr; + uint64_t vram_per_process = 0; + int map_fd, n_engines = 0; + + igt_assert(count > 0 || (flags & EVICT && flags & LEAK_BO)); + + xe_for_each_engine(fd, hwe) + ++n_engines; + + if (flags & EVICT) + vram_per_process = (xe_visible_vram_size(fd, 0) * 3) / + (n_engines * 4); + + map_fd = open(SYNC_FILE, O_RDWR | O_CREAT, 0x666); + posix_fallocate(map_fd, 0, sizeof(*pdata)); + pdata = mmap(NULL, sizeof(*pdata), PROT_READ | + PROT_WRITE, MAP_SHARED, map_fd, 0); + + pthread_mutexattr_init(&mutex_attr); + pthread_mutexattr_setpshared(&mutex_attr, PTHREAD_PROCESS_SHARED); + pthread_mutex_init(&pdata->mutex, &mutex_attr); + + pthread_condattr_init(&cond_attr); + pthread_condattr_setpshared(&cond_attr, PTHREAD_PROCESS_SHARED); + pthread_cond_init(&pdata->cond, &cond_attr); + + pthread_barrierattr_init(&barrier_attr); + pthread_barrierattr_setpshared(&barrier_attr, PTHREAD_PROCESS_SHARED); + pthread_barrier_init(&pdata->barrier, &barrier_attr, n_engines * 2); + + pdata->go = false; + + xe_for_each_engine(fd, hwe) { + igt_fork(child, 2) + process(hwe, count, vram_per_process, flags); + } + + pthread_mutex_lock(&pdata->mutex); + pdata->go = true; + pthread_cond_broadcast(&pdata->cond); + pthread_mutex_unlock(&pdata->mutex); + + igt_waitchildren(); + + close(map_fd); + munmap(pdata, sizeof(*pdata)); +} + +igt_main +{ + struct drm_xe_engine_class_instance *hwe; + int fd; + + igt_fixture { + fd = drm_open_driver(DRIVER_XE); + alloc_sizes_init(); + } + + igt_subtest_f("all-sizes-once") + xe_for_each_engine(fd, hwe) { + all_sizes_once(fd, hwe); + break; + } + + igt_subtest_f("rand-sizes-10") + xe_for_each_engine(fd, hwe) { + rand_sizes(fd, hwe, 10, 0, NULL, 0); + break; + } + + igt_subtest_f("rand-sizes-100") + xe_for_each_engine(fd, hwe) { + rand_sizes(fd, hwe, 100, 0, NULL, 0); + break; + } + + igt_subtest_f("rand-sizes-100-unaligned") + xe_for_each_engine(fd, hwe) { + rand_sizes(fd, hwe, 100, 0, NULL, UNALIGNED); + break; + } + + igt_subtest_f("threads-rand-sizes-50") + threads(fd, 50, 0); + + igt_subtest_f("threads-rand-sizes-50-unaligned") + threads(fd, 50, UNALIGNED); + + igt_subtest_f("threads-leak-binding-rand-sizes-50") + threads(fd, 50, LEAK_BINDING); + + igt_subtest_f("threads-leak-binding-rand-sizes-50-unaligned") + threads(fd, 50, LEAK_BINDING | UNALIGNED); + + igt_subtest_f("processes-rand-sizes-50") + processes(fd, 50, 0); + + igt_subtest_f("processes-rand-sizes-50-unaligned") + processes(fd, 50, UNALIGNED); + + igt_subtest_f("processes-leak-binding-rand-sizes-50") + processes(fd, 50, LEAK_BINDING); + + igt_subtest_f("processes-leak-binding-rand-sizes-50-unaligned") + processes(fd, 50, LEAK_BINDING | UNALIGNED); + + igt_subtest_f("processes-leak-bo-rand-sizes-50") + processes(fd, 50, LEAK_BO); + + igt_subtest_f("processes-leak-bo-rand-sizes-50-unaligned") + processes(fd, 50, LEAK_BO | UNALIGNED); + + igt_subtest_f("processes-leak-bo-rand-sizes-evict") { + igt_require(xe_has_vram(fd)); + igt_require(igt_get_avail_ram_mb() >= + (xe_visible_vram_size(fd, 0) >> 20) / 2); + + processes(fd, -1, LEAK_BO | EVICT); + } + + igt_subtest_f("processes-leak-bo-rand-sizes-evict-unaligned") { + igt_require(xe_has_vram(fd)); + igt_require(igt_get_avail_ram_mb() >= + (xe_visible_vram_size(fd, 0) >> 20) / 2); + + processes(fd, -1, LEAK_BO | EVICT | UNALIGNED); + } + + igt_fixture { + alloc_sizes_fini(); + drm_close_driver(fd); + } +} diff --git a/tests/meson.build b/tests/meson.build index a856510fce..52ec4de433 100644 --- a/tests/meson.build +++ b/tests/meson.build @@ -274,6 +274,7 @@ intel_kms_progs = [ ] intel_xe_progs = [ + 'xe_bo_alloc', 'xe_ccs', 'xe_create', 'xe_compute', -- 2.34.1 ^ permalink raw reply related [flat|nested] 6+ messages in thread
* ✗ GitLab.Pipeline: warning for Add xe_bo_alloc test 2024-04-10 7:12 [PATCH 0/1] Add xe_bo_alloc test Matthew Brost 2024-04-10 7:12 ` [PATCH 1/1] xe: " Matthew Brost @ 2024-04-10 8:05 ` Patchwork 2024-04-10 8:22 ` ✓ CI.xeBAT: success " Patchwork ` (2 subsequent siblings) 4 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2024-04-10 8:05 UTC (permalink / raw) To: Matthew Brost; +Cc: igt-dev == Series Details == Series: Add xe_bo_alloc test URL : https://patchwork.freedesktop.org/series/132251/ State : warning == Summary == Pipeline status: FAILED. see https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/pipelines/1150423 for the overview. build:tests-debian-meson-armhf has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/57417427): ninja: Entering directory `build' [1/1176] Generating version.h with a custom command. [2/1172] Linking static target lib/libigt-igt_kms_c.a. [3/1172] Linking static target lib/libigt-igt_fb_c.a. [4/1172] Linking static target lib/libigt-igt_amd_c.a. [5/1172] Compiling C object 'lib/76b5a35@@igt-xe_xe_ioctl_c@sta/xe_xe_ioctl.c.o'. FAILED: lib/76b5a35@@igt-xe_xe_ioctl_c@sta/xe_xe_ioctl.c.o /usr/bin/arm-linux-gnueabihf-gcc -Ilib/76b5a35@@igt-xe_xe_ioctl_c@sta -Ilib -I../lib -I../include -I../include/drm-uapi -I../include/linux-uapi -I../lib/stubs/syscalls -I. -I../ -I/usr/include/cairo -I/usr/include/glib-2.0 -I/usr/lib/arm-linux-gnueabihf/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/uuid -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libdrm -I/usr/include/libdrm/nouveau -I/usr/include/arm-linux-gnueabihf -I/usr/include/valgrind -I/usr/include/alsa -fdiagnostics-color=always -pipe -D_FILE_OFFSET_BITS=64 -Wall -Winvalid-pch -Wextra -std=gnu11 -O2 -g -D_GNU_SOURCE -include config.h -D_FORTIFY_SOURCE=2 -Wbad-function-cast -Wdeclaration-after-statement -Wformat=2 -Wimplicit-fallthrough=0 -Wlogical-op -Wmissing-declarations -Wmissing-format-attribute -Wmissing-noreturn -Wmissing-prototypes -Wnested-externs -Wold-style-definition -Wpointer-arith -Wredundant-decls -Wshadow -Wstrict-prototypes -Wuninitialized -Wunused -Wno-clobbered -Wno-maybe-uninitialized -Wno-missing-field-initializers -Wno-pointer-arith -Wno-sign-compare -Wno-type-limits -Wno-unused-parameter -Wno-unused-result -Werror=address -Werror=array-bounds -Werror=implicit -Werror=init-self -Werror=int-to-pointer-cast -Werror=main -Werror=missing-braces -Werror=nonnull -Werror=pointer-to-int-cast -Werror=return-type -Werror=sequence-point -Werror=trigraphs -Werror=write-strings -fno-builtin-malloc -fno-builtin-calloc -fPIC -pthread '-DIGT_DATADIR="/usr/local/share/igt-gpu-tools"' '-DIGT_SRCDIR="/builds/gfx-ci/igt-ci-tags/tests"' '-DIGT_LOG_DOMAIN="xe/xe_ioctl"' -MD -MQ 'lib/76b5a35@@igt-xe_xe_ioctl_c@sta/xe_xe_ioctl.c.o' -MF 'lib/76b5a35@@igt-xe_xe_ioctl_c@sta/xe_xe_ioctl.c.o.d' -o 'lib/76b5a35@@igt-xe_xe_ioctl_c@sta/xe_xe_ioctl.c.o' -c ../lib/xe/xe_ioctl.c ../lib/xe/xe_ioctl.c: In function ‘xe_bo_map_fixed’: ../lib/xe/xe_ioctl.c:433:13: error: cast to pointer from integer of different size [-Werror=int-to-pointer-cast] map = mmap((void *)addr, size, PROT_WRITE, MAP_SHARED | MAP_FIXED, fd, mmo); ^ cc1: some warnings being treated as errors ninja: build stopped: subcommand failed. section_end:1712735919:step_script section_start:1712735919:cleanup_file_variables Cleaning up project directory and file based variables section_end:1712735920:cleanup_file_variables ERROR: Job failed: exit code 1 build:tests-debian-meson-mips has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/57417429): ninja: build stopped: subcommand failed. ninja: Entering directory `build' [1/1173] Generating version.h with a custom command. [2/1169] Linking static target lib/libigt-igt_kms_c.a. [3/1169] Linking static target lib/libigt-igt_fb_c.a. [4/1169] Compiling C object 'lib/76b5a35@@igt-xe_xe_ioctl_c@sta/xe_xe_ioctl.c.o'. FAILED: lib/76b5a35@@igt-xe_xe_ioctl_c@sta/xe_xe_ioctl.c.o /usr/bin/mips-linux-gnu-gcc -Ilib/76b5a35@@igt-xe_xe_ioctl_c@sta -Ilib -I../lib -I../include -I../include/drm-uapi -I../include/linux-uapi -I../lib/stubs/syscalls -I. -I../ -I/usr/include/cairo -I/usr/include/glib-2.0 -I/usr/lib/mips-linux-gnu/glib-2.0/include -I/usr/include/pixman-1 -I/usr/include/uuid -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/libdrm -I/usr/include/libdrm/nouveau -I/usr/include/mips-linux-gnu -I/usr/include/valgrind -I/usr/include/alsa -fdiagnostics-color=always -pipe -D_FILE_OFFSET_BITS=64 -Wall -Winvalid-pch -Wextra -std=gnu11 -O2 -g -D_GNU_SOURCE -include config.h -D_FORTIFY_SOURCE=2 -Wbad-function-cast -Wdeclaration-after-statement -Wformat=2 -Wimplicit-fallthrough=0 -Wlogical-op -Wmissing-declarations -Wmissing-format-attribute -Wmissing-noreturn -Wmissing-prototypes -Wnested-externs -Wold-style-definition -Wpointer-arith -Wredundant-decls -Wshadow -Wstrict-prototypes -Wuninitialized -Wunused -Wno-clobbered -Wno-maybe-uninitialized -Wno-missing-field-initializers -Wno-pointer-arith -Wno-sign-compare -Wno-type-limits -Wno-unused-parameter -Wno-unused-result -Werror=address -Werror=array-bounds -Werror=implicit -Werror=init-self -Werror=int-to-pointer-cast -Werror=main -Werror=missing-braces -Werror=nonnull -Werror=pointer-to-int-cast -Werror=return-type -Werror=sequence-point -Werror=trigraphs -Werror=write-strings -fno-builtin-malloc -fno-builtin-calloc -fPIC -pthread '-DIGT_DATADIR="/usr/local/share/igt-gpu-tools"' '-DIGT_SRCDIR="/builds/gfx-ci/igt-ci-tags/tests"' '-DIGT_LOG_DOMAIN="xe/xe_ioctl"' -MD -MQ 'lib/76b5a35@@igt-xe_xe_ioctl_c@sta/xe_xe_ioctl.c.o' -MF 'lib/76b5a35@@igt-xe_xe_ioctl_c@sta/xe_xe_ioctl.c.o.d' -o 'lib/76b5a35@@igt-xe_xe_ioctl_c@sta/xe_xe_ioctl.c.o' -c ../lib/xe/xe_ioctl.c ../lib/xe/xe_ioctl.c: In function ‘xe_bo_map_fixed’: ../lib/xe/xe_ioctl.c:433:13: error: cast to pointer from integer of different size [-Werror=int-to-pointer-cast] map = mmap((void *)addr, size, PROT_WRITE, MAP_SHARED | MAP_FIXED, fd, mmo); ^ cc1: some warnings being treated as errors ninja: build stopped: subcommand failed. section_end:1712735912:step_script section_start:1712735912:cleanup_file_variables Cleaning up project directory and file based variables section_end:1712735913:cleanup_file_variables ERROR: Job failed: exit code 1 == Logs == For more details see: https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/pipelines/1150423 ^ permalink raw reply [flat|nested] 6+ messages in thread
* ✓ CI.xeBAT: success for Add xe_bo_alloc test 2024-04-10 7:12 [PATCH 0/1] Add xe_bo_alloc test Matthew Brost 2024-04-10 7:12 ` [PATCH 1/1] xe: " Matthew Brost 2024-04-10 8:05 ` ✗ GitLab.Pipeline: warning for " Patchwork @ 2024-04-10 8:22 ` Patchwork 2024-04-10 8:37 ` ✓ Fi.CI.BAT: " Patchwork 2024-04-10 21:07 ` ✓ Fi.CI.IGT: " Patchwork 4 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2024-04-10 8:22 UTC (permalink / raw) To: Matthew Brost; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 1044 bytes --] == Series Details == Series: Add xe_bo_alloc test URL : https://patchwork.freedesktop.org/series/132251/ State : success == Summary == CI Bug Log - changes from XEIGT_7803_BAT -> XEIGTPW_10997_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (5 -> 5) ------------------------------ No changes in participating hosts Changes ------- No changes found Build changes ------------- * IGT: IGT_7803 -> IGTPW_10997 * Linux: xe-1063-7be27f645de2f00384b862d2812a90675e8392fa -> xe-1064-057ec21a54cddd595a7725fa8731eb4c5bd5abff IGTPW_10997: 10997 IGT_7803: 9669a17ae56f1dcd22ba4c5cb39b3cd334a46862 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-1063-7be27f645de2f00384b862d2812a90675e8392fa: 7be27f645de2f00384b862d2812a90675e8392fa xe-1064-057ec21a54cddd595a7725fa8731eb4c5bd5abff: 057ec21a54cddd595a7725fa8731eb4c5bd5abff == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10997/index.html [-- Attachment #2: Type: text/html, Size: 1603 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
* ✓ Fi.CI.BAT: success for Add xe_bo_alloc test 2024-04-10 7:12 [PATCH 0/1] Add xe_bo_alloc test Matthew Brost ` (2 preceding siblings ...) 2024-04-10 8:22 ` ✓ CI.xeBAT: success " Patchwork @ 2024-04-10 8:37 ` Patchwork 2024-04-10 21:07 ` ✓ Fi.CI.IGT: " Patchwork 4 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2024-04-10 8:37 UTC (permalink / raw) To: Matthew Brost; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 7548 bytes --] == Series Details == Series: Add xe_bo_alloc test URL : https://patchwork.freedesktop.org/series/132251/ State : success == Summary == CI Bug Log - changes from CI_DRM_14552 -> IGTPW_10997 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/index.html Participating hosts (37 -> 37) ------------------------------ Additional (2): bat-kbl-2 fi-rkl-11600 Missing (2): fi-apl-guc fi-elk-e7500 Known issues ------------ Here are the changes found in IGTPW_10997 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@debugfs_test@basic-hwmon: - fi-rkl-11600: NOTRUN -> [SKIP][1] ([i915#9318]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/fi-rkl-11600/igt@debugfs_test@basic-hwmon.html * igt@fbdev@info: - bat-kbl-2: NOTRUN -> [SKIP][2] ([i915#1849]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/bat-kbl-2/igt@fbdev@info.html * igt@gem_huc_copy@huc-copy: - fi-rkl-11600: NOTRUN -> [SKIP][3] ([i915#2190]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/fi-rkl-11600/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@parallel-random-engines: - bat-kbl-2: NOTRUN -> [SKIP][4] +39 other tests skip [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/bat-kbl-2/igt@gem_lmem_swapping@parallel-random-engines.html - fi-rkl-11600: NOTRUN -> [SKIP][5] ([i915#4613]) +3 other tests skip [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/fi-rkl-11600/igt@gem_lmem_swapping@parallel-random-engines.html * igt@gem_tiled_pread_basic: - fi-rkl-11600: NOTRUN -> [SKIP][6] ([i915#3282]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/fi-rkl-11600/igt@gem_tiled_pread_basic.html * igt@i915_selftest@live@coherency: - bat-dg2-14: [PASS][7] -> [ABORT][8] ([i915#10366] / [i915#10461]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14552/bat-dg2-14/igt@i915_selftest@live@coherency.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/bat-dg2-14/igt@i915_selftest@live@coherency.html * igt@i915_selftest@live@gt_engines: - bat-dg2-9: [PASS][9] -> [ABORT][10] ([i915#10366]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14552/bat-dg2-9/igt@i915_selftest@live@gt_engines.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/bat-dg2-9/igt@i915_selftest@live@gt_engines.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - fi-rkl-11600: NOTRUN -> [SKIP][11] ([i915#4103]) +1 other test skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/fi-rkl-11600/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_dsc@dsc-basic: - fi-rkl-11600: NOTRUN -> [SKIP][12] ([i915#3555] / [i915#3840]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/fi-rkl-11600/igt@kms_dsc@dsc-basic.html * igt@kms_force_connector_basic@force-load-detect: - fi-rkl-11600: NOTRUN -> [SKIP][13] [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/fi-rkl-11600/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_pm_backlight@basic-brightness: - fi-rkl-11600: NOTRUN -> [SKIP][14] ([i915#5354]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/fi-rkl-11600/igt@kms_pm_backlight@basic-brightness.html * igt@kms_psr@psr-sprite-plane-onoff: - fi-rkl-11600: NOTRUN -> [SKIP][15] ([i915#1072] / [i915#9732]) +3 other tests skip [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/fi-rkl-11600/igt@kms_psr@psr-sprite-plane-onoff.html * igt@kms_setmode@basic-clone-single-crtc: - fi-rkl-11600: NOTRUN -> [SKIP][16] ([i915#3555]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/fi-rkl-11600/igt@kms_setmode@basic-clone-single-crtc.html * igt@prime_vgem@basic-read: - fi-rkl-11600: NOTRUN -> [SKIP][17] ([i915#3291] / [i915#3708]) +2 other tests skip [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/fi-rkl-11600/igt@prime_vgem@basic-read.html #### Possible fixes #### * igt@gem_lmem_swapping@basic@lmem0: - bat-dg2-11: [FAIL][18] ([i915#10378]) -> [PASS][19] [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14552/bat-dg2-11/igt@gem_lmem_swapping@basic@lmem0.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/bat-dg2-11/igt@gem_lmem_swapping@basic@lmem0.html - bat-dg2-9: [FAIL][20] ([i915#10378]) -> [PASS][21] [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14552/bat-dg2-9/igt@gem_lmem_swapping@basic@lmem0.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/bat-dg2-9/igt@gem_lmem_swapping@basic@lmem0.html * igt@i915_selftest@live@gt_contexts: - bat-dg2-8: [ABORT][22] ([i915#10366]) -> [PASS][23] [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14552/bat-dg2-8/igt@i915_selftest@live@gt_contexts.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/bat-dg2-8/igt@i915_selftest@live@gt_contexts.html [i915#10366]: https://gitlab.freedesktop.org/drm/intel/issues/10366 [i915#10378]: https://gitlab.freedesktop.org/drm/intel/issues/10378 [i915#10461]: https://gitlab.freedesktop.org/drm/intel/issues/10461 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#9318]: https://gitlab.freedesktop.org/drm/intel/issues/9318 [i915#9732]: https://gitlab.freedesktop.org/drm/intel/issues/9732 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7803 -> IGTPW_10997 CI-20190529: 20190529 CI_DRM_14552: 057ec21a54cddd595a7725fa8731eb4c5bd5abff @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_10997: 10997 IGT_7803: 9669a17ae56f1dcd22ba4c5cb39b3cd334a46862 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Testlist changes ---------------- +igt@xe_bo_alloc@all-sizes-once +igt@xe_bo_alloc@processes-leak-binding-rand-sizes-50 +igt@xe_bo_alloc@processes-leak-binding-rand-sizes-50-unaligned +igt@xe_bo_alloc@processes-leak-bo-rand-sizes-50 +igt@xe_bo_alloc@processes-leak-bo-rand-sizes-50-unaligned +igt@xe_bo_alloc@processes-leak-bo-rand-sizes-evict +igt@xe_bo_alloc@processes-leak-bo-rand-sizes-evict-unaligned +igt@xe_bo_alloc@processes-rand-sizes-50 +igt@xe_bo_alloc@processes-rand-sizes-50-unaligned +igt@xe_bo_alloc@rand-sizes-10 +igt@xe_bo_alloc@rand-sizes-100 +igt@xe_bo_alloc@rand-sizes-100-unaligned +igt@xe_bo_alloc@threads-leak-binding-rand-sizes-50 +igt@xe_bo_alloc@threads-leak-binding-rand-sizes-50-unaligned +igt@xe_bo_alloc@threads-rand-sizes-50 +igt@xe_bo_alloc@threads-rand-sizes-50-unaligned == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/index.html [-- Attachment #2: Type: text/html, Size: 8912 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
* ✓ Fi.CI.IGT: success for Add xe_bo_alloc test 2024-04-10 7:12 [PATCH 0/1] Add xe_bo_alloc test Matthew Brost ` (3 preceding siblings ...) 2024-04-10 8:37 ` ✓ Fi.CI.BAT: " Patchwork @ 2024-04-10 21:07 ` Patchwork 4 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2024-04-10 21:07 UTC (permalink / raw) To: Matthew Brost; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 100240 bytes --] == Series Details == Series: Add xe_bo_alloc test URL : https://patchwork.freedesktop.org/series/132251/ State : success == Summary == CI Bug Log - changes from CI_DRM_14552_full -> IGTPW_10997_full ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/index.html Participating hosts (10 -> 9) ------------------------------ Missing (1): shard-snb-0 Known issues ------------ Here are the changes found in IGTPW_10997_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-reloc-keep-cache: - shard-mtlp: NOTRUN -> [SKIP][1] ([i915#8411]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-mtlp-6/igt@api_intel_bb@blit-reloc-keep-cache.html * igt@api_intel_bb@crc32: - shard-rkl: NOTRUN -> [SKIP][2] ([i915#6230]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-rkl-5/igt@api_intel_bb@crc32.html * igt@api_intel_bb@object-reloc-keep-cache: - shard-dg1: NOTRUN -> [SKIP][3] ([i915#8411]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg1-16/igt@api_intel_bb@object-reloc-keep-cache.html * igt@device_reset@unbind-cold-reset-rebind: - shard-dg2: NOTRUN -> [SKIP][4] ([i915#7701]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg2-6/igt@device_reset@unbind-cold-reset-rebind.html * igt@device_reset@unbind-reset-rebind: - shard-dg1: NOTRUN -> [INCOMPLETE][5] ([i915#9408] / [i915#9618]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg1-15/igt@device_reset@unbind-reset-rebind.html * igt@drm_fdinfo@all-busy-check-all: - shard-mtlp: NOTRUN -> [SKIP][6] ([i915#8414]) +6 other tests skip [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-mtlp-7/igt@drm_fdinfo@all-busy-check-all.html * igt@drm_fdinfo@most-busy-check-all@bcs0: - shard-dg2: NOTRUN -> [SKIP][7] ([i915#8414]) +15 other tests skip [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg2-2/igt@drm_fdinfo@most-busy-check-all@bcs0.html - shard-dg1: NOTRUN -> [SKIP][8] ([i915#8414]) +5 other tests skip [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg1-17/igt@drm_fdinfo@most-busy-check-all@bcs0.html * igt@drm_fdinfo@virtual-idle: - shard-rkl: NOTRUN -> [FAIL][9] ([i915#7742]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-rkl-3/igt@drm_fdinfo@virtual-idle.html * igt@gem_busy@semaphore: - shard-dg2: NOTRUN -> [SKIP][10] ([i915#3936]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg2-6/igt@gem_busy@semaphore.html - shard-dg1: NOTRUN -> [SKIP][11] ([i915#3936]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg1-15/igt@gem_busy@semaphore.html * igt@gem_caching@reads: - shard-mtlp: NOTRUN -> [SKIP][12] ([i915#4873]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-mtlp-2/igt@gem_caching@reads.html * igt@gem_ccs@block-copy-compressed: - shard-dg1: NOTRUN -> [SKIP][13] ([i915#3555] / [i915#9323]) +1 other test skip [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg1-17/igt@gem_ccs@block-copy-compressed.html * igt@gem_ccs@block-multicopy-compressed: - shard-dg1: NOTRUN -> [SKIP][14] ([i915#9323]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg1-15/igt@gem_ccs@block-multicopy-compressed.html * igt@gem_ccs@suspend-resume: - shard-rkl: NOTRUN -> [SKIP][15] ([i915#9323]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-rkl-3/igt@gem_ccs@suspend-resume.html * igt@gem_close_race@multigpu-basic-process: - shard-dg2: NOTRUN -> [SKIP][16] ([i915#7697]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg2-10/igt@gem_close_race@multigpu-basic-process.html * igt@gem_ctx_exec@basic-nohangcheck: - shard-rkl: NOTRUN -> [FAIL][17] ([i915#6268]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-rkl-3/igt@gem_ctx_exec@basic-nohangcheck.html - shard-tglu: [PASS][18] -> [FAIL][19] ([i915#6268]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14552/shard-tglu-5/igt@gem_ctx_exec@basic-nohangcheck.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-tglu-2/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_ctx_persistence@engines-hostile-preempt: - shard-snb: NOTRUN -> [SKIP][20] ([i915#1099]) +1 other test skip [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-snb4/igt@gem_ctx_persistence@engines-hostile-preempt.html * igt@gem_ctx_persistence@hang: - shard-mtlp: NOTRUN -> [SKIP][21] ([i915#8555]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-mtlp-2/igt@gem_ctx_persistence@hang.html * igt@gem_ctx_persistence@heartbeat-hang: - shard-dg2: NOTRUN -> [SKIP][22] ([i915#8555]) +1 other test skip [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg2-6/igt@gem_ctx_persistence@heartbeat-hang.html - shard-dg1: NOTRUN -> [SKIP][23] ([i915#8555]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg1-15/igt@gem_ctx_persistence@heartbeat-hang.html * igt@gem_ctx_sseu@invalid-args: - shard-mtlp: NOTRUN -> [SKIP][24] ([i915#280]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-mtlp-5/igt@gem_ctx_sseu@invalid-args.html * igt@gem_ctx_sseu@invalid-sseu: - shard-dg1: NOTRUN -> [SKIP][25] ([i915#280]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg1-13/igt@gem_ctx_sseu@invalid-sseu.html * igt@gem_ctx_sseu@mmap-args: - shard-dg2: NOTRUN -> [SKIP][26] ([i915#280]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg2-11/igt@gem_ctx_sseu@mmap-args.html - shard-rkl: NOTRUN -> [SKIP][27] ([i915#280]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-rkl-3/igt@gem_ctx_sseu@mmap-args.html - shard-tglu: NOTRUN -> [SKIP][28] ([i915#280]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-tglu-6/igt@gem_ctx_sseu@mmap-args.html * igt@gem_eio@kms: - shard-tglu: [PASS][29] -> [INCOMPLETE][30] ([i915#10513]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14552/shard-tglu-4/igt@gem_eio@kms.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-tglu-9/igt@gem_eio@kms.html * igt@gem_eio@reset-stress: - shard-dg1: [PASS][31] -> [FAIL][32] ([i915#5784]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14552/shard-dg1-14/igt@gem_eio@reset-stress.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg1-16/igt@gem_eio@reset-stress.html * igt@gem_exec_balancer@bonded-sync: - shard-dg2: NOTRUN -> [SKIP][33] ([i915#4771]) +1 other test skip [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg2-8/igt@gem_exec_balancer@bonded-sync.html * igt@gem_exec_balancer@bonded-true-hang: - shard-mtlp: NOTRUN -> [SKIP][34] ([i915#4812]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-mtlp-1/igt@gem_exec_balancer@bonded-true-hang.html * igt@gem_exec_balancer@invalid-bonds: - shard-dg2: NOTRUN -> [SKIP][35] ([i915#4036]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg2-2/igt@gem_exec_balancer@invalid-bonds.html * igt@gem_exec_balancer@parallel-keep-submit-fence: - shard-rkl: NOTRUN -> [SKIP][36] ([i915#4525]) +1 other test skip [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-rkl-4/igt@gem_exec_balancer@parallel-keep-submit-fence.html * igt@gem_exec_balancer@sliced: - shard-dg2: NOTRUN -> [SKIP][37] ([i915#4812]) +1 other test skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg2-3/igt@gem_exec_balancer@sliced.html * igt@gem_exec_capture@capture@vecs0-lmem0: - shard-dg1: NOTRUN -> [FAIL][38] ([i915#10386]) +1 other test fail [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg1-14/igt@gem_exec_capture@capture@vecs0-lmem0.html * igt@gem_exec_capture@many-4k-incremental: - shard-dg2: NOTRUN -> [FAIL][39] ([i915#9606]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg2-2/igt@gem_exec_capture@many-4k-incremental.html * igt@gem_exec_capture@many-4k-zero: - shard-rkl: NOTRUN -> [FAIL][40] ([i915#9606]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-rkl-5/igt@gem_exec_capture@many-4k-zero.html * igt@gem_exec_fair@basic-deadline: - shard-mtlp: NOTRUN -> [SKIP][41] ([i915#4473] / [i915#4771]) +1 other test skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-mtlp-3/igt@gem_exec_fair@basic-deadline.html * igt@gem_exec_fair@basic-none-share: - shard-dg2: NOTRUN -> [SKIP][42] ([i915#3539] / [i915#4852]) +4 other tests skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg2-8/igt@gem_exec_fair@basic-none-share.html * igt@gem_exec_fair@basic-none-share@rcs0: - shard-tglu: [PASS][43] -> [FAIL][44] ([i915#2842]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14552/shard-tglu-6/igt@gem_exec_fair@basic-none-share@rcs0.html [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-tglu-2/igt@gem_exec_fair@basic-none-share@rcs0.html * igt@gem_exec_fair@basic-none@rcs0: - shard-glk: NOTRUN -> [FAIL][45] ([i915#2842]) +2 other tests fail [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-glk6/igt@gem_exec_fair@basic-none@rcs0.html * igt@gem_exec_fair@basic-pace: - shard-dg1: NOTRUN -> [SKIP][46] ([i915#3539]) +1 other test skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg1-16/igt@gem_exec_fair@basic-pace.html - shard-dg2: NOTRUN -> [SKIP][47] ([i915#3539]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg2-5/igt@gem_exec_fair@basic-pace.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-rkl: NOTRUN -> [FAIL][48] ([i915#2842]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-rkl-4/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_flush@basic-uc-pro-default: - shard-dg1: NOTRUN -> [SKIP][49] ([i915#3539] / [i915#4852]) +4 other tests skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg1-16/igt@gem_exec_flush@basic-uc-pro-default.html * igt@gem_exec_params@rsvd2-dirt: - shard-dg2: NOTRUN -> [SKIP][50] ([i915#5107]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg2-11/igt@gem_exec_params@rsvd2-dirt.html * igt@gem_exec_reloc@basic-cpu-read: - shard-dg2: NOTRUN -> [SKIP][51] ([i915#3281]) +14 other tests skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg2-10/igt@gem_exec_reloc@basic-cpu-read.html * igt@gem_exec_reloc@basic-gtt-cpu: - shard-rkl: NOTRUN -> [SKIP][52] ([i915#3281]) +10 other tests skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-rkl-4/igt@gem_exec_reloc@basic-gtt-cpu.html * igt@gem_exec_reloc@basic-gtt-wc-noreloc: - shard-dg1: NOTRUN -> [SKIP][53] ([i915#3281]) +7 other tests skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg1-18/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html * igt@gem_exec_schedule@preempt-queue: - shard-dg2: NOTRUN -> [SKIP][54] ([i915#4537] / [i915#4812]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg2-11/igt@gem_exec_schedule@preempt-queue.html * igt@gem_exec_schedule@preempt-queue-contexts-chain: - shard-mtlp: NOTRUN -> [SKIP][55] ([i915#4537] / [i915#4812]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-mtlp-4/igt@gem_exec_schedule@preempt-queue-contexts-chain.html * igt@gem_exec_schedule@semaphore-power: - shard-dg1: NOTRUN -> [SKIP][56] ([i915#4812]) +3 other tests skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg1-17/igt@gem_exec_schedule@semaphore-power.html * igt@gem_fenced_exec_thrash@no-spare-fences-interruptible: - shard-mtlp: NOTRUN -> [SKIP][57] ([i915#4860]) +2 other tests skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-mtlp-6/igt@gem_fenced_exec_thrash@no-spare-fences-interruptible.html * igt@gem_fenced_exec_thrash@too-many-fences: - shard-dg2: NOTRUN -> [SKIP][58] ([i915#4860]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg2-10/igt@gem_fenced_exec_thrash@too-many-fences.html - shard-dg1: NOTRUN -> [SKIP][59] ([i915#4860]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg1-15/igt@gem_fenced_exec_thrash@too-many-fences.html * igt@gem_lmem_evict@dontneed-evict-race: - shard-rkl: NOTRUN -> [SKIP][60] ([i915#4613] / [i915#7582]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-rkl-4/igt@gem_lmem_evict@dontneed-evict-race.html * igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0: - shard-dg2: [PASS][61] -> [FAIL][62] ([i915#10378]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14552/shard-dg2-5/igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0.html [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg2-6/igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0.html * igt@gem_lmem_swapping@heavy-verify-multi@lmem0: - shard-dg1: NOTRUN -> [FAIL][63] ([i915#10378]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg1-15/igt@gem_lmem_swapping@heavy-verify-multi@lmem0.html * igt@gem_lmem_swapping@parallel-random-verify-ccs: - shard-rkl: NOTRUN -> [SKIP][64] ([i915#4613]) +5 other tests skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-rkl-5/igt@gem_lmem_swapping@parallel-random-verify-ccs.html * igt@gem_lmem_swapping@parallel-random-verify@lmem0: - shard-dg2: [PASS][65] -> [INCOMPLETE][66] ([i915#10317]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14552/shard-dg2-8/igt@gem_lmem_swapping@parallel-random-verify@lmem0.html [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg2-2/igt@gem_lmem_swapping@parallel-random-verify@lmem0.html * igt@gem_lmem_swapping@random: - shard-mtlp: NOTRUN -> [SKIP][67] ([i915#4613]) +1 other test skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-mtlp-6/igt@gem_lmem_swapping@random.html * igt@gem_lmem_swapping@verify-ccs: - shard-tglu: NOTRUN -> [SKIP][68] ([i915#4613]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-tglu-8/igt@gem_lmem_swapping@verify-ccs.html - shard-glk: NOTRUN -> [SKIP][69] ([i915#4613]) +4 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-glk1/igt@gem_lmem_swapping@verify-ccs.html * igt@gem_lmem_swapping@verify-ccs@lmem0: - shard-dg2: NOTRUN -> [FAIL][70] ([i915#10378]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg2-6/igt@gem_lmem_swapping@verify-ccs@lmem0.html * igt@gem_media_vme: - shard-dg1: NOTRUN -> [SKIP][71] ([i915#284]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg1-15/igt@gem_media_vme.html * igt@gem_mmap_gtt@cpuset-basic-small-copy-odd: - shard-dg1: NOTRUN -> [SKIP][72] ([i915#4077]) +9 other tests skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg1-18/igt@gem_mmap_gtt@cpuset-basic-small-copy-odd.html * igt@gem_mmap_gtt@cpuset-big-copy-odd: - shard-dg2: NOTRUN -> [SKIP][73] ([i915#4077]) +12 other tests skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg2-11/igt@gem_mmap_gtt@cpuset-big-copy-odd.html * igt@gem_mmap_wc@bad-object: - shard-mtlp: NOTRUN -> [SKIP][74] ([i915#4083]) +1 other test skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-mtlp-8/igt@gem_mmap_wc@bad-object.html * igt@gem_mmap_wc@copy: - shard-dg2: NOTRUN -> [SKIP][75] ([i915#4083]) +10 other tests skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg2-6/igt@gem_mmap_wc@copy.html * igt@gem_mmap_wc@read: - shard-dg1: NOTRUN -> [SKIP][76] ([i915#4083]) +2 other tests skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg1-17/igt@gem_mmap_wc@read.html * igt@gem_partial_pwrite_pread@reads-display: - shard-mtlp: NOTRUN -> [SKIP][77] ([i915#3282]) +3 other tests skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-mtlp-5/igt@gem_partial_pwrite_pread@reads-display.html * igt@gem_pread@exhaustion: - shard-glk: NOTRUN -> [WARN][78] ([i915#2658]) +1 other test warn [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-glk6/igt@gem_pread@exhaustion.html * igt@gem_pwrite@basic-exhaustion: - shard-dg1: NOTRUN -> [SKIP][79] ([i915#3282]) +1 other test skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg1-16/igt@gem_pwrite@basic-exhaustion.html * igt@gem_pwrite_snooped: - shard-rkl: NOTRUN -> [SKIP][80] ([i915#3282]) +5 other tests skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-rkl-5/igt@gem_pwrite_snooped.html * igt@gem_pxp@create-valid-protected-context: - shard-rkl: NOTRUN -> [SKIP][81] ([i915#4270]) +1 other test skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-rkl-1/igt@gem_pxp@create-valid-protected-context.html * igt@gem_pxp@protected-encrypted-src-copy-not-readible: - shard-dg1: NOTRUN -> [SKIP][82] ([i915#4270]) +1 other test skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg1-18/igt@gem_pxp@protected-encrypted-src-copy-not-readible.html * igt@gem_pxp@regular-baseline-src-copy-readible: - shard-dg2: NOTRUN -> [SKIP][83] ([i915#4270]) +3 other tests skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg2-2/igt@gem_pxp@regular-baseline-src-copy-readible.html * igt@gem_pxp@verify-pxp-stale-buf-optout-execution: - shard-mtlp: NOTRUN -> [SKIP][84] ([i915#4270]) +1 other test skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-mtlp-5/igt@gem_pxp@verify-pxp-stale-buf-optout-execution.html * igt@gem_readwrite@write-bad-handle: - shard-dg2: NOTRUN -> [SKIP][85] ([i915#3282]) +2 other tests skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg2-5/igt@gem_readwrite@write-bad-handle.html * igt@gem_render_copy@y-tiled-to-vebox-y-tiled: - shard-dg2: NOTRUN -> [SKIP][86] ([i915#5190] / [i915#8428]) +7 other tests skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg2-6/igt@gem_render_copy@y-tiled-to-vebox-y-tiled.html * igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled: - shard-mtlp: NOTRUN -> [SKIP][87] ([i915#8428]) +5 other tests skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-mtlp-8/igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled.html * igt@gem_set_tiling_vs_blt@tiled-to-tiled: - shard-dg1: NOTRUN -> [SKIP][88] ([i915#4079]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg1-13/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html * igt@gem_set_tiling_vs_blt@tiled-to-untiled: - shard-dg2: NOTRUN -> [SKIP][89] ([i915#4079]) +2 other tests skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg2-2/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html - shard-rkl: NOTRUN -> [SKIP][90] ([i915#8411]) +2 other tests skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-rkl-4/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html * igt@gem_softpin@evict-snoop: - shard-mtlp: NOTRUN -> [SKIP][91] ([i915#4885]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-mtlp-5/igt@gem_softpin@evict-snoop.html * igt@gem_tiled_pread_basic: - shard-mtlp: NOTRUN -> [SKIP][92] ([i915#4079]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-mtlp-5/igt@gem_tiled_pread_basic.html * igt@gem_userptr_blits@dmabuf-sync: - shard-glk: NOTRUN -> [SKIP][93] ([i915#3323]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-glk8/igt@gem_userptr_blits@dmabuf-sync.html * igt@gem_userptr_blits@readonly-unsync: - shard-dg1: NOTRUN -> [SKIP][94] ([i915#3297]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg1-15/igt@gem_userptr_blits@readonly-unsync.html * igt@gem_userptr_blits@relocations: - shard-mtlp: NOTRUN -> [SKIP][95] ([i915#3281]) +5 other tests skip [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-mtlp-3/igt@gem_userptr_blits@relocations.html * igt@gem_userptr_blits@unsync-overlap: - shard-mtlp: NOTRUN -> [SKIP][96] ([i915#3297]) +1 other test skip [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-mtlp-2/igt@gem_userptr_blits@unsync-overlap.html * igt@gen9_exec_parse@batch-invalid-length: - shard-dg1: NOTRUN -> [SKIP][97] ([i915#2527]) +2 other tests skip [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg1-18/igt@gen9_exec_parse@batch-invalid-length.html * igt@gen9_exec_parse@batch-without-end: - shard-mtlp: NOTRUN -> [SKIP][98] ([i915#2856]) +1 other test skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-mtlp-6/igt@gen9_exec_parse@batch-without-end.html * igt@gen9_exec_parse@bb-start-param: - shard-dg2: NOTRUN -> [SKIP][99] ([i915#2856]) +4 other tests skip [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg2-2/igt@gen9_exec_parse@bb-start-param.html - shard-rkl: NOTRUN -> [SKIP][100] ([i915#2527]) +1 other test skip [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-rkl-4/igt@gen9_exec_parse@bb-start-param.html * igt@i915_fb_tiling: - shard-dg2: NOTRUN -> [SKIP][101] ([i915#4881]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg2-2/igt@i915_fb_tiling.html * igt@i915_module_load@load: - shard-glk: NOTRUN -> [SKIP][102] ([i915#6227]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-glk6/igt@i915_module_load@load.html * igt@i915_module_load@reload-with-fault-injection: - shard-snb: NOTRUN -> [INCOMPLETE][103] ([i915#9849]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-snb2/igt@i915_module_load@reload-with-fault-injection.html - shard-dg2: [PASS][104] -> [ABORT][105] ([i915#9820]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14552/shard-dg2-5/igt@i915_module_load@reload-with-fault-injection.html [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg2-7/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_module_load@resize-bar: - shard-rkl: NOTRUN -> [SKIP][106] ([i915#6412]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-rkl-3/igt@i915_module_load@resize-bar.html * igt@i915_pm_freq_api@freq-basic-api: - shard-rkl: NOTRUN -> [SKIP][107] ([i915#8399]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-rkl-4/igt@i915_pm_freq_api@freq-basic-api.html * igt@i915_pm_freq_mult@media-freq@gt0: - shard-rkl: NOTRUN -> [SKIP][108] ([i915#6590]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-rkl-5/igt@i915_pm_freq_mult@media-freq@gt0.html * igt@i915_pm_rpm@gem-evict-pwrite: - shard-mtlp: NOTRUN -> [SKIP][109] ([i915#4077]) +6 other tests skip [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-mtlp-2/igt@i915_pm_rpm@gem-evict-pwrite.html * igt@i915_pm_rps@basic-api: - shard-dg2: NOTRUN -> [SKIP][110] ([i915#6621]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg2-2/igt@i915_pm_rps@basic-api.html * igt@i915_pm_rps@min-max-config-loaded: - shard-dg1: NOTRUN -> [SKIP][111] ([i915#6621]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg1-17/igt@i915_pm_rps@min-max-config-loaded.html * igt@i915_pm_rps@thresholds@gt0: - shard-dg2: NOTRUN -> [SKIP][112] ([i915#8925]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg2-5/igt@i915_pm_rps@thresholds@gt0.html * igt@i915_query@test-query-geometry-subslices: - shard-dg1: NOTRUN -> [SKIP][113] ([i915#5723]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg1-14/igt@i915_query@test-query-geometry-subslices.html * igt@i915_selftest@mock@memory_region: - shard-rkl: NOTRUN -> [DMESG-WARN][114] ([i915#9311]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-rkl-5/igt@i915_selftest@mock@memory_region.html * igt@kms_addfb_basic@addfb25-x-tiled-legacy: - shard-mtlp: NOTRUN -> [SKIP][115] ([i915#4212]) +1 other test skip [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-mtlp-7/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html * igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy: - shard-dg2: NOTRUN -> [SKIP][116] ([i915#4212]) +1 other test skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg2-11/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-dg2: NOTRUN -> [SKIP][117] ([i915#5190]) +2 other tests skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg2-10/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-4-y-rc-ccs: - shard-dg1: NOTRUN -> [SKIP][118] ([i915#8709]) +7 other tests skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg1-18/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-4-y-rc-ccs.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-dp-4-4-rc-ccs-cc: - shard-dg2: NOTRUN -> [SKIP][119] ([i915#8709]) +11 other tests skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg2-11/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-dp-4-4-rc-ccs-cc.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-mtlp: NOTRUN -> [SKIP][120] ([i915#3555]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-mtlp-4/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-dg2: NOTRUN -> [SKIP][121] ([i915#1769] / [i915#3555]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg2-2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html - shard-rkl: NOTRUN -> [SKIP][122] ([i915#1769] / [i915#3555]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-rkl-1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-snb: NOTRUN -> [SKIP][123] ([i915#1769]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-snb7/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_big_fb@4-tiled-16bpp-rotate-0: - shard-tglu: NOTRUN -> [SKIP][124] ([i915#5286]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-tglu-2/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html * igt@kms_big_fb@4-tiled-16bpp-rotate-90: - shard-mtlp: NOTRUN -> [SKIP][125] +10 other tests skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-mtlp-6/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0: - shard-rkl: NOTRUN -> [SKIP][126] ([i915#5286]) +8 other tests skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-rkl-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-dg1: NOTRUN -> [SKIP][127] ([i915#4538] / [i915#5286]) +5 other tests skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg1-15/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@linear-8bpp-rotate-270: - shard-dg1: NOTRUN -> [SKIP][128] ([i915#3638]) +2 other tests skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg1-17/igt@kms_big_fb@linear-8bpp-rotate-270.html * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-tglu: [PASS][129] -> [FAIL][130] ([i915#3743]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14552/shard-tglu-3/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-tglu-7/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@y-tiled-64bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][131] ([i915#3638]) +2 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-rkl-5/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html * igt@kms_big_fb@y-tiled-8bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][132] ([i915#4538] / [i915#5190]) +12 other tests skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg2-8/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-270: - shard-dg1: NOTRUN -> [SKIP][133] ([i915#4538]) +5 other tests skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg1-14/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-addfb-size-overflow: - shard-mtlp: NOTRUN -> [SKIP][134] ([i915#6187]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-mtlp-8/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html * igt@kms_big_joiner@basic: - shard-dg2: NOTRUN -> [SKIP][135] ([i915#10656]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg2-6/igt@kms_big_joiner@basic.html * igt@kms_ccs@bad-aux-stride-y-tiled-ccs@pipe-c-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][136] ([i915#6095]) +71 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg1-15/igt@kms_ccs@bad-aux-stride-y-tiled-ccs@pipe-c-hdmi-a-4.html * igt@kms_ccs@bad-rotation-90-4-tiled-xe2-ccs: - shard-dg2: NOTRUN -> [SKIP][137] ([i915#10278]) +2 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg2-6/igt@kms_ccs@bad-rotation-90-4-tiled-xe2-ccs.html - shard-dg1: NOTRUN -> [SKIP][138] ([i915#10278]) +1 other test skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg1-15/igt@kms_ccs@bad-rotation-90-4-tiled-xe2-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-xe2-ccs: - shard-mtlp: NOTRUN -> [SKIP][139] ([i915#10278]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-mtlp-2/igt@kms_ccs@crc-primary-rotation-180-4-tiled-xe2-ccs.html * igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][140] ([i915#6095]) +35 other tests skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-mtlp-7/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs@pipe-c-edp-1.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][141] ([i915#10307] / [i915#10434] / [i915#6095]) +1 other test skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg2-8/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-1.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-xe2-ccs: - shard-rkl: NOTRUN -> [SKIP][142] ([i915#10278]) +1 other test skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-rkl-3/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-xe2-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][143] ([i915#10307] / [i915#6095]) +181 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg2-10/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][144] ([i915#6095]) +75 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-rkl-5/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-b-hdmi-a-1.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-rkl: NOTRUN -> [SKIP][145] ([i915#3742]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-rkl-5/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_cdclk@mode-transition@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][146] ([i915#7213] / [i915#9010]) +4 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-mtlp-5/igt@kms_cdclk@mode-transition@pipe-b-edp-1.html * igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][147] ([i915#7213]) +3 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg2-8/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-1.html * igt@kms_cdclk@plane-scaling@pipe-d-dp-4: - shard-dg2: NOTRUN -> [SKIP][148] ([i915#4087]) +3 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg2-11/igt@kms_cdclk@plane-scaling@pipe-d-dp-4.html * igt@kms_chamelium_edid@hdmi-edid-change-during-suspend: - shard-rkl: NOTRUN -> [SKIP][149] ([i915#7828]) +12 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-rkl-4/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html * igt@kms_chamelium_frames@hdmi-crc-multiple: - shard-dg2: NOTRUN -> [SKIP][150] ([i915#7828]) +9 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg2-6/igt@kms_chamelium_frames@hdmi-crc-multiple.html * igt@kms_chamelium_hpd@dp-hpd-for-each-pipe: - shard-mtlp: NOTRUN -> [SKIP][151] ([i915#7828]) +5 other tests skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-mtlp-4/igt@kms_chamelium_hpd@dp-hpd-for-each-pipe.html * igt@kms_chamelium_hpd@dp-hpd-storm-disable: - shard-dg1: NOTRUN -> [SKIP][152] ([i915#7828]) +6 other tests skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg1-18/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html * igt@kms_content_protection@atomic-dpms: - shard-mtlp: NOTRUN -> [SKIP][153] ([i915#6944] / [i915#9424]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-mtlp-2/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@atomic-dpms@pipe-a-dp-4: - shard-dg2: NOTRUN -> [TIMEOUT][154] ([i915#7173]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg2-11/igt@kms_content_protection@atomic-dpms@pipe-a-dp-4.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-dg1: NOTRUN -> [SKIP][155] ([i915#3299]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg1-13/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@dp-mst-type-0: - shard-dg2: NOTRUN -> [SKIP][156] ([i915#3299]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg2-6/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@dp-mst-type-1: - shard-rkl: NOTRUN -> [SKIP][157] ([i915#3116]) +1 other test skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-rkl-4/igt@kms_content_protection@dp-mst-type-1.html - shard-mtlp: NOTRUN -> [SKIP][158] ([i915#3299]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-mtlp-7/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@lic-type-0: - shard-dg2: NOTRUN -> [SKIP][159] ([i915#9424]) +1 other test skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg2-6/igt@kms_content_protection@lic-type-0.html * igt@kms_content_protection@lic-type-1: - shard-dg1: NOTRUN -> [SKIP][160] ([i915#9424]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg1-17/igt@kms_content_protection@lic-type-1.html * igt@kms_content_protection@type1: - shard-dg2: NOTRUN -> [SKIP][161] ([i915#7118] / [i915#7162] / [i915#9424]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg2-11/igt@kms_content_protection@type1.html - shard-dg1: NOTRUN -> [SKIP][162] ([i915#7116] / [i915#9424]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg1-17/igt@kms_content_protection@type1.html * igt@kms_content_protection@uevent: - shard-dg2: NOTRUN -> [SKIP][163] ([i915#7118] / [i915#9424]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg2-2/igt@kms_content_protection@uevent.html - shard-rkl: NOTRUN -> [SKIP][164] ([i915#7118] / [i915#9424]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-rkl-1/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-offscreen-32x32: - shard-dg1: NOTRUN -> [SKIP][165] ([i915#3555]) +9 other tests skip [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg1-17/igt@kms_cursor_crc@cursor-offscreen-32x32.html * igt@kms_cursor_crc@cursor-random-128x42: - shard-mtlp: NOTRUN -> [SKIP][166] ([i915#8814]) +2 other tests skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-mtlp-7/igt@kms_cursor_crc@cursor-random-128x42.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-dg2: NOTRUN -> [SKIP][167] ([i915#3359]) +3 other tests skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg2-8/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_crc@cursor-rapid-movement-32x32: - shard-dg2: NOTRUN -> [SKIP][168] ([i915#3555]) +7 other tests skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg2-11/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html * igt@kms_cursor_crc@cursor-rapid-movement-512x512: - shard-rkl: NOTRUN -> [SKIP][169] ([i915#3359]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-rkl-4/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html * igt@kms_cursor_crc@cursor-sliding-512x170: - shard-dg1: NOTRUN -> [SKIP][170] ([i915#3359]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg1-14/igt@kms_cursor_crc@cursor-sliding-512x170.html * igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic: - shard-mtlp: NOTRUN -> [SKIP][171] ([i915#9809]) +4 other tests skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-mtlp-8/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-mtlp: NOTRUN -> [SKIP][172] ([i915#4213]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-mtlp-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@cursora-vs-flipb-varying-size: - shard-snb: [PASS][173] -> [SKIP][174] +3 other tests skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14552/shard-snb7/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-snb6/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-glk: NOTRUN -> [FAIL][175] ([i915#2346]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-glk1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-dg2: NOTRUN -> [SKIP][176] ([i915#4103] / [i915#4213]) +1 other test skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg2-11/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html - shard-rkl: NOTRUN -> [SKIP][177] ([i915#4103]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-rkl-3/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-dg1: NOTRUN -> [SKIP][178] ([i915#4103] / [i915#4213]) +1 other test skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg1-13/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt@kms_cursor_legacy@torture-bo@pipe-a: - shard-tglu: [PASS][179] -> [DMESG-WARN][180] ([i915#10166]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14552/shard-tglu-3/igt@kms_cursor_legacy@torture-bo@pipe-a.html [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-tglu-6/igt@kms_cursor_legacy@torture-bo@pipe-a.html * igt@kms_cursor_legacy@torture-move@pipe-a: - shard-dg2: [PASS][181] -> [DMESG-WARN][182] ([i915#10166]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14552/shard-dg2-5/igt@kms_cursor_legacy@torture-move@pipe-a.html [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg2-5/igt@kms_cursor_legacy@torture-move@pipe-a.html * igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][183] ([i915#9723]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-rkl-4/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1.html * igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][184] ([i915#9227]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg2-6/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-3.html * igt@kms_display_modes@mst-extended-mode-negative: - shard-mtlp: NOTRUN -> [SKIP][185] ([i915#8588]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-mtlp-8/igt@kms_display_modes@mst-extended-mode-negative.html * igt@kms_dsc@dsc-basic: - shard-mtlp: NOTRUN -> [SKIP][186] ([i915#3555] / [i915#3840] / [i915#9159]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-mtlp-8/igt@kms_dsc@dsc-basic.html * igt@kms_dsc@dsc-fractional-bpp: - shard-rkl: NOTRUN -> [SKIP][187] ([i915#3840]) +1 other test skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-rkl-3/igt@kms_dsc@dsc-fractional-bpp.html * igt@kms_dsc@dsc-fractional-bpp-with-bpc: - shard-dg2: NOTRUN -> [SKIP][188] ([i915#3840]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg2-6/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html - shard-tglu: NOTRUN -> [SKIP][189] ([i915#3840]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-tglu-8/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html * igt@kms_dsc@dsc-with-bpc: - shard-mtlp: NOTRUN -> [SKIP][190] ([i915#3555] / [i915#3840]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-mtlp-6/igt@kms_dsc@dsc-with-bpc.html * igt@kms_dsc@dsc-with-output-formats: - shard-dg1: NOTRUN -> [SKIP][191] ([i915#3555] / [i915#3840]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg1-16/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_fbcon_fbt@psr: - shard-dg2: NOTRUN -> [SKIP][192] ([i915#3469]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg2-8/igt@kms_fbcon_fbt@psr.html - shard-rkl: NOTRUN -> [SKIP][193] ([i915#3955]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-rkl-5/igt@kms_fbcon_fbt@psr.html - shard-tglu: NOTRUN -> [SKIP][194] ([i915#3469]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-tglu-3/igt@kms_fbcon_fbt@psr.html * igt@kms_feature_discovery@chamelium: - shard-rkl: NOTRUN -> [SKIP][195] ([i915#4854]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-rkl-1/igt@kms_feature_discovery@chamelium.html * igt@kms_feature_discovery@display-3x: - shard-dg2: NOTRUN -> [SKIP][196] ([i915#1839]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg2-5/igt@kms_feature_discovery@display-3x.html - shard-dg1: NOTRUN -> [SKIP][197] ([i915#1839]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg1-16/igt@kms_feature_discovery@display-3x.html * igt@kms_feature_discovery@display-4x: - shard-rkl: NOTRUN -> [SKIP][198] ([i915#1839]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-rkl-5/igt@kms_feature_discovery@display-4x.html * igt@kms_feature_discovery@psr2: - shard-dg2: NOTRUN -> [SKIP][199] ([i915#658]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg2-8/igt@kms_feature_discovery@psr2.html - shard-rkl: NOTRUN -> [SKIP][200] ([i915#658]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-rkl-3/igt@kms_feature_discovery@psr2.html * igt@kms_fence_pin_leak: - shard-mtlp: NOTRUN -> [SKIP][201] ([i915#4881]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-mtlp-2/igt@kms_fence_pin_leak.html * igt@kms_flip@2x-modeset-vs-vblank-race: - shard-mtlp: NOTRUN -> [SKIP][202] ([i915#3637]) +2 other tests skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-mtlp-7/igt@kms_flip@2x-modeset-vs-vblank-race.html * igt@kms_flip@2x-plain-flip: - shard-dg1: NOTRUN -> [SKIP][203] ([i915#9934]) +6 other tests skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg1-18/igt@kms_flip@2x-plain-flip.html * igt@kms_flip@2x-wf_vblank-ts-check@ab-vga1-hdmi-a1: - shard-snb: [PASS][204] -> [FAIL][205] ([i915#2122]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14552/shard-snb6/igt@kms_flip@2x-wf_vblank-ts-check@ab-vga1-hdmi-a1.html [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-snb7/igt@kms_flip@2x-wf_vblank-ts-check@ab-vga1-hdmi-a1.html * igt@kms_flip@flip-vs-fences: - shard-dg2: NOTRUN -> [SKIP][206] ([i915#8381]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg2-5/igt@kms_flip@flip-vs-fences.html - shard-dg1: NOTRUN -> [SKIP][207] ([i915#8381]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg1-16/igt@kms_flip@flip-vs-fences.html * igt@kms_flip@flip-vs-fences-interruptible: - shard-mtlp: NOTRUN -> [SKIP][208] ([i915#8381]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-mtlp-3/igt@kms_flip@flip-vs-fences-interruptible.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][209] ([i915#2672]) +1 other test skip [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][210] ([i915#2587] / [i915#2672]) +1 other test skip [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg1-15/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][211] ([i915#2672]) +2 other tests skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-rkl-3/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][212] ([i915#2672]) +5 other tests skip [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg2-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][213] ([i915#8810]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][214] ([i915#3555] / [i915#8810]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][215] ([i915#2672] / [i915#3555]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][216] ([i915#2672] / [i915#3555]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg2-5/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc: - shard-rkl: NOTRUN -> [SKIP][217] ([i915#1825]) +39 other tests skip [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-rkl-4/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-dg1: NOTRUN -> [SKIP][218] +41 other tests skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg1-17/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt: - shard-dg2: NOTRUN -> [SKIP][219] ([i915#5354]) +44 other tests skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt: - shard-tglu: NOTRUN -> [SKIP][220] +2 other tests skip [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-tglu-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbc-stridechange: - shard-dg2: [PASS][221] -> [FAIL][222] ([i915#6880]) +2 other tests fail [221]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14552/shard-dg2-4/igt@kms_frontbuffer_tracking@fbc-stridechange.html [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-stridechange.html * igt@kms_frontbuffer_tracking@fbc-tiling-y: - shard-dg2: NOTRUN -> [SKIP][223] ([i915#10055]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-tiling-y.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][224] ([i915#8708]) +5 other tests skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw: - shard-rkl: NOTRUN -> [SKIP][225] ([i915#3023]) +27 other tests skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move: - shard-dg1: NOTRUN -> [SKIP][226] ([i915#3458]) +13 other tests skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][227] +49 other tests skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][228] ([i915#8708]) +25 other tests skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-blt: - shard-mtlp: NOTRUN -> [SKIP][229] ([i915#1825]) +24 other tests skip [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-mtlp: NOTRUN -> [SKIP][230] ([i915#10055]) [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt@kms_frontbuffer_tracking@pipe-fbc-rte: - shard-rkl: NOTRUN -> [SKIP][231] ([i915#9766]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-rkl-4/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-1p-rte: - shard-dg2: NOTRUN -> [SKIP][232] ([i915#3458]) +23 other tests skip [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg2-5/igt@kms_frontbuffer_tracking@psr-1p-rte.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][233] ([i915#8708]) +19 other tests skip [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg1-15/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc.html * igt@kms_hdr@static-toggle-suspend: - shard-dg2: NOTRUN -> [SKIP][234] ([i915#3555] / [i915#8228]) +2 other tests skip [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg2-8/igt@kms_hdr@static-toggle-suspend.html - shard-rkl: NOTRUN -> [SKIP][235] ([i915#3555] / [i915#8228]) +1 other test skip [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-rkl-3/igt@kms_hdr@static-toggle-suspend.html - shard-dg1: NOTRUN -> [SKIP][236] ([i915#3555] / [i915#8228]) +2 other tests skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg1-18/igt@kms_hdr@static-toggle-suspend.html * igt@kms_plane_alpha_blend@alpha-basic@pipe-c-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][237] ([i915#7862]) +1 other test fail [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-glk7/igt@kms_plane_alpha_blend@alpha-basic@pipe-c-hdmi-a-1.html * igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][238] ([i915#10647]) +1 other test fail [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-glk5/igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1.html * igt@kms_plane_lowres@tiling-x@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][239] ([i915#3582]) +3 other tests skip [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-mtlp-8/igt@kms_plane_lowres@tiling-x@pipe-a-edp-1.html * igt@kms_plane_lowres@tiling-yf: - shard-rkl: NOTRUN -> [SKIP][240] ([i915#3555]) +3 other tests skip [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-rkl-3/igt@kms_plane_lowres@tiling-yf.html - shard-mtlp: NOTRUN -> [SKIP][241] ([i915#3555] / [i915#8821]) [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-mtlp-4/igt@kms_plane_lowres@tiling-yf.html * igt@kms_plane_scaling@2x-scaler-multi-pipe: - shard-dg2: NOTRUN -> [SKIP][242] ([i915#5354] / [i915#9423]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg2-2/igt@kms_plane_scaling@2x-scaler-multi-pipe.html * igt@kms_plane_scaling@intel-max-src-size: - shard-dg2: NOTRUN -> [SKIP][243] ([i915#6953] / [i915#9423]) [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg2-5/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][244] ([i915#9423]) +11 other tests skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg2-5/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a-hdmi-a-3.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][245] ([i915#9423]) +3 other tests skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg1-13/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b-hdmi-a-3.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][246] ([i915#5176]) +7 other tests skip [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-mtlp-3/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers@pipe-b-edp-1.html * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][247] ([i915#9423]) +9 other tests skip [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-rkl-6/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a-hdmi-a-2.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][248] ([i915#5176] / [i915#9423]) +1 other test skip [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-rkl-4/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-b-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][249] ([i915#5235]) +7 other tests skip [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg1-16/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-b-hdmi-a-4.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-c-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][250] ([i915#5235] / [i915#9423] / [i915#9728]) +3 other tests skip [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-c-hdmi-a-2.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][251] ([i915#5235]) +11 other tests skip [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-rkl-3/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-2.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b-dp-4: - shard-dg2: NOTRUN -> [SKIP][252] ([i915#5235] / [i915#9423]) +7 other tests skip [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg2-11/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b-dp-4.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][253] ([i915#5235]) +5 other tests skip [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-mtlp-7/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b-edp-1.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][254] ([i915#3555] / [i915#5235]) +1 other test skip [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-mtlp-7/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-d-edp-1.html * igt@kms_pm_backlight@fade-with-suspend: - shard-rkl: NOTRUN -> [SKIP][255] ([i915#5354]) [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-rkl-5/igt@kms_pm_backlight@fade-with-suspend.html * igt@kms_pm_dc@dc5-psr: - shard-dg1: NOTRUN -> [SKIP][256] ([i915#9685]) +1 other test skip [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg1-18/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_dc@dc6-dpms: - shard-dg1: NOTRUN -> [SKIP][257] ([i915#3361]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg1-18/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_dc@dc6-psr: - shard-dg2: NOTRUN -> [SKIP][258] ([i915#9685]) +1 other test skip [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg2-6/igt@kms_pm_dc@dc6-psr.html * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-rkl: [PASS][259] -> [SKIP][260] ([i915#9519]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14552/shard-rkl-3/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-rkl-4/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@kms_pm_rpm@modeset-lpsp-stress: - shard-dg2: [PASS][261] -> [SKIP][262] ([i915#9519]) +1 other test skip [261]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14552/shard-dg2-10/igt@kms_pm_rpm@modeset-lpsp-stress.html [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg2-5/igt@kms_pm_rpm@modeset-lpsp-stress.html * igt@kms_prime@basic-crc-hybrid: - shard-dg2: NOTRUN -> [SKIP][263] ([i915#6524] / [i915#6805]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg2-11/igt@kms_prime@basic-crc-hybrid.html - shard-rkl: NOTRUN -> [SKIP][264] ([i915#6524]) [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-rkl-3/igt@kms_prime@basic-crc-hybrid.html - shard-dg1: NOTRUN -> [SKIP][265] ([i915#6524]) [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg1-17/igt@kms_prime@basic-crc-hybrid.html * igt@kms_psr2_sf@fbc-cursor-plane-update-sf@psr2-pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][266] ([i915#9808]) +3 other tests skip [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-mtlp-6/igt@kms_psr2_sf@fbc-cursor-plane-update-sf@psr2-pipe-a-edp-1.html * igt@kms_psr2_sf@fbc-overlay-plane-update-continuous-sf: - shard-dg2: NOTRUN -> [SKIP][267] +34 other tests skip [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg2-8/igt@kms_psr2_sf@fbc-overlay-plane-update-continuous-sf.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-dg1: NOTRUN -> [SKIP][268] ([i915#9683]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg1-16/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr2_su@page_flip-nv12: - shard-rkl: NOTRUN -> [SKIP][269] ([i915#9683]) [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-rkl-3/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-dg2: NOTRUN -> [SKIP][270] ([i915#9683]) +1 other test skip [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg2-11/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@fbc-pr-basic: - shard-mtlp: NOTRUN -> [SKIP][271] ([i915#9688]) +10 other tests skip [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-mtlp-4/igt@kms_psr@fbc-pr-basic.html * igt@kms_psr@fbc-pr-primary-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][272] ([i915#1072] / [i915#9732]) +20 other tests skip [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg2-6/igt@kms_psr@fbc-pr-primary-mmap-gtt.html * igt@kms_psr@fbc-psr2-cursor-render: - shard-dg2: NOTRUN -> [SKIP][273] ([i915#1072] / [i915#9673] / [i915#9732]) +6 other tests skip [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg2-11/igt@kms_psr@fbc-psr2-cursor-render.html * igt@kms_psr@pr-cursor-plane-move: - shard-tglu: NOTRUN -> [SKIP][274] ([i915#9732]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-tglu-6/igt@kms_psr@pr-cursor-plane-move.html * igt@kms_psr@psr-sprite-plane-move: - shard-rkl: NOTRUN -> [SKIP][275] ([i915#1072] / [i915#9732]) +25 other tests skip [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-rkl-3/igt@kms_psr@psr-sprite-plane-move.html * igt@kms_psr@psr2-sprite-blt: - shard-dg1: NOTRUN -> [SKIP][276] ([i915#1072] / [i915#9732]) +23 other tests skip [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg1-18/igt@kms_psr@psr2-sprite-blt.html * igt@kms_psr@psr2-sprite-mmap-gtt@edp-1: - shard-mtlp: NOTRUN -> [SKIP][277] ([i915#4077] / [i915#9688]) [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-mtlp-5/igt@kms_psr@psr2-sprite-mmap-gtt@edp-1.html * igt@kms_psr@psr2-sprite-plane-onoff: - shard-glk: NOTRUN -> [SKIP][278] +244 other tests skip [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-glk5/igt@kms_psr@psr2-sprite-plane-onoff.html * igt@kms_rotation_crc@bad-pixel-format: - shard-snb: NOTRUN -> [SKIP][279] +99 other tests skip [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-snb1/igt@kms_rotation_crc@bad-pixel-format.html * igt@kms_rotation_crc@bad-tiling: - shard-mtlp: NOTRUN -> [SKIP][280] ([i915#4235]) +1 other test skip [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-mtlp-1/igt@kms_rotation_crc@bad-tiling.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-dg1: NOTRUN -> [SKIP][281] ([i915#5289]) [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg1-17/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-rkl: NOTRUN -> [SKIP][282] ([i915#5289]) +1 other test skip [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-rkl-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_rotation_crc@sprite-rotation-90: - shard-dg2: NOTRUN -> [SKIP][283] ([i915#4235]) [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg2-11/igt@kms_rotation_crc@sprite-rotation-90.html * igt@kms_sysfs_edid_timing: - shard-dg1: NOTRUN -> [FAIL][284] ([IGT#2] / [i915#6493]) [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg1-16/igt@kms_sysfs_edid_timing.html * igt@kms_tiled_display@basic-test-pattern: - shard-mtlp: NOTRUN -> [SKIP][285] ([i915#8623]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-mtlp-2/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_universal_plane@cursor-fb-leak@pipe-d-dp-4: - shard-dg2: NOTRUN -> [FAIL][286] ([i915#9196]) [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg2-11/igt@kms_universal_plane@cursor-fb-leak@pipe-d-dp-4.html * igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1: - shard-tglu: [PASS][287] -> [FAIL][288] ([i915#9196]) +1 other test fail [287]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14552/shard-tglu-6/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1.html [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-tglu-6/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1.html * igt@kms_vrr@flip-basic: - shard-mtlp: NOTRUN -> [SKIP][289] ([i915#3555] / [i915#8808]) [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-mtlp-4/igt@kms_vrr@flip-basic.html * igt@kms_vrr@seamless-rr-switch-vrr: - shard-dg2: NOTRUN -> [SKIP][290] ([i915#9906]) [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg2-10/igt@kms_vrr@seamless-rr-switch-vrr.html - shard-rkl: NOTRUN -> [SKIP][291] ([i915#9906]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-rkl-4/igt@kms_vrr@seamless-rr-switch-vrr.html * igt@kms_writeback@writeback-check-output: - shard-rkl: NOTRUN -> [SKIP][292] ([i915#2437]) [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-rkl-5/igt@kms_writeback@writeback-check-output.html * igt@kms_writeback@writeback-fb-id-xrgb2101010: - shard-mtlp: NOTRUN -> [SKIP][293] ([i915#2437] / [i915#9412]) [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-mtlp-5/igt@kms_writeback@writeback-fb-id-xrgb2101010.html * igt@kms_writeback@writeback-invalid-parameters: - shard-glk: NOTRUN -> [SKIP][294] ([i915#2437]) [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-glk6/igt@kms_writeback@writeback-invalid-parameters.html - shard-dg2: NOTRUN -> [SKIP][295] ([i915#2437]) [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg2-11/igt@kms_writeback@writeback-invalid-parameters.html * igt@perf@mi-rpc: - shard-dg2: NOTRUN -> [SKIP][296] ([i915#2434] / [i915#7387]) [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg2-11/igt@perf@mi-rpc.html - shard-dg1: NOTRUN -> [SKIP][297] ([i915#2434]) [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg1-14/igt@perf@mi-rpc.html * igt@perf@per-context-mode-unprivileged: - shard-dg1: NOTRUN -> [SKIP][298] ([i915#2433]) +1 other test skip [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg1-17/igt@perf@per-context-mode-unprivileged.html * igt@perf_pmu@cpu-hotplug: - shard-dg2: NOTRUN -> [SKIP][299] ([i915#8850]) [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg2-10/igt@perf_pmu@cpu-hotplug.html - shard-rkl: NOTRUN -> [SKIP][300] ([i915#8850]) [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-rkl-5/igt@perf_pmu@cpu-hotplug.html * igt@perf_pmu@faulting-read@gtt: - shard-mtlp: NOTRUN -> [SKIP][301] ([i915#8440]) [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-mtlp-2/igt@perf_pmu@faulting-read@gtt.html * igt@perf_pmu@module-unload: - shard-dg2: NOTRUN -> [FAIL][302] ([i915#10537] / [i915#5793]) [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg2-3/igt@perf_pmu@module-unload.html * igt@perf_pmu@rc6-all-gts: - shard-dg1: NOTRUN -> [SKIP][303] ([i915#8516]) +1 other test skip [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg1-16/igt@perf_pmu@rc6-all-gts.html * igt@perf_pmu@rc6@other-idle-gt0: - shard-dg2: NOTRUN -> [SKIP][304] ([i915#8516]) +1 other test skip [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg2-11/igt@perf_pmu@rc6@other-idle-gt0.html - shard-rkl: NOTRUN -> [SKIP][305] ([i915#8516]) [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-rkl-3/igt@perf_pmu@rc6@other-idle-gt0.html * igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem: - shard-dg2: NOTRUN -> [INCOMPLETE][306] ([i915#5493]) [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg2-3/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html * igt@prime_vgem@basic-fence-read: - shard-dg1: NOTRUN -> [SKIP][307] ([i915#3708]) [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg1-18/igt@prime_vgem@basic-fence-read.html * igt@prime_vgem@coherency-gtt: - shard-dg2: NOTRUN -> [SKIP][308] ([i915#3708] / [i915#4077]) [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg2-10/igt@prime_vgem@coherency-gtt.html - shard-rkl: NOTRUN -> [SKIP][309] ([i915#3708]) +2 other tests skip [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-rkl-4/igt@prime_vgem@coherency-gtt.html * igt@prime_vgem@fence-read-hang: - shard-dg2: NOTRUN -> [SKIP][310] ([i915#3708]) +1 other test skip [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg2-5/igt@prime_vgem@fence-read-hang.html * igt@prime_vgem@fence-write-hang: - shard-mtlp: NOTRUN -> [SKIP][311] ([i915#3708]) +1 other test skip [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-mtlp-1/igt@prime_vgem@fence-write-hang.html * igt@sriov_basic@enable-vfs-autoprobe-off: - shard-dg2: NOTRUN -> [SKIP][312] ([i915#9917]) [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg2-2/igt@sriov_basic@enable-vfs-autoprobe-off.html * igt@sriov_basic@enable-vfs-bind-unbind-each: - shard-dg1: NOTRUN -> [SKIP][313] ([i915#9917]) [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg1-18/igt@sriov_basic@enable-vfs-bind-unbind-each.html * igt@syncobj_timeline@invalid-wait-zero-handles: - shard-mtlp: NOTRUN -> [FAIL][314] ([i915#9781]) [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-mtlp-1/igt@syncobj_timeline@invalid-wait-zero-handles.html * igt@syncobj_wait@invalid-wait-zero-handles: - shard-dg2: NOTRUN -> [FAIL][315] ([i915#9779]) [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg2-10/igt@syncobj_wait@invalid-wait-zero-handles.html * igt@v3d/v3d_mmap@mmap-bad-flags: - shard-dg1: NOTRUN -> [SKIP][316] ([i915#2575]) +13 other tests skip [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg1-15/igt@v3d/v3d_mmap@mmap-bad-flags.html * igt@v3d/v3d_submit_cl@simple-flush-cache: - shard-dg2: NOTRUN -> [SKIP][317] ([i915#2575]) +18 other tests skip [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg2-2/igt@v3d/v3d_submit_cl@simple-flush-cache.html * igt@v3d/v3d_submit_csd@bad-extension: - shard-mtlp: NOTRUN -> [SKIP][318] ([i915#2575]) +8 other tests skip [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-mtlp-3/igt@v3d/v3d_submit_csd@bad-extension.html * igt@vc4/vc4_perfmon@destroy-invalid-perfmon: - shard-dg1: NOTRUN -> [SKIP][319] ([i915#7711]) +5 other tests skip [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg1-15/igt@vc4/vc4_perfmon@destroy-invalid-perfmon.html * igt@vc4/vc4_purgeable_bo@mark-purgeable: - shard-rkl: NOTRUN -> [SKIP][320] ([i915#7711]) +9 other tests skip [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-rkl-5/igt@vc4/vc4_purgeable_bo@mark-purgeable.html * igt@vc4/vc4_purgeable_bo@mark-purgeable-twice: - shard-dg2: NOTRUN -> [SKIP][321] ([i915#7711]) +6 other tests skip [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg2-5/igt@vc4/vc4_purgeable_bo@mark-purgeable-twice.html * igt@vc4/vc4_tiling@set-bad-flags: - shard-mtlp: NOTRUN -> [SKIP][322] ([i915#7711]) +5 other tests skip [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-mtlp-8/igt@vc4/vc4_tiling@set-bad-flags.html #### Possible fixes #### * igt@drm_fdinfo@idle@rcs0: - shard-rkl: [FAIL][323] ([i915#7742]) -> [PASS][324] [323]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14552/shard-rkl-6/igt@drm_fdinfo@idle@rcs0.html [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-rkl-5/igt@drm_fdinfo@idle@rcs0.html * igt@gem_create@create-ext-cpu-access-big: - shard-dg2: [INCOMPLETE][325] ([i915#9364]) -> [PASS][326] [325]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14552/shard-dg2-4/igt@gem_create@create-ext-cpu-access-big.html [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg2-3/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_exec_fair@basic-none-share@rcs0: - shard-glk: [FAIL][327] ([i915#2842]) -> [PASS][328] [327]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14552/shard-glk6/igt@gem_exec_fair@basic-none-share@rcs0.html [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-glk7/igt@gem_exec_fair@basic-none-share@rcs0.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-tglu: [FAIL][329] ([i915#2842]) -> [PASS][330] [329]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14552/shard-tglu-5/igt@gem_exec_fair@basic-pace-share@rcs0.html [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-tglu-8/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_fair@basic-pace@vcs0: - shard-rkl: [FAIL][331] ([i915#2842]) -> [PASS][332] [331]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14552/shard-rkl-4/igt@gem_exec_fair@basic-pace@vcs0.html [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-rkl-5/igt@gem_exec_fair@basic-pace@vcs0.html * igt@gem_exec_whisper@basic-forked: - shard-dg2: [INCOMPLETE][333] ([i915#9857]) -> [PASS][334] [333]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14552/shard-dg2-6/igt@gem_exec_whisper@basic-forked.html [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg2-5/igt@gem_exec_whisper@basic-forked.html * igt@gem_lmem_swapping@heavy-random@lmem0: - shard-dg2: [FAIL][335] ([i915#10378]) -> [PASS][336] [335]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14552/shard-dg2-8/igt@gem_lmem_swapping@heavy-random@lmem0.html [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg2-8/igt@gem_lmem_swapping@heavy-random@lmem0.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg2: [TIMEOUT][337] ([i915#5493]) -> [PASS][338] [337]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14552/shard-dg2-6/igt@gem_lmem_swapping@smem-oom@lmem0.html [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg2-5/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@i915_selftest@live@gem_migrate: - shard-dg2: [ABORT][339] ([i915#10366] / [i915#10461]) -> [PASS][340] [339]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14552/shard-dg2-10/igt@i915_selftest@live@gem_migrate.html [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg2-8/igt@i915_selftest@live@gem_migrate.html * igt@kms_big_fb@4-tiled-8bpp-rotate-180: - shard-mtlp: [ABORT][341] -> [PASS][342] [341]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14552/shard-mtlp-8/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-mtlp-1/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip: - shard-tglu: [FAIL][343] ([i915#3743]) -> [PASS][344] +2 other tests pass [343]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14552/shard-tglu-5/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-tglu-5/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html * igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-vga1-hdmi-a1: - shard-snb: [FAIL][345] ([i915#2122]) -> [PASS][346] +1 other test pass [345]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14552/shard-snb7/igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-vga1-hdmi-a1.html [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-snb1/igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-vga1-hdmi-a1.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt: - shard-dg2: [FAIL][347] ([i915#6880]) -> [PASS][348] [347]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14552/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt.html [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-gtt: - shard-snb: [SKIP][349] -> [PASS][350] +1 other test pass [349]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14552/shard-snb5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-gtt.html [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1: - shard-rkl: [FAIL][351] ([i915#8292]) -> [PASS][352] [351]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14552/shard-rkl-4/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-rkl-5/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html * igt@kms_pm_dc@dc6-dpms: - shard-tglu: [FAIL][353] ([i915#9295]) -> [PASS][354] [353]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14552/shard-tglu-8/igt@kms_pm_dc@dc6-dpms.html [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-tglu-2/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_rpm@dpms-lpsp: - shard-dg2: [SKIP][355] ([i915#9519]) -> [PASS][356] +2 other tests pass [355]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14552/shard-dg2-6/igt@kms_pm_rpm@dpms-lpsp.html [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg2-8/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@modeset-lpsp: - shard-rkl: [SKIP][357] ([i915#9519]) -> [PASS][358] +2 other tests pass [357]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14552/shard-rkl-3/igt@kms_pm_rpm@modeset-lpsp.html [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-rkl-4/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_setmode@basic@pipe-a-hdmi-a-4: - shard-dg1: [FAIL][359] ([i915#5465]) -> [PASS][360] +1 other test pass [359]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14552/shard-dg1-17/igt@kms_setmode@basic@pipe-a-hdmi-a-4.html [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg1-14/igt@kms_setmode@basic@pipe-a-hdmi-a-4.html * igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1: - shard-tglu: [FAIL][361] ([i915#9196]) -> [PASS][362] [361]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14552/shard-tglu-6/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-tglu-6/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html * igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-2: - shard-rkl: [FAIL][363] ([i915#9196]) -> [PASS][364] [363]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14552/shard-rkl-3/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-2.html [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-rkl-3/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-2.html * igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1: - shard-mtlp: [FAIL][365] ([i915#9196]) -> [PASS][366] [365]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14552/shard-mtlp-5/igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1.html [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-mtlp-6/igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1.html * igt@perf_pmu@busy-double-start@vecs1: - shard-dg2: [FAIL][367] ([i915#4349]) -> [PASS][368] +3 other tests pass [367]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14552/shard-dg2-4/igt@perf_pmu@busy-double-start@vecs1.html [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg2-11/igt@perf_pmu@busy-double-start@vecs1.html #### Warnings #### * igt@gem_ctx_persistence@heartbeat-stop: - shard-snb: [ABORT][369] -> [SKIP][370] [369]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14552/shard-snb7/igt@gem_ctx_persistence@heartbeat-stop.html [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-snb1/igt@gem_ctx_persistence@heartbeat-stop.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0: - shard-tglu: [FAIL][371] ([i915#3591]) -> [WARN][372] ([i915#2681]) [371]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14552/shard-tglu-4/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-tglu-8/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0: - shard-tglu: [WARN][373] ([i915#2681]) -> [FAIL][374] ([i915#3591]) [373]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14552/shard-tglu-4/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-tglu-8/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html * igt@kms_content_protection@atomic: - shard-snb: [SKIP][375] -> [INCOMPLETE][376] ([i915#8816]) [375]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14552/shard-snb4/igt@kms_content_protection@atomic.html [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-snb7/igt@kms_content_protection@atomic.html * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-pwrite: - shard-dg2: [SKIP][377] ([i915#10433] / [i915#3458]) -> [SKIP][378] ([i915#3458]) +2 other tests skip [377]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14552/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-pwrite.html [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg2-6/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-pwrite.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-rkl: [SKIP][379] ([i915#4816]) -> [SKIP][380] ([i915#4070] / [i915#4816]) [379]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14552/shard-rkl-3/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-rkl-5/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_psr@pr-cursor-render: - shard-dg2: [SKIP][381] ([i915#1072] / [i915#9673] / [i915#9732]) -> [SKIP][382] ([i915#1072] / [i915#9732]) +4 other tests skip [381]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14552/shard-dg2-11/igt@kms_psr@pr-cursor-render.html [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg2-8/igt@kms_psr@pr-cursor-render.html * igt@kms_psr@psr2-primary-mmap-gtt: - shard-dg2: [SKIP][383] ([i915#1072] / [i915#9732]) -> [SKIP][384] ([i915#1072] / [i915#9673] / [i915#9732]) +10 other tests skip [383]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14552/shard-dg2-1/igt@kms_psr@psr2-primary-mmap-gtt.html [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/shard-dg2-11/igt@kms_psr@psr2-primary-mmap-gtt.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [IGT#2]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2 [i915#10055]: https://gitlab.freedesktop.org/drm/intel/issues/10055 [i915#10166]: https://gitlab.freedesktop.org/drm/intel/issues/10166 [i915#10278]: https://gitlab.freedesktop.org/drm/intel/issues/10278 [i915#10307]: https://gitlab.freedesktop.org/drm/intel/issues/10307 [i915#10317]: https://gitlab.freedesktop.org/drm/intel/issues/10317 [i915#10366]: https://gitlab.freedesktop.org/drm/intel/issues/10366 [i915#10378]: https://gitlab.freedesktop.org/drm/intel/issues/10378 [i915#10386]: https://gitlab.freedesktop.org/drm/intel/issues/10386 [i915#10433]: https://gitlab.freedesktop.org/drm/intel/issues/10433 [i915#10434]: https://gitlab.freedesktop.org/drm/intel/issues/10434 [i915#10461]: https://gitlab.freedesktop.org/drm/intel/issues/10461 [i915#10513]: https://gitlab.freedesktop.org/drm/intel/issues/10513 [i915#10537]: https://gitlab.freedesktop.org/drm/intel/issues/10537 [i915#10647]: https://gitlab.freedesktop.org/drm/intel/issues/10647 [i915#10656]: https://gitlab.freedesktop.org/drm/intel/issues/10656 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099 [i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 [i915#2122]: https://gitlab.freedesktop.org/drm/intel/issues/2122 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2433]: https://gitlab.freedesktop.org/drm/intel/issues/2433 [i915#2434]: https://gitlab.freedesktop.org/drm/intel/issues/2434 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 [i915#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681 [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 [i915#284]: https://gitlab.freedesktop.org/drm/intel/issues/284 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023 [i915#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116 [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299 [i915#3323]: https://gitlab.freedesktop.org/drm/intel/issues/3323 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3361]: https://gitlab.freedesktop.org/drm/intel/issues/3361 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3582]: https://gitlab.freedesktop.org/drm/intel/issues/3582 [i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742 [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#3936]: https://gitlab.freedesktop.org/drm/intel/issues/3936 [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955 [i915#4036]: https://gitlab.freedesktop.org/drm/intel/issues/4036 [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4087]: https://gitlab.freedesktop.org/drm/intel/issues/4087 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213 [i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 [i915#4473]: https://gitlab.freedesktop.org/drm/intel/issues/4473 [i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525 [i915#4537]: https://gitlab.freedesktop.org/drm/intel/issues/4537 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771 [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#4816]: https://gitlab.freedesktop.org/drm/intel/issues/4816 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4854]: https://gitlab.freedesktop.org/drm/intel/issues/4854 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4873]: https://gitlab.freedesktop.org/drm/intel/issues/4873 [i915#4881]: https://gitlab.freedesktop.org/drm/intel/issues/4881 [i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885 [i915#5107]: https://gitlab.freedesktop.org/drm/intel/issues/5107 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5465]: https://gitlab.freedesktop.org/drm/intel/issues/5465 [i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493 [i915#5723]: https://gitlab.freedesktop.org/drm/intel/issues/5723 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#5793]: https://gitlab.freedesktop.org/drm/intel/issues/5793 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6187]: https://gitlab.freedesktop.org/drm/intel/issues/6187 [i915#6227]: https://gitlab.freedesktop.org/drm/intel/issues/6227 [i915#6230]: https://gitlab.freedesktop.org/drm/intel/issues/6230 [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268 [i915#6412]: https://gitlab.freedesktop.org/drm/intel/issues/6412 [i915#6493]: https://gitlab.freedesktop.org/drm/intel/issues/6493 [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6590]: https://gitlab.freedesktop.org/drm/intel/issues/6590 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6805]: https://gitlab.freedesktop.org/drm/intel/issues/6805 [i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880 [i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944 [i915#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953 [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7162]: https://gitlab.freedesktop.org/drm/intel/issues/7162 [i915#7173]: https://gitlab.freedesktop.org/drm/intel/issues/7173 [i915#7213]: https://gitlab.freedesktop.org/drm/intel/issues/7213 [i915#7387]: https://gitlab.freedesktop.org/drm/intel/issues/7387 [i915#7582]: https://gitlab.freedesktop.org/drm/intel/issues/7582 [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697 [i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#7862]: https://gitlab.freedesktop.org/drm/intel/issues/7862 [i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228 [i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292 [i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381 [i915#8399]: https://gitlab.freedesktop.org/drm/intel/issues/8399 [i915#8411]: https://gitlab.freedesktop.org/drm/intel/issues/8411 [i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414 [i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428 [i915#8440]: https://gitlab.freedesktop.org/drm/intel/issues/8440 [i915#8516]: https://gitlab.freedesktop.org/drm/intel/issues/8516 [i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555 [i915#8588]: https://gitlab.freedesktop.org/drm/intel/issues/8588 [i915#8623]: https://gitlab.freedesktop.org/drm/intel/issues/8623 [i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708 [i915#8709]: https://gitlab.freedesktop.org/drm/intel/issues/8709 [i915#8808]: https://gitlab.freedesktop.org/drm/intel/issues/8808 [i915#8810]: https://gitlab.freedesktop.org/drm/intel/issues/8810 [i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814 [i915#8816]: https://gitlab.freedesktop.org/drm/intel/issues/8816 [i915#8821]: https://gitlab.freedesktop.org/drm/intel/issues/8821 [i915#8850]: https://gitlab.freedesktop.org/drm/intel/issues/8850 [i915#8925]: https://gitlab.freedesktop.org/drm/intel/issues/8925 [i915#9010]: https://gitlab.freedesktop.org/drm/intel/issues/9010 [i915#9159]: https://gitlab.freedesktop.org/drm/intel/issues/9159 [i915#9196]: https://gitlab.freedesktop.org/drm/intel/issues/9196 [i915#9227]: https://gitlab.freedesktop.org/drm/intel/issues/9227 [i915#9295]: https://gitlab.freedesktop.org/drm/intel/issues/9295 [i915#9311]: https://gitlab.freedesktop.org/drm/intel/issues/9311 [i915#9323]: https://gitlab.freedesktop.org/drm/intel/issues/9323 [i915#9364]: https://gitlab.freedesktop.org/drm/intel/issues/9364 [i915#9408]: https://gitlab.freedesktop.org/drm/intel/issues/9408 [i915#9412]: https://gitlab.freedesktop.org/drm/intel/issues/9412 [i915#9423]: https://gitlab.freedesktop.org/drm/intel/issues/9423 [i915#9424]: https://gitlab.freedesktop.org/drm/intel/issues/9424 [i915#9519]: https://gitlab.freedesktop.org/drm/intel/issues/9519 [i915#9606]: https://gitlab.freedesktop.org/drm/intel/issues/9606 [i915#9618]: https://gitlab.freedesktop.org/drm/intel/issues/9618 [i915#9673]: https://gitlab.freedesktop.org/drm/intel/issues/9673 [i915#9683]: https://gitlab.freedesktop.org/drm/intel/issues/9683 [i915#9685]: https://gitlab.freedesktop.org/drm/intel/issues/9685 [i915#9688]: https://gitlab.freedesktop.org/drm/intel/issues/9688 [i915#9723]: https://gitlab.freedesktop.org/drm/intel/issues/9723 [i915#9728]: https://gitlab.freedesktop.org/drm/intel/issues/9728 [i915#9732]: https://gitlab.freedesktop.org/drm/intel/issues/9732 [i915#9766]: https://gitlab.freedesktop.org/drm/intel/issues/9766 [i915#9779]: https://gitlab.freedesktop.org/drm/intel/issues/9779 [i915#9 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10997/index.html [-- Attachment #2: Type: text/html, Size: 122718 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2024-04-10 21:08 UTC | newest] Thread overview: 6+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-04-10 7:12 [PATCH 0/1] Add xe_bo_alloc test Matthew Brost 2024-04-10 7:12 ` [PATCH 1/1] xe: " Matthew Brost 2024-04-10 8:05 ` ✗ GitLab.Pipeline: warning for " Patchwork 2024-04-10 8:22 ` ✓ CI.xeBAT: success " Patchwork 2024-04-10 8:37 ` ✓ Fi.CI.BAT: " Patchwork 2024-04-10 21:07 ` ✓ Fi.CI.IGT: " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox