* [i-g-t 1/4] lib/xe: Fix a comment error
@ 2025-02-13 2:19 Oak Zeng
2025-02-13 2:19 ` [i-g-t 2/4] lib/xe/xe_util: Introduce helper functions for buffer creation and command submission etc Oak Zeng
` (7 more replies)
0 siblings, 8 replies; 11+ messages in thread
From: Oak Zeng @ 2025-02-13 2:19 UTC (permalink / raw)
To: igt-dev; +Cc: Thomas.Hellstrom, matthew.brost
The timeout value of __xe_wait_ufence returns the
remaining time, not elapsed time. Fix it.
Signed-off-by: Oak Zeng <oak.zeng@intel.com>
---
lib/xe/xe_ioctl.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/xe/xe_ioctl.c b/lib/xe/xe_ioctl.c
index 6d8388918..028102aa2 100644
--- a/lib/xe/xe_ioctl.c
+++ b/lib/xe/xe_ioctl.c
@@ -496,7 +496,7 @@ void xe_exec_wait(int fd, uint32_t exec_queue, uint64_t addr)
*
* Function compares @value with memory pointed by @addr until they are equal.
*
- * Returns (in @timeout), the elapsed time in nanoseconds if user fence was
+ * Returns (in @timeout), the remaining time in nanoseconds if user fence was
* signalled. Returns 0 on success, -errno of ioctl on error.
*/
int __xe_wait_ufence(int fd, uint64_t *addr, uint64_t value,
--
2.26.3
^ permalink raw reply related [flat|nested] 11+ messages in thread* [i-g-t 2/4] lib/xe/xe_util: Introduce helper functions for buffer creation and command submission etc 2025-02-13 2:19 [i-g-t 1/4] lib/xe: Fix a comment error Oak Zeng @ 2025-02-13 2:19 ` Oak Zeng 2025-02-13 2:19 ` [i-g-t 3/4] tests/intel/xe_vm: Exclude invalid_flags tests from LNL and BMG Oak Zeng ` (6 subsequent siblings) 7 siblings, 0 replies; 11+ messages in thread From: Oak Zeng @ 2025-02-13 2:19 UTC (permalink / raw) To: igt-dev; +Cc: Thomas.Hellstrom, matthew.brost From: Bommu Krishnaiah <krishnaiah.bommu@intel.com> Introduce helper functions for buffer creation, binding, command submission, and destruction. With those helpers, writing a xe igt test will be much easier. Signed-off-by: Bommu Krishnaiah <krishnaiah.bommu@intel.com> Signed-off-by: Oak Zeng <oak.zeng@intel.com> Cc: Himal Prasad Ghimiray <himal.prasad.ghimiray@intel.com> --- lib/xe/xe_util.c | 182 +++++++++++++++++++++++++++++++++++++++++++++++ lib/xe/xe_util.h | 33 +++++++++ 2 files changed, 215 insertions(+) diff --git a/lib/xe/xe_util.c b/lib/xe/xe_util.c index 06b378ce0..0b6badeae 100644 --- a/lib/xe/xe_util.c +++ b/lib/xe/xe_util.c @@ -13,6 +13,188 @@ #include "xe/xe_query.h" #include "xe/xe_util.h" +/** + * __xe_submit_cmd: + * @cmdbuf Pointer to the command buffer structure + * + * Submits a command buffer to the GPU, waits for its completion, and verifies + * the user fence value + * + * Return: The result of waiting for the user fence value + */ +int64_t __xe_submit_cmd(struct xe_buffer *cmdbuf) +{ + int64_t timeout = NSEC_PER_SEC; + + struct drm_xe_sync sync[1] = { + { .type = DRM_XE_SYNC_TYPE_USER_FENCE, + .flags = DRM_XE_SYNC_FLAG_SIGNAL, + .timeline_value = USER_FENCE_VALUE, + .addr = xe_cmdbuf_exec_ufence_gpuva(cmdbuf),}, + }; + struct drm_xe_exec exec = { + .num_batch_buffer = 1, + .num_syncs = 1, + .syncs = to_user_pointer(&sync), + .exec_queue_id = cmdbuf->exec_queue, + .address = (uint64_t)cmdbuf->gpu_addr, + }; + + xe_exec(cmdbuf->fd, &exec); + return __xe_wait_ufence(cmdbuf->fd, xe_cmdbuf_exec_ufence_cpuva(cmdbuf),USER_FENCE_VALUE, cmdbuf->exec_queue, &timeout); +} + +/** + * xe_submit_cmd: + * @cmdbuf Pointer to the command buffer structure + * + * Wrapper function to submit a command buffer and assert its successful + * execution. + */ +void xe_submit_cmd(struct xe_buffer *cmdbuf) +{ + int64_t ret; + + ret = __xe_submit_cmd(cmdbuf); + igt_assert_eq(ret, 0); +} + +/** + *xe_create_buffer: + * @buffer Pointer to the xe_buffer structure containing buffer details. + * + * Creates a buffer, maps it to both CPU and GPU address spaces, and binds it + * to a virtual memory (VM) space. + */ +void xe_create_buffer(struct xe_buffer *buffer) +{ + struct drm_xe_sync sync[1] = { + { .type = DRM_XE_SYNC_TYPE_USER_FENCE, .flags = DRM_XE_SYNC_FLAG_SIGNAL, + .timeline_value = USER_FENCE_VALUE }, + }; + + buffer->bind_queue = xe_bind_exec_queue_create(buffer->fd, buffer->vm, 0); + buffer->bind_ufence = aligned_alloc(xe_get_default_alignment(buffer->fd), PAGE_ALIGN_UFENCE); + sync->addr = (uint64_t)buffer->bind_ufence; + + + /* create and bind the buffer->bo */ + buffer->bo = xe_bo_create(buffer->fd, 0, buffer->size, buffer->placement, buffer->flag); + buffer->cpu_addr = xe_bo_map(buffer->fd, buffer->bo, buffer->size); + xe_vm_bind_async(buffer->fd, buffer->vm, buffer->bind_queue, buffer->bo, 0, buffer->gpu_addr, buffer->size, sync, 1); + + xe_wait_ufence(buffer->fd, (uint64_t *)buffer->bind_ufence, USER_FENCE_VALUE, buffer->bind_queue, NSEC_PER_SEC); + memset(buffer->bind_ufence, 0, PAGE_ALIGN_UFENCE); +} + +/** + * xe_destroy_buffer: + * @buffer Pointer to the xe_buffer structure containing buffer details + * + * Destroys a buffer created by xe_create_buffer and releases associated + * resources. + */ +void xe_destroy_buffer(struct xe_buffer *buffer) +{ + struct drm_xe_sync sync[1] = { + { .type = DRM_XE_SYNC_TYPE_USER_FENCE, .flags = DRM_XE_SYNC_FLAG_SIGNAL, + .timeline_value = USER_FENCE_VALUE }, + }; + sync->addr = (uint64_t)buffer->bind_ufence; + + xe_vm_unbind_async(buffer->fd, buffer->vm, buffer->bind_queue, 0, buffer->gpu_addr, buffer->size, sync, 1); + xe_wait_ufence(buffer->fd, (uint64_t *)buffer->bind_ufence, USER_FENCE_VALUE, buffer->bind_queue, NSEC_PER_SEC); + memset(buffer->bind_ufence, 0, PAGE_ALIGN_UFENCE); + + munmap(buffer->cpu_addr, buffer->size); + gem_close(buffer->fd, buffer->bo); + + free(buffer->bind_ufence); + xe_exec_queue_destroy(buffer->fd, buffer->bind_queue); +} + +/** + * insert_store: + * @batch Pointer to the batch buffer where commands will be inserted. + * @dst_va Destination virtual address to store the value. + * @val Value to be stored. + * + * Inserts a MI_STORE_DWORD_IMM_GEN4 command into a batch buffer, which stores + * an immediate value to a given destination virtual address. + * */ +void insert_store(uint32_t *batch, uint64_t dst_va, uint32_t val) +{ + int i = 0; + + batch[i] = MI_STORE_DWORD_IMM_GEN4; + batch[++i] = dst_va; + batch[++i] = dst_va >> 32; + batch[++i] = val; + batch[++i] = MI_BATCH_BUFFER_END; +} + +/** + * xe_create_cmdbuf: + * @cmd_buf Pointer to the xe_buffer structure representing the command buffer. + * @fill_func Pointer to the function that fills the command buffer. + * @dst_va Virtual address of the memory location where val need to store. + * @val Value to be written to the memory locations. + * @eci Pointer to the engine class instance for execution. + * + * Creates a command buffer, fills it with commands using the provided fill + * function, and sets up the execution queue for submission. + */ +void xe_create_cmdbuf(struct xe_buffer *cmd_buf, cmdbuf_fill_func_t fill_func, uint64_t dst_va, uint32_t val, struct drm_xe_engine_class_instance *eci) +{ + /* + * make some room for a exec_ufence, which will be used to sync the + * submission of this command.... + */ + cmd_buf->size = xe_bb_size(cmd_buf->fd, cmd_buf->size + PAGE_ALIGN_UFENCE); + xe_create_buffer(cmd_buf); + cmd_buf->exec_queue = xe_exec_queue_create(cmd_buf->fd, cmd_buf->vm, eci, 0); + fill_func(cmd_buf->cpu_addr, dst_va, val); +} + +/** + * xe_destroy_cmdbuf: + * @cmd_buf Pointer to the xe_buffer structure representing the command buffer. + * + * Destroys a command buffer created by xe_create_cmdbuf and releases + * associated resources. + */ +void xe_destroy_cmdbuf(struct xe_buffer *cmd_buf) +{ + xe_exec_queue_destroy(cmd_buf->fd, cmd_buf->exec_queue); + xe_destroy_buffer(cmd_buf); +} + +/** + * xe_cmdbuf_exec_ufence_gpuva: + * @cmd_buf Pointer to the xe_buffer structure representing the command buffer. + * + * Returns the GPU virtual address of the execution user fence located at the + * end of the command buffer. + */ +uint64_t xe_cmdbuf_exec_ufence_gpuva(struct xe_buffer *cmd_buf) +{ + /* the last 8 bytes of the cmd buffer is used as ufence */ + return (uint64_t)cmd_buf->gpu_addr + cmd_buf->size - 8; +} + +/** + * xe_cmdbuf_exec_ufence_cpuva: + * @cmd_buf Pointer to the xe_buffer structure representing the command buffer. + * + * Returns the CPU virtual address of the execution user fence located at the + * end of the command buffer. + */ +uint64_t *xe_cmdbuf_exec_ufence_cpuva(struct xe_buffer *cmd_buf) +{ + /* the last 8 bytes of the cmd buffer is used as ufence */ + return cmd_buf->cpu_addr + cmd_buf->size - 8; +} + static bool __region_belongs_to_regions_type(struct drm_xe_mem_region *region, uint32_t *mem_regions_type, int num_regions) diff --git a/lib/xe/xe_util.h b/lib/xe/xe_util.h index 06ebd3c2a..719c314ee 100644 --- a/lib/xe/xe_util.h +++ b/lib/xe/xe_util.h @@ -13,6 +13,39 @@ #include <xe_drm.h> #include "xe_query.h" +#define DRM_XE_VM_BIND_FLAG_SYSTEM_ALLOCATOR (1 << 4) + +#define USER_FENCE_VALUE 0xdeadbeefdeadbeefull +#define PAGE_ALIGN_UFENCE 4096 + +struct xe_buffer { + void *cpu_addr; + uint64_t gpu_addr; + /*the user fence used to vm bind this buffer*/ + uint32_t *bind_ufence; + uint64_t size; + uint32_t flag; + uint32_t vm; + uint32_t bo; + uint32_t placement; + uint32_t bind_queue; + /*only a cmd buffer has a exec queue*/ + uint32_t exec_queue; + int fd; + bool is_userptr; +}; + +typedef void (*cmdbuf_fill_func_t) (uint32_t *batch, uint64_t dst_gpu_va, uint32_t val); +void xe_create_buffer(struct xe_buffer *buffer); +void xe_create_cmdbuf(struct xe_buffer *cmd_buf, cmdbuf_fill_func_t fill_func, + uint64_t dst_va, uint32_t val, struct drm_xe_engine_class_instance *eci); +uint64_t xe_cmdbuf_exec_ufence_gpuva(struct xe_buffer *cmd_buf); +uint64_t *xe_cmdbuf_exec_ufence_cpuva(struct xe_buffer *cmd_buf); +void insert_store(uint32_t *batch, uint64_t dst_va, uint32_t val); +void xe_submit_cmd(struct xe_buffer *cmdbuf); +int64_t __xe_submit_cmd(struct xe_buffer *cmdbuf); +void xe_destroy_buffer(struct xe_buffer *buffer); +void xe_destroy_cmdbuf(struct xe_buffer *cmd_buf); #define XE_IS_SYSMEM_MEMORY_REGION(fd, region) \ (xe_region_class(fd, region) == DRM_XE_MEM_REGION_CLASS_SYSMEM) -- 2.26.3 ^ permalink raw reply related [flat|nested] 11+ messages in thread
* [i-g-t 3/4] tests/intel/xe_vm: Exclude invalid_flags tests from LNL and BMG 2025-02-13 2:19 [i-g-t 1/4] lib/xe: Fix a comment error Oak Zeng 2025-02-13 2:19 ` [i-g-t 2/4] lib/xe/xe_util: Introduce helper functions for buffer creation and command submission etc Oak Zeng @ 2025-02-13 2:19 ` Oak Zeng 2025-02-13 2:19 ` [i-g-t 4/4] tests/intel/xe_exec_fault_mode: Test scratch page under fault mode Oak Zeng ` (5 subsequent siblings) 7 siblings, 0 replies; 11+ messages in thread From: Oak Zeng @ 2025-02-13 2:19 UTC (permalink / raw) To: igt-dev; +Cc: Thomas.Hellstrom, matthew.brost Due to a fix of out of bound prefetch issue, we now allow scratch page coexist with fault mode on LNL and BMG, thus exclude those tests on such HW. Signed-off-by: Oak Zeng <oak.zeng@intel.com> --- tests/intel/xe_vm.c | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/tests/intel/xe_vm.c b/tests/intel/xe_vm.c index 0730dd3d3..3b74717a3 100644 --- a/tests/intel/xe_vm.c +++ b/tests/intel/xe_vm.c @@ -2349,6 +2349,7 @@ igt_main struct drm_xe_engine_class_instance *hwe, *hwe_non_copy = NULL; uint64_t bind_size; int fd; + uint16_t dev_id; const struct section { const char *name; int bo_n_pages; @@ -2444,8 +2445,12 @@ igt_main const struct vm_create_section { const char *name; __u32 flags; - } xe_vm_create_invalid_flags[] = { + } xe_vm_create_invalid_flags1[] = { { "xe_vm_create_fault", DRM_XE_VM_CREATE_FLAG_FAULT_MODE }, + { } + }; + + const struct vm_create_section xe_vm_create_invalid_flags2[] = { { "xe_vm_create_scratch_fault", DRM_XE_VM_CREATE_FLAG_SCRATCH_PAGE | DRM_XE_VM_CREATE_FLAG_FAULT_MODE }, @@ -2458,6 +2463,7 @@ igt_main igt_fixture { fd = drm_open_driver(DRIVER_XE); + dev_id = intel_get_drm_devid(fd); xe_for_each_engine(fd, hwe) if (hwe->engine_class != DRM_XE_ENGINE_CLASS_COPY) { @@ -2715,11 +2721,19 @@ igt_main } } - for (const struct vm_create_section *s = xe_vm_create_invalid_flags; s->name; s++) { + for (const struct vm_create_section *s = xe_vm_create_invalid_flags1; s->name; s++) { igt_subtest_f("invalid-flag-%s", s->name) invalid_flag(fd, s->flags); } + for (const struct vm_create_section *s = xe_vm_create_invalid_flags2; s->name; s++) { + igt_subtest_f("invalid-flag-%s", s->name) { + igt_skip_on_f(IS_LUNARLAKE(dev_id) || IS_BATTLEMAGE(dev_id), + "Skip test on this platform\n"); + invalid_flag(fd, s->flags); + } + } + igt_subtest("invalid-extensions") invalid_extensions(fd); -- 2.26.3 ^ permalink raw reply related [flat|nested] 11+ messages in thread
* [i-g-t 4/4] tests/intel/xe_exec_fault_mode: Test scratch page under fault mode 2025-02-13 2:19 [i-g-t 1/4] lib/xe: Fix a comment error Oak Zeng 2025-02-13 2:19 ` [i-g-t 2/4] lib/xe/xe_util: Introduce helper functions for buffer creation and command submission etc Oak Zeng 2025-02-13 2:19 ` [i-g-t 3/4] tests/intel/xe_vm: Exclude invalid_flags tests from LNL and BMG Oak Zeng @ 2025-02-13 2:19 ` Oak Zeng 2025-02-13 3:03 ` ✗ GitLab.Pipeline: warning for series starting with [i-g-t,1/4] lib/xe: Fix a comment error Patchwork ` (4 subsequent siblings) 7 siblings, 0 replies; 11+ messages in thread From: Oak Zeng @ 2025-02-13 2:19 UTC (permalink / raw) To: igt-dev; +Cc: Thomas.Hellstrom, matthew.brost On certain HW (such as lunarlake and battlemage), driver now allows scratch page be enabled under fault mode. Test this functionality Signed-off-by: Oak Zeng <oak.zeng@intel.com> --- tests/intel/xe_exec_fault_mode.c | 65 ++++++++++++++++++++++++++++++++ 1 file changed, 65 insertions(+) diff --git a/tests/intel/xe_exec_fault_mode.c b/tests/intel/xe_exec_fault_mode.c index ae40e099b..ee1cf7491 100644 --- a/tests/intel/xe_exec_fault_mode.c +++ b/tests/intel/xe_exec_fault_mode.c @@ -17,6 +17,7 @@ #include "igt.h" #include "lib/igt_syncobj.h" #include "lib/intel_reg.h" +#include "lib/xe/xe_util.h" #include "xe_drm.h" #include "xe/xe_ioctl.h" @@ -36,6 +37,62 @@ #define INVALID_VA (0x1 << 8) #define ENABLE_SCRATCH (0x1 << 9) + +/** + * SUBTEST: scratch-fault + * Description: Test scratch page functionality + * Test category: functionality test + */ +static void test_scratch(int fd, struct drm_xe_engine_class_instance *eci) +{ + size_t bb_size = xe_bb_size(fd, PAGE_ALIGN_UFENCE); + uint32_t vm; + + struct xe_buffer dst_buf = { + .fd = fd, + .size = bb_size, + .gpu_addr = 0x1a0000, + .placement = vram_if_possible(fd, eci->gt_id), + .flag = DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM, + }; + + struct xe_buffer cmd_buf = { + .fd = fd, + .size = bb_size, + .gpu_addr = 0x10a0000, + .placement = vram_if_possible(fd, eci->gt_id), + .flag = DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM, + }; + + vm = xe_vm_create(fd, DRM_XE_VM_CREATE_FLAG_LR_MODE | + DRM_XE_VM_CREATE_FLAG_SCRATCH_PAGE | + DRM_XE_VM_CREATE_FLAG_FAULT_MODE , 0); + + dst_buf.vm = vm; + cmd_buf.vm = vm; + /* Submit a command to write 0x1a0000 + * Since 0x1a0000 is mapped scratch page, cmd execution should still + * be successful. Write is either be dropped by HW (NULL PTE case) or + * written to scratch page. + */ + xe_create_cmdbuf(&cmd_buf, insert_store, dst_buf.gpu_addr, 0xc0ffee, eci); + xe_submit_cmd(&cmd_buf); + + /* Create a buffer object, vm_bind it to 0x1a0000, then re-submit + * the command buffer. This should write to the buffer object. + * Check the buffer object to see if the write was successful. + */ + xe_destroy_cmdbuf(&cmd_buf); + xe_create_buffer(&dst_buf); + xe_create_cmdbuf(&cmd_buf, insert_store, dst_buf.gpu_addr, 0xc0ffee, eci); + xe_submit_cmd(&cmd_buf); + igt_assert_eq(*(uint64_t *)dst_buf.cpu_addr, 0xc0ffee); + + xe_destroy_cmdbuf(&cmd_buf); + xe_destroy_buffer(&dst_buf); + xe_vm_destroy(fd, vm); +} + /** * SUBTEST: invalid-va * Description: Access invalid va and check for EIO through user fence. @@ -458,6 +515,7 @@ igt_main { NULL }, }; int fd; + uint32_t dev_id; igt_fixture { struct timespec tv = {}; @@ -466,6 +524,7 @@ igt_main int timeout = igt_run_in_simulation() ? 20 : 2; fd = drm_open_driver(DRIVER_XE); + dev_id = intel_get_drm_devid(fd); do { if (ret) usleep(5000); @@ -508,6 +567,12 @@ igt_main xe_for_each_engine(fd, hwe) test_exec(fd, hwe, 1, 1, ENABLE_SCRATCH | INVALID_VA); + igt_subtest("scratch-fault") { + igt_skip_on(!IS_LUNARLAKE(dev_id) && !IS_BATTLEMAGE(dev_id)); + xe_for_each_engine(fd, hwe) + test_scratch(fd, hwe); + } + igt_fixture { drm_close_driver(fd); } -- 2.26.3 ^ permalink raw reply related [flat|nested] 11+ messages in thread
* ✗ GitLab.Pipeline: warning for series starting with [i-g-t,1/4] lib/xe: Fix a comment error 2025-02-13 2:19 [i-g-t 1/4] lib/xe: Fix a comment error Oak Zeng ` (2 preceding siblings ...) 2025-02-13 2:19 ` [i-g-t 4/4] tests/intel/xe_exec_fault_mode: Test scratch page under fault mode Oak Zeng @ 2025-02-13 3:03 ` Patchwork 2025-02-13 3:35 ` ✓ i915.CI.BAT: success " Patchwork ` (3 subsequent siblings) 7 siblings, 0 replies; 11+ messages in thread From: Patchwork @ 2025-02-13 3:03 UTC (permalink / raw) To: Oak Zeng; +Cc: igt-dev == Series Details == Series: series starting with [i-g-t,1/4] lib/xe: Fix a comment error URL : https://patchwork.freedesktop.org/series/144765/ State : warning == Summary == Pipeline status: FAILED. see https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/pipelines/1363686 for the overview. build:tests-debian-meson-armhf has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/71013698): [3/1275] Linking static target lib/libigt-nouveau_cea0b5_c.a. [4/1275] Compiling C object 'lib/76b5a35@@igt-xe_xe_util_c@sta/xe_xe_util.c.o'. FAILED: lib/76b5a35@@igt-xe_xe_util_c@sta/xe_xe_util.c.o /usr/bin/arm-linux-gnueabihf-gcc -Ilib/76b5a35@@igt-xe_xe_util_c@sta -Ilib -I../lib -I../include -I../include/drm-uapi -I../include/drm-uapi-experimental -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-conversion -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 -D_LARGEFILE64_SOURCE=1 -fPIC -pthread '-DIGT_DATADIR="/usr/local/share/igt-gpu-tools"' '-DIGT_SRCDIR="/builds/gfx-ci/igt-ci-tags/tests"' '-DIGT_LOG_DOMAIN="xe/xe_util"' -MD -MQ 'lib/76b5a35@@igt-xe_xe_util_c@sta/xe_xe_util.c.o' -MF 'lib/76b5a35@@igt-xe_xe_util_c@sta/xe_xe_util.c.o.d' -o 'lib/76b5a35@@igt-xe_xe_util_c@sta/xe_xe_util.c.o' -c ../lib/xe/xe_util.c ../lib/xe/xe_util.c: In function ‘xe_create_buffer’: ../lib/xe/xe_util.c:78:15: error: cast from pointer to integer of different size [-Werror=pointer-to-int-cast] sync->addr = (uint64_t)buffer->bind_ufence; ^ ../lib/xe/xe_util.c: In function ‘xe_destroy_buffer’: ../lib/xe/xe_util.c:103:15: error: cast from pointer to integer of different size [-Werror=pointer-to-int-cast] sync->addr = (uint64_t)buffer->bind_ufence; ^ cc1: some warnings being treated as errors ninja: build stopped: subcommand failed. section_end:1739415456:step_script section_start:1739415456:cleanup_file_variables Cleaning up project directory and file based variables section_end:1739415457: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/71013700): [2/1281] Linking static target lib/libigt-igt_kms_c.a. [3/1281] Compiling C object 'lib/76b5a35@@igt-xe_xe_util_c@sta/xe_xe_util.c.o'. FAILED: lib/76b5a35@@igt-xe_xe_util_c@sta/xe_xe_util.c.o /usr/bin/mips-linux-gnu-gcc -Ilib/76b5a35@@igt-xe_xe_util_c@sta -Ilib -I../lib -I../include -I../include/drm-uapi -I../include/drm-uapi-experimental -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-conversion -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 -D_LARGEFILE64_SOURCE=1 -fPIC -pthread '-DIGT_DATADIR="/usr/local/share/igt-gpu-tools"' '-DIGT_SRCDIR="/builds/gfx-ci/igt-ci-tags/tests"' '-DIGT_LOG_DOMAIN="xe/xe_util"' -MD -MQ 'lib/76b5a35@@igt-xe_xe_util_c@sta/xe_xe_util.c.o' -MF 'lib/76b5a35@@igt-xe_xe_util_c@sta/xe_xe_util.c.o.d' -o 'lib/76b5a35@@igt-xe_xe_util_c@sta/xe_xe_util.c.o' -c ../lib/xe/xe_util.c ../lib/xe/xe_util.c: In function ‘xe_create_buffer’: ../lib/xe/xe_util.c:78:15: error: cast from pointer to integer of different size [-Werror=pointer-to-int-cast] sync->addr = (uint64_t)buffer->bind_ufence; ^ ../lib/xe/xe_util.c: In function ‘xe_destroy_buffer’: ../lib/xe/xe_util.c:103:15: error: cast from pointer to integer of different size [-Werror=pointer-to-int-cast] sync->addr = (uint64_t)buffer->bind_ufence; ^ cc1: some warnings being treated as errors ninja: build stopped: subcommand failed. section_end:1739415452:step_script section_start:1739415452:cleanup_file_variables Cleaning up project directory and file based variables section_end:1739415453:cleanup_file_variables ERROR: Job failed: exit code 1 == Logs == For more details see: https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/pipelines/1363686 ^ permalink raw reply [flat|nested] 11+ messages in thread
* ✓ i915.CI.BAT: success for series starting with [i-g-t,1/4] lib/xe: Fix a comment error 2025-02-13 2:19 [i-g-t 1/4] lib/xe: Fix a comment error Oak Zeng ` (3 preceding siblings ...) 2025-02-13 3:03 ` ✗ GitLab.Pipeline: warning for series starting with [i-g-t,1/4] lib/xe: Fix a comment error Patchwork @ 2025-02-13 3:35 ` Patchwork 2025-02-13 3:56 ` ✓ Xe.CI.BAT: " Patchwork ` (2 subsequent siblings) 7 siblings, 0 replies; 11+ messages in thread From: Patchwork @ 2025-02-13 3:35 UTC (permalink / raw) To: Oak Zeng; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 5174 bytes --] == Series Details == Series: series starting with [i-g-t,1/4] lib/xe: Fix a comment error URL : https://patchwork.freedesktop.org/series/144765/ State : success == Summary == CI Bug Log - changes from IGT_8229 -> IGTPW_12585 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/index.html Participating hosts (42 -> 41) ------------------------------ Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_12585 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_lmem_swapping@basic: - fi-cfl-8700k: NOTRUN -> [SKIP][1] ([i915#4613]) +3 other tests skip [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/fi-cfl-8700k/igt@gem_lmem_swapping@basic.html * igt@i915_selftest@live: - bat-adlp-11: [PASS][2] -> [INCOMPLETE][3] ([i915#12445] / [i915#9413]) +1 other test incomplete [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8229/bat-adlp-11/igt@i915_selftest@live.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/bat-adlp-11/igt@i915_selftest@live.html - bat-twl-2: [PASS][4] -> [ABORT][5] ([i915#12919] / [i915#13503]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8229/bat-twl-2/igt@i915_selftest@live.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/bat-twl-2/igt@i915_selftest@live.html * igt@i915_selftest@live@gt_timelines: - bat-twl-2: [PASS][6] -> [ABORT][7] ([i915#12919]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8229/bat-twl-2/igt@i915_selftest@live@gt_timelines.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/bat-twl-2/igt@i915_selftest@live@gt_timelines.html * igt@i915_selftest@live@workarounds: - bat-mtlp-6: [PASS][8] -> [DMESG-FAIL][9] ([i915#12061]) +1 other test dmesg-fail [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8229/bat-mtlp-6/igt@i915_selftest@live@workarounds.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/bat-mtlp-6/igt@i915_selftest@live@workarounds.html #### Possible fixes #### * igt@core_hotunplug@unbind-rebind: - fi-cfl-8700k: [ABORT][10] ([i915#13508]) -> [PASS][11] [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8229/fi-cfl-8700k/igt@core_hotunplug@unbind-rebind.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/fi-cfl-8700k/igt@core_hotunplug@unbind-rebind.html * igt@gem_exec_fence@basic-await@vecs0: - bat-rpls-4: [DMESG-WARN][12] ([i915#13400]) -> [PASS][13] +1 other test pass [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8229/bat-rpls-4/igt@gem_exec_fence@basic-await@vecs0.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/bat-rpls-4/igt@gem_exec_fence@basic-await@vecs0.html * igt@i915_selftest@live: - bat-jsl-3: [INCOMPLETE][14] ([i915#12445] / [i915#13241]) -> [PASS][15] [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8229/bat-jsl-3/igt@i915_selftest@live.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/bat-jsl-3/igt@i915_selftest@live.html * igt@i915_selftest@live@gem_contexts: - bat-jsl-3: [INCOMPLETE][16] ([i915#12445]) -> [PASS][17] [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8229/bat-jsl-3/igt@i915_selftest@live@gem_contexts.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/bat-jsl-3/igt@i915_selftest@live@gem_contexts.html * igt@i915_selftest@live@workarounds: - bat-mtlp-9: [DMESG-FAIL][18] ([i915#12061]) -> [PASS][19] [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8229/bat-mtlp-9/igt@i915_selftest@live@workarounds.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/bat-mtlp-9/igt@i915_selftest@live@workarounds.html [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#12445]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12445 [i915#12919]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12919 [i915#13241]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13241 [i915#13400]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13400 [i915#13503]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13503 [i915#13508]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13508 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#9413]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9413 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8229 -> IGTPW_12585 * Linux: CI_DRM_16123 -> CI_DRM_16125 CI-20190529: 20190529 CI_DRM_16123: 4af00c2e09da0269f3f329e660b6417037041bea @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_16125: 1be945721fec4f48df1fb728863be1b9a594b571 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12585: 70941eb9110c881f91f13f1ff46e6d8cb4fb0965 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8229: 8229 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/index.html [-- Attachment #2: Type: text/html, Size: 6298 bytes --] ^ permalink raw reply [flat|nested] 11+ messages in thread
* ✓ Xe.CI.BAT: success for series starting with [i-g-t,1/4] lib/xe: Fix a comment error 2025-02-13 2:19 [i-g-t 1/4] lib/xe: Fix a comment error Oak Zeng ` (4 preceding siblings ...) 2025-02-13 3:35 ` ✓ i915.CI.BAT: success " Patchwork @ 2025-02-13 3:56 ` Patchwork 2025-02-13 13:26 ` ✗ i915.CI.Full: failure " Patchwork 2025-02-13 17:47 ` ✗ Xe.CI.Full: " Patchwork 7 siblings, 0 replies; 11+ messages in thread From: Patchwork @ 2025-02-13 3:56 UTC (permalink / raw) To: Oak Zeng; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 1083 bytes --] == Series Details == Series: series starting with [i-g-t,1/4] lib/xe: Fix a comment error URL : https://patchwork.freedesktop.org/series/144765/ State : success == Summary == CI Bug Log - changes from XEIGT_8229_BAT -> XEIGTPW_12585_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (8 -> 8) ------------------------------ No changes in participating hosts Changes ------- No changes found Build changes ------------- * IGT: IGT_8229 -> IGTPW_12585 * Linux: xe-2652-b9696aa14a67620661572e94f4141df2a4b6b5cd -> xe-2656-1be945721fec4f48df1fb728863be1b9a594b571 IGTPW_12585: 70941eb9110c881f91f13f1ff46e6d8cb4fb0965 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8229: 8229 xe-2652-b9696aa14a67620661572e94f4141df2a4b6b5cd: b9696aa14a67620661572e94f4141df2a4b6b5cd xe-2656-1be945721fec4f48df1fb728863be1b9a594b571: 1be945721fec4f48df1fb728863be1b9a594b571 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/index.html [-- Attachment #2: Type: text/html, Size: 1642 bytes --] ^ permalink raw reply [flat|nested] 11+ messages in thread
* ✗ i915.CI.Full: failure for series starting with [i-g-t,1/4] lib/xe: Fix a comment error 2025-02-13 2:19 [i-g-t 1/4] lib/xe: Fix a comment error Oak Zeng ` (5 preceding siblings ...) 2025-02-13 3:56 ` ✓ Xe.CI.BAT: " Patchwork @ 2025-02-13 13:26 ` Patchwork 2025-02-13 17:47 ` ✗ Xe.CI.Full: " Patchwork 7 siblings, 0 replies; 11+ messages in thread From: Patchwork @ 2025-02-13 13:26 UTC (permalink / raw) To: Oak Zeng; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 100280 bytes --] == Series Details == Series: series starting with [i-g-t,1/4] lib/xe: Fix a comment error URL : https://patchwork.freedesktop.org/series/144765/ State : failure == Summary == CI Bug Log - changes from CI_DRM_16125_full -> IGTPW_12585_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12585_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12585_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/index.html Participating hosts (10 -> 11) ------------------------------ Additional (1): shard-snb-0 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_12585_full: ### IGT changes ### #### Possible regressions #### * igt@gem_render_copy@linear: - shard-dg2: NOTRUN -> [DMESG-WARN][1] +1 other test dmesg-warn [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg2-1/igt@gem_render_copy@linear.html * igt@gem_tiled_swapping@non-threaded: - shard-glk: NOTRUN -> [FAIL][2] [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-glk8/igt@gem_tiled_swapping@non-threaded.html * igt@gem_workarounds@suspend-resume: - shard-glk: NOTRUN -> [INCOMPLETE][3] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-glk1/igt@gem_workarounds@suspend-resume.html * igt@i915_pm_rps@reset: - shard-snb: [PASS][4] -> [INCOMPLETE][5] [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16125/shard-snb6/igt@i915_pm_rps@reset.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-snb5/igt@i915_pm_rps@reset.html * igt@kms_display_modes@extended-mode-basic: - shard-tglu-1: NOTRUN -> [SKIP][6] [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-tglu-1/igt@kms_display_modes@extended-mode-basic.html New tests --------- New tests have been introduced between CI_DRM_16125_full and IGTPW_12585_full: ### New IGT tests (1) ### * igt@kms_cursor_edge_walk@64x64-top-bottom@pipe-c-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [3.43] s Known issues ------------ Here are the changes found in IGTPW_12585_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@device_reset@unbind-cold-reset-rebind: - shard-tglu: NOTRUN -> [SKIP][7] ([i915#11078]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-tglu-7/igt@device_reset@unbind-cold-reset-rebind.html * igt@drm_fdinfo@busy-hang@bcs0: - shard-dg2: NOTRUN -> [SKIP][8] ([i915#8414]) +9 other tests skip [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg2-1/igt@drm_fdinfo@busy-hang@bcs0.html * igt@drm_fdinfo@virtual-busy-idle: - shard-dg1: NOTRUN -> [SKIP][9] ([i915#8414]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg1-19/igt@drm_fdinfo@virtual-busy-idle.html * igt@gem_basic@multigpu-create-close: - shard-tglu-1: NOTRUN -> [SKIP][10] ([i915#7697]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-tglu-1/igt@gem_basic@multigpu-create-close.html * igt@gem_ccs@block-multicopy-compressed: - shard-rkl: NOTRUN -> [SKIP][11] ([i915#9323]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-rkl-4/igt@gem_ccs@block-multicopy-compressed.html * igt@gem_ccs@ctrl-surf-copy: - shard-mtlp: NOTRUN -> [SKIP][12] ([i915#3555] / [i915#9323]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-mtlp-8/igt@gem_ccs@ctrl-surf-copy.html * igt@gem_ccs@large-ctrl-surf-copy: - shard-rkl: NOTRUN -> [SKIP][13] ([i915#13008]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-rkl-6/igt@gem_ccs@large-ctrl-surf-copy.html * igt@gem_ccs@suspend-resume: - shard-dg2: [PASS][14] -> [INCOMPLETE][15] ([i915#13356]) +1 other test incomplete [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16125/shard-dg2-11/igt@gem_ccs@suspend-resume.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg2-3/igt@gem_ccs@suspend-resume.html * igt@gem_close_race@multigpu-basic-threads: - shard-tglu: NOTRUN -> [SKIP][16] ([i915#7697]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-tglu-9/igt@gem_close_race@multigpu-basic-threads.html - shard-mtlp: NOTRUN -> [SKIP][17] ([i915#7697]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-mtlp-2/igt@gem_close_race@multigpu-basic-threads.html * igt@gem_create@create-ext-cpu-access-big: - shard-tglu-1: NOTRUN -> [SKIP][18] ([i915#6335]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-tglu-1/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_ctx_persistence@heartbeat-hang: - shard-dg2: NOTRUN -> [SKIP][19] ([i915#8555]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg2-8/igt@gem_ctx_persistence@heartbeat-hang.html * igt@gem_ctx_sseu@engines: - shard-tglu-1: NOTRUN -> [SKIP][20] ([i915#280]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-tglu-1/igt@gem_ctx_sseu@engines.html - shard-mtlp: NOTRUN -> [SKIP][21] ([i915#280]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-mtlp-5/igt@gem_ctx_sseu@engines.html * igt@gem_ctx_sseu@invalid-args: - shard-rkl: NOTRUN -> [SKIP][22] ([i915#280]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-rkl-5/igt@gem_ctx_sseu@invalid-args.html * igt@gem_ctx_sseu@mmap-args: - shard-tglu: NOTRUN -> [SKIP][23] ([i915#280]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-tglu-4/igt@gem_ctx_sseu@mmap-args.html * igt@gem_eio@hibernate: - shard-dg2-9: NOTRUN -> [ABORT][24] ([i915#7975]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg2-9/igt@gem_eio@hibernate.html * igt@gem_eio@in-flight-contexts-immediate: - shard-mtlp: [PASS][25] -> [ABORT][26] ([i915#13193]) +2 other tests abort [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16125/shard-mtlp-1/igt@gem_eio@in-flight-contexts-immediate.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-mtlp-7/igt@gem_eio@in-flight-contexts-immediate.html * igt@gem_eio@kms: - shard-dg1: NOTRUN -> [DMESG-FAIL][27] ([i915#4423]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg1-14/igt@gem_eio@kms.html * igt@gem_eio@reset-stress: - shard-dg1: [PASS][28] -> [FAIL][29] ([i915#12543] / [i915#5784]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16125/shard-dg1-19/igt@gem_eio@reset-stress.html [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg1-12/igt@gem_eio@reset-stress.html * igt@gem_exec_balancer@bonded-sync: - shard-dg2-9: NOTRUN -> [SKIP][30] ([i915#4771]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg2-9/igt@gem_exec_balancer@bonded-sync.html * igt@gem_exec_balancer@parallel-contexts: - shard-tglu: NOTRUN -> [SKIP][31] ([i915#4525]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-tglu-2/igt@gem_exec_balancer@parallel-contexts.html * igt@gem_exec_balancer@parallel-out-fence: - shard-rkl: NOTRUN -> [SKIP][32] ([i915#4525]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-rkl-2/igt@gem_exec_balancer@parallel-out-fence.html * igt@gem_exec_balancer@sliced: - shard-dg2: NOTRUN -> [SKIP][33] ([i915#4812]) +1 other test skip [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg2-1/igt@gem_exec_balancer@sliced.html - shard-mtlp: NOTRUN -> [SKIP][34] ([i915#4812]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-mtlp-5/igt@gem_exec_balancer@sliced.html * igt@gem_exec_capture@capture-invisible: - shard-dg2-9: NOTRUN -> [SKIP][35] ([i915#6334]) +2 other tests skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg2-9/igt@gem_exec_capture@capture-invisible.html * igt@gem_exec_capture@capture-recoverable: - shard-tglu: NOTRUN -> [SKIP][36] ([i915#6344]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-tglu-10/igt@gem_exec_capture@capture-recoverable.html * igt@gem_exec_endless@dispatch@ccs0: - shard-dg2: [PASS][37] -> [TIMEOUT][38] ([i915#3778] / [i915#7016]) +1 other test timeout [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16125/shard-dg2-4/igt@gem_exec_endless@dispatch@ccs0.html [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg2-5/igt@gem_exec_endless@dispatch@ccs0.html * igt@gem_exec_fence@submit: - shard-dg1: NOTRUN -> [SKIP][39] ([i915#4812]) +2 other tests skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg1-17/igt@gem_exec_fence@submit.html * igt@gem_exec_flush@basic-uc-pro-default: - shard-dg2-9: NOTRUN -> [SKIP][40] ([i915#3539] / [i915#4852]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg2-9/igt@gem_exec_flush@basic-uc-pro-default.html * igt@gem_exec_flush@basic-uc-ro-default: - shard-dg2: NOTRUN -> [SKIP][41] ([i915#3539] / [i915#4852]) +1 other test skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg2-8/igt@gem_exec_flush@basic-uc-ro-default.html - shard-dg1: NOTRUN -> [SKIP][42] ([i915#3539] / [i915#4852]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg1-14/igt@gem_exec_flush@basic-uc-ro-default.html * igt@gem_exec_reloc@basic-cpu-wc-noreloc: - shard-mtlp: NOTRUN -> [SKIP][43] ([i915#3281]) +5 other tests skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-mtlp-8/igt@gem_exec_reloc@basic-cpu-wc-noreloc.html * igt@gem_exec_reloc@basic-scanout: - shard-rkl: NOTRUN -> [SKIP][44] ([i915#3281]) +6 other tests skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-rkl-1/igt@gem_exec_reloc@basic-scanout.html * igt@gem_exec_reloc@basic-wc-gtt-active: - shard-dg2-9: NOTRUN -> [SKIP][45] ([i915#3281]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg2-9/igt@gem_exec_reloc@basic-wc-gtt-active.html * igt@gem_exec_reloc@basic-write-gtt-active: - shard-dg1: NOTRUN -> [SKIP][46] ([i915#3281]) +2 other tests skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg1-19/igt@gem_exec_reloc@basic-write-gtt-active.html * igt@gem_exec_reloc@basic-write-read-active: - shard-dg2: NOTRUN -> [SKIP][47] ([i915#3281]) +7 other tests skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg2-2/igt@gem_exec_reloc@basic-write-read-active.html * igt@gem_exec_schedule@preempt-queue: - shard-dg2: NOTRUN -> [SKIP][48] ([i915#4537] / [i915#4812]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg2-1/igt@gem_exec_schedule@preempt-queue.html * igt@gem_exec_schedule@preempt-queue-contexts-chain: - shard-dg2-9: NOTRUN -> [SKIP][49] ([i915#4537] / [i915#4812]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg2-9/igt@gem_exec_schedule@preempt-queue-contexts-chain.html * igt@gem_exec_schedule@semaphore-power: - shard-mtlp: NOTRUN -> [SKIP][50] ([i915#4537] / [i915#4812]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-mtlp-6/igt@gem_exec_schedule@semaphore-power.html * igt@gem_exec_suspend@basic-s3@smem: - shard-glk: NOTRUN -> [INCOMPLETE][51] ([i915#13196]) +1 other test incomplete [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-glk8/igt@gem_exec_suspend@basic-s3@smem.html * igt@gem_fence_thrash@bo-write-verify-x: - shard-dg1: NOTRUN -> [SKIP][52] ([i915#4860]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg1-14/igt@gem_fence_thrash@bo-write-verify-x.html * igt@gem_fenced_exec_thrash@no-spare-fences-busy: - shard-dg2-9: NOTRUN -> [SKIP][53] ([i915#4860]) +1 other test skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg2-9/igt@gem_fenced_exec_thrash@no-spare-fences-busy.html * igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible: - shard-mtlp: NOTRUN -> [SKIP][54] ([i915#4860]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-mtlp-6/igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible.html * igt@gem_huc_copy@huc-copy: - shard-tglu-1: NOTRUN -> [SKIP][55] ([i915#2190]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-tglu-1/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_evict@dontneed-evict-race: - shard-tglu: NOTRUN -> [SKIP][56] ([i915#4613] / [i915#7582]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-tglu-2/igt@gem_lmem_evict@dontneed-evict-race.html * igt@gem_lmem_swapping@heavy-verify-random: - shard-tglu: NOTRUN -> [SKIP][57] ([i915#4613]) +1 other test skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-tglu-2/igt@gem_lmem_swapping@heavy-verify-random.html * igt@gem_lmem_swapping@parallel-multi: - shard-tglu-1: NOTRUN -> [SKIP][58] ([i915#4613]) +2 other tests skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-tglu-1/igt@gem_lmem_swapping@parallel-multi.html - shard-mtlp: NOTRUN -> [SKIP][59] ([i915#4613]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-mtlp-5/igt@gem_lmem_swapping@parallel-multi.html * igt@gem_lmem_swapping@parallel-random-verify-ccs: - shard-rkl: NOTRUN -> [SKIP][60] ([i915#4613]) +4 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-rkl-7/igt@gem_lmem_swapping@parallel-random-verify-ccs.html * igt@gem_lmem_swapping@random-engines: - shard-glk: NOTRUN -> [SKIP][61] ([i915#4613]) +5 other tests skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-glk8/igt@gem_lmem_swapping@random-engines.html * igt@gem_media_fill@media-fill: - shard-mtlp: NOTRUN -> [SKIP][62] ([i915#8289]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-mtlp-2/igt@gem_media_fill@media-fill.html * igt@gem_media_vme: - shard-dg2: NOTRUN -> [SKIP][63] ([i915#284]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg2-6/igt@gem_media_vme.html * igt@gem_mmap@bad-offset: - shard-dg1: NOTRUN -> [SKIP][64] ([i915#4083]) +1 other test skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg1-12/igt@gem_mmap@bad-offset.html * igt@gem_mmap_gtt@basic-write-read-distinct: - shard-mtlp: NOTRUN -> [SKIP][65] ([i915#4077]) +10 other tests skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-mtlp-1/igt@gem_mmap_gtt@basic-write-read-distinct.html * igt@gem_mmap_gtt@hang: - shard-dg2: NOTRUN -> [SKIP][66] ([i915#4077]) +11 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg2-2/igt@gem_mmap_gtt@hang.html * igt@gem_mmap_offset@close-race: - shard-rkl: NOTRUN -> [DMESG-WARN][67] ([i915#12964]) +8 other tests dmesg-warn [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-rkl-2/igt@gem_mmap_offset@close-race.html * igt@gem_mmap_wc@invalid-flags: - shard-dg2: NOTRUN -> [SKIP][68] ([i915#4083]) +2 other tests skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg2-7/igt@gem_mmap_wc@invalid-flags.html * igt@gem_mmap_wc@write-read: - shard-mtlp: NOTRUN -> [SKIP][69] ([i915#4083]) +4 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-mtlp-7/igt@gem_mmap_wc@write-read.html - shard-dg2-9: NOTRUN -> [SKIP][70] ([i915#4083]) +1 other test skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg2-9/igt@gem_mmap_wc@write-read.html * igt@gem_partial_pwrite_pread@writes-after-reads-display: - shard-dg2: NOTRUN -> [SKIP][71] ([i915#3282]) +4 other tests skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg2-6/igt@gem_partial_pwrite_pread@writes-after-reads-display.html * igt@gem_partial_pwrite_pread@writes-after-reads-uncached: - shard-rkl: NOTRUN -> [SKIP][72] ([i915#3282]) +6 other tests skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-rkl-6/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html * igt@gem_pread@exhaustion: - shard-dg1: NOTRUN -> [SKIP][73] ([i915#3282]) +1 other test skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg1-12/igt@gem_pread@exhaustion.html - shard-tglu: NOTRUN -> [WARN][74] ([i915#2658]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-tglu-2/igt@gem_pread@exhaustion.html - shard-glk: NOTRUN -> [WARN][75] ([i915#2658]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-glk4/igt@gem_pread@exhaustion.html * igt@gem_pread@uncached: - shard-dg2-9: NOTRUN -> [SKIP][76] ([i915#3282]) +1 other test skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg2-9/igt@gem_pread@uncached.html * igt@gem_pxp@create-regular-buffer: - shard-rkl: NOTRUN -> [SKIP][77] ([i915#4270]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-rkl-4/igt@gem_pxp@create-regular-buffer.html * igt@gem_pxp@hw-rejects-pxp-context: - shard-tglu: NOTRUN -> [SKIP][78] ([i915#13398]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-tglu-6/igt@gem_pxp@hw-rejects-pxp-context.html * igt@gem_pxp@reject-modify-context-protection-off-1: - shard-dg2-9: NOTRUN -> [SKIP][79] ([i915#4270]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg2-9/igt@gem_pxp@reject-modify-context-protection-off-1.html * igt@gem_pxp@verify-pxp-execution-after-suspend-resume: - shard-rkl: NOTRUN -> [TIMEOUT][80] ([i915#12917] / [i915#12964]) +2 other tests timeout [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-rkl-2/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html * igt@gem_pxp@verify-pxp-stale-ctx-execution: - shard-dg1: NOTRUN -> [SKIP][81] ([i915#4270]) +1 other test skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg1-19/igt@gem_pxp@verify-pxp-stale-ctx-execution.html * igt@gem_readwrite@write-bad-handle: - shard-mtlp: NOTRUN -> [SKIP][82] ([i915#3282]) +1 other test skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-mtlp-6/igt@gem_readwrite@write-bad-handle.html * igt@gem_render_copy@linear-to-vebox-yf-tiled: - shard-dg2: NOTRUN -> [SKIP][83] ([i915#5190] / [i915#8428]) +6 other tests skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg2-6/igt@gem_render_copy@linear-to-vebox-yf-tiled.html * igt@gem_render_copy@y-tiled-mc-ccs-to-yf-tiled-ccs: - shard-dg2-9: NOTRUN -> [SKIP][84] ([i915#5190] / [i915#8428]) +1 other test skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg2-9/igt@gem_render_copy@y-tiled-mc-ccs-to-yf-tiled-ccs.html * igt@gem_render_copy@y-tiled-to-vebox-x-tiled: - shard-mtlp: NOTRUN -> [SKIP][85] ([i915#8428]) +3 other tests skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-mtlp-8/igt@gem_render_copy@y-tiled-to-vebox-x-tiled.html * igt@gem_tiled_pread_pwrite: - shard-dg1: NOTRUN -> [SKIP][86] ([i915#4079]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg1-13/igt@gem_tiled_pread_pwrite.html - shard-mtlp: NOTRUN -> [SKIP][87] ([i915#4079]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-mtlp-8/igt@gem_tiled_pread_pwrite.html - shard-dg2: NOTRUN -> [SKIP][88] ([i915#4079]) +1 other test skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg2-2/igt@gem_tiled_pread_pwrite.html * igt@gem_tiled_swapping@non-threaded: - shard-tglu-1: NOTRUN -> [FAIL][89] ([i915#12941]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-tglu-1/igt@gem_tiled_swapping@non-threaded.html * igt@gem_tiled_wb: - shard-dg2-9: NOTRUN -> [SKIP][90] ([i915#4077]) +1 other test skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg2-9/igt@gem_tiled_wb.html * igt@gem_userptr_blits@access-control: - shard-dg2: NOTRUN -> [SKIP][91] ([i915#3297]) +1 other test skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg2-2/igt@gem_userptr_blits@access-control.html - shard-tglu-1: NOTRUN -> [SKIP][92] ([i915#3297]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-tglu-1/igt@gem_userptr_blits@access-control.html * igt@gem_userptr_blits@invalid-mmap-offset-unsync: - shard-tglu: NOTRUN -> [SKIP][93] ([i915#3297]) +3 other tests skip [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-tglu-2/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html * igt@gem_userptr_blits@unsync-unmap-after-close: - shard-rkl: NOTRUN -> [SKIP][94] ([i915#3297]) +1 other test skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-rkl-6/igt@gem_userptr_blits@unsync-unmap-after-close.html - shard-dg1: NOTRUN -> [SKIP][95] ([i915#3297]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg1-12/igt@gem_userptr_blits@unsync-unmap-after-close.html * igt@gen9_exec_parse@allowed-all: - shard-mtlp: NOTRUN -> [SKIP][96] ([i915#2856]) +2 other tests skip [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-mtlp-1/igt@gen9_exec_parse@allowed-all.html * igt@gen9_exec_parse@allowed-single: - shard-dg1: NOTRUN -> [SKIP][97] ([i915#2527]) +1 other test skip [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg1-14/igt@gen9_exec_parse@allowed-single.html * igt@gen9_exec_parse@basic-rejected-ctx-param: - shard-dg2: NOTRUN -> [SKIP][98] ([i915#2856]) +1 other test skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg2-2/igt@gen9_exec_parse@basic-rejected-ctx-param.html * igt@gen9_exec_parse@bb-chained: - shard-rkl: NOTRUN -> [SKIP][99] ([i915#2527]) +4 other tests skip [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-rkl-7/igt@gen9_exec_parse@bb-chained.html * igt@gen9_exec_parse@bb-start-out: - shard-tglu-1: NOTRUN -> [SKIP][100] ([i915#2527] / [i915#2856]) +2 other tests skip [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-tglu-1/igt@gen9_exec_parse@bb-start-out.html * igt@gen9_exec_parse@bb-start-param: - shard-dg2-9: NOTRUN -> [SKIP][101] ([i915#2856]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg2-9/igt@gen9_exec_parse@bb-start-param.html * igt@gen9_exec_parse@cmd-crossing-page: - shard-tglu: NOTRUN -> [SKIP][102] ([i915#2527] / [i915#2856]) +5 other tests skip [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-tglu-9/igt@gen9_exec_parse@cmd-crossing-page.html * igt@i915_module_load@load: - shard-glk: ([PASS][103], [PASS][104], [PASS][105], [PASS][106], [PASS][107], [PASS][108], [PASS][109], [PASS][110], [PASS][111], [PASS][112], [PASS][113], [PASS][114], [PASS][115], [PASS][116], [PASS][117], [PASS][118], [PASS][119], [PASS][120], [PASS][121], [PASS][122], [PASS][123]) -> ([PASS][124], [PASS][125], [PASS][126], [PASS][127], [PASS][128], [PASS][129], [PASS][130], [PASS][131], [PASS][132], [PASS][133], [DMESG-WARN][134], [PASS][135], [PASS][136], [PASS][137], [PASS][138], [PASS][139], [PASS][140]) ([i915#118]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16125/shard-glk2/igt@i915_module_load@load.html [104]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16125/shard-glk9/igt@i915_module_load@load.html [105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16125/shard-glk4/igt@i915_module_load@load.html [106]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16125/shard-glk3/igt@i915_module_load@load.html [107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16125/shard-glk9/igt@i915_module_load@load.html [108]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16125/shard-glk6/igt@i915_module_load@load.html [109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16125/shard-glk7/igt@i915_module_load@load.html [110]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16125/shard-glk1/igt@i915_module_load@load.html [111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16125/shard-glk4/igt@i915_module_load@load.html [112]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16125/shard-glk6/igt@i915_module_load@load.html [113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16125/shard-glk1/igt@i915_module_load@load.html [114]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16125/shard-glk4/igt@i915_module_load@load.html [115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16125/shard-glk7/igt@i915_module_load@load.html [116]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16125/shard-glk3/igt@i915_module_load@load.html [117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16125/shard-glk7/igt@i915_module_load@load.html [118]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16125/shard-glk2/igt@i915_module_load@load.html [119]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16125/shard-glk6/igt@i915_module_load@load.html [120]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16125/shard-glk9/igt@i915_module_load@load.html [121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16125/shard-glk1/igt@i915_module_load@load.html [122]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16125/shard-glk8/igt@i915_module_load@load.html [123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16125/shard-glk3/igt@i915_module_load@load.html [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-glk1/igt@i915_module_load@load.html [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-glk1/igt@i915_module_load@load.html [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-glk2/igt@i915_module_load@load.html [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-glk2/igt@i915_module_load@load.html [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-glk3/igt@i915_module_load@load.html [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-glk3/igt@i915_module_load@load.html [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-glk4/igt@i915_module_load@load.html [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-glk6/igt@i915_module_load@load.html [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-glk6/igt@i915_module_load@load.html [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-glk7/igt@i915_module_load@load.html [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-glk7/igt@i915_module_load@load.html [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-glk7/igt@i915_module_load@load.html [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-glk7/igt@i915_module_load@load.html [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-glk8/igt@i915_module_load@load.html [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-glk8/igt@i915_module_load@load.html [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-glk9/igt@i915_module_load@load.html [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-glk9/igt@i915_module_load@load.html * igt@i915_module_load@reload-with-fault-injection: - shard-snb: [PASS][141] -> [ABORT][142] ([i915#9820]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16125/shard-snb4/igt@i915_module_load@reload-with-fault-injection.html [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-snb6/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_module_load@resize-bar: - shard-mtlp: NOTRUN -> [SKIP][143] ([i915#6412]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-mtlp-2/igt@i915_module_load@resize-bar.html * igt@i915_pm_freq_api@freq-reset-multiple: - shard-tglu: NOTRUN -> [SKIP][144] ([i915#8399]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-tglu-2/igt@i915_pm_freq_api@freq-reset-multiple.html * igt@i915_pm_freq_api@freq-suspend: - shard-rkl: NOTRUN -> [SKIP][145] ([i915#8399]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-rkl-8/igt@i915_pm_freq_api@freq-suspend.html * igt@i915_pm_rps@thresholds-idle-park: - shard-dg2: NOTRUN -> [SKIP][146] ([i915#11681]) +1 other test skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg2-10/igt@i915_pm_rps@thresholds-idle-park.html - shard-dg1: NOTRUN -> [SKIP][147] ([i915#11681]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg1-12/igt@i915_pm_rps@thresholds-idle-park.html * igt@i915_power@sanity: - shard-rkl: NOTRUN -> [SKIP][148] ([i915#7984]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-rkl-3/igt@i915_power@sanity.html * igt@i915_query@query-topology-coherent-slice-mask: - shard-dg2: NOTRUN -> [SKIP][149] ([i915#6188]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg2-1/igt@i915_query@query-topology-coherent-slice-mask.html * igt@i915_selftest@live: - shard-rkl: [PASS][150] -> [DMESG-FAIL][151] ([i915#12964] / [i915#13550]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16125/shard-rkl-8/igt@i915_selftest@live.html [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-rkl-2/igt@i915_selftest@live.html * igt@i915_selftest@live@gt_pm: - shard-rkl: [PASS][152] -> [DMESG-FAIL][153] ([i915#13550]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16125/shard-rkl-8/igt@i915_selftest@live@gt_pm.html [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-rkl-2/igt@i915_selftest@live@gt_pm.html * igt@i915_selftest@live@workarounds: - shard-mtlp: [PASS][154] -> [DMESG-FAIL][155] ([i915#12061]) +1 other test dmesg-fail [154]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16125/shard-mtlp-5/igt@i915_selftest@live@workarounds.html [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-mtlp-6/igt@i915_selftest@live@workarounds.html * igt@i915_suspend@basic-s3-without-i915: - shard-snb: [PASS][156] -> [ABORT][157] ([i915#11703]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16125/shard-snb1/igt@i915_suspend@basic-s3-without-i915.html [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-snb4/igt@i915_suspend@basic-s3-without-i915.html * igt@i915_suspend@debugfs-reader: - shard-glk: NOTRUN -> [INCOMPLETE][158] ([i915#4817]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-glk7/igt@i915_suspend@debugfs-reader.html * igt@kms_addfb_basic@basic-x-tiled-legacy: - shard-mtlp: NOTRUN -> [SKIP][159] ([i915#4212]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-mtlp-7/igt@kms_addfb_basic@basic-x-tiled-legacy.html * igt@kms_addfb_basic@framebuffer-vs-set-tiling: - shard-dg2-9: NOTRUN -> [SKIP][160] ([i915#4212]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg2-9/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html * igt@kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-tglu-1: NOTRUN -> [SKIP][161] ([i915#12454] / [i915#12712]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-tglu-1/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-dp-4-4-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][162] ([i915#8709]) +7 other tests skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg2-10/igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-a-dp-4-4-mc-ccs.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-tglu-1: NOTRUN -> [SKIP][163] ([i915#9531]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-tglu-1/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-mtlp: [PASS][164] -> [FAIL][165] ([i915#11808] / [i915#5956]) +1 other test fail [164]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16125/shard-mtlp-6/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-mtlp-4/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-rkl: NOTRUN -> [SKIP][166] ([i915#1769] / [i915#3555]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-rkl-8/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html - shard-tglu-1: NOTRUN -> [SKIP][167] ([i915#1769] / [i915#3555]) +1 other test skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-tglu-1/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html - shard-snb: NOTRUN -> [SKIP][168] ([i915#1769]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-snb1/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html - shard-glk: NOTRUN -> [SKIP][169] ([i915#1769]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-glk8/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_atomic_transition@plane-use-after-nonblocking-unbind: - shard-dg1: [PASS][170] -> [DMESG-WARN][171] ([i915#4423]) +3 other tests dmesg-warn [170]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16125/shard-dg1-15/igt@kms_atomic_transition@plane-use-after-nonblocking-unbind.html [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg1-14/igt@kms_atomic_transition@plane-use-after-nonblocking-unbind.html * igt@kms_big_fb@4-tiled-32bpp-rotate-0: - shard-rkl: NOTRUN -> [SKIP][172] ([i915#5286]) +6 other tests skip [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-rkl-5/igt@kms_big_fb@4-tiled-32bpp-rotate-0.html * igt@kms_big_fb@4-tiled-8bpp-rotate-180: - shard-tglu-1: NOTRUN -> [SKIP][173] ([i915#5286]) +2 other tests skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-tglu-1/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html * igt@kms_big_fb@4-tiled-8bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][174] ([i915#4538] / [i915#5286]) +2 other tests skip [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg1-18/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html * igt@kms_big_fb@4-tiled-addfb-size-offset-overflow: - shard-tglu: NOTRUN -> [SKIP][175] ([i915#5286]) +7 other tests skip [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-tglu-6/igt@kms_big_fb@4-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-mtlp: [PASS][176] -> [FAIL][177] ([i915#5138]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16125/shard-mtlp-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-mtlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@linear-32bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][178] ([i915#3638]) +1 other test skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg1-14/igt@kms_big_fb@linear-32bpp-rotate-90.html * igt@kms_big_fb@linear-64bpp-rotate-270: - shard-mtlp: NOTRUN -> [SKIP][179] +13 other tests skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-mtlp-3/igt@kms_big_fb@linear-64bpp-rotate-270.html * igt@kms_big_fb@linear-8bpp-rotate-90: - shard-dg2-9: NOTRUN -> [SKIP][180] +2 other tests skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg2-9/igt@kms_big_fb@linear-8bpp-rotate-90.html * igt@kms_big_fb@y-tiled-32bpp-rotate-270: - shard-dg2: NOTRUN -> [SKIP][181] ([i915#4538] / [i915#5190]) +7 other tests skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg2-10/igt@kms_big_fb@y-tiled-32bpp-rotate-270.html * igt@kms_big_fb@y-tiled-8bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][182] ([i915#3638]) +4 other tests skip [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-rkl-8/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-8bpp-rotate-180: - shard-dg2-9: NOTRUN -> [SKIP][183] ([i915#4538] / [i915#5190]) +3 other tests skip [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg2-9/igt@kms_big_fb@yf-tiled-8bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-addfb-size-overflow: - shard-mtlp: NOTRUN -> [SKIP][184] ([i915#6187]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-mtlp-6/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: - shard-dg1: NOTRUN -> [SKIP][185] ([i915#4538]) +1 other test skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg1-19/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-c-hdmi-a-2: - shard-dg2-9: NOTRUN -> [SKIP][186] ([i915#10307] / [i915#6095]) +4 other tests skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg2-9/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-c-hdmi-a-2.html * igt@kms_ccs@bad-pixel-format-y-tiled-ccs@pipe-c-dp-3: - shard-dg2: NOTRUN -> [SKIP][187] ([i915#10307] / [i915#6095]) +186 other tests skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg2-11/igt@kms_ccs@bad-pixel-format-y-tiled-ccs@pipe-c-dp-3.html * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][188] ([i915#6095]) +69 other tests skip [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-tglu-4/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs: - shard-mtlp: NOTRUN -> [SKIP][189] ([i915#12313]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-mtlp-8/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs: - shard-tglu: NOTRUN -> [SKIP][190] ([i915#12313]) +1 other test skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-tglu-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][191] ([i915#6095]) +34 other tests skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-tglu-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-1.html * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-tglu: NOTRUN -> [SKIP][192] ([i915#12805]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-tglu-9/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][193] ([i915#6095]) +29 other tests skip [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-mtlp-1/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-c-edp-1.html * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs: - shard-dg2-9: NOTRUN -> [SKIP][194] ([i915#12805]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg2-9/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs@pipe-d-dp-4: - shard-dg2: NOTRUN -> [SKIP][195] ([i915#6095]) +15 other tests skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg2-10/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs@pipe-d-dp-4.html * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs: - shard-rkl: NOTRUN -> [SKIP][196] ([i915#6095]) +90 other tests skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-rkl-5/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][197] ([i915#6095]) +142 other tests skip [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg1-13/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-3.html * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs: - shard-dg2-9: NOTRUN -> [SKIP][198] ([i915#12313]) +1 other test skip [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg2-9/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html * igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][199] ([i915#4423] / [i915#6095]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg1-18/igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-4.html * igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][200] ([i915#10307] / [i915#10434] / [i915#6095]) +1 other test skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg2-8/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-hdmi-a-1.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-mtlp: NOTRUN -> [SKIP][201] ([i915#7213] / [i915#9010]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-mtlp-4/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][202] ([i915#4087]) +3 other tests skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg2-4/igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1.html * igt@kms_chamelium_edid@hdmi-edid-change-during-suspend: - shard-rkl: NOTRUN -> [SKIP][203] ([i915#11151] / [i915#7828]) +12 other tests skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-rkl-5/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html - shard-dg1: NOTRUN -> [SKIP][204] ([i915#11151] / [i915#7828]) +4 other tests skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg1-13/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html * igt@kms_chamelium_frames@dp-crc-fast: - shard-dg2: NOTRUN -> [SKIP][205] ([i915#11151] / [i915#7828]) +8 other tests skip [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg2-11/igt@kms_chamelium_frames@dp-crc-fast.html * igt@kms_chamelium_frames@dp-crc-single: - shard-dg2-9: NOTRUN -> [SKIP][206] ([i915#11151] / [i915#7828]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg2-9/igt@kms_chamelium_frames@dp-crc-single.html * igt@kms_chamelium_hpd@dp-hpd: - shard-tglu-1: NOTRUN -> [SKIP][207] ([i915#11151] / [i915#7828]) +7 other tests skip [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-tglu-1/igt@kms_chamelium_hpd@dp-hpd.html * igt@kms_chamelium_hpd@dp-hpd-fast: - shard-tglu: NOTRUN -> [SKIP][208] ([i915#11151] / [i915#7828]) +8 other tests skip [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-tglu-5/igt@kms_chamelium_hpd@dp-hpd-fast.html * igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode: - shard-mtlp: NOTRUN -> [SKIP][209] ([i915#11151] / [i915#7828]) +4 other tests skip [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-mtlp-5/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html * igt@kms_color@deep-color: - shard-dg2: [PASS][210] -> [SKIP][211] ([i915#3555]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16125/shard-dg2-11/igt@kms_color@deep-color.html [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg2-8/igt@kms_color@deep-color.html * igt@kms_content_protection@atomic: - shard-rkl: NOTRUN -> [SKIP][212] ([i915#7118] / [i915#9424]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-rkl-2/igt@kms_content_protection@atomic.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-tglu-1: NOTRUN -> [SKIP][213] ([i915#3116] / [i915#3299]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-tglu-1/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-mtlp: NOTRUN -> [SKIP][214] ([i915#3299]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-mtlp-1/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@dp-mst-type-0: - shard-tglu: NOTRUN -> [SKIP][215] ([i915#3116] / [i915#3299]) +1 other test skip [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-tglu-6/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@legacy: - shard-mtlp: NOTRUN -> [SKIP][216] ([i915#6944] / [i915#9424]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-mtlp-6/igt@kms_content_protection@legacy.html * igt@kms_content_protection@lic-type-0: - shard-dg2-9: NOTRUN -> [SKIP][217] ([i915#9424]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg2-9/igt@kms_content_protection@lic-type-0.html * igt@kms_content_protection@lic-type-1: - shard-tglu: NOTRUN -> [SKIP][218] ([i915#6944] / [i915#9424]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-tglu-4/igt@kms_content_protection@lic-type-1.html * igt@kms_content_protection@type1: - shard-tglu-1: NOTRUN -> [SKIP][219] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-tglu-1/igt@kms_content_protection@type1.html * igt@kms_cursor_crc@cursor-offscreen-512x170: - shard-tglu: NOTRUN -> [SKIP][220] ([i915#13049]) +2 other tests skip [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-tglu-3/igt@kms_cursor_crc@cursor-offscreen-512x170.html - shard-dg2: NOTRUN -> [SKIP][221] ([i915#13049]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg2-11/igt@kms_cursor_crc@cursor-offscreen-512x170.html * igt@kms_cursor_crc@cursor-onscreen-256x256: - shard-rkl: [PASS][222] -> [DMESG-WARN][223] ([i915#12964]) +17 other tests dmesg-warn [222]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16125/shard-rkl-7/igt@kms_cursor_crc@cursor-onscreen-256x256.html [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-rkl-4/igt@kms_cursor_crc@cursor-onscreen-256x256.html * igt@kms_cursor_crc@cursor-onscreen-512x170: - shard-mtlp: NOTRUN -> [SKIP][224] ([i915#13049]) +1 other test skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-mtlp-2/igt@kms_cursor_crc@cursor-onscreen-512x170.html - shard-rkl: NOTRUN -> [SKIP][225] ([i915#13049]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-rkl-3/igt@kms_cursor_crc@cursor-onscreen-512x170.html * igt@kms_cursor_crc@cursor-onscreen-64x21@pipe-a-hdmi-a-1: - shard-tglu: NOTRUN -> [FAIL][226] ([i915#13566]) +1 other test fail [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-tglu-9/igt@kms_cursor_crc@cursor-onscreen-64x21@pipe-a-hdmi-a-1.html * igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-2: - shard-rkl: [PASS][227] -> [FAIL][228] ([i915#13566]) +4 other tests fail [227]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16125/shard-rkl-1/igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-2.html [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-rkl-8/igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-2.html * igt@kms_cursor_crc@cursor-random-32x32: - shard-dg2-9: NOTRUN -> [SKIP][229] ([i915#3555]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg2-9/igt@kms_cursor_crc@cursor-random-32x32.html * igt@kms_cursor_crc@cursor-rapid-movement-256x85: - shard-snb: NOTRUN -> [SKIP][230] +30 other tests skip [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-snb7/igt@kms_cursor_crc@cursor-rapid-movement-256x85.html * igt@kms_cursor_crc@cursor-rapid-movement-512x170: - shard-tglu-1: NOTRUN -> [SKIP][231] ([i915#13049]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-tglu-1/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html * igt@kms_cursor_crc@cursor-rapid-movement-64x21: - shard-mtlp: NOTRUN -> [SKIP][232] ([i915#8814]) +1 other test skip [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-mtlp-3/igt@kms_cursor_crc@cursor-rapid-movement-64x21.html * igt@kms_cursor_crc@cursor-rapid-movement-max-size: - shard-dg2: NOTRUN -> [SKIP][233] ([i915#3555]) +3 other tests skip [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg2-11/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html * igt@kms_cursor_crc@cursor-sliding-128x42: - shard-tglu: [PASS][234] -> [FAIL][235] ([i915#13566]) +5 other tests fail [234]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16125/shard-tglu-4/igt@kms_cursor_crc@cursor-sliding-128x42.html [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-tglu-4/igt@kms_cursor_crc@cursor-sliding-128x42.html * igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [FAIL][236] ([i915#13566]) +4 other tests fail [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-rkl-1/igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-2.html * igt@kms_cursor_crc@cursor-sliding-max-size: - shard-mtlp: NOTRUN -> [SKIP][237] ([i915#3555] / [i915#8814]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-mtlp-6/igt@kms_cursor_crc@cursor-sliding-max-size.html * igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy: - shard-mtlp: NOTRUN -> [SKIP][238] ([i915#9809]) +1 other test skip [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-mtlp-1/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-rkl: NOTRUN -> [SKIP][239] ([i915#4103]) +1 other test skip [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-rkl-4/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size: - shard-rkl: NOTRUN -> [SKIP][240] +23 other tests skip [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-rkl-3/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size: - shard-dg2: NOTRUN -> [SKIP][241] ([i915#13046] / [i915#5354]) +1 other test skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg2-7/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size: - shard-dg2-9: NOTRUN -> [SKIP][242] ([i915#13046] / [i915#5354]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg2-9/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-tglu-1: NOTRUN -> [SKIP][243] ([i915#4103]) [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-tglu-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-dg2: NOTRUN -> [SKIP][244] ([i915#4103] / [i915#4213]) [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg2-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_dirtyfb@psr-dirtyfb-ioctl: - shard-rkl: NOTRUN -> [SKIP][245] ([i915#9723]) [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-rkl-1/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html * igt@kms_dp_aux_dev: - shard-rkl: NOTRUN -> [SKIP][246] ([i915#1257]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-rkl-6/igt@kms_dp_aux_dev.html * igt@kms_draw_crc@draw-method-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][247] ([i915#8812]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg2-10/igt@kms_draw_crc@draw-method-mmap-wc.html - shard-dg1: NOTRUN -> [SKIP][248] ([i915#8812]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg1-19/igt@kms_draw_crc@draw-method-mmap-wc.html * igt@kms_dsc@dsc-fractional-bpp-with-bpc: - shard-dg2: NOTRUN -> [SKIP][249] ([i915#3840]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg2-8/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html - shard-rkl: NOTRUN -> [SKIP][250] ([i915#3840]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-rkl-2/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html * igt@kms_dsc@dsc-with-bpc: - shard-tglu: NOTRUN -> [SKIP][251] ([i915#3555] / [i915#3840]) +1 other test skip [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-tglu-5/igt@kms_dsc@dsc-with-bpc.html * igt@kms_dsc@dsc-with-output-formats: - shard-mtlp: NOTRUN -> [SKIP][252] ([i915#3555] / [i915#3840]) [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-mtlp-3/igt@kms_dsc@dsc-with-output-formats.html - shard-dg2: NOTRUN -> [SKIP][253] ([i915#3555] / [i915#3840]) [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg2-4/igt@kms_dsc@dsc-with-output-formats.html - shard-rkl: NOTRUN -> [SKIP][254] ([i915#3555] / [i915#3840]) +1 other test skip [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-rkl-5/igt@kms_dsc@dsc-with-output-formats.html - shard-dg1: NOTRUN -> [SKIP][255] ([i915#3555] / [i915#3840]) +2 other tests skip [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg1-13/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_feature_discovery@display-2x: - shard-tglu-1: NOTRUN -> [SKIP][256] ([i915#1839]) [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-tglu-1/igt@kms_feature_discovery@display-2x.html * igt@kms_feature_discovery@display-4x: - shard-tglu: NOTRUN -> [SKIP][257] ([i915#1839]) +1 other test skip [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-tglu-3/igt@kms_feature_discovery@display-4x.html * igt@kms_feature_discovery@dp-mst: - shard-dg2: NOTRUN -> [SKIP][258] ([i915#9337]) [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg2-11/igt@kms_feature_discovery@dp-mst.html * igt@kms_feature_discovery@psr2: - shard-dg2: NOTRUN -> [SKIP][259] ([i915#658]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg2-4/igt@kms_feature_discovery@psr2.html - shard-rkl: NOTRUN -> [SKIP][260] ([i915#658]) [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-rkl-5/igt@kms_feature_discovery@psr2.html * igt@kms_flip@2x-flip-vs-blocking-wf-vblank: - shard-dg2: NOTRUN -> [SKIP][261] ([i915#9934]) +4 other tests skip [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg2-11/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html * igt@kms_flip@2x-flip-vs-fences-interruptible: - shard-tglu-1: NOTRUN -> [SKIP][262] ([i915#3637]) +2 other tests skip [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-tglu-1/igt@kms_flip@2x-flip-vs-fences-interruptible.html * igt@kms_flip@2x-flip-vs-suspend-interruptible: - shard-glk: NOTRUN -> [INCOMPLETE][263] ([i915#12314] / [i915#12745] / [i915#4839]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-glk8/igt@kms_flip@2x-flip-vs-suspend-interruptible.html * igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-hdmi-a1-hdmi-a2: - shard-glk: NOTRUN -> [INCOMPLETE][264] ([i915#4839]) [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-glk8/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-hdmi-a1-hdmi-a2.html * igt@kms_flip@2x-modeset-vs-vblank-race-interruptible: - shard-mtlp: NOTRUN -> [SKIP][265] ([i915#3637]) +4 other tests skip [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-mtlp-7/igt@kms_flip@2x-modeset-vs-vblank-race-interruptible.html * igt@kms_flip@2x-plain-flip-interruptible: - shard-rkl: NOTRUN -> [SKIP][266] ([i915#9934]) +7 other tests skip [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-rkl-8/igt@kms_flip@2x-plain-flip-interruptible.html - shard-dg1: NOTRUN -> [SKIP][267] ([i915#9934]) +2 other tests skip [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg1-14/igt@kms_flip@2x-plain-flip-interruptible.html * igt@kms_flip@2x-plain-flip-ts-check-interruptible: - shard-tglu: NOTRUN -> [SKIP][268] ([i915#3637]) +6 other tests skip [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-tglu-2/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html * igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible: - shard-dg2-9: NOTRUN -> [SKIP][269] ([i915#9934]) [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg2-9/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html * igt@kms_flip@dpms-off-confusion: - shard-glk: [PASS][270] -> [DMESG-WARN][271] ([i915#118]) +1 other test dmesg-warn [270]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16125/shard-glk7/igt@kms_flip@dpms-off-confusion.html [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-glk8/igt@kms_flip@dpms-off-confusion.html * igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible: - shard-mtlp: [PASS][272] -> [FAIL][273] ([i915#11989]) +1 other test fail [272]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16125/shard-mtlp-4/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-mtlp-8/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html * igt@kms_flip@flip-vs-fences: - shard-dg1: NOTRUN -> [SKIP][274] ([i915#8381]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg1-18/igt@kms_flip@flip-vs-fences.html * igt@kms_flip@flip-vs-fences-interruptible: - shard-dg2-9: NOTRUN -> [SKIP][275] ([i915#8381]) [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg2-9/igt@kms_flip@flip-vs-fences-interruptible.html * igt@kms_flip@flip-vs-suspend-interruptible: - shard-glk: NOTRUN -> [INCOMPLETE][276] ([i915#12745] / [i915#4839]) [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-glk2/igt@kms_flip@flip-vs-suspend-interruptible.html * igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1: - shard-glk: NOTRUN -> [INCOMPLETE][277] ([i915#12745]) [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-glk2/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html * igt@kms_flip@plain-flip-ts-check-interruptible@a-hdmi-a3: - shard-dg2: [PASS][278] -> [FAIL][279] ([i915#11989]) +2 other tests fail [278]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16125/shard-dg2-3/igt@kms_flip@plain-flip-ts-check-interruptible@a-hdmi-a3.html [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg2-5/igt@kms_flip@plain-flip-ts-check-interruptible@a-hdmi-a3.html * igt@kms_flip@plain-flip-ts-check-interruptible@b-hdmi-a1: - shard-tglu: [PASS][280] -> [FAIL][281] ([i915#11989]) +2 other tests fail [280]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16125/shard-tglu-2/igt@kms_flip@plain-flip-ts-check-interruptible@b-hdmi-a1.html [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-tglu-7/igt@kms_flip@plain-flip-ts-check-interruptible@b-hdmi-a1.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling: - shard-dg1: NOTRUN -> [SKIP][282] ([i915#2672] / [i915#3555]) [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg1-19/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode: - shard-tglu-1: NOTRUN -> [SKIP][283] ([i915#2587] / [i915#2672]) +3 other tests skip [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html - shard-dg1: NOTRUN -> [SKIP][284] ([i915#2587] / [i915#2672]) +1 other test skip [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg1-19/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][285] ([i915#2587] / [i915#2672]) +2 other tests skip [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-tglu-7/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][286] ([i915#2672]) +3 other tests skip [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-rkl-3/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling: - shard-mtlp: NOTRUN -> [SKIP][287] ([i915#2672] / [i915#3555] / [i915#8813]) +3 other tests skip [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html - shard-dg2: NOTRUN -> [SKIP][288] ([i915#2672] / [i915#3555] / [i915#5190]) +2 other tests skip [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg2-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html - shard-tglu-1: NOTRUN -> [SKIP][289] ([i915#2587] / [i915#2672] / [i915#3555]) [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html - shard-dg1: NOTRUN -> [SKIP][290] ([i915#2587] / [i915#2672] / [i915#3555]) [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg1-15/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling: - shard-tglu: NOTRUN -> [SKIP][291] ([i915#2587] / [i915#2672] / [i915#3555]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-tglu-7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][292] ([i915#2672]) +2 other tests skip [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg2-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling: - shard-rkl: NOTRUN -> [SKIP][293] ([i915#2672] / [i915#3555]) +3 other tests skip [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-rkl-4/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling: - shard-tglu: NOTRUN -> [SKIP][294] ([i915#2672] / [i915#3555]) +1 other test skip [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-tglu-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][295] ([i915#2672] / [i915#8813]) +1 other test skip [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling: - shard-tglu-1: NOTRUN -> [SKIP][296] ([i915#2672] / [i915#3555]) +2 other tests skip [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling: - shard-dg2-9: NOTRUN -> [SKIP][297] ([i915#2672] / [i915#3555] / [i915#5190]) [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg2-9/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode: - shard-dg2-9: NOTRUN -> [SKIP][298] ([i915#2672]) [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg2-9/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move: - shard-dg2: [PASS][299] -> [FAIL][300] ([i915#6880]) +1 other test fail [299]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16125/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move.html [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][301] ([i915#8708]) +14 other tests skip [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu: - shard-tglu-1: NOTRUN -> [SKIP][302] +63 other tests skip [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-tglu-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen: - shard-snb: [PASS][303] -> [SKIP][304] +3 other tests skip [303]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16125/shard-snb1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render: - shard-dg1: NOTRUN -> [SKIP][305] +23 other tests skip [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg1-19/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-fullscreen: - shard-dg2-9: NOTRUN -> [SKIP][306] ([i915#5354]) +6 other tests skip [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg2-9/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-blt: - shard-dg2: NOTRUN -> [FAIL][307] ([i915#6880]) [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-tiling-y: - shard-mtlp: NOTRUN -> [SKIP][308] ([i915#10055]) [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbc-tiling-y.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][309] ([i915#8708]) +4 other tests skip [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][310] ([i915#3023]) +26 other tests skip [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff: - shard-mtlp: NOTRUN -> [SKIP][311] ([i915#1825]) +23 other tests skip [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-mtlp-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-msflip-blt: - shard-tglu: NOTRUN -> [SKIP][312] +81 other tests skip [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-tglu-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@pipe-fbc-rte: - shard-tglu: NOTRUN -> [SKIP][313] ([i915#9766]) [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-tglu-5/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt: - shard-dg1: NOTRUN -> [SKIP][314] ([i915#3458]) +7 other tests skip [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg1-12/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-pwrite: - shard-dg2: NOTRUN -> [SKIP][315] ([i915#3458]) +14 other tests skip [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-pgflip-blt: - shard-dg2-9: NOTRUN -> [SKIP][316] ([i915#3458]) +4 other tests skip [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg2-9/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-dg2-9: NOTRUN -> [SKIP][317] ([i915#8708]) +1 other test skip [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg2-9/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][318] ([i915#5354]) +20 other tests skip [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg2-2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][319] ([i915#8708]) +3 other tests skip [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-mtlp-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-plflip-blt: - shard-rkl: NOTRUN -> [SKIP][320] ([i915#1825]) +41 other tests skip [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-plflip-blt.html * igt@kms_hdr@bpc-switch-dpms: - shard-rkl: NOTRUN -> [SKIP][321] ([i915#3555] / [i915#8228]) +2 other tests skip [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-rkl-3/igt@kms_hdr@bpc-switch-dpms.html - shard-dg1: NOTRUN -> [SKIP][322] ([i915#3555] / [i915#8228]) +1 other test skip [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg1-19/igt@kms_hdr@bpc-switch-dpms.html - shard-tglu: NOTRUN -> [SKIP][323] ([i915#3555] / [i915#8228]) +1 other test skip [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-tglu-6/igt@kms_hdr@bpc-switch-dpms.html * igt@kms_hdr@invalid-hdr: - shard-dg2-9: NOTRUN -> [SKIP][324] ([i915#3555] / [i915#8228]) [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg2-9/igt@kms_hdr@invalid-hdr.html * igt@kms_hdr@invalid-metadata-sizes: - shard-tglu-1: NOTRUN -> [SKIP][325] ([i915#3555] / [i915#8228]) [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-tglu-1/igt@kms_hdr@invalid-metadata-sizes.html * igt@kms_hdr@static-toggle: - shard-dg2: [PASS][326] -> [SKIP][327] ([i915#3555] / [i915#8228]) +1 other test skip [326]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16125/shard-dg2-10/igt@kms_hdr@static-toggle.html [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg2-5/igt@kms_hdr@static-toggle.html * igt@kms_joiner@basic-big-joiner: - shard-rkl: NOTRUN -> [SKIP][328] ([i915#10656]) [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-rkl-5/igt@kms_joiner@basic-big-joiner.html - shard-dg1: NOTRUN -> [SKIP][329] ([i915#10656]) [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg1-13/igt@kms_joiner@basic-big-joiner.html - shard-tglu: NOTRUN -> [SKIP][330] ([i915#10656]) +1 other test skip [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-tglu-10/igt@kms_joiner@basic-big-joiner.html - shard-mtlp: NOTRUN -> [SKIP][331] ([i915#10656]) +1 other test skip [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-mtlp-3/igt@kms_joiner@basic-big-joiner.html - shard-dg2: NOTRUN -> [SKIP][332] ([i915#10656]) [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg2-4/igt@kms_joiner@basic-big-joiner.html * igt@kms_joiner@basic-force-big-joiner: - shard-tglu: NOTRUN -> [SKIP][333] ([i915#12388]) [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-tglu-7/igt@kms_joiner@basic-force-big-joiner.html * igt@kms_joiner@invalid-modeset-big-joiner: - shard-dg2-9: NOTRUN -> [SKIP][334] ([i915#10656]) [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg2-9/igt@kms_joiner@invalid-modeset-big-joiner.html * igt@kms_joiner@invalid-modeset-force-big-joiner: - shard-rkl: NOTRUN -> [SKIP][335] ([i915#12388]) [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-rkl-7/igt@kms_joiner@invalid-modeset-force-big-joiner.html - shard-tglu-1: NOTRUN -> [SKIP][336] ([i915#12388]) [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-tglu-1/igt@kms_joiner@invalid-modeset-force-big-joiner.html * igt@kms_joiner@invalid-modeset-force-ultra-joiner: - shard-rkl: NOTRUN -> [SKIP][337] ([i915#12394]) [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-rkl-1/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html * igt@kms_joiner@invalid-modeset-ultra-joiner: - shard-dg2: NOTRUN -> [SKIP][338] ([i915#12339]) [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg2-5/igt@kms_joiner@invalid-modeset-ultra-joiner.html * igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner: - shard-tglu-1: NOTRUN -> [SKIP][339] ([i915#13522]) [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-tglu-1/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-dg2: NOTRUN -> [SKIP][340] ([i915#4816]) [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg2-10/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c: - shard-dg2: NOTRUN -> [SKIP][341] +7 other tests skip [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg2-1/igt@kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c.html * igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a: - shard-rkl: [PASS][342] -> [DMESG-FAIL][343] ([i915#12964]) +1 other test dmesg-fail [342]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16125/shard-rkl-2/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-rkl-7/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html * igt@kms_plane_alpha_blend@alpha-opaque-fb: - shard-glk: NOTRUN -> [FAIL][344] ([i915#10647] / [i915#12169]) [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-glk6/igt@kms_plane_alpha_blend@alpha-opaque-fb.html * igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][345] ([i915#10647]) +1 other test fail [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-glk6/igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1.html * igt@kms_plane_multiple@tiling-y: - shard-mtlp: NOTRUN -> [SKIP][346] ([i915#3555] / [i915#8806]) [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-mtlp-6/igt@kms_plane_multiple@tiling-y.html * igt@kms_plane_multiple@tiling-yf: - shard-rkl: NOTRUN -> [SKIP][347] ([i915#3555]) +6 other tests skip [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-rkl-5/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@intel-max-src-size: - shard-rkl: NOTRUN -> [SKIP][348] ([i915#6953]) [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-rkl-5/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers: - shard-dg2: NOTRUN -> [SKIP][349] ([i915#12247] / [i915#9423]) [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg2-4/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format: - shard-dg2-9: NOTRUN -> [SKIP][350] ([i915#12247] / [i915#9423]) [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg2-9/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-d: - shard-dg2-9: NOTRUN -> [SKIP][351] ([i915#12247]) +3 other tests skip [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg2-9/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-d.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b: - shard-tglu-1: NOTRUN -> [SKIP][352] ([i915#12247]) +8 other tests skip [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-tglu-1/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b.html * igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a: - shard-rkl: NOTRUN -> [SKIP][353] ([i915#12247]) +22 other tests skip [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-rkl-6/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25: - shard-dg2: NOTRUN -> [SKIP][354] ([i915#12247] / [i915#6953] / [i915#9423]) +1 other test skip [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg2-10/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html - shard-rkl: NOTRUN -> [SKIP][355] ([i915#12247] / [i915#6953]) [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-rkl-3/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html - shard-dg1: NOTRUN -> [SKIP][356] ([i915#12247] / [i915#6953]) [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg1-19/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html - shard-tglu: NOTRUN -> [SKIP][357] ([i915#12247] / [i915#6953]) [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-tglu-7/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html - shard-mtlp: NOTRUN -> [SKIP][358] ([i915#12247] / [i915#6953]) [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-mtlp-8/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b: - shard-mtlp: NOTRUN -> [SKIP][359] ([i915#12247]) +5 other tests skip [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-mtlp-8/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c: - shard-dg1: NOTRUN -> [SKIP][360] ([i915#12247]) +8 other tests skip [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg1-19/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d: - shard-tglu: NOTRUN -> [SKIP][361] ([i915#12247]) +12 other tests skip [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-tglu-7/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25: - shard-tglu: NOTRUN -> [SKIP][362] ([i915#12247] / [i915#3555]) [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-tglu-9/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d: - shard-dg2: NOTRUN -> [SKIP][363] ([i915#12247]) +11 other tests skip [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg2-5/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d.html * igt@kms_pm_backlight@brightness-with-dpms: - shard-tglu-1: NOTRUN -> [SKIP][364] ([i915#12343]) [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-tglu-1/igt@kms_pm_backlight@brightness-with-dpms.html * igt@kms_pm_backlight@fade-with-dpms: - shard-tglu-1: NOTRUN -> [SKIP][365] ([i915#9812]) [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-tglu-1/igt@kms_pm_backlight@fade-with-dpms.html * igt@kms_pm_dc@dc5-retention-flops: - shard-rkl: NOTRUN -> [SKIP][366] ([i915#3828]) [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-rkl-3/igt@kms_pm_dc@dc5-retention-flops.html * igt@kms_pm_dc@dc6-dpms: - shard-dg2: NOTRUN -> [SKIP][367] ([i915#5978]) [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg2-2/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_lpsp@kms-lpsp: - shard-rkl: NOTRUN -> [SKIP][368] ([i915#9340]) [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-rkl-8/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-dg2: NOTRUN -> [SKIP][369] ([i915#9519]) [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg2-4/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@kms_pm_rpm@dpms-non-lpsp: - shard-mtlp: NOTRUN -> [SKIP][370] ([i915#9519]) +1 other test skip [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-mtlp-2/igt@kms_pm_rpm@dpms-non-lpsp.html * igt@kms_pm_rpm@modeset-lpsp-stress: - shard-rkl: [PASS][371] -> [SKIP][372] ([i915#9519]) [371]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16125/shard-rkl-7/igt@kms_pm_rpm@modeset-lpsp-stress.html [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-rkl-8/igt@kms_pm_rpm@modeset-lpsp-stress.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-tglu: NOTRUN -> [SKIP][373] ([i915#9519]) +3 other tests skip [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-tglu-5/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_pm_rpm@pm-tiling: - shard-dg1: NOTRUN -> [SKIP][374] ([i915#4077]) +5 other tests skip [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg1-17/igt@kms_pm_rpm@pm-tiling.html * igt@kms_prime@basic-modeset-hybrid: - shard-dg2: NOTRUN -> [SKIP][375] ([i915#6524] / [i915#6805]) [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg2-11/igt@kms_prime@basic-modeset-hybrid.html * igt@kms_prime@d3hot: - shard-dg2-9: NOTRUN -> [SKIP][376] ([i915#6524] / [i915#6805]) [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg2-9/igt@kms_prime@d3hot.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf: - shard-snb: NOTRUN -> [SKIP][377] ([i915#11520]) +1 other test skip [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-snb4/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf: - shard-tglu-1: NOTRUN -> [SKIP][378] ([i915#11520]) +4 other tests skip [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-tglu-1/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html * igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][379] ([i915#11520]) +12 other tests skip [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-glk9/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html * igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area: - shard-rkl: NOTRUN -> [SKIP][380] ([i915#11520]) +8 other tests skip [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-rkl-2/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area: - shard-dg1: NOTRUN -> [SKIP][381] ([i915#11520]) +3 other tests skip [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg1-19/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html * igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][382] ([i915#9808]) [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-mtlp-2/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area@pipe-a-edp-1.html * igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][383] ([i915#12316]) +3 other tests skip [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-mtlp-2/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area@pipe-b-edp-1.html * igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf: - shard-tglu: NOTRUN -> [SKIP][384] ([i915#11520]) +8 other tests skip [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-tglu-7/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-sf: - shard-dg2-9: NOTRUN -> [SKIP][385] ([i915#11520]) +1 other test skip [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg2-9/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area: - shard-dg2: NOTRUN -> [SKIP][386] ([i915#11520]) +6 other tests skip [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg2-10/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-rkl: NOTRUN -> [SKIP][387] ([i915#9683]) +1 other test skip [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-rkl-5/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr2_su@page_flip-nv12: - shard-tglu-1: NOTRUN -> [SKIP][388] ([i915#9683]) [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-tglu-1/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr2_su@page_flip-p010: - shard-mtlp: NOTRUN -> [SKIP][389] ([i915#4348]) [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-mtlp-4/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr@fbc-psr-primary-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][390] ([i915#1072] / [i915#9732]) +13 other tests skip [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg2-10/igt@kms_psr@fbc-psr-primary-mmap-gtt.html * igt@kms_psr@fbc-psr-sprite-plane-onoff: - shard-dg2-9: NOTRUN -> [SKIP][391] ([i915#1072] / [i915#9732]) +2 other tests skip [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg2-9/igt@kms_psr@fbc-psr-sprite-plane-onoff.html * igt@kms_psr@fbc-psr2-no-drrs: - shard-mtlp: NOTRUN -> [SKIP][392] ([i915#9688]) +10 other tests skip [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-mtlp-1/igt@kms_psr@fbc-psr2-no-drrs.html * igt@kms_psr@psr-sprite-mmap-cpu: - shard-tglu-1: NOTRUN -> [SKIP][393] ([i915#9732]) +13 other tests skip [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-tglu-1/igt@kms_psr@psr-sprite-mmap-cpu.html * igt@kms_psr@psr2-cursor-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][394] ([i915#1072] / [i915#9732]) +24 other tests skip [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-rkl-1/igt@kms_psr@psr2-cursor-mmap-gtt.html * igt@kms_psr@psr2-primary-render: - shard-tglu: NOTRUN -> [SKIP][395] ([i915#9732]) +18 other tests skip [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-tglu-3/igt@kms_psr@psr2-primary-render.html * igt@kms_psr@psr2-sprite-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][396] ([i915#1072] / [i915#9732]) +8 other tests skip [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg1-17/igt@kms_psr@psr2-sprite-mmap-gtt.html - shard-mtlp: NOTRUN -> [SKIP][397] ([i915#4077] / [i915#9688]) +1 other test skip [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-mtlp-2/igt@kms_psr@psr2-sprite-mmap-gtt.html * igt@kms_psr@psr2-sprite-plane-onoff: - shard-glk: NOTRUN -> [SKIP][398] +364 other tests skip [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-glk3/igt@kms_psr@psr2-sprite-plane-onoff.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-rkl: NOTRUN -> [SKIP][399] ([i915#9685]) [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-rkl-7/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html - shard-tglu-1: NOTRUN -> [SKIP][400] ([i915#9685]) +1 other test skip [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-tglu-1/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_rotation_crc@exhaust-fences: - shard-dg2-9: NOTRUN -> [SKIP][401] ([i915#4235]) [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg2-9/igt@kms_rotation_crc@exhaust-fences.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-dg1: NOTRUN -> [SKIP][402] ([i915#5289]) [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg1-13/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-dg2-9: NOTRUN -> [SKIP][403] ([i915#12755] / [i915#5190]) [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg2-9/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_rotation_crc@sprite-rotation-90-pos-100-0: - shard-mtlp: NOTRUN -> [SKIP][404] ([i915#12755]) [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-mtlp-6/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html * igt@kms_scaling_modes@scaling-mode-full-aspect: - shard-tglu: NOTRUN -> [SKIP][405] ([i915#3555]) +3 other tests skip [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-tglu-5/igt@kms_scaling_modes@scaling-mode-full-aspect.html * igt@kms_selftest@drm_framebuffer: - shard-rkl: NOTRUN -> [ABORT][406] ([i915#13179]) +1 other test abort [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-rkl-8/igt@kms_selftest@drm_framebuffer.html - shard-snb: NOTRUN -> [ABORT][407] ([i915#13179]) +1 other test abort [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-snb4/igt@kms_selftest@drm_framebuffer.html - shard-glk: NOTRUN -> [ABORT][408] ([i915#13179]) +1 other test abort [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-glk7/igt@kms_selftest@drm_framebuffer.html * igt@kms_setmode@basic: - shard-tglu: [PASS][409] -> [FAIL][410] ([i915#5465]) +2 other tests fail [409]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16125/shard-tglu-6/igt@kms_setmode@basic.html [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-tglu-2/igt@kms_setmode@basic.html * igt@kms_setmode@clone-exclusive-crtc: - shard-tglu-1: NOTRUN -> [SKIP][411] ([i915#3555]) +3 other tests skip [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-tglu-1/igt@kms_setmode@clone-exclusive-crtc.html - shard-dg1: NOTRUN -> [SKIP][412] ([i915#3555]) +3 other tests skip [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg1-19/igt@kms_setmode@clone-exclusive-crtc.html - shard-mtlp: NOTRUN -> [SKIP][413] ([i915#3555] / [i915#8809]) [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-mtlp-5/igt@kms_setmode@clone-exclusive-crtc.html * igt@kms_setmode@invalid-clone-exclusive-crtc: - shard-mtlp: NOTRUN -> [SKIP][414] ([i915#3555] / [i915#8809] / [i915#8823]) [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-mtlp-1/igt@kms_setmode@invalid-clone-exclusive-crtc.html * igt@kms_sysfs_edid_timing: - shard-dg1: NOTRUN -> [FAIL][415] ([IGT#160] / [i915#6493]) [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg1-14/igt@kms_sysfs_edid_timing.html * igt@kms_tiled_display@basic-test-pattern: - shard-glk: NOTRUN -> [FAIL][416] ([i915#10959]) [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-glk7/igt@kms_tiled_display@basic-test-pattern.html - shard-dg2: NOTRUN -> [SKIP][417] ([i915#8623]) +1 other test skip [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg2-4/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-rkl: NOTRUN -> [SKIP][418] ([i915#8623]) [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-rkl-8/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html - shard-dg1: NOTRUN -> [SKIP][419] ([i915#8623]) [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg1-14/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html - shard-tglu: NOTRUN -> [SKIP][420] ([i915#8623]) [420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-tglu-5/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html - shard-mtlp: NOTRUN -> [SKIP][421] ([i915#8623]) [421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-mtlp-1/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_vblank@ts-continuation-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][422] ([i915#12276]) +1 other test incomplete [422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-glk3/igt@kms_vblank@ts-continuation-suspend.html * igt@kms_vrr@flip-basic-fastset: - shard-tglu-1: NOTRUN -> [SKIP][423] ([i915#9906]) [423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-tglu-1/igt@kms_vrr@flip-basic-fastset.html * igt@kms_vrr@lobf: - shard-dg2-9: NOTRUN -> [SKIP][424] ([i915#11920]) [424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg2-9/igt@kms_vrr@lobf.html * igt@kms_vrr@max-min: - shard-dg2: NOTRUN -> [SKIP][425] ([i915#9906]) [425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg2-11/igt@kms_vrr@max-min.html * igt@kms_vrr@negative-basic: - shard-mtlp: NOTRUN -> [FAIL][426] ([i915#10393]) +1 other test fail [426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-mtlp-6/igt@kms_vrr@negative-basic.html * igt@kms_vrr@seamless-rr-switch-virtual: - shard-dg1: NOTRUN -> [SKIP][427] ([i915#9906]) [427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg1-12/igt@kms_vrr@seamless-rr-switch-virtual.html * igt@kms_vrr@seamless-rr-switch-vrr: - shard-tglu: NOTRUN -> [SKIP][428] ([i915#9906]) [428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-tglu-5/igt@kms_vrr@seamless-rr-switch-vrr.html * igt@kms_writeback@writeback-pixel-formats: - shard-glk: NOTRUN -> [SKIP][429] ([i915#2437]) +1 other test skip [429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-glk8/igt@kms_writeback@writeback-pixel-formats.html * igt@perf@global-sseu-config: - shard-dg2-9: NOTRUN -> [SKIP][430] ([i915#7387]) [430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg2-9/igt@perf@global-sseu-config.html * igt@perf@mi-rpc: - shard-mtlp: NOTRUN -> [SKIP][431] ([i915#2434]) [431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-mtlp-4/igt@perf@mi-rpc.html * igt@perf@per-context-mode-unprivileged: - shard-rkl: NOTRUN -> [SKIP][432] ([i915#2435]) [432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-rkl-4/igt@perf@per-context-mode-unprivileged.html * igt@perf_pmu@frequency@gt0: - shard-dg2-9: NOTRUN -> [FAIL][433] ([i915#12549] / [i915#6806]) +1 other test fail [433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-dg2-9/igt@perf_pmu@frequency@gt0.html * igt@prime_vgem@basic-fence-read: - shard-rkl: NOTRUN -> [SKIP][434] ([i915#3291] / [i915#3708]) +1 other test skip [434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/shard-rkl-4/igt@p == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12585/index.html [-- Attachment #2: Type: text/html, Size: 111673 bytes --] ^ permalink raw reply [flat|nested] 11+ messages in thread
* ✗ Xe.CI.Full: failure for series starting with [i-g-t,1/4] lib/xe: Fix a comment error 2025-02-13 2:19 [i-g-t 1/4] lib/xe: Fix a comment error Oak Zeng ` (6 preceding siblings ...) 2025-02-13 13:26 ` ✗ i915.CI.Full: failure " Patchwork @ 2025-02-13 17:47 ` Patchwork 7 siblings, 0 replies; 11+ messages in thread From: Patchwork @ 2025-02-13 17:47 UTC (permalink / raw) To: Oak Zeng; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 94588 bytes --] == Series Details == Series: series starting with [i-g-t,1/4] lib/xe: Fix a comment error URL : https://patchwork.freedesktop.org/series/144765/ State : failure == Summary == CI Bug Log - changes from XEIGT_8229_full -> XEIGTPW_12585_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12585_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12585_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (4 -> 4) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_12585_full: ### IGT changes ### #### Possible regressions #### * igt@kms_plane_lowres@tiling-x: - shard-dg2-set2: NOTRUN -> [DMESG-WARN][1] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-dg2-433/igt@kms_plane_lowres@tiling-x.html * {igt@xe_exec_fault_mode@scratch-fault} (NEW): - shard-dg2-set2: NOTRUN -> [SKIP][2] +1 other test skip [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-dg2-432/igt@xe_exec_fault_mode@scratch-fault.html - shard-lnl: NOTRUN -> [FAIL][3] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-lnl-6/igt@xe_exec_fault_mode@scratch-fault.html - shard-bmg: NOTRUN -> [FAIL][4] [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-bmg-1/igt@xe_exec_fault_mode@scratch-fault.html * igt@xe_fault_injection@vm-create-fail-xe_pt_create: - shard-lnl: [PASS][5] -> [ABORT][6] [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-lnl-2/igt@xe_fault_injection@vm-create-fail-xe_pt_create.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-lnl-5/igt@xe_fault_injection@vm-create-fail-xe_pt_create.html * igt@xe_sriov_auto_provisioning@selfconfig-reprovision-increase-numvfs: - shard-lnl: NOTRUN -> [SKIP][7] [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-lnl-8/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-increase-numvfs.html * igt@xe_vm@invalid-flag-xe_vm_create_scratch_fault: - shard-bmg: NOTRUN -> [SKIP][8] [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-bmg-7/igt@xe_vm@invalid-flag-xe_vm_create_scratch_fault.html * igt@xe_vm@invalid-flag-xe_vm_create_scratch_fault_lr: - shard-lnl: [PASS][9] -> [SKIP][10] +1 other test skip [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-lnl-3/igt@xe_vm@invalid-flag-xe_vm_create_scratch_fault_lr.html [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-lnl-7/igt@xe_vm@invalid-flag-xe_vm_create_scratch_fault_lr.html #### Warnings #### * igt@xe_vm@invalid-flag-xe_vm_create_scratch_fault_lr: - shard-bmg: [DMESG-WARN][11] ([Intel XE#4172]) -> [SKIP][12] [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-bmg-1/igt@xe_vm@invalid-flag-xe_vm_create_scratch_fault_lr.html [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-bmg-7/igt@xe_vm@invalid-flag-xe_vm_create_scratch_fault_lr.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * {igt@kms_joiner@basic-max-non-joiner}: - shard-dg2-set2: NOTRUN -> [SKIP][13] [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-dg2-466/igt@kms_joiner@basic-max-non-joiner.html New tests --------- New tests have been introduced between XEIGT_8229_full and XEIGTPW_12585_full: ### New IGT tests (1) ### * igt@xe_exec_fault_mode@scratch-fault: - Statuses : 2 fail(s) 1 skip(s) - Exec time: [0.0, 0.01] s Known issues ------------ Here are the changes found in XEIGTPW_12585_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@core_hotunplug@hotunplug-rescan: - shard-lnl: NOTRUN -> [ABORT][14] ([Intel XE#3914]) [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-lnl-6/igt@core_hotunplug@hotunplug-rescan.html * igt@kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-lnl: NOTRUN -> [SKIP][15] ([Intel XE#3157]) [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-lnl-2/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt@kms_async_flips@async-flip-suspend-resume@pipe-d-dp-4: - shard-dg2-set2: [PASS][16] -> [DMESG-WARN][17] ([Intel XE#1033]) +7 other tests dmesg-warn [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-dg2-433/igt@kms_async_flips@async-flip-suspend-resume@pipe-d-dp-4.html [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-dg2-433/igt@kms_async_flips@async-flip-suspend-resume@pipe-d-dp-4.html * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-d-hdmi-a-2-4-rc-ccs-cc: - shard-dg2-set2: NOTRUN -> [SKIP][18] ([Intel XE#3767]) +15 other tests skip [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-dg2-432/igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-d-hdmi-a-2-4-rc-ccs-cc.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear: - shard-lnl: NOTRUN -> [FAIL][19] ([Intel XE#911]) +3 other tests fail [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-lnl-3/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-edp-1-linear.html * igt@kms_async_flips@invalid-async-flip: - shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#873]) [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-bmg-5/igt@kms_async_flips@invalid-async-flip.html - shard-dg2-set2: NOTRUN -> [SKIP][21] ([Intel XE#873]) [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-dg2-435/igt@kms_async_flips@invalid-async-flip.html - shard-lnl: NOTRUN -> [SKIP][22] ([Intel XE#873]) [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-lnl-3/igt@kms_async_flips@invalid-async-flip.html * igt@kms_async_flips@invalid-async-flip-atomic: - shard-dg2-set2: NOTRUN -> [SKIP][23] ([Intel XE#3768]) [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-dg2-466/igt@kms_async_flips@invalid-async-flip-atomic.html - shard-lnl: NOTRUN -> [SKIP][24] ([Intel XE#3768]) [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-lnl-8/igt@kms_async_flips@invalid-async-flip-atomic.html - shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#3768]) [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-bmg-4/igt@kms_async_flips@invalid-async-flip-atomic.html * igt@kms_async_flips@test-cursor-atomic: - shard-lnl: NOTRUN -> [SKIP][26] ([Intel XE#664]) [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-lnl-2/igt@kms_async_flips@test-cursor-atomic.html * igt@kms_big_fb@4-tiled-16bpp-rotate-270: - shard-lnl: NOTRUN -> [SKIP][27] ([Intel XE#1407]) +5 other tests skip [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-lnl-5/igt@kms_big_fb@4-tiled-16bpp-rotate-270.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-lnl: NOTRUN -> [SKIP][28] ([Intel XE#3658]) [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-lnl-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@linear-16bpp-rotate-90: - shard-dg2-set2: NOTRUN -> [SKIP][29] ([Intel XE#316]) +8 other tests skip [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-dg2-436/igt@kms_big_fb@linear-16bpp-rotate-90.html * igt@kms_big_fb@linear-32bpp-rotate-270: - shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#2327]) +4 other tests skip [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-bmg-7/igt@kms_big_fb@linear-32bpp-rotate-270.html * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#607]) [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-bmg-7/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html - shard-dg2-set2: NOTRUN -> [SKIP][32] ([Intel XE#607]) [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-dg2-434/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html - shard-lnl: NOTRUN -> [SKIP][33] ([Intel XE#1477]) [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-lnl-2/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-0: - shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#1124]) +16 other tests skip [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-bmg-1/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-180: - shard-dg2-set2: NOTRUN -> [SKIP][35] ([Intel XE#1124]) +24 other tests skip [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-dg2-466/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-8bpp-rotate-0: - shard-lnl: NOTRUN -> [SKIP][36] ([Intel XE#1124]) +15 other tests skip [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-lnl-5/igt@kms_big_fb@yf-tiled-8bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-addfb: - shard-dg2-set2: NOTRUN -> [SKIP][37] ([Intel XE#619]) [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-dg2-463/igt@kms_big_fb@yf-tiled-addfb.html * igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p: - shard-bmg: [PASS][38] -> [SKIP][39] ([Intel XE#2314] / [Intel XE#2894]) +1 other test skip [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-bmg-1/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-bmg-4/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html * igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p: - shard-lnl: NOTRUN -> [SKIP][40] ([Intel XE#2191]) [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-lnl-8/igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p.html * igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p: - shard-dg2-set2: NOTRUN -> [SKIP][41] ([Intel XE#2191]) +3 other tests skip [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-dg2-436/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html - shard-lnl: NOTRUN -> [SKIP][42] ([Intel XE#1512]) +1 other test skip [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-lnl-8/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html * igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p: - shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#2314] / [Intel XE#2894]) +2 other tests skip [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-bmg-4/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html * igt@kms_bw@linear-tiling-1-displays-2560x1440p: - shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#367]) +3 other tests skip [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-bmg-7/igt@kms_bw@linear-tiling-1-displays-2560x1440p.html * igt@kms_bw@linear-tiling-2-displays-1920x1080p: - shard-lnl: NOTRUN -> [SKIP][45] ([Intel XE#367]) [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-lnl-5/igt@kms_bw@linear-tiling-2-displays-1920x1080p.html * igt@kms_bw@linear-tiling-2-displays-3840x2160p: - shard-dg2-set2: NOTRUN -> [SKIP][46] ([Intel XE#367]) +6 other tests skip [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-dg2-434/igt@kms_bw@linear-tiling-2-displays-3840x2160p.html * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#2887]) +20 other tests skip [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-bmg-4/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc.html * igt@kms_ccs@bad-pixel-format-yf-tiled-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][48] ([Intel XE#455] / [Intel XE#787]) +53 other tests skip [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-dg2-463/igt@kms_ccs@bad-pixel-format-yf-tiled-ccs.html * igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][49] ([Intel XE#2907]) +4 other tests skip [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-dg2-466/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc: - shard-lnl: NOTRUN -> [SKIP][50] ([Intel XE#2887]) +22 other tests skip [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-lnl-8/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc.html * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc@pipe-b-dp-2: - shard-dg2-set2: NOTRUN -> [SKIP][51] ([Intel XE#787]) +207 other tests skip [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-dg2-432/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc@pipe-b-dp-2.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-dp-4: - shard-dg2-set2: [PASS][52] -> [INCOMPLETE][53] ([Intel XE#3862]) +1 other test incomplete [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-dg2-433/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-dp-4.html [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-dg2-466/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-d-dp-4.html * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs: - shard-bmg: NOTRUN -> [SKIP][54] ([Intel XE#3432]) [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-bmg-5/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs.html - shard-lnl: NOTRUN -> [SKIP][55] ([Intel XE#3432]) [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-lnl-3/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][56] ([Intel XE#2705] / [Intel XE#4010]) [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][57] ([Intel XE#4010]) [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-d-dp-4.html * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-2: - shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#2652] / [Intel XE#787]) +21 other tests skip [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-bmg-5/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs@pipe-c-dp-2.html * igt@kms_cdclk@mode-transition: - shard-bmg: NOTRUN -> [SKIP][59] ([Intel XE#2724]) [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-bmg-7/igt@kms_cdclk@mode-transition.html * igt@kms_cdclk@mode-transition@pipe-b-edp-1: - shard-lnl: NOTRUN -> [SKIP][60] ([Intel XE#314]) +3 other tests skip [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-lnl-6/igt@kms_cdclk@mode-transition@pipe-b-edp-1.html * igt@kms_chamelium_color@ctm-limited-range: - shard-dg2-set2: NOTRUN -> [SKIP][61] ([Intel XE#306]) +6 other tests skip [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-dg2-432/igt@kms_chamelium_color@ctm-limited-range.html * igt@kms_chamelium_color@degamma: - shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#2325]) +1 other test skip [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-bmg-4/igt@kms_chamelium_color@degamma.html - shard-lnl: NOTRUN -> [SKIP][63] ([Intel XE#306]) +2 other tests skip [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-lnl-7/igt@kms_chamelium_color@degamma.html * igt@kms_chamelium_edid@dp-edid-resolution-list: - shard-bmg: NOTRUN -> [SKIP][64] ([Intel XE#2252]) +12 other tests skip [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-bmg-5/igt@kms_chamelium_edid@dp-edid-resolution-list.html * igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats: - shard-dg2-set2: NOTRUN -> [SKIP][65] ([Intel XE#373]) +19 other tests skip [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-dg2-432/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html * igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode: - shard-lnl: NOTRUN -> [SKIP][66] ([Intel XE#373]) +15 other tests skip [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-lnl-3/igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode.html * igt@kms_content_protection@atomic: - shard-bmg: NOTRUN -> [FAIL][67] ([Intel XE#1178]) +2 other tests fail [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-bmg-1/igt@kms_content_protection@atomic.html - shard-dg2-set2: NOTRUN -> [FAIL][68] ([Intel XE#1178]) +2 other tests fail [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-dg2-466/igt@kms_content_protection@atomic.html * igt@kms_content_protection@content-type-change: - shard-bmg: NOTRUN -> [SKIP][69] ([Intel XE#2341]) +1 other test skip [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-bmg-5/igt@kms_content_protection@content-type-change.html - shard-lnl: NOTRUN -> [SKIP][70] ([Intel XE#3278]) +2 other tests skip [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-lnl-3/igt@kms_content_protection@content-type-change.html * igt@kms_content_protection@dp-mst-type-0: - shard-dg2-set2: NOTRUN -> [SKIP][71] ([Intel XE#307]) +1 other test skip [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-dg2-436/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@mei-interface: - shard-lnl: NOTRUN -> [SKIP][72] ([Intel XE#1468]) [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-lnl-4/igt@kms_content_protection@mei-interface.html * igt@kms_content_protection@uevent@pipe-a-dp-2: - shard-dg2-set2: NOTRUN -> [FAIL][73] ([Intel XE#1188]) [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-dg2-432/igt@kms_content_protection@uevent@pipe-a-dp-2.html * igt@kms_cursor_crc@cursor-offscreen-512x170: - shard-dg2-set2: NOTRUN -> [SKIP][74] ([Intel XE#308]) +4 other tests skip [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-dg2-466/igt@kms_cursor_crc@cursor-offscreen-512x170.html - shard-lnl: NOTRUN -> [SKIP][75] ([Intel XE#2321]) +3 other tests skip [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-lnl-7/igt@kms_cursor_crc@cursor-offscreen-512x170.html * igt@kms_cursor_crc@cursor-random-32x32: - shard-bmg: NOTRUN -> [SKIP][76] ([Intel XE#2320]) +6 other tests skip [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-bmg-4/igt@kms_cursor_crc@cursor-random-32x32.html * igt@kms_cursor_crc@cursor-sliding-512x512: - shard-bmg: NOTRUN -> [SKIP][77] ([Intel XE#2321]) +3 other tests skip [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-bmg-4/igt@kms_cursor_crc@cursor-sliding-512x512.html * igt@kms_cursor_crc@cursor-sliding-max-size: - shard-lnl: NOTRUN -> [SKIP][78] ([Intel XE#1424]) +5 other tests skip [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-lnl-5/igt@kms_cursor_crc@cursor-sliding-max-size.html * igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy: - shard-lnl: NOTRUN -> [SKIP][79] ([Intel XE#309]) +8 other tests skip [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-lnl-3/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic: - shard-bmg: [PASS][80] -> [SKIP][81] ([Intel XE#2291]) +2 other tests skip [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-bmg-5/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-bmg-4/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-bmg: NOTRUN -> [SKIP][82] ([Intel XE#2286]) +1 other test skip [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-bmg-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size: - shard-bmg: NOTRUN -> [SKIP][83] ([Intel XE#2291]) +1 other test skip [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-dg2-set2: NOTRUN -> [SKIP][84] ([Intel XE#323]) +2 other tests skip [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-dg2-434/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html - shard-lnl: NOTRUN -> [SKIP][85] ([Intel XE#323]) +1 other test skip [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-lnl-3/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_display_modes@mst-extended-mode-negative: - shard-bmg: NOTRUN -> [SKIP][86] ([Intel XE#2323]) [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-bmg-1/igt@kms_display_modes@mst-extended-mode-negative.html - shard-lnl: NOTRUN -> [SKIP][87] ([Intel XE#307]) [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-lnl-7/igt@kms_display_modes@mst-extended-mode-negative.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3: - shard-bmg: NOTRUN -> [SKIP][88] ([Intel XE#1340]) [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-bmg-5/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3.html * igt@kms_dp_aux_dev: - shard-dg2-set2: [PASS][89] -> [SKIP][90] ([Intel XE#3009]) [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-dg2-466/igt@kms_dp_aux_dev.html [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-dg2-464/igt@kms_dp_aux_dev.html * igt@kms_fbcon_fbt@psr-suspend: - shard-bmg: NOTRUN -> [SKIP][91] ([Intel XE#776]) [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-bmg-1/igt@kms_fbcon_fbt@psr-suspend.html - shard-dg2-set2: NOTRUN -> [SKIP][92] ([Intel XE#776]) [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-dg2-466/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_feature_discovery@display-2x: - shard-bmg: [PASS][93] -> [SKIP][94] ([Intel XE#2373]) [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-bmg-1/igt@kms_feature_discovery@display-2x.html [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-bmg-4/igt@kms_feature_discovery@display-2x.html * igt@kms_feature_discovery@display-3x: - shard-lnl: NOTRUN -> [SKIP][95] ([Intel XE#703]) [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-lnl-6/igt@kms_feature_discovery@display-3x.html - shard-bmg: NOTRUN -> [SKIP][96] ([Intel XE#2373]) [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-bmg-7/igt@kms_feature_discovery@display-3x.html - shard-dg2-set2: NOTRUN -> [SKIP][97] ([Intel XE#703]) [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-dg2-464/igt@kms_feature_discovery@display-3x.html * igt@kms_feature_discovery@psr2: - shard-dg2-set2: NOTRUN -> [SKIP][98] ([Intel XE#1135]) [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-dg2-463/igt@kms_feature_discovery@psr2.html * igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible: - shard-lnl: NOTRUN -> [SKIP][99] ([Intel XE#1421]) +6 other tests skip [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-lnl-5/igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ad-hdmi-a6-dp4: - shard-dg2-set2: [PASS][100] -> [FAIL][101] ([Intel XE#301]) +1 other test fail [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-dg2-435/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ad-hdmi-a6-dp4.html [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-dg2-463/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ad-hdmi-a6-dp4.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3: - shard-bmg: NOTRUN -> [FAIL][102] ([Intel XE#3321]) +3 other tests fail [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-bmg-7/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-hdmi-a6-dp4: - shard-dg2-set2: [PASS][103] -> [FAIL][104] ([Intel XE#301] / [Intel XE#3321]) [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-dg2-435/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-hdmi-a6-dp4.html [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-dg2-463/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-hdmi-a6-dp4.html * igt@kms_flip@2x-flip-vs-panning-vs-hang: - shard-bmg: [PASS][105] -> [SKIP][106] ([Intel XE#2316]) +2 other tests skip [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-bmg-7/igt@kms_flip@2x-flip-vs-panning-vs-hang.html [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-bmg-4/igt@kms_flip@2x-flip-vs-panning-vs-hang.html * igt@kms_flip@2x-modeset-vs-vblank-race: - shard-bmg: NOTRUN -> [SKIP][107] ([Intel XE#2316]) +2 other tests skip [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-bmg-4/igt@kms_flip@2x-modeset-vs-vblank-race.html * igt@kms_flip@2x-modeset-vs-vblank-race-interruptible: - shard-dg2-set2: [PASS][108] -> [SKIP][109] ([Intel XE#310]) [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-dg2-433/igt@kms_flip@2x-modeset-vs-vblank-race-interruptible.html [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-dg2-464/igt@kms_flip@2x-modeset-vs-vblank-race-interruptible.html * igt@kms_flip@2x-plain-flip-fb-recreate: - shard-dg2-set2: NOTRUN -> [SKIP][110] ([Intel XE#310]) +1 other test skip [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-dg2-464/igt@kms_flip@2x-plain-flip-fb-recreate.html * igt@kms_flip@flip-vs-absolute-wf_vblank: - shard-dg2-set2: NOTRUN -> [DMESG-WARN][111] ([Intel XE#1033]) +15 other tests dmesg-warn [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-dg2-433/igt@kms_flip@flip-vs-absolute-wf_vblank.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp2: - shard-dg2-set2: NOTRUN -> [FAIL][112] ([Intel XE#301]) +2 other tests fail [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-dg2-432/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-dp2.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp2: - shard-dg2-set2: NOTRUN -> [FAIL][113] ([Intel XE#301] / [Intel XE#3321]) [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-dg2-432/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp2.html * igt@kms_flip@flip-vs-panning-interruptible: - shard-bmg: [PASS][114] -> [DMESG-WARN][115] ([Intel XE#2955]) [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-bmg-4/igt@kms_flip@flip-vs-panning-interruptible.html [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-bmg-4/igt@kms_flip@flip-vs-panning-interruptible.html * igt@kms_flip@flip-vs-panning-interruptible@d-dp2: - shard-bmg: [PASS][116] -> [DMESG-WARN][117] ([Intel XE#4172]) +20 other tests dmesg-warn [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-bmg-4/igt@kms_flip@flip-vs-panning-interruptible@d-dp2.html [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-bmg-4/igt@kms_flip@flip-vs-panning-interruptible@d-dp2.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling: - shard-lnl: NOTRUN -> [SKIP][118] ([Intel XE#1401] / [Intel XE#1745]) +5 other tests skip [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-lnl-5/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][119] ([Intel XE#1401]) +5 other tests skip [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-lnl-5/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling: - shard-bmg: NOTRUN -> [SKIP][120] ([Intel XE#2293] / [Intel XE#2380]) +2 other tests skip [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-bmg-4/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling@pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][121] ([Intel XE#2293]) +2 other tests skip [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-bmg-4/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling: - shard-dg2-set2: NOTRUN -> [SKIP][122] ([Intel XE#455]) +35 other tests skip [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-dg2-434/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html * igt@kms_force_connector_basic@force-connector-state: - shard-lnl: NOTRUN -> [SKIP][123] ([Intel XE#352]) [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-lnl-7/igt@kms_force_connector_basic@force-connector-state.html * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-onoff: - shard-dg2-set2: NOTRUN -> [SKIP][124] ([Intel XE#651]) +57 other tests skip [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-dg2-432/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-blt: - shard-lnl: NOTRUN -> [SKIP][125] ([Intel XE#656]) +49 other tests skip [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-lnl-7/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@drrs-rgb565-draw-render: - shard-bmg: NOTRUN -> [SKIP][126] ([Intel XE#2311]) +34 other tests skip [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-rgb565-draw-render.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt: - shard-bmg: NOTRUN -> [SKIP][127] ([Intel XE#4141]) +14 other tests skip [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-blt: - shard-dg2-set2: [PASS][128] -> [SKIP][129] ([Intel XE#656]) +1 other test skip [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-dg2-436/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-blt.html [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-dg2-464/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff: - shard-bmg: NOTRUN -> [SKIP][130] ([Intel XE#2312]) +12 other tests skip [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-pgflip-blt: - shard-dg2-set2: NOTRUN -> [SKIP][131] ([Intel XE#656]) +10 other tests skip [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-blt: - shard-lnl: NOTRUN -> [SKIP][132] ([Intel XE#651]) +23 other tests skip [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-lnl-8/igt@kms_frontbuffer_tracking@fbcdrrs-rgb101010-draw-blt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt: - shard-bmg: NOTRUN -> [SKIP][133] ([Intel XE#2313]) +27 other tests skip [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-bmg-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg2-set2: NOTRUN -> [SKIP][134] ([Intel XE#653]) +43 other tests skip [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-dg2-435/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_getfb@getfb-reject-ccs: - shard-bmg: NOTRUN -> [SKIP][135] ([Intel XE#2502]) [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-bmg-4/igt@kms_getfb@getfb-reject-ccs.html - shard-dg2-set2: NOTRUN -> [SKIP][136] ([Intel XE#605]) [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-dg2-436/igt@kms_getfb@getfb-reject-ccs.html - shard-lnl: NOTRUN -> [SKIP][137] ([Intel XE#605]) [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-lnl-7/igt@kms_getfb@getfb-reject-ccs.html * igt@kms_hdmi_inject@inject-4k: - shard-lnl: NOTRUN -> [SKIP][138] ([Intel XE#1470]) [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-lnl-8/igt@kms_hdmi_inject@inject-4k.html * igt@kms_invalid_mode@clock-too-high: - shard-lnl: NOTRUN -> [SKIP][139] ([Intel XE#1450] / [Intel XE#2568]) [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-lnl-6/igt@kms_invalid_mode@clock-too-high.html * igt@kms_invalid_mode@clock-too-high@pipe-a-edp-1: - shard-lnl: NOTRUN -> [SKIP][140] ([Intel XE#1450]) +2 other tests skip [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-lnl-6/igt@kms_invalid_mode@clock-too-high@pipe-a-edp-1.html * igt@kms_joiner@basic-force-ultra-joiner: - shard-bmg: NOTRUN -> [SKIP][141] ([Intel XE#2934]) [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-bmg-4/igt@kms_joiner@basic-force-ultra-joiner.html - shard-lnl: NOTRUN -> [SKIP][142] ([Intel XE#2934]) [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-lnl-2/igt@kms_joiner@basic-force-ultra-joiner.html * igt@kms_joiner@invalid-modeset-ultra-joiner: - shard-dg2-set2: NOTRUN -> [SKIP][143] ([Intel XE#2927]) [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-dg2-436/igt@kms_joiner@invalid-modeset-ultra-joiner.html - shard-lnl: NOTRUN -> [SKIP][144] ([Intel XE#2927]) [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-lnl-7/igt@kms_joiner@invalid-modeset-ultra-joiner.html - shard-bmg: NOTRUN -> [SKIP][145] ([Intel XE#2927]) [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-bmg-4/igt@kms_joiner@invalid-modeset-ultra-joiner.html * igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner: - shard-bmg: NOTRUN -> [SKIP][146] ([Intel XE#4090]) [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-bmg-1/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html - shard-dg2-set2: NOTRUN -> [SKIP][147] ([Intel XE#2925]) [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-dg2-466/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-dg2-set2: NOTRUN -> [SKIP][148] ([Intel XE#356]) [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-dg2-434/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_panel_fitting@legacy: - shard-bmg: NOTRUN -> [SKIP][149] ([Intel XE#2486]) [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-bmg-5/igt@kms_panel_fitting@legacy.html * igt@kms_plane@plane-panning-bottom-right-suspend: - shard-bmg: NOTRUN -> [DMESG-WARN][150] ([Intel XE#4172]) +6 other tests dmesg-warn [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-bmg-4/igt@kms_plane@plane-panning-bottom-right-suspend.html * igt@kms_plane_cursor@primary@pipe-a-hdmi-a-6-size-256: - shard-dg2-set2: NOTRUN -> [FAIL][151] ([Intel XE#616]) +5 other tests fail [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-dg2-463/igt@kms_plane_cursor@primary@pipe-a-hdmi-a-6-size-256.html * igt@kms_plane_lowres@tiling-x: - shard-bmg: [PASS][152] -> [DMESG-WARN][153] ([Intel XE#4091]) [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-bmg-1/igt@kms_plane_lowres@tiling-x.html [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-bmg-5/igt@kms_plane_lowres@tiling-x.html * igt@kms_plane_lowres@tiling-yf: - shard-lnl: NOTRUN -> [SKIP][154] ([Intel XE#599]) [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-lnl-7/igt@kms_plane_lowres@tiling-yf.html * igt@kms_plane_multiple@tiling-yf: - shard-lnl: NOTRUN -> [SKIP][155] ([Intel XE#2493]) [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-lnl-7/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@intel-max-src-size: - shard-lnl: NOTRUN -> [SKIP][156] ([Intel XE#3307]) [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-lnl-4/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format: - shard-dg2-set2: NOTRUN -> [SKIP][157] ([Intel XE#2763] / [Intel XE#455]) +3 other tests skip [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-dg2-463/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b: - shard-dg2-set2: NOTRUN -> [SKIP][158] ([Intel XE#2763]) +5 other tests skip [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-dg2-463/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c: - shard-lnl: NOTRUN -> [SKIP][159] ([Intel XE#2763]) +3 other tests skip [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-lnl-4/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c.html * igt@kms_pm_backlight@bad-brightness: - shard-bmg: NOTRUN -> [SKIP][160] ([Intel XE#870]) [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-bmg-4/igt@kms_pm_backlight@bad-brightness.html - shard-dg2-set2: NOTRUN -> [SKIP][161] ([Intel XE#870]) +1 other test skip [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-dg2-435/igt@kms_pm_backlight@bad-brightness.html * igt@kms_pm_dc@dc3co-vpb-simulation: - shard-bmg: NOTRUN -> [SKIP][162] ([Intel XE#2391]) [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-bmg-4/igt@kms_pm_dc@dc3co-vpb-simulation.html - shard-lnl: NOTRUN -> [SKIP][163] ([Intel XE#736]) [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-lnl-2/igt@kms_pm_dc@dc3co-vpb-simulation.html * igt@kms_pm_dc@dc5-retention-flops: - shard-dg2-set2: NOTRUN -> [SKIP][164] ([Intel XE#3309]) [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-dg2-433/igt@kms_pm_dc@dc5-retention-flops.html * igt@kms_pm_dc@deep-pkgc: - shard-dg2-set2: NOTRUN -> [SKIP][165] ([Intel XE#908]) [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-dg2-432/igt@kms_pm_dc@deep-pkgc.html * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-dg2-set2: NOTRUN -> [SKIP][166] ([Intel XE#836]) [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-dg2-464/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html - shard-lnl: NOTRUN -> [SKIP][167] ([Intel XE#1439] / [Intel XE#836]) [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-lnl-4/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@kms_pm_rpm@dpms-non-lpsp: - shard-lnl: NOTRUN -> [SKIP][168] ([Intel XE#1439] / [Intel XE#3141]) [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-lnl-2/igt@kms_pm_rpm@dpms-non-lpsp.html * igt@kms_pm_rpm@system-suspend-modeset: - shard-dg2-set2: [PASS][169] -> [DMESG-WARN][170] ([Intel XE#1033] / [Intel XE#2042]) [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-dg2-463/igt@kms_pm_rpm@system-suspend-modeset.html [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-dg2-464/igt@kms_pm_rpm@system-suspend-modeset.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf: - shard-dg2-set2: NOTRUN -> [SKIP][171] ([Intel XE#1489]) +13 other tests skip [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-dg2-464/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf: - shard-lnl: NOTRUN -> [SKIP][172] ([Intel XE#2893]) +5 other tests skip [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-lnl-7/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf: - shard-bmg: NOTRUN -> [SKIP][173] ([Intel XE#1489]) +8 other tests skip [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-bmg-1/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_su@page_flip-nv12: - shard-dg2-set2: NOTRUN -> [SKIP][174] ([Intel XE#1122]) +2 other tests skip [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-dg2-433/igt@kms_psr2_su@page_flip-nv12.html - shard-lnl: NOTRUN -> [SKIP][175] ([Intel XE#1128]) [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-lnl-8/igt@kms_psr2_su@page_flip-nv12.html - shard-bmg: NOTRUN -> [SKIP][176] ([Intel XE#2387]) [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-bmg-4/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr@fbc-psr2-cursor-blt: - shard-bmg: NOTRUN -> [SKIP][177] ([Intel XE#2234] / [Intel XE#2850]) +14 other tests skip [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-bmg-4/igt@kms_psr@fbc-psr2-cursor-blt.html * igt@kms_psr@fbc-psr2-primary-render: - shard-dg2-set2: NOTRUN -> [SKIP][178] ([Intel XE#2850] / [Intel XE#929]) +27 other tests skip [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-dg2-433/igt@kms_psr@fbc-psr2-primary-render.html * igt@kms_psr@pr-cursor-plane-move: - shard-lnl: NOTRUN -> [SKIP][179] ([Intel XE#1406]) +5 other tests skip [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-lnl-8/igt@kms_psr@pr-cursor-plane-move.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-dg2-set2: NOTRUN -> [SKIP][180] ([Intel XE#2939]) [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-dg2-432/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_rotation_crc@bad-pixel-format: - shard-bmg: NOTRUN -> [SKIP][181] ([Intel XE#3414] / [Intel XE#3904]) +3 other tests skip [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-bmg-7/igt@kms_rotation_crc@bad-pixel-format.html * igt@kms_rotation_crc@bad-tiling: - shard-dg2-set2: NOTRUN -> [SKIP][182] ([Intel XE#3414]) +3 other tests skip [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-dg2-463/igt@kms_rotation_crc@bad-tiling.html * igt@kms_rotation_crc@primary-4-tiled-reflect-x-0: - shard-lnl: NOTRUN -> [SKIP][183] ([Intel XE#3414] / [Intel XE#3904]) +4 other tests skip [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-lnl-5/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-dg2-set2: NOTRUN -> [SKIP][184] ([Intel XE#1127]) [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-dg2-436/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_scaling_modes@scaling-mode-full-aspect: - shard-bmg: NOTRUN -> [SKIP][185] ([Intel XE#2413]) +1 other test skip [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-bmg-7/igt@kms_scaling_modes@scaling-mode-full-aspect.html * igt@kms_setmode@invalid-clone-exclusive-crtc: - shard-lnl: NOTRUN -> [SKIP][186] ([Intel XE#1435]) [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-lnl-6/igt@kms_setmode@invalid-clone-exclusive-crtc.html * igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1: - shard-lnl: [PASS][187] -> [FAIL][188] ([Intel XE#899]) [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-lnl-5/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-lnl-7/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html * igt@kms_vrr@flip-suspend: - shard-bmg: NOTRUN -> [SKIP][189] ([Intel XE#1499]) +1 other test skip [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-bmg-5/igt@kms_vrr@flip-suspend.html * igt@kms_vrr@negative-basic: - shard-lnl: NOTRUN -> [SKIP][190] ([Intel XE#1499]) +1 other test skip [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-lnl-2/igt@kms_vrr@negative-basic.html * igt@kms_writeback@writeback-check-output: - shard-lnl: NOTRUN -> [SKIP][191] ([Intel XE#756]) [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-lnl-2/igt@kms_writeback@writeback-check-output.html * igt@kms_writeback@writeback-pixel-formats: - shard-bmg: NOTRUN -> [SKIP][192] ([Intel XE#756]) [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-bmg-4/igt@kms_writeback@writeback-pixel-formats.html - shard-dg2-set2: NOTRUN -> [SKIP][193] ([Intel XE#756]) +2 other tests skip [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-dg2-433/igt@kms_writeback@writeback-pixel-formats.html * igt@testdisplay: - shard-dg2-set2: NOTRUN -> [DMESG-WARN][194] ([Intel XE#2705] / [Intel XE#4212]) [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-dg2-464/igt@testdisplay.html * igt@xe_compute@ccs-mode-compute-kernel: - shard-lnl: NOTRUN -> [SKIP][195] ([Intel XE#1447]) [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-lnl-4/igt@xe_compute@ccs-mode-compute-kernel.html * igt@xe_compute_preempt@compute-threadgroup-preempt@engine-drm_xe_engine_class_compute: - shard-dg2-set2: NOTRUN -> [SKIP][196] ([Intel XE#1280] / [Intel XE#455]) +1 other test skip [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-dg2-432/igt@xe_compute_preempt@compute-threadgroup-preempt@engine-drm_xe_engine_class_compute.html * igt@xe_copy_basic@mem-copy-linear-0x369: - shard-dg2-set2: NOTRUN -> [SKIP][197] ([Intel XE#1123]) +1 other test skip [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-dg2-433/igt@xe_copy_basic@mem-copy-linear-0x369.html * igt@xe_copy_basic@mem-set-linear-0x369: - shard-dg2-set2: NOTRUN -> [SKIP][198] ([Intel XE#1126]) [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-dg2-432/igt@xe_copy_basic@mem-set-linear-0x369.html * igt@xe_eudebug@basic-close: - shard-dg2-set2: NOTRUN -> [SKIP][199] ([Intel XE#2905]) +18 other tests skip [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-dg2-433/igt@xe_eudebug@basic-close.html * igt@xe_eudebug@basic-vm-bind-ufence: - shard-bmg: NOTRUN -> [SKIP][200] ([Intel XE#2905]) +11 other tests skip [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-bmg-7/igt@xe_eudebug@basic-vm-bind-ufence.html * igt@xe_eudebug@basic-vm-bind-ufence-reconnect: - shard-bmg: NOTRUN -> [SKIP][201] ([Intel XE#3889]) [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-bmg-4/igt@xe_eudebug@basic-vm-bind-ufence-reconnect.html - shard-dg2-set2: NOTRUN -> [SKIP][202] ([Intel XE#3889]) [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-dg2-436/igt@xe_eudebug@basic-vm-bind-ufence-reconnect.html - shard-lnl: NOTRUN -> [SKIP][203] ([Intel XE#3889]) [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-lnl-7/igt@xe_eudebug@basic-vm-bind-ufence-reconnect.html * igt@xe_eudebug@discovery-empty-clients: - shard-lnl: NOTRUN -> [SKIP][204] ([Intel XE#2905]) +13 other tests skip [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-lnl-7/igt@xe_eudebug@discovery-empty-clients.html * igt@xe_eudebug@discovery-race-sigint: - shard-dg2-set2: NOTRUN -> [SKIP][205] ([Intel XE#4259]) [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-dg2-463/igt@xe_eudebug@discovery-race-sigint.html * igt@xe_evict@evict-beng-large-cm: - shard-lnl: NOTRUN -> [SKIP][206] ([Intel XE#688]) +5 other tests skip [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-lnl-6/igt@xe_evict@evict-beng-large-cm.html * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-bind: - shard-dg2-set2: NOTRUN -> [SKIP][207] ([Intel XE#1392]) +3 other tests skip [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-dg2-432/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-bind.html * igt@xe_exec_basic@multigpu-no-exec-bindexecqueue: - shard-bmg: NOTRUN -> [SKIP][208] ([Intel XE#2322]) +8 other tests skip [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-bmg-1/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue.html * igt@xe_exec_basic@multigpu-no-exec-userptr: - shard-lnl: NOTRUN -> [SKIP][209] ([Intel XE#1392]) +9 other tests skip [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-lnl-3/igt@xe_exec_basic@multigpu-no-exec-userptr.html * igt@xe_exec_basic@multigpu-once-null-rebind: - shard-dg2-set2: [PASS][210] -> [SKIP][211] ([Intel XE#1392]) +3 other tests skip [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-dg2-435/igt@xe_exec_basic@multigpu-once-null-rebind.html [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-dg2-432/igt@xe_exec_basic@multigpu-once-null-rebind.html * igt@xe_exec_fault_mode@twice-invalid-fault: - shard-dg2-set2: NOTRUN -> [SKIP][212] ([Intel XE#288]) +51 other tests skip [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-dg2-433/igt@xe_exec_fault_mode@twice-invalid-fault.html * igt@xe_huc_copy@huc_copy: - shard-dg2-set2: NOTRUN -> [SKIP][213] ([Intel XE#255]) [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-dg2-466/igt@xe_huc_copy@huc_copy.html * igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit: - shard-dg2-set2: NOTRUN -> [SKIP][214] ([Intel XE#2229]) [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-dg2-433/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html * igt@xe_live_ktest@xe_mocs: - shard-lnl: NOTRUN -> [SKIP][215] ([Intel XE#1192]) [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-lnl-3/igt@xe_live_ktest@xe_mocs.html * igt@xe_mmap@small-bar: - shard-dg2-set2: NOTRUN -> [SKIP][216] ([Intel XE#512]) [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-dg2-463/igt@xe_mmap@small-bar.html - shard-lnl: NOTRUN -> [SKIP][217] ([Intel XE#512]) [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-lnl-2/igt@xe_mmap@small-bar.html * igt@xe_oa@mi-rpc: - shard-dg2-set2: NOTRUN -> [SKIP][218] ([Intel XE#2541] / [Intel XE#3573]) +13 other tests skip [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-dg2-432/igt@xe_oa@mi-rpc.html * igt@xe_oa@oa-tlb-invalidate: - shard-lnl: NOTRUN -> [SKIP][219] ([Intel XE#2248]) [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-lnl-5/igt@xe_oa@oa-tlb-invalidate.html - shard-bmg: NOTRUN -> [SKIP][220] ([Intel XE#2248]) [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-bmg-4/igt@xe_oa@oa-tlb-invalidate.html * igt@xe_pat@display-vs-wb-transient: - shard-dg2-set2: NOTRUN -> [SKIP][221] ([Intel XE#1337]) [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-dg2-463/igt@xe_pat@display-vs-wb-transient.html * igt@xe_peer2peer@read@read-gpua-vram01-gpub-system-p2p: - shard-dg2-set2: NOTRUN -> [FAIL][222] ([Intel XE#1173]) +3 other tests fail [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-dg2-436/igt@xe_peer2peer@read@read-gpua-vram01-gpub-system-p2p.html * igt@xe_peer2peer@write: - shard-bmg: NOTRUN -> [SKIP][223] ([Intel XE#2427]) [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-bmg-5/igt@xe_peer2peer@write.html - shard-lnl: NOTRUN -> [SKIP][224] ([Intel XE#1061]) [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-lnl-3/igt@xe_peer2peer@write.html * igt@xe_pm@d3cold-basic-exec: - shard-dg2-set2: NOTRUN -> [SKIP][225] ([Intel XE#2284] / [Intel XE#366]) +3 other tests skip [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-dg2-435/igt@xe_pm@d3cold-basic-exec.html - shard-lnl: NOTRUN -> [SKIP][226] ([Intel XE#2284] / [Intel XE#366]) [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-lnl-7/igt@xe_pm@d3cold-basic-exec.html * igt@xe_pm@s2idle-d3cold-basic-exec: - shard-bmg: NOTRUN -> [SKIP][227] ([Intel XE#2284]) +1 other test skip [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-bmg-1/igt@xe_pm@s2idle-d3cold-basic-exec.html * igt@xe_pm@s3-basic-exec: - shard-lnl: NOTRUN -> [SKIP][228] ([Intel XE#584]) [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-lnl-5/igt@xe_pm@s3-basic-exec.html * igt@xe_pm@s4-vm-bind-prefetch: - shard-dg2-set2: NOTRUN -> [ABORT][229] ([Intel XE#4268]) [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-dg2-432/igt@xe_pm@s4-vm-bind-prefetch.html - shard-lnl: NOTRUN -> [ABORT][230] ([Intel XE#4268]) [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-lnl-4/igt@xe_pm@s4-vm-bind-prefetch.html * igt@xe_query@multigpu-query-invalid-cs-cycles: - shard-bmg: NOTRUN -> [SKIP][231] ([Intel XE#944]) +1 other test skip [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-bmg-1/igt@xe_query@multigpu-query-invalid-cs-cycles.html * igt@xe_query@multigpu-query-uc-fw-version-guc: - shard-dg2-set2: NOTRUN -> [SKIP][232] ([Intel XE#944]) +2 other tests skip [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-dg2-432/igt@xe_query@multigpu-query-uc-fw-version-guc.html - shard-lnl: NOTRUN -> [SKIP][233] ([Intel XE#944]) +1 other test skip [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-lnl-5/igt@xe_query@multigpu-query-uc-fw-version-guc.html * igt@xe_sriov_auto_provisioning@fair-allocation: - shard-lnl: NOTRUN -> [SKIP][234] ([Intel XE#4130]) [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-lnl-2/igt@xe_sriov_auto_provisioning@fair-allocation.html - shard-bmg: NOTRUN -> [SKIP][235] ([Intel XE#4130]) [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-bmg-7/igt@xe_sriov_auto_provisioning@fair-allocation.html * igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling: - shard-dg2-set2: NOTRUN -> [SKIP][236] ([Intel XE#4130]) +1 other test skip [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-dg2-463/igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling.html * igt@xe_sriov_flr@flr-twice: - shard-dg2-set2: NOTRUN -> [SKIP][237] ([Intel XE#4273]) [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-dg2-433/igt@xe_sriov_flr@flr-twice.html * igt@xe_sriov_flr@flr-vf1-clear: - shard-dg2-set2: NOTRUN -> [SKIP][238] ([Intel XE#3342]) [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-dg2-436/igt@xe_sriov_flr@flr-vf1-clear.html #### Possible fixes #### * igt@kms_async_flips@async-flip-with-page-flip-events-atomic: - shard-lnl: [FAIL][239] ([Intel XE#3719] / [Intel XE#911]) -> [PASS][240] +3 other tests pass [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-lnl-2/igt@kms_async_flips@async-flip-with-page-flip-events-atomic.html [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-lnl-3/igt@kms_async_flips@async-flip-with-page-flip-events-atomic.html * igt@kms_async_flips@crc@pipe-d-hdmi-a-3: - shard-bmg: [DMESG-WARN][241] ([Intel XE#4172]) -> [PASS][242] +42 other tests pass [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-bmg-5/igt@kms_async_flips@crc@pipe-d-hdmi-a-3.html [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-bmg-1/igt@kms_async_flips@crc@pipe-d-hdmi-a-3.html * igt@kms_atomic_transition@modeset-transition-nonblocking-fencing: - shard-dg2-set2: [DMESG-WARN][243] ([Intel XE#1033]) -> [PASS][244] +51 other tests pass [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-dg2-433/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing.html [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-dg2-432/igt@kms_atomic_transition@modeset-transition-nonblocking-fencing.html * igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p: - shard-dg2-set2: [SKIP][245] ([Intel XE#2191]) -> [PASS][246] [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-dg2-464/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-dg2-435/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html * igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p: - shard-bmg: [SKIP][247] ([Intel XE#2314] / [Intel XE#2894]) -> [PASS][248] +1 other test pass [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-bmg-7/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic: - shard-dg2-set2: [SKIP][249] ([Intel XE#309]) -> [PASS][250] +2 other tests pass [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-dg2-464/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-dg2-432/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html * igt@kms_cursor_legacy@cursorb-vs-flipa-legacy: - shard-bmg: [SKIP][251] ([Intel XE#2291]) -> [PASS][252] +3 other tests pass [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-bmg-7/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html * igt@kms_dp_linktrain_fallback@dp-fallback: - shard-dg2-set2: [SKIP][253] -> [PASS][254] [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-dg2-464/igt@kms_dp_linktrain_fallback@dp-fallback.html [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-dg2-432/igt@kms_dp_linktrain_fallback@dp-fallback.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-dg2-set2: [DMESG-FAIL][255] ([Intel XE#1033]) -> [PASS][256] [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-dg2-463/igt@kms_fbcon_fbt@fbc-suspend.html [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-dg2-463/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_flip@2x-dpms-vs-vblank-race-interruptible: - shard-bmg: [DMESG-WARN][257] ([Intel XE#2955]) -> [PASS][258] [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-bmg-5/igt@kms_flip@2x-dpms-vs-vblank-race-interruptible.html [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-bmg-7/igt@kms_flip@2x-dpms-vs-vblank-race-interruptible.html * igt@kms_flip@2x-nonexisting-fb: - shard-bmg: [SKIP][259] ([Intel XE#2316]) -> [PASS][260] +5 other tests pass [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-bmg-6/igt@kms_flip@2x-nonexisting-fb.html [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-bmg-7/igt@kms_flip@2x-nonexisting-fb.html * igt@kms_flip@2x-plain-flip-interruptible: - shard-dg2-set2: [SKIP][261] ([Intel XE#310]) -> [PASS][262] +1 other test pass [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-dg2-464/igt@kms_flip@2x-plain-flip-interruptible.html [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-dg2-466/igt@kms_flip@2x-plain-flip-interruptible.html * igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset: - shard-bmg: [DMESG-WARN][263] -> [PASS][264] [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-bmg-1/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-bmg-5/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html - shard-dg2-set2: [DMESG-WARN][265] -> [PASS][266] [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-dg2-433/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-dg2-432/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html * igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible: - shard-lnl: [FAIL][267] ([Intel XE#3149] / [Intel XE#886]) -> [PASS][268] [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-lnl-2/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-lnl-4/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html * igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@c-edp1: - shard-lnl: [FAIL][269] ([Intel XE#886]) -> [PASS][270] +2 other tests pass [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-lnl-2/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@c-edp1.html [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-lnl-4/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@c-edp1.html * igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a6: - shard-dg2-set2: [FAIL][271] ([Intel XE#301]) -> [PASS][272] [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-dg2-436/igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a6.html [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-dg2-436/igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a6.html * igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a3: - shard-bmg: [FAIL][273] ([Intel XE#3321]) -> [PASS][274] +1 other test pass [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-bmg-6/igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a3.html [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-bmg-7/igt@kms_flip@flip-vs-expired-vblank@c-hdmi-a3.html * igt@kms_flip@flip-vs-suspend-interruptible@c-dp2: - shard-bmg: [INCOMPLETE][275] ([Intel XE#2049] / [Intel XE#2597]) -> [PASS][276] [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-bmg-4/igt@kms_flip@flip-vs-suspend-interruptible@c-dp2.html [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-bmg-5/igt@kms_flip@flip-vs-suspend-interruptible@c-dp2.html * igt@kms_frontbuffer_tracking@fbc-2p-rte: - shard-dg2-set2: [SKIP][277] ([Intel XE#656]) -> [PASS][278] [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-dg2-464/igt@kms_frontbuffer_tracking@fbc-2p-rte.html [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-dg2-432/igt@kms_frontbuffer_tracking@fbc-2p-rte.html * igt@kms_hdr@invalid-hdr: - shard-dg2-set2: [SKIP][279] ([Intel XE#455]) -> [PASS][280] +1 other test pass [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-dg2-436/igt@kms_hdr@invalid-hdr.html [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-dg2-463/igt@kms_hdr@invalid-hdr.html - shard-bmg: [SKIP][281] ([Intel XE#1503]) -> [PASS][282] [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-bmg-6/igt@kms_hdr@invalid-hdr.html [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-bmg-7/igt@kms_hdr@invalid-hdr.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format: - shard-dg2-set2: [DMESG-WARN][283] ([Intel XE#1033] / [Intel XE#2566]) -> [PASS][284] [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-dg2-434/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format.html [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-dg2-435/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format.html * igt@kms_pm_dc@dc5-dpms: - shard-lnl: [FAIL][285] ([Intel XE#718]) -> [PASS][286] [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-lnl-8/igt@kms_pm_dc@dc5-dpms.html [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-lnl-7/igt@kms_pm_dc@dc5-dpms.html * igt@kms_vrr@flip-basic: - shard-lnl: [FAIL][287] ([Intel XE#1522]) -> [PASS][288] +9 other tests pass [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-lnl-2/igt@kms_vrr@flip-basic.html [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-lnl-7/igt@kms_vrr@flip-basic.html * igt@xe_exec_basic@twice-null-defer-bind: - shard-dg2-set2: [DMESG-WARN][289] ([Intel XE#4113]) -> [PASS][290] +1 other test pass [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-dg2-433/igt@xe_exec_basic@twice-null-defer-bind.html [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-dg2-466/igt@xe_exec_basic@twice-null-defer-bind.html * igt@xe_pm@s3-mocs: - shard-dg2-set2: [DMESG-WARN][291] ([Intel XE#1033] / [Intel XE#569]) -> [PASS][292] [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-dg2-466/igt@xe_pm@s3-mocs.html [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-dg2-432/igt@xe_pm@s3-mocs.html * igt@xe_pm@s3-vm-bind-userptr: - shard-bmg: [DMESG-WARN][293] ([Intel XE#4172] / [Intel XE#569]) -> [PASS][294] +1 other test pass [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-bmg-7/igt@xe_pm@s3-vm-bind-userptr.html [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-bmg-7/igt@xe_pm@s3-vm-bind-userptr.html #### Warnings #### * igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-6: - shard-dg2-set2: [SKIP][295] ([Intel XE#787]) -> [SKIP][296] ([Intel XE#455] / [Intel XE#787]) +1 other test skip [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-dg2-433/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-6.html [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-dg2-464/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-6.html * igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-6: - shard-dg2-set2: [SKIP][297] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][298] ([Intel XE#787]) +1 other test skip [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-dg2-464/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-6.html [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-dg2-434/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-6.html * igt@kms_content_protection@legacy: - shard-dg2-set2: [SKIP][299] ([Intel XE#455]) -> [FAIL][300] ([Intel XE#1178]) [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-dg2-464/igt@kms_content_protection@legacy.html [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-dg2-436/igt@kms_content_protection@legacy.html * igt@kms_content_protection@lic-type-0@pipe-a-dp-2: - shard-bmg: [DMESG-FAIL][301] ([Intel XE#4172]) -> [FAIL][302] ([Intel XE#1178]) +1 other test fail [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-bmg-1/igt@kms_content_protection@lic-type-0@pipe-a-dp-2.html [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-bmg-7/igt@kms_content_protection@lic-type-0@pipe-a-dp-2.html * igt@kms_content_protection@lic-type-0@pipe-a-dp-4: - shard-dg2-set2: [DMESG-FAIL][303] ([Intel XE#1033]) -> [FAIL][304] ([Intel XE#3304]) [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-dg2-433/igt@kms_content_protection@lic-type-0@pipe-a-dp-4.html [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-dg2-463/igt@kms_content_protection@lic-type-0@pipe-a-dp-4.html * igt@kms_content_protection@srm: - shard-bmg: [SKIP][305] ([Intel XE#2341]) -> [FAIL][306] ([Intel XE#1178]) [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-bmg-6/igt@kms_content_protection@srm.html [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-bmg-1/igt@kms_content_protection@srm.html * igt@kms_content_protection@srm@pipe-a-dp-4: - shard-dg2-set2: [DMESG-FAIL][307] ([Intel XE#1033]) -> [FAIL][308] ([Intel XE#1178]) +2 other tests fail [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-dg2-434/igt@kms_content_protection@srm@pipe-a-dp-4.html [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-dg2-463/igt@kms_content_protection@srm@pipe-a-dp-4.html * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy: - shard-dg2-set2: [SKIP][309] ([Intel XE#309]) -> [DMESG-WARN][310] ([Intel XE#1033]) [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-dg2-464/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-dg2-434/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size: - shard-bmg: [DMESG-WARN][311] ([Intel XE#4172]) -> [SKIP][312] ([Intel XE#2291]) [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html * igt@kms_flip@2x-flip-vs-expired-vblank: - shard-bmg: [DMESG-FAIL][313] ([Intel XE#4172]) -> [SKIP][314] ([Intel XE#2316]) [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-bmg-5/igt@kms_flip@2x-flip-vs-expired-vblank.html [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-bmg-4/igt@kms_flip@2x-flip-vs-expired-vblank.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible: - shard-bmg: [SKIP][315] ([Intel XE#2316]) -> [FAIL][316] ([Intel XE#3321]) [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-bmg-4/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-bmg-7/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html * igt@kms_flip@2x-flip-vs-wf_vblank-interruptible: - shard-bmg: [DMESG-WARN][317] ([Intel XE#4172]) -> [SKIP][318] ([Intel XE#2316]) +1 other test skip [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-bmg-1/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-bmg-4/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html * igt@kms_flip@flip-vs-suspend-interruptible: - shard-bmg: [INCOMPLETE][319] ([Intel XE#2049] / [Intel XE#2597]) -> [DMESG-WARN][320] ([Intel XE#2955]) [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-bmg-4/igt@kms_flip@flip-vs-suspend-interruptible.html [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-bmg-5/igt@kms_flip@flip-vs-suspend-interruptible.html - shard-dg2-set2: [INCOMPLETE][321] ([Intel XE#2049] / [Intel XE#2597]) -> [DMESG-WARN][322] ([Intel XE#2955]) [321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-dg2-435/igt@kms_flip@flip-vs-suspend-interruptible.html [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-dg2-435/igt@kms_flip@flip-vs-suspend-interruptible.html * igt@kms_flip@flip-vs-suspend-interruptible@d-dp4: - shard-dg2-set2: [INCOMPLETE][323] ([Intel XE#2049] / [Intel XE#2597]) -> [DMESG-WARN][324] ([Intel XE#1033]) [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-dg2-435/igt@kms_flip@flip-vs-suspend-interruptible@d-dp4.html [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-dg2-435/igt@kms_flip@flip-vs-suspend-interruptible@d-dp4.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-bmg: [SKIP][325] ([Intel XE#2312]) -> [SKIP][326] ([Intel XE#2311]) +16 other tests skip [325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen: - shard-dg2-set2: [SKIP][327] ([Intel XE#656]) -> [SKIP][328] ([Intel XE#651]) +7 other tests skip [327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-dg2-464/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen.html [328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-plflip-blt: - shard-bmg: [SKIP][329] ([Intel XE#4141]) -> [SKIP][330] ([Intel XE#2312]) [329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-plflip-blt.html [330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen: - shard-bmg: [SKIP][331] ([Intel XE#2312]) -> [SKIP][332] ([Intel XE#4141]) +3 other tests skip [331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html [332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc: - shard-bmg: [SKIP][333] ([Intel XE#2311]) -> [SKIP][334] ([Intel XE#2312]) +9 other tests skip [333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html [334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-mmap-wc: - shard-dg2-set2: [SKIP][335] ([Intel XE#651]) -> [SKIP][336] ([Intel XE#656]) +6 other tests skip [335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-mmap-wc.html [336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt: - shard-bmg: [SKIP][337] ([Intel XE#2313]) -> [SKIP][338] ([Intel XE#2312]) +13 other tests skip [337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html [338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt: - shard-bmg: [SKIP][339] ([Intel XE#2312]) -> [SKIP][340] ([Intel XE#2313]) +11 other tests skip [339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html [340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-pgflip-blt: - shard-dg2-set2: [SKIP][341] ([Intel XE#653]) -> [SKIP][342] ([Intel XE#656]) +6 other tests skip [341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-dg2-436/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-pgflip-blt.html [342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-dg2-464/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc: - shard-dg2-set2: [SKIP][343] ([Intel XE#656]) -> [SKIP][344] ([Intel XE#653]) +5 other tests skip [343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-dg2-464/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html [344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_tiled_display@basic-test-pattern: - shard-bmg: [FAIL][345] ([Intel XE#1729]) -> [SKIP][346] ([Intel XE#2426]) [345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern.html [346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-bmg-5/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-dg2-set2: [SKIP][347] ([Intel XE#362]) -> [SKIP][348] ([Intel XE#1500]) [347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-dg2-464/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html [348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-dg2-434/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@xe_pm@s4-basic-exec: - shard-dg2-set2: [ABORT][349] ([Intel XE#4268]) -> [ABORT][350] ([Intel XE#1033] / [Intel XE#4268]) [349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-dg2-464/igt@xe_pm@s4-basic-exec.html [350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-dg2-434/igt@xe_pm@s4-basic-exec.html * igt@xe_pm@s4-vm-bind-prefetch: - shard-bmg: [ABORT][351] ([Intel XE#4172] / [Intel XE#4268]) -> [ABORT][352] ([Intel XE#4268]) +1 other test abort [351]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-bmg-5/igt@xe_pm@s4-vm-bind-prefetch.html [352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/shard-bmg-4/igt@xe_pm@s4-vm-bind-prefetch.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [Intel XE#1033]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1033 [Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061 [Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122 [Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123 [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126 [Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127 [Intel XE#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128 [Intel XE#1135]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1135 [Intel XE#1173]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1173 [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178 [Intel XE#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188 [Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192 [Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280 [Intel XE#1337]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1337 [Intel XE#1340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1340 [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392 [Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401 [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406 [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407 [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421 [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424 [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435 [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439 [Intel XE#1447]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1447 [Intel XE#1450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1450 [Intel XE#1468]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1468 [Intel XE#1470]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1470 [Intel XE#1477]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1477 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499 [Intel XE#1500]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1500 [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503 [Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512 [Intel XE#1522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1522 [Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729 [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745 [Intel XE#2042]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2042 [Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049 [Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191 [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248 [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252 [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284 [Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286 [Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291 [Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293 [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 [Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312 [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313 [Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314 [Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316 [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320 [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321 [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322 [Intel XE#2323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2323 [Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325 [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327 [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341 [Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373 [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380 [Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387 [Intel XE#2391]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2391 [Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413 [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426 [Intel XE#2427]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2427 [Intel XE#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486 [Intel XE#2493]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2493 [Intel XE#2502]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2502 [Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541 [Intel XE#255]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/255 [Intel XE#2566]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2566 [Intel XE#2568]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2568 [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597 [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652 [Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705 [Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724 [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288 [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893 [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894 [Intel XE#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905 [Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907 [Intel XE#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925 [Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927 [Intel XE#2934]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2934 [Intel XE#2939]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2939 [Intel XE#2955]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2955 [Intel XE#3009]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3009 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306 [Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307 [Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308 [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309 [Intel XE#310]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/310 [Intel XE#314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/314 [Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141 [Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149 [Intel XE#3157]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3157 [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316 [Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323 [Intel XE#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278 [Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304 [Intel XE#3307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3307 [Intel XE#3309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309 [Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321 [Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342 [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414 [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432 [Intel XE#352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/352 [Intel XE#356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/356 [Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573 [Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362 [Intel XE#3658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3658 [Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366 [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367 [Intel XE#3719]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3719 [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373 [Intel XE#3767]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3767 [Intel XE#3768]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3768 [Intel XE#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862 [Intel XE#3889]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3889 [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904 [Intel XE#3914]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3914 [Intel XE#4010]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4010 [Intel XE#4090]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4090 [Intel XE#4091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4091 [Intel XE#4113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4113 [Intel XE#4130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130 [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141 [Intel XE#4172]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4172 [Intel XE#4212]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4212 [Intel XE#4259]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4259 [Intel XE#4268]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4268 [Intel XE#4273]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4273 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/512 [Intel XE#569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/569 [Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584 [Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599 [Intel XE#605]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/605 [Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607 [Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616 [Intel XE#619]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/619 [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651 [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653 [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656 [Intel XE#664]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/664 [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/703 [Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718 [Intel XE#736]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/736 [Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756 [Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776 [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787 [Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836 [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870 [Intel XE#873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/873 [Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886 [Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899 [Intel XE#908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/908 [Intel XE#911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/911 [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 Build changes ------------- * IGT: IGT_8229 -> IGTPW_12585 * Linux: xe-2652-b9696aa14a67620661572e94f4141df2a4b6b5cd -> xe-2656-1be945721fec4f48df1fb728863be1b9a594b571 IGTPW_12585: 70941eb9110c881f91f13f1ff46e6d8cb4fb0965 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8229: 8229 xe-2652-b9696aa14a67620661572e94f4141df2a4b6b5cd: b9696aa14a67620661572e94f4141df2a4b6b5cd xe-2656-1be945721fec4f48df1fb728863be1b9a594b571: 1be945721fec4f48df1fb728863be1b9a594b571 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12585/index.html [-- Attachment #2: Type: text/html, Size: 111599 bytes --] ^ permalink raw reply [flat|nested] 11+ messages in thread
* [i-g-t 1/4] lib/xe: Fix a comment error @ 2025-02-13 15:40 Oak Zeng 2025-02-13 15:40 ` [i-g-t 3/4] tests/intel/xe_vm: Exclude invalid_flags tests from LNL and BMG Oak Zeng 0 siblings, 1 reply; 11+ messages in thread From: Oak Zeng @ 2025-02-13 15:40 UTC (permalink / raw) To: igt-dev; +Cc: Thomas.Hellstrom, matthew.brost The timeout value of __xe_wait_ufence returns the remaining time, not elapsed time. Fix it. Signed-off-by: Oak Zeng <oak.zeng@intel.com> --- lib/xe/xe_ioctl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/xe/xe_ioctl.c b/lib/xe/xe_ioctl.c index 6d8388918..028102aa2 100644 --- a/lib/xe/xe_ioctl.c +++ b/lib/xe/xe_ioctl.c @@ -496,7 +496,7 @@ void xe_exec_wait(int fd, uint32_t exec_queue, uint64_t addr) * * Function compares @value with memory pointed by @addr until they are equal. * - * Returns (in @timeout), the elapsed time in nanoseconds if user fence was + * Returns (in @timeout), the remaining time in nanoseconds if user fence was * signalled. Returns 0 on success, -errno of ioctl on error. */ int __xe_wait_ufence(int fd, uint64_t *addr, uint64_t value, -- 2.26.3 ^ permalink raw reply related [flat|nested] 11+ messages in thread
* [i-g-t 3/4] tests/intel/xe_vm: Exclude invalid_flags tests from LNL and BMG 2025-02-13 15:40 [i-g-t 1/4] " Oak Zeng @ 2025-02-13 15:40 ` Oak Zeng 0 siblings, 0 replies; 11+ messages in thread From: Oak Zeng @ 2025-02-13 15:40 UTC (permalink / raw) To: igt-dev; +Cc: Thomas.Hellstrom, matthew.brost Due to a fix of out of bound prefetch issue, we now allow scratch page coexist with fault mode on LNL and BMG, thus exclude those tests on such HW. Signed-off-by: Oak Zeng <oak.zeng@intel.com> --- tests/intel/xe_vm.c | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) diff --git a/tests/intel/xe_vm.c b/tests/intel/xe_vm.c index 0730dd3d3..3b74717a3 100644 --- a/tests/intel/xe_vm.c +++ b/tests/intel/xe_vm.c @@ -2349,6 +2349,7 @@ igt_main struct drm_xe_engine_class_instance *hwe, *hwe_non_copy = NULL; uint64_t bind_size; int fd; + uint16_t dev_id; const struct section { const char *name; int bo_n_pages; @@ -2444,8 +2445,12 @@ igt_main const struct vm_create_section { const char *name; __u32 flags; - } xe_vm_create_invalid_flags[] = { + } xe_vm_create_invalid_flags1[] = { { "xe_vm_create_fault", DRM_XE_VM_CREATE_FLAG_FAULT_MODE }, + { } + }; + + const struct vm_create_section xe_vm_create_invalid_flags2[] = { { "xe_vm_create_scratch_fault", DRM_XE_VM_CREATE_FLAG_SCRATCH_PAGE | DRM_XE_VM_CREATE_FLAG_FAULT_MODE }, @@ -2458,6 +2463,7 @@ igt_main igt_fixture { fd = drm_open_driver(DRIVER_XE); + dev_id = intel_get_drm_devid(fd); xe_for_each_engine(fd, hwe) if (hwe->engine_class != DRM_XE_ENGINE_CLASS_COPY) { @@ -2715,11 +2721,19 @@ igt_main } } - for (const struct vm_create_section *s = xe_vm_create_invalid_flags; s->name; s++) { + for (const struct vm_create_section *s = xe_vm_create_invalid_flags1; s->name; s++) { igt_subtest_f("invalid-flag-%s", s->name) invalid_flag(fd, s->flags); } + for (const struct vm_create_section *s = xe_vm_create_invalid_flags2; s->name; s++) { + igt_subtest_f("invalid-flag-%s", s->name) { + igt_skip_on_f(IS_LUNARLAKE(dev_id) || IS_BATTLEMAGE(dev_id), + "Skip test on this platform\n"); + invalid_flag(fd, s->flags); + } + } + igt_subtest("invalid-extensions") invalid_extensions(fd); -- 2.26.3 ^ permalink raw reply related [flat|nested] 11+ messages in thread
* [i-g-t 1/4] lib/xe: Fix a comment error @ 2025-02-13 22:27 Oak Zeng 2025-02-13 22:27 ` [i-g-t 3/4] tests/intel/xe_vm: Exclude invalid_flags tests from LNL and BMG Oak Zeng 0 siblings, 1 reply; 11+ messages in thread From: Oak Zeng @ 2025-02-13 22:27 UTC (permalink / raw) To: igt-dev; +Cc: Thomas.Hellstrom, matthew.brost The timeout value of __xe_wait_ufence returns the remaining time, not elapsed time. Fix it. Signed-off-by: Oak Zeng <oak.zeng@intel.com> --- lib/xe/xe_ioctl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/xe/xe_ioctl.c b/lib/xe/xe_ioctl.c index 6d8388918..028102aa2 100644 --- a/lib/xe/xe_ioctl.c +++ b/lib/xe/xe_ioctl.c @@ -496,7 +496,7 @@ void xe_exec_wait(int fd, uint32_t exec_queue, uint64_t addr) * * Function compares @value with memory pointed by @addr until they are equal. * - * Returns (in @timeout), the elapsed time in nanoseconds if user fence was + * Returns (in @timeout), the remaining time in nanoseconds if user fence was * signalled. Returns 0 on success, -errno of ioctl on error. */ int __xe_wait_ufence(int fd, uint64_t *addr, uint64_t value, -- 2.26.3 ^ permalink raw reply related [flat|nested] 11+ messages in thread
* [i-g-t 3/4] tests/intel/xe_vm: Exclude invalid_flags tests from LNL and BMG 2025-02-13 22:27 [i-g-t 1/4] lib/xe: Fix a comment error Oak Zeng @ 2025-02-13 22:27 ` Oak Zeng 0 siblings, 0 replies; 11+ messages in thread From: Oak Zeng @ 2025-02-13 22:27 UTC (permalink / raw) To: igt-dev; +Cc: Thomas.Hellstrom, matthew.brost Due to a fix of out of bound prefetch issue, we now allow scratch page coexist with fault mode on LNL and BMG, thus exclude those tests on such HW. Signed-off-by: Oak Zeng <oak.zeng@intel.com> --- tests/intel/xe_vm.c | 47 ++++++++++++++++++++++++++++++--------------- 1 file changed, 32 insertions(+), 15 deletions(-) diff --git a/tests/intel/xe_vm.c b/tests/intel/xe_vm.c index 0730dd3d3..834e0afd7 100644 --- a/tests/intel/xe_vm.c +++ b/tests/intel/xe_vm.c @@ -2349,6 +2349,7 @@ igt_main struct drm_xe_engine_class_instance *hwe, *hwe_non_copy = NULL; uint64_t bind_size; int fd; + uint16_t dev_id; const struct section { const char *name; int bo_n_pages; @@ -2441,23 +2442,28 @@ igt_main { NULL }, }; - const struct vm_create_section { - const char *name; - __u32 flags; - } xe_vm_create_invalid_flags[] = { - { "xe_vm_create_fault", DRM_XE_VM_CREATE_FLAG_FAULT_MODE }, - { "xe_vm_create_scratch_fault", - DRM_XE_VM_CREATE_FLAG_SCRATCH_PAGE | - DRM_XE_VM_CREATE_FLAG_FAULT_MODE }, - { "xe_vm_create_scratch_fault_lr", - ~(DRM_XE_VM_CREATE_FLAG_LR_MODE | - DRM_XE_VM_CREATE_FLAG_SCRATCH_PAGE | - DRM_XE_VM_CREATE_FLAG_FAULT_MODE) }, - { } - }; + const struct vm_create_section { + const char *name; + __u32 flags; + } xe_vm_create_invalid_flags1[] = { + { "xe_vm_create_fault", DRM_XE_VM_CREATE_FLAG_FAULT_MODE }, + { } + }; + + const struct vm_create_section xe_vm_create_invalid_flags2[] = { + { "xe_vm_create_scratch_fault", + DRM_XE_VM_CREATE_FLAG_SCRATCH_PAGE | + DRM_XE_VM_CREATE_FLAG_FAULT_MODE }, + { "xe_vm_create_scratch_fault_lr", + ~(DRM_XE_VM_CREATE_FLAG_LR_MODE | + DRM_XE_VM_CREATE_FLAG_SCRATCH_PAGE | + DRM_XE_VM_CREATE_FLAG_FAULT_MODE) }, + { } + }; igt_fixture { fd = drm_open_driver(DRIVER_XE); + dev_id = intel_get_drm_devid(fd); xe_for_each_engine(fd, hwe) if (hwe->engine_class != DRM_XE_ENGINE_CLASS_COPY) { @@ -2715,11 +2721,22 @@ igt_main } } - for (const struct vm_create_section *s = xe_vm_create_invalid_flags; s->name; s++) { + for (const struct vm_create_section *s = xe_vm_create_invalid_flags1; + s->name; s++) { igt_subtest_f("invalid-flag-%s", s->name) invalid_flag(fd, s->flags); } + for (const struct vm_create_section *s = xe_vm_create_invalid_flags2; + s->name; s++) { + igt_subtest_f("invalid-flag-%s", s->name) { + igt_skip_on_f(IS_LUNARLAKE(dev_id) || + IS_BATTLEMAGE(dev_id), + "Skip test on this platform\n"); + invalid_flag(fd, s->flags); + } + } + igt_subtest("invalid-extensions") invalid_extensions(fd); -- 2.26.3 ^ permalink raw reply related [flat|nested] 11+ messages in thread
end of thread, other threads:[~2025-02-13 22:11 UTC | newest] Thread overview: 11+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2025-02-13 2:19 [i-g-t 1/4] lib/xe: Fix a comment error Oak Zeng 2025-02-13 2:19 ` [i-g-t 2/4] lib/xe/xe_util: Introduce helper functions for buffer creation and command submission etc Oak Zeng 2025-02-13 2:19 ` [i-g-t 3/4] tests/intel/xe_vm: Exclude invalid_flags tests from LNL and BMG Oak Zeng 2025-02-13 2:19 ` [i-g-t 4/4] tests/intel/xe_exec_fault_mode: Test scratch page under fault mode Oak Zeng 2025-02-13 3:03 ` ✗ GitLab.Pipeline: warning for series starting with [i-g-t,1/4] lib/xe: Fix a comment error Patchwork 2025-02-13 3:35 ` ✓ i915.CI.BAT: success " Patchwork 2025-02-13 3:56 ` ✓ Xe.CI.BAT: " Patchwork 2025-02-13 13:26 ` ✗ i915.CI.Full: failure " Patchwork 2025-02-13 17:47 ` ✗ Xe.CI.Full: " Patchwork -- strict thread matches above, loose matches on Subject: below -- 2025-02-13 15:40 [i-g-t 1/4] " Oak Zeng 2025-02-13 15:40 ` [i-g-t 3/4] tests/intel/xe_vm: Exclude invalid_flags tests from LNL and BMG Oak Zeng 2025-02-13 22:27 [i-g-t 1/4] lib/xe: Fix a comment error Oak Zeng 2025-02-13 22:27 ` [i-g-t 3/4] tests/intel/xe_vm: Exclude invalid_flags tests from LNL and BMG Oak Zeng
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox