* [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 2/4] lib/xe/xe_util: Introduce helper functions Oak Zeng
` (7 more replies)
0 siblings, 8 replies; 12+ 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] 12+ messages in thread* [i-g-t 2/4] lib/xe/xe_util: Introduce helper functions 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 2025-02-14 11:35 ` Kamil Konieczny 2025-02-13 22:27 ` [i-g-t 3/4] tests/intel/xe_vm: Exclude invalid_flags tests from LNL and BMG Oak Zeng ` (6 subsequent siblings) 7 siblings, 1 reply; 12+ messages in thread From: Oak Zeng @ 2025-02-13 22:27 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, destruction and command submission etc. With those helpers, writing a xe igt test will be much easier, which will be showed in a coming example. 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 | 201 +++++++++++++++++++++++++++++++++++++++++++++++ lib/xe/xe_util.h | 33 ++++++++ 2 files changed, 234 insertions(+) diff --git a/lib/xe/xe_util.c b/lib/xe/xe_util.c index 06b378ce0..b4215f273 100644 --- a/lib/xe/xe_util.c +++ b/lib/xe/xe_util.c @@ -13,6 +13,207 @@ #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; + int ret; + + 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); + ret = __xe_wait_ufence(cmdbuf->fd, xe_cmdbuf_exec_ufence_cpuva(cmdbuf), + USER_FENCE_VALUE, cmdbuf->exec_queue, &timeout); + /* Reset the fence so next fence wait won't return immediately */ + memset(xe_cmdbuf_exec_ufence_cpuva(cmdbuf), 0, UFENCE_LENGTH); + return ret; +} + +/** + * 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 - UFENCE_LENGTH; +} + +/** + * 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 - UFENCE_LENGTH; +} + 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..54f25619f 100644 --- a/lib/xe/xe_util.h +++ b/lib/xe/xe_util.h @@ -14,6 +14,39 @@ #include "xe_query.h" +#define USER_FENCE_VALUE 0xdeadbeefdeadbeefull +#define PAGE_ALIGN_UFENCE 4096 +#define UFENCE_LENGTH 8 + +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) #define XE_IS_VRAM_MEMORY_REGION(fd, region) \ -- 2.26.3 ^ permalink raw reply related [flat|nested] 12+ messages in thread
* Re: [i-g-t 2/4] lib/xe/xe_util: Introduce helper functions 2025-02-13 22:27 ` [i-g-t 2/4] lib/xe/xe_util: Introduce helper functions Oak Zeng @ 2025-02-14 11:35 ` Kamil Konieczny 0 siblings, 0 replies; 12+ messages in thread From: Kamil Konieczny @ 2025-02-14 11:35 UTC (permalink / raw) To: Oak Zeng; +Cc: igt-dev, Thomas.Hellstrom, matthew.brost Hi Oak, On 2025-02-13 at 17:27:03 -0500, Oak Zeng wrote: > From: Bommu Krishnaiah <krishnaiah.bommu@intel.com> > > Introduce helper functions for buffer creation, binding, > destruction and command submission etc. With those helpers, > writing a xe igt test will be much easier, which will be > showed in a coming example. > > 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 | 201 +++++++++++++++++++++++++++++++++++++++++++++++ > lib/xe/xe_util.h | 33 ++++++++ > 2 files changed, 234 insertions(+) Please fix compilation error on 32-bit platforms: ../lib/xe/xe_util.c:81:15: error: cast from pointer to integer of different size [-Werror=pointer-to-int-cast] sync->addr = (uint64_t)buffer->bind_ufence; I would suggest using from_user_pointer() function instead of integer casts. Also I have few more nits, see below. One more thing please use checkpatch.pl and correct few findings, you could ignore line too long. Also look into CONTRIBUTING.md for few helpfull options. > > diff --git a/lib/xe/xe_util.c b/lib/xe/xe_util.c > index 06b378ce0..b4215f273 100644 > --- a/lib/xe/xe_util.c > +++ b/lib/xe/xe_util.c > @@ -13,6 +13,207 @@ > #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; > + int ret; > + > + 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); > + ret = __xe_wait_ufence(cmdbuf->fd, xe_cmdbuf_exec_ufence_cpuva(cmdbuf), > + USER_FENCE_VALUE, cmdbuf->exec_queue, &timeout); > + /* Reset the fence so next fence wait won't return immediately */ > + memset(xe_cmdbuf_exec_ufence_cpuva(cmdbuf), 0, UFENCE_LENGTH); > + return ret; > +} > + > +/** > + * 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) This should be named xe_insert_store() or if we have other header for intel GPU instructions it could be intel_insert_store() > +{ > + 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 - UFENCE_LENGTH; > +} > + > +/** > + * 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 - UFENCE_LENGTH; > +} > + > 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..54f25619f 100644 > --- a/lib/xe/xe_util.h > +++ b/lib/xe/xe_util.h > @@ -14,6 +14,39 @@ > > #include "xe_query.h" > > +#define USER_FENCE_VALUE 0xdeadbeefdeadbeefull > +#define PAGE_ALIGN_UFENCE 4096 > +#define UFENCE_LENGTH 8 > + > +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); imho add xe_ prefix but no strong opinion here. > +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); Function name should be xe_insert_store() Regards, Kamil > +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) > #define XE_IS_VRAM_MEMORY_REGION(fd, region) \ > -- > 2.26.3 > ^ permalink raw reply [flat|nested] 12+ 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 ` [i-g-t 2/4] lib/xe/xe_util: Introduce helper functions Oak Zeng @ 2025-02-13 22:27 ` Oak Zeng 2025-02-13 22:27 ` [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; 12+ 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] 12+ messages in thread
* [i-g-t 4/4] tests/intel/xe_exec_fault_mode: Test scratch page under fault mode 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 2/4] lib/xe/xe_util: Introduce helper functions 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 @ 2025-02-13 22:27 ` Oak Zeng 2025-02-13 22:28 ` ✗ 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; 12+ messages in thread From: Oak Zeng @ 2025-02-13 22:27 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 | 63 ++++++++++++++++++++++++++++++++ 1 file changed, 63 insertions(+) diff --git a/tests/intel/xe_exec_fault_mode.c b/tests/intel/xe_exec_fault_mode.c index ae40e099b..f787660ae 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,60 @@ #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_create_buffer(&dst_buf); + 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 +513,7 @@ igt_main { NULL }, }; int fd; + uint32_t dev_id; igt_fixture { struct timespec tv = {}; @@ -466,6 +522,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 +565,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] 12+ messages in thread
* ✗ GitLab.Pipeline: warning for series starting with [i-g-t,1/4] lib/xe: Fix a comment error 2025-02-13 22:27 [i-g-t 1/4] lib/xe: Fix a comment error Oak Zeng ` (2 preceding siblings ...) 2025-02-13 22:27 ` [i-g-t 4/4] tests/intel/xe_exec_fault_mode: Test scratch page under fault mode Oak Zeng @ 2025-02-13 22:28 ` Patchwork 2025-02-13 22:42 ` ✓ Xe.CI.BAT: success " Patchwork ` (3 subsequent siblings) 7 siblings, 0 replies; 12+ messages in thread From: Patchwork @ 2025-02-13 22:28 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/144828/ State : warning == Summary == Pipeline status: FAILED. see https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/pipelines/1364352 for the overview. build:tests-debian-meson-armhf has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/71071648): [3/1274] Linking static target lib/libigt-nouveau_cea0b5_c.a. [4/1274] 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:86: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:116: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:1739485203:step_script section_start:1739485203:cleanup_file_variables Cleaning up project directory and file based variables section_end:1739485204: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/71071650): [2/1280] Linking static target lib/libigt-igt_kms_c.a. [3/1280] 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:86: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:116: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:1739485200:step_script section_start:1739485200:cleanup_file_variables Cleaning up project directory and file based variables section_end:1739485201:cleanup_file_variables ERROR: Job failed: exit code 1 == Logs == For more details see: https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/pipelines/1364352 ^ permalink raw reply [flat|nested] 12+ 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 22:27 [i-g-t 1/4] lib/xe: Fix a comment error Oak Zeng ` (3 preceding siblings ...) 2025-02-13 22:28 ` ✗ GitLab.Pipeline: warning for series starting with [i-g-t,1/4] lib/xe: Fix a comment error Patchwork @ 2025-02-13 22:42 ` Patchwork 2025-02-13 22:58 ` ✓ i915.CI.BAT: " Patchwork ` (2 subsequent siblings) 7 siblings, 0 replies; 12+ messages in thread From: Patchwork @ 2025-02-13 22:42 UTC (permalink / raw) To: Oak Zeng; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 2472 bytes --] == Series Details == Series: series starting with [i-g-t,1/4] lib/xe: Fix a comment error URL : https://patchwork.freedesktop.org/series/144828/ State : success == Summary == CI Bug Log - changes from XEIGT_8229_BAT -> XEIGTPW_12593_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (8 -> 8) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_12593_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@xe_exec_basic@twice-bindexecqueue-rebind: - bat-adlp-vf: [PASS][1] -> [DMESG-WARN][2] ([Intel XE#3970]) [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/bat-adlp-vf/igt@xe_exec_basic@twice-bindexecqueue-rebind.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/bat-adlp-vf/igt@xe_exec_basic@twice-bindexecqueue-rebind.html * igt@xe_live_ktest@xe_migrate: - bat-adlp-vf: [PASS][3] -> [SKIP][4] ([Intel XE#1192]) +1 other test skip [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/bat-adlp-vf/igt@xe_live_ktest@xe_migrate.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/bat-adlp-vf/igt@xe_live_ktest@xe_migrate.html #### Warnings #### * igt@xe_live_ktest@xe_bo: - bat-adlp-vf: [SKIP][5] ([Intel XE#2229] / [Intel XE#455]) -> [SKIP][6] ([Intel XE#1192]) [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/bat-adlp-vf/igt@xe_live_ktest@xe_bo.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/bat-adlp-vf/igt@xe_live_ktest@xe_bo.html [Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192 [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229 [Intel XE#3970]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3970 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 Build changes ------------- * IGT: IGT_8229 -> IGTPW_12593 * Linux: xe-2652-b9696aa14a67620661572e94f4141df2a4b6b5cd -> xe-2660-4570ecc1f49b000dbba61bb05e22ef5db89382b7 IGTPW_12593: 12593 IGT_8229: 8229 xe-2652-b9696aa14a67620661572e94f4141df2a4b6b5cd: b9696aa14a67620661572e94f4141df2a4b6b5cd xe-2660-4570ecc1f49b000dbba61bb05e22ef5db89382b7: 4570ecc1f49b000dbba61bb05e22ef5db89382b7 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/index.html [-- Attachment #2: Type: text/html, Size: 3167 bytes --] ^ permalink raw reply [flat|nested] 12+ 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 22:27 [i-g-t 1/4] lib/xe: Fix a comment error Oak Zeng ` (4 preceding siblings ...) 2025-02-13 22:42 ` ✓ Xe.CI.BAT: success " Patchwork @ 2025-02-13 22:58 ` Patchwork 2025-02-14 4:15 ` ✗ i915.CI.Full: failure " Patchwork 2025-02-14 17:42 ` ✗ Xe.CI.Full: " Patchwork 7 siblings, 0 replies; 12+ messages in thread From: Patchwork @ 2025-02-13 22:58 UTC (permalink / raw) To: Oak Zeng; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 6322 bytes --] == Series Details == Series: series starting with [i-g-t,1/4] lib/xe: Fix a comment error URL : https://patchwork.freedesktop.org/series/144828/ State : success == Summary == CI Bug Log - changes from IGT_8229 -> IGTPW_12593 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/index.html Participating hosts (42 -> 38) ------------------------------ Additional (1): fi-hsw-4770 Missing (5): bat-rplp-1 bat-mtlp-9 fi-snb-2520m fi-glk-j4005 bat-twl-1 Known issues ------------ Here are the changes found in IGTPW_12593 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_12593/fi-cfl-8700k/igt@gem_lmem_swapping@basic.html * igt@gem_softpin@allocator-basic-reserve: - fi-hsw-4770: NOTRUN -> [SKIP][2] +14 other tests skip [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/fi-hsw-4770/igt@gem_softpin@allocator-basic-reserve.html * igt@i915_selftest@live@workarounds: - bat-arls-5: [PASS][3] -> [DMESG-FAIL][4] ([i915#12061]) +1 other test dmesg-fail [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8229/bat-arls-5/igt@i915_selftest@live@workarounds.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/bat-arls-5/igt@i915_selftest@live@workarounds.html - bat-mtlp-6: [PASS][5] -> [DMESG-FAIL][6] ([i915#12061]) +1 other test dmesg-fail [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8229/bat-mtlp-6/igt@i915_selftest@live@workarounds.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/bat-mtlp-6/igt@i915_selftest@live@workarounds.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - fi-hsw-4770: NOTRUN -> [SKIP][7] ([i915#5190]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/fi-hsw-4770/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_psr@psr-sprite-plane-onoff: - fi-hsw-4770: NOTRUN -> [SKIP][8] ([i915#1072]) +3 other tests skip [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/fi-hsw-4770/igt@kms_psr@psr-sprite-plane-onoff.html #### Possible fixes #### * igt@core_hotunplug@unbind-rebind: - fi-cfl-8700k: [ABORT][9] ([i915#13508]) -> [PASS][10] [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8229/fi-cfl-8700k/igt@core_hotunplug@unbind-rebind.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/fi-cfl-8700k/igt@core_hotunplug@unbind-rebind.html * igt@gem_exec_fence@basic-await@vecs0: - bat-rpls-4: [DMESG-WARN][11] ([i915#13400]) -> [PASS][12] +1 other test pass [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8229/bat-rpls-4/igt@gem_exec_fence@basic-await@vecs0.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/bat-rpls-4/igt@gem_exec_fence@basic-await@vecs0.html * igt@i915_selftest@live: - bat-jsl-3: [INCOMPLETE][13] ([i915#12445] / [i915#13241]) -> [PASS][14] [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8229/bat-jsl-3/igt@i915_selftest@live.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/bat-jsl-3/igt@i915_selftest@live.html * igt@i915_selftest@live@gem_contexts: - bat-jsl-3: [INCOMPLETE][15] ([i915#12445]) -> [PASS][16] [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8229/bat-jsl-3/igt@i915_selftest@live@gem_contexts.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/bat-jsl-3/igt@i915_selftest@live@gem_contexts.html #### Warnings #### * igt@i915_selftest@live@mman: - bat-atsm-1: [ABORT][17] ([i915#13465]) -> [ABORT][18] ([i915#13679]) +1 other test abort [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8229/bat-atsm-1/igt@i915_selftest@live@mman.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/bat-atsm-1/igt@i915_selftest@live@mman.html * igt@kms_flip@basic-flip-vs-dpms: - bat-dg1-6: [SKIP][19] ([i915#12311] / [i915#3637]) -> [SKIP][20] ([i915#12311] / [i915#13682] / [i915#3637]) +2 other tests skip [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8229/bat-dg1-6/igt@kms_flip@basic-flip-vs-dpms.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/bat-dg1-6/igt@kms_flip@basic-flip-vs-dpms.html * igt@kms_flip@basic-plain-flip: - bat-dg1-6: [SKIP][21] ([i915#12311]) -> [SKIP][22] ([i915#12311] / [i915#13682]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8229/bat-dg1-6/igt@kms_flip@basic-plain-flip.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/bat-dg1-6/igt@kms_flip@basic-plain-flip.html [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#12311]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12311 [i915#12445]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12445 [i915#13241]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13241 [i915#13400]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13400 [i915#13465]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13465 [i915#13508]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13508 [i915#13679]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13679 [i915#13682]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13682 [i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8229 -> IGTPW_12593 * Linux: CI_DRM_16123 -> CI_DRM_16129 CI-20190529: 20190529 CI_DRM_16123: 4af00c2e09da0269f3f329e660b6417037041bea @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_16129: 4570ecc1f49b000dbba61bb05e22ef5db89382b7 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12593: 12593 IGT_8229: 8229 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/index.html [-- Attachment #2: Type: text/html, Size: 7752 bytes --] ^ permalink raw reply [flat|nested] 12+ 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 22:27 [i-g-t 1/4] lib/xe: Fix a comment error Oak Zeng ` (5 preceding siblings ...) 2025-02-13 22:58 ` ✓ i915.CI.BAT: " Patchwork @ 2025-02-14 4:15 ` Patchwork 2025-02-14 17:42 ` ✗ Xe.CI.Full: " Patchwork 7 siblings, 0 replies; 12+ messages in thread From: Patchwork @ 2025-02-14 4:15 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/144828/ State : failure == Summary == CI Bug Log - changes from CI_DRM_16129_full -> IGTPW_12593_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12593_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12593_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_12593/index.html Participating hosts (11 -> 10) ------------------------------ Missing (1): shard-dg2-set2 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_12593_full: ### IGT changes ### #### Possible regressions #### * igt@gem_lmem_swapping@parallel-random-verify@lmem0: - shard-dg2: [PASS][1] -> [INCOMPLETE][2] +1 other test incomplete [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16129/shard-dg2-10/igt@gem_lmem_swapping@parallel-random-verify@lmem0.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg2-3/igt@gem_lmem_swapping@parallel-random-verify@lmem0.html * igt@gem_tiled_swapping@non-threaded: - shard-snb: [PASS][3] -> [FAIL][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16129/shard-snb1/igt@gem_tiled_swapping@non-threaded.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-snb6/igt@gem_tiled_swapping@non-threaded.html * igt@kms_busy@extended-pageflip-hang-newfb@pipe-a: - shard-snb: [PASS][5] -> [INCOMPLETE][6] +1 other test incomplete [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16129/shard-snb2/igt@kms_busy@extended-pageflip-hang-newfb@pipe-a.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-snb4/igt@kms_busy@extended-pageflip-hang-newfb@pipe-a.html * igt@perf_pmu@module-unload: - shard-tglu: NOTRUN -> [INCOMPLETE][7] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-tglu-9/igt@perf_pmu@module-unload.html - shard-dg2: NOTRUN -> [ABORT][8] [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg2-1/igt@perf_pmu@module-unload.html New tests --------- New tests have been introduced between CI_DRM_16129_full and IGTPW_12593_full: ### New IGT tests (12) ### * igt@kms_cursor_edge_walk@128x128-top-bottom@pipe-d-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [1.68] s * igt@kms_cursor_edge_walk@256x256-top-bottom@pipe-a-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [3.29] s * igt@kms_cursor_edge_walk@256x256-top-bottom@pipe-c-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [3.36] s * igt@kms_cursor_edge_walk@256x256-top-bottom@pipe-d-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [3.21] s * igt@kms_cursor_edge_walk@256x256-top-bottom@pipe-d-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [3.21] s * igt@kms_cursor_edge_walk@256x256-top-edge@pipe-c-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [3.46] s * igt@kms_cursor_edge_walk@64x64-left-edge@pipe-d-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [1.71] s * igt@kms_cursor_edge_walk@64x64-right-edge@pipe-a-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [3.32] s * igt@kms_cursor_edge_walk@64x64-right-edge@pipe-d-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [1.66] s * igt@kms_cursor_edge_walk@64x64-right-edge@pipe-d-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [3.21] s * igt@kms_cursor_edge_walk@64x64-top-edge@pipe-a-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [3.30] s * igt@kms_cursor_edge_walk@64x64-top-edge@pipe-d-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [3.21] s Known issues ------------ Here are the changes found in IGTPW_12593_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-reloc-keep-cache: - shard-mtlp: NOTRUN -> [SKIP][9] ([i915#8411]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-mtlp-1/igt@api_intel_bb@blit-reloc-keep-cache.html * igt@api_intel_bb@blit-reloc-purge-cache: - shard-rkl: NOTRUN -> [SKIP][10] ([i915#8411]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-rkl-8/igt@api_intel_bb@blit-reloc-purge-cache.html * igt@api_intel_bb@crc32: - shard-rkl: NOTRUN -> [SKIP][11] ([i915#6230]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-rkl-1/igt@api_intel_bb@crc32.html - shard-tglu-1: NOTRUN -> [SKIP][12] ([i915#6230]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-tglu-1/igt@api_intel_bb@crc32.html * igt@debugfs_test@basic-hwmon: - shard-rkl: NOTRUN -> [SKIP][13] ([i915#9318]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-rkl-4/igt@debugfs_test@basic-hwmon.html * igt@device_reset@cold-reset-bound: - shard-mtlp: NOTRUN -> [SKIP][14] ([i915#11078]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-mtlp-4/igt@device_reset@cold-reset-bound.html * igt@device_reset@unbind-cold-reset-rebind: - shard-rkl: NOTRUN -> [SKIP][15] ([i915#11078]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-rkl-5/igt@device_reset@unbind-cold-reset-rebind.html - shard-tglu: NOTRUN -> [SKIP][16] ([i915#11078]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-tglu-4/igt@device_reset@unbind-cold-reset-rebind.html * igt@drm_fdinfo@all-busy-check-all: - shard-dg2-9: NOTRUN -> [SKIP][17] ([i915#8414]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg2-9/igt@drm_fdinfo@all-busy-check-all.html * igt@drm_fdinfo@busy-check-all@vecs1: - shard-dg2-9: NOTRUN -> [SKIP][18] ([i915#11527] / [i915#8414]) +7 other tests skip [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg2-9/igt@drm_fdinfo@busy-check-all@vecs1.html * igt@drm_fdinfo@most-busy-idle-check-all@vecs1: - shard-dg2: NOTRUN -> [SKIP][19] ([i915#8414]) +7 other tests skip [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg2-5/igt@drm_fdinfo@most-busy-idle-check-all@vecs1.html * igt@drm_fdinfo@virtual-busy-idle: - shard-dg1: NOTRUN -> [SKIP][20] ([i915#8414]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg1-13/igt@drm_fdinfo@virtual-busy-idle.html * igt@gem_bad_reloc@negative-reloc-lut: - shard-rkl: NOTRUN -> [SKIP][21] ([i915#3281]) +3 other tests skip [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-rkl-1/igt@gem_bad_reloc@negative-reloc-lut.html * igt@gem_ccs@suspend-resume: - shard-dg2: NOTRUN -> [INCOMPLETE][22] ([i915#13356]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg2-4/igt@gem_ccs@suspend-resume.html - shard-rkl: NOTRUN -> [SKIP][23] ([i915#9323]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-rkl-1/igt@gem_ccs@suspend-resume.html - shard-tglu-1: NOTRUN -> [SKIP][24] ([i915#9323]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-tglu-1/igt@gem_ccs@suspend-resume.html * igt@gem_ccs@suspend-resume@tile64-compressed-compfmt0-smem-lmem0: - shard-dg2: NOTRUN -> [INCOMPLETE][25] ([i915#12392] / [i915#13356]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg2-4/igt@gem_ccs@suspend-resume@tile64-compressed-compfmt0-smem-lmem0.html * igt@gem_close_race@multigpu-basic-process: - shard-dg2-9: NOTRUN -> [SKIP][26] ([i915#7697]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg2-9/igt@gem_close_race@multigpu-basic-process.html * igt@gem_close_race@multigpu-basic-threads: - shard-tglu: NOTRUN -> [SKIP][27] ([i915#7697]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-tglu-6/igt@gem_close_race@multigpu-basic-threads.html * igt@gem_compute@compute-square: - shard-dg2: NOTRUN -> [FAIL][28] ([i915#13665]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg2-7/igt@gem_compute@compute-square.html * igt@gem_create@create-ext-cpu-access-big: - shard-rkl: NOTRUN -> [SKIP][29] ([i915#6335]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-rkl-3/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_create@create-ext-cpu-access-sanity-check: - shard-tglu-1: NOTRUN -> [SKIP][30] ([i915#6335]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-tglu-1/igt@gem_create@create-ext-cpu-access-sanity-check.html - shard-mtlp: NOTRUN -> [SKIP][31] ([i915#6335]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-mtlp-1/igt@gem_create@create-ext-cpu-access-sanity-check.html * igt@gem_ctx_persistence@hang: - shard-dg2: NOTRUN -> [SKIP][32] ([i915#8555]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg2-3/igt@gem_ctx_persistence@hang.html * igt@gem_ctx_sseu@invalid-args: - shard-tglu-1: NOTRUN -> [SKIP][33] ([i915#280]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-tglu-1/igt@gem_ctx_sseu@invalid-args.html * igt@gem_ctx_sseu@invalid-sseu: - shard-dg2: NOTRUN -> [SKIP][34] ([i915#280]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg2-1/igt@gem_ctx_sseu@invalid-sseu.html * igt@gem_ctx_sseu@mmap-args: - shard-rkl: NOTRUN -> [SKIP][35] ([i915#280]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-rkl-4/igt@gem_ctx_sseu@mmap-args.html - shard-tglu: NOTRUN -> [SKIP][36] ([i915#280]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-tglu-3/igt@gem_ctx_sseu@mmap-args.html * igt@gem_eio@in-flight-immediate: - shard-dg1: [PASS][37] -> [DMESG-WARN][38] ([i915#4423]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16129/shard-dg1-14/igt@gem_eio@in-flight-immediate.html [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg1-13/igt@gem_eio@in-flight-immediate.html * igt@gem_eio@in-flight-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][39] ([i915#13197] / [i915#13390]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-glk7/igt@gem_eio@in-flight-suspend.html * igt@gem_exec_balancer@bonded-dual: - shard-mtlp: NOTRUN -> [SKIP][40] ([i915#4771]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-mtlp-1/igt@gem_exec_balancer@bonded-dual.html * igt@gem_exec_balancer@bonded-pair: - shard-dg2: NOTRUN -> [SKIP][41] ([i915#4771]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg2-6/igt@gem_exec_balancer@bonded-pair.html * igt@gem_exec_balancer@noheartbeat: - shard-dg2-9: NOTRUN -> [SKIP][42] ([i915#8555]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg2-9/igt@gem_exec_balancer@noheartbeat.html - shard-mtlp: NOTRUN -> [SKIP][43] ([i915#8555]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-mtlp-8/igt@gem_exec_balancer@noheartbeat.html * igt@gem_exec_balancer@parallel-bb-first: - shard-rkl: NOTRUN -> [SKIP][44] ([i915#4525]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-rkl-5/igt@gem_exec_balancer@parallel-bb-first.html * igt@gem_exec_balancer@parallel-contexts: - shard-tglu: NOTRUN -> [SKIP][45] ([i915#4525]) +1 other test skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-tglu-7/igt@gem_exec_balancer@parallel-contexts.html * igt@gem_exec_balancer@sliced: - shard-mtlp: NOTRUN -> [SKIP][46] ([i915#4812]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-mtlp-8/igt@gem_exec_balancer@sliced.html * igt@gem_exec_capture@capture-invisible@smem0: - shard-glk: NOTRUN -> [SKIP][47] ([i915#6334]) +1 other test skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-glk2/igt@gem_exec_capture@capture-invisible@smem0.html * igt@gem_exec_capture@capture-recoverable: - shard-rkl: NOTRUN -> [SKIP][48] ([i915#6344]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-rkl-4/igt@gem_exec_capture@capture-recoverable.html - shard-tglu: NOTRUN -> [SKIP][49] ([i915#6344]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-tglu-6/igt@gem_exec_capture@capture-recoverable.html * igt@gem_exec_capture@capture@vecs0-lmem0: - shard-dg2: NOTRUN -> [FAIL][50] ([i915#11965]) +4 other tests fail [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg2-4/igt@gem_exec_capture@capture@vecs0-lmem0.html * igt@gem_exec_fence@submit: - shard-dg1: NOTRUN -> [SKIP][51] ([i915#4812]) +1 other test skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg1-19/igt@gem_exec_fence@submit.html - shard-dg2-9: NOTRUN -> [SKIP][52] ([i915#4812]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg2-9/igt@gem_exec_fence@submit.html * igt@gem_exec_fence@submit3: - shard-dg2: NOTRUN -> [SKIP][53] ([i915#4812]) +3 other tests skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg2-8/igt@gem_exec_fence@submit3.html * igt@gem_exec_flush@basic-batch-kernel-default-uc: - shard-dg2-9: NOTRUN -> [SKIP][54] ([i915#3539] / [i915#4852]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg2-9/igt@gem_exec_flush@basic-batch-kernel-default-uc.html * igt@gem_exec_flush@basic-uc-ro-default: - shard-dg2: NOTRUN -> [SKIP][55] ([i915#3539] / [i915#4852]) +1 other test skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg2-10/igt@gem_exec_flush@basic-uc-ro-default.html - shard-dg1: NOTRUN -> [SKIP][56] ([i915#3539] / [i915#4852]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg1-19/igt@gem_exec_flush@basic-uc-ro-default.html * igt@gem_exec_reloc@basic-cpu-wc-active: - shard-mtlp: NOTRUN -> [SKIP][57] ([i915#3281]) +2 other tests skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-mtlp-6/igt@gem_exec_reloc@basic-cpu-wc-active.html * igt@gem_exec_reloc@basic-gtt-read: - shard-dg2: NOTRUN -> [SKIP][58] ([i915#3281]) +3 other tests skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg2-7/igt@gem_exec_reloc@basic-gtt-read.html * igt@gem_exec_reloc@basic-write-gtt-active: - shard-dg1: NOTRUN -> [SKIP][59] ([i915#3281]) +2 other tests skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg1-19/igt@gem_exec_reloc@basic-write-gtt-active.html * igt@gem_exec_reloc@basic-write-read-active: - shard-dg2-9: NOTRUN -> [SKIP][60] ([i915#3281]) +3 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg2-9/igt@gem_exec_reloc@basic-write-read-active.html * igt@gem_exec_schedule@fairslice: - shard-rkl: NOTRUN -> [DMESG-WARN][61] ([i915#12964]) +13 other tests dmesg-warn [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-rkl-5/igt@gem_exec_schedule@fairslice.html * igt@gem_exec_schedule@reorder-wide: - shard-dg2: NOTRUN -> [SKIP][62] ([i915#4537] / [i915#4812]) +1 other test skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg2-7/igt@gem_exec_schedule@reorder-wide.html - shard-mtlp: NOTRUN -> [SKIP][63] ([i915#4537] / [i915#4812]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-mtlp-1/igt@gem_exec_schedule@reorder-wide.html * igt@gem_exec_schedule@semaphore-power: - shard-dg2-9: NOTRUN -> [SKIP][64] ([i915#4537] / [i915#4812]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg2-9/igt@gem_exec_schedule@semaphore-power.html * igt@gem_exec_suspend@basic-s0@smem: - shard-dg2: [PASS][65] -> [INCOMPLETE][66] ([i915#11441] / [i915#13304]) +1 other test incomplete [65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16129/shard-dg2-8/igt@gem_exec_suspend@basic-s0@smem.html [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg2-6/igt@gem_exec_suspend@basic-s0@smem.html * igt@gem_fence_thrash@bo-write-verify-x: - shard-dg1: NOTRUN -> [SKIP][67] ([i915#4860]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg1-17/igt@gem_fence_thrash@bo-write-verify-x.html * igt@gem_fenced_exec_thrash@2-spare-fences: - shard-mtlp: NOTRUN -> [SKIP][68] ([i915#4860]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-mtlp-1/igt@gem_fenced_exec_thrash@2-spare-fences.html * igt@gem_fenced_exec_thrash@too-many-fences: - shard-dg2-9: NOTRUN -> [SKIP][69] ([i915#4860]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg2-9/igt@gem_fenced_exec_thrash@too-many-fences.html * igt@gem_lmem_swapping@heavy-verify-random: - shard-rkl: NOTRUN -> [SKIP][70] ([i915#4613]) +3 other tests skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-rkl-8/igt@gem_lmem_swapping@heavy-verify-random.html - shard-snb: NOTRUN -> [SKIP][71] +1 other test skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-snb5/igt@gem_lmem_swapping@heavy-verify-random.html - shard-tglu: NOTRUN -> [SKIP][72] ([i915#4613]) +2 other tests skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-tglu-9/igt@gem_lmem_swapping@heavy-verify-random.html - shard-mtlp: NOTRUN -> [SKIP][73] ([i915#4613]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-mtlp-6/igt@gem_lmem_swapping@heavy-verify-random.html * igt@gem_lmem_swapping@verify-ccs: - shard-glk: NOTRUN -> [SKIP][74] ([i915#4613]) +8 other tests skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-glk1/igt@gem_lmem_swapping@verify-ccs.html * igt@gem_lmem_swapping@verify-random: - shard-tglu-1: NOTRUN -> [SKIP][75] ([i915#4613]) +2 other tests skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-tglu-1/igt@gem_lmem_swapping@verify-random.html * igt@gem_mmap@bad-offset: - shard-dg1: NOTRUN -> [SKIP][76] ([i915#4083]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg1-15/igt@gem_mmap@bad-offset.html * igt@gem_mmap_gtt@cpuset-medium-copy: - shard-mtlp: NOTRUN -> [SKIP][77] ([i915#4077]) +5 other tests skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-mtlp-3/igt@gem_mmap_gtt@cpuset-medium-copy.html * igt@gem_mmap_gtt@cpuset-medium-copy-xy: - shard-dg2-9: NOTRUN -> [SKIP][78] ([i915#4077]) +6 other tests skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg2-9/igt@gem_mmap_gtt@cpuset-medium-copy-xy.html * igt@gem_mmap_gtt@zero-extend: - shard-dg2: NOTRUN -> [SKIP][79] ([i915#4077]) +7 other tests skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg2-5/igt@gem_mmap_gtt@zero-extend.html * igt@gem_mmap_wc@copy: - shard-dg2: NOTRUN -> [SKIP][80] ([i915#4083]) +3 other tests skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg2-5/igt@gem_mmap_wc@copy.html * igt@gem_mmap_wc@invalid-flags: - shard-dg2-9: NOTRUN -> [SKIP][81] ([i915#4083]) +2 other tests skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg2-9/igt@gem_mmap_wc@invalid-flags.html * igt@gem_mmap_wc@read: - shard-mtlp: NOTRUN -> [SKIP][82] ([i915#4083]) +1 other test skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-mtlp-2/igt@gem_mmap_wc@read.html * igt@gem_partial_pwrite_pread@reads: - shard-dg2-9: NOTRUN -> [SKIP][83] ([i915#3282]) +1 other test skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg2-9/igt@gem_partial_pwrite_pread@reads.html * igt@gem_pread@exhaustion: - shard-dg1: NOTRUN -> [SKIP][84] ([i915#3282]) +1 other test skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg1-18/igt@gem_pread@exhaustion.html - shard-tglu: NOTRUN -> [WARN][85] ([i915#2658]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-tglu-4/igt@gem_pread@exhaustion.html - shard-glk: NOTRUN -> [WARN][86] ([i915#2658]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-glk7/igt@gem_pread@exhaustion.html * igt@gem_pread@self: - shard-dg2: NOTRUN -> [SKIP][87] ([i915#3282]) +3 other tests skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg2-2/igt@gem_pread@self.html * igt@gem_pxp@create-valid-protected-context: - shard-dg2-9: NOTRUN -> [SKIP][88] ([i915#4270]) +1 other test skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg2-9/igt@gem_pxp@create-valid-protected-context.html * igt@gem_pxp@fail-invalid-protected-context: - shard-rkl: NOTRUN -> [TIMEOUT][89] ([i915#12964]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-rkl-1/igt@gem_pxp@fail-invalid-protected-context.html * igt@gem_pxp@hw-rejects-pxp-context: - shard-tglu: NOTRUN -> [SKIP][90] ([i915#13398]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-tglu-5/igt@gem_pxp@hw-rejects-pxp-context.html * igt@gem_pxp@protected-raw-src-copy-not-readible: - shard-rkl: [PASS][91] -> [TIMEOUT][92] ([i915#12917] / [i915#12964]) +1 other test timeout [91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16129/shard-rkl-8/igt@gem_pxp@protected-raw-src-copy-not-readible.html [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-rkl-3/igt@gem_pxp@protected-raw-src-copy-not-readible.html * igt@gem_pxp@reject-modify-context-protection-off-1: - shard-dg2: NOTRUN -> [SKIP][93] ([i915#4270]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg2-8/igt@gem_pxp@reject-modify-context-protection-off-1.html - shard-rkl: NOTRUN -> [TIMEOUT][94] ([i915#12917] / [i915#12964]) +2 other tests timeout [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-rkl-5/igt@gem_pxp@reject-modify-context-protection-off-1.html * igt@gem_pxp@verify-pxp-stale-ctx-execution: - shard-dg1: NOTRUN -> [SKIP][95] ([i915#4270]) +2 other tests skip [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg1-13/igt@gem_pxp@verify-pxp-stale-ctx-execution.html * igt@gem_readwrite@write-bad-handle: - shard-mtlp: NOTRUN -> [SKIP][96] ([i915#3282]) +2 other tests skip [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-mtlp-5/igt@gem_readwrite@write-bad-handle.html * igt@gem_render_copy@x-tiled-to-vebox-yf-tiled: - shard-dg2-9: NOTRUN -> [SKIP][97] ([i915#5190] / [i915#8428]) +2 other tests skip [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg2-9/igt@gem_render_copy@x-tiled-to-vebox-yf-tiled.html * igt@gem_render_copy@y-tiled-ccs-to-yf-tiled-ccs: - shard-dg2: NOTRUN -> [SKIP][98] ([i915#5190] / [i915#8428]) +2 other tests skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg2-3/igt@gem_render_copy@y-tiled-ccs-to-yf-tiled-ccs.html * igt@gem_render_copy@yf-tiled-ccs-to-y-tiled-ccs: - shard-mtlp: NOTRUN -> [SKIP][99] ([i915#8428]) +1 other test skip [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-mtlp-6/igt@gem_render_copy@yf-tiled-ccs-to-y-tiled-ccs.html * igt@gem_set_tiling_vs_pwrite: - shard-rkl: NOTRUN -> [SKIP][100] ([i915#3282]) +6 other tests skip [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-rkl-5/igt@gem_set_tiling_vs_pwrite.html * igt@gem_tiled_pread_pwrite: - shard-dg1: NOTRUN -> [SKIP][101] ([i915#4079]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg1-15/igt@gem_tiled_pread_pwrite.html - shard-mtlp: NOTRUN -> [SKIP][102] ([i915#4079]) +1 other test skip [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-mtlp-3/igt@gem_tiled_pread_pwrite.html - shard-dg2: NOTRUN -> [SKIP][103] ([i915#4079]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg2-5/igt@gem_tiled_pread_pwrite.html * igt@gem_tiled_swapping@non-threaded: - shard-tglu: NOTRUN -> [FAIL][104] ([i915#12941]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-tglu-3/igt@gem_tiled_swapping@non-threaded.html * igt@gem_userptr_blits@coherency-sync: - shard-tglu-1: NOTRUN -> [SKIP][105] ([i915#3297]) +1 other test skip [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-tglu-1/igt@gem_userptr_blits@coherency-sync.html * igt@gem_userptr_blits@coherency-unsync: - shard-dg2: NOTRUN -> [SKIP][106] ([i915#3297]) +2 other tests skip [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg2-2/igt@gem_userptr_blits@coherency-unsync.html * igt@gem_userptr_blits@create-destroy-unsync: - shard-rkl: NOTRUN -> [SKIP][107] ([i915#3297]) +1 other test skip [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-rkl-8/igt@gem_userptr_blits@create-destroy-unsync.html * igt@gem_userptr_blits@invalid-mmap-offset-unsync: - shard-tglu: NOTRUN -> [SKIP][108] ([i915#3297]) +3 other tests skip [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-tglu-6/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html - shard-dg2-9: NOTRUN -> [SKIP][109] ([i915#3297]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg2-9/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html * igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy: - shard-dg2: NOTRUN -> [SKIP][110] ([i915#3297] / [i915#4880]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg2-2/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html * igt@gem_userptr_blits@unsync-unmap-after-close: - shard-dg1: NOTRUN -> [SKIP][111] ([i915#3297]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg1-15/igt@gem_userptr_blits@unsync-unmap-after-close.html - shard-mtlp: NOTRUN -> [SKIP][112] ([i915#3297]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-mtlp-8/igt@gem_userptr_blits@unsync-unmap-after-close.html * igt@gen7_exec_parse@bitmasks: - shard-dg2: NOTRUN -> [SKIP][113] +6 other tests skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg2-1/igt@gen7_exec_parse@bitmasks.html * igt@gen9_exec_parse@allowed-single: - shard-mtlp: NOTRUN -> [SKIP][114] ([i915#2856]) +1 other test skip [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-mtlp-7/igt@gen9_exec_parse@allowed-single.html - shard-dg1: NOTRUN -> [SKIP][115] ([i915#2527]) +1 other test skip [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg1-19/igt@gen9_exec_parse@allowed-single.html * igt@gen9_exec_parse@basic-rejected-ctx-param: - shard-tglu: NOTRUN -> [SKIP][116] ([i915#2527] / [i915#2856]) +3 other tests skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-tglu-9/igt@gen9_exec_parse@basic-rejected-ctx-param.html - shard-dg2: NOTRUN -> [SKIP][117] ([i915#2856]) +2 other tests skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg2-1/igt@gen9_exec_parse@basic-rejected-ctx-param.html * igt@gen9_exec_parse@batch-invalid-length: - shard-rkl: NOTRUN -> [SKIP][118] ([i915#2527]) +3 other tests skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-rkl-5/igt@gen9_exec_parse@batch-invalid-length.html * igt@gen9_exec_parse@bb-start-far: - shard-dg2-9: NOTRUN -> [SKIP][119] ([i915#2856]) +2 other tests skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg2-9/igt@gen9_exec_parse@bb-start-far.html * igt@gen9_exec_parse@unaligned-access: - shard-tglu-1: NOTRUN -> [SKIP][120] ([i915#2527] / [i915#2856]) +2 other tests skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-tglu-1/igt@gen9_exec_parse@unaligned-access.html * igt@i915_hangman@gt-error-state-capture@vcs0: - shard-mtlp: [PASS][121] -> [ABORT][122] ([i915#13193]) +3 other tests abort [121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16129/shard-mtlp-5/igt@i915_hangman@gt-error-state-capture@vcs0.html [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-mtlp-7/igt@i915_hangman@gt-error-state-capture@vcs0.html * igt@i915_module_load@reload-with-fault-injection: - shard-dg1: [PASS][123] -> [ABORT][124] ([i915#9820]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16129/shard-dg1-19/igt@i915_module_load@reload-with-fault-injection.html [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg1-15/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_freq_api@freq-basic-api: - shard-tglu: NOTRUN -> [SKIP][125] ([i915#8399]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-tglu-3/igt@i915_pm_freq_api@freq-basic-api.html - shard-rkl: NOTRUN -> [SKIP][126] ([i915#8399]) +1 other test skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-rkl-4/igt@i915_pm_freq_api@freq-basic-api.html * igt@i915_pm_freq_api@freq-suspend: - shard-tglu-1: NOTRUN -> [SKIP][127] ([i915#8399]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-tglu-1/igt@i915_pm_freq_api@freq-suspend.html * igt@i915_pm_freq_mult@media-freq@gt0: - shard-rkl: NOTRUN -> [SKIP][128] ([i915#6590]) +1 other test skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-rkl-5/igt@i915_pm_freq_mult@media-freq@gt0.html * igt@i915_pm_rps@basic-api: - shard-mtlp: NOTRUN -> [SKIP][129] ([i915#11681] / [i915#6621]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-mtlp-5/igt@i915_pm_rps@basic-api.html * igt@i915_pm_rps@engine-order: - shard-glk: NOTRUN -> [FAIL][130] ([i915#13547]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-glk7/igt@i915_pm_rps@engine-order.html * igt@i915_pm_rps@thresholds-idle-park: - shard-dg2: NOTRUN -> [SKIP][131] ([i915#11681]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg2-1/igt@i915_pm_rps@thresholds-idle-park.html - shard-dg1: NOTRUN -> [SKIP][132] ([i915#11681]) [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg1-15/igt@i915_pm_rps@thresholds-idle-park.html - shard-mtlp: NOTRUN -> [SKIP][133] ([i915#11681]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-mtlp-4/igt@i915_pm_rps@thresholds-idle-park.html * igt@i915_pm_sseu@full-enable: - shard-dg2: NOTRUN -> [SKIP][134] ([i915#4387]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg2-7/igt@i915_pm_sseu@full-enable.html - shard-dg1: NOTRUN -> [SKIP][135] ([i915#4387]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg1-12/igt@i915_pm_sseu@full-enable.html - shard-tglu: NOTRUN -> [SKIP][136] ([i915#4387]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-tglu-2/igt@i915_pm_sseu@full-enable.html - shard-mtlp: NOTRUN -> [SKIP][137] ([i915#8437]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-mtlp-1/igt@i915_pm_sseu@full-enable.html * igt@i915_query@hwconfig_table: - shard-rkl: NOTRUN -> [SKIP][138] ([i915#6245]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-rkl-7/igt@i915_query@hwconfig_table.html * igt@i915_selftest@live@sanitycheck: - shard-snb: [PASS][139] -> [ABORT][140] ([i915#11703]) +1 other test abort [139]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16129/shard-snb6/igt@i915_selftest@live@sanitycheck.html [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-snb5/igt@i915_selftest@live@sanitycheck.html * igt@i915_selftest@mock: - shard-glk: NOTRUN -> [DMESG-WARN][141] ([i915#9311]) +1 other test dmesg-warn [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-glk3/igt@i915_selftest@mock.html * igt@i915_suspend@fence-restore-tiled2untiled: - shard-glk: NOTRUN -> [INCOMPLETE][142] ([i915#4817]) +1 other test incomplete [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-glk4/igt@i915_suspend@fence-restore-tiled2untiled.html * igt@intel_hwmon@hwmon-write: - shard-mtlp: NOTRUN -> [SKIP][143] ([i915#7707]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-mtlp-1/igt@intel_hwmon@hwmon-write.html * igt@kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-rkl: NOTRUN -> [SKIP][144] ([i915#12454] / [i915#12712]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-rkl-1/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-c-hdmi-a-2-y-rc-ccs-cc: - shard-rkl: NOTRUN -> [SKIP][145] ([i915#8709]) +2 other tests skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-rkl-8/igt@kms_async_flips@async-flip-with-page-flip-events-atomic@pipe-c-hdmi-a-2-y-rc-ccs-cc.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc: - shard-tglu-1: NOTRUN -> [SKIP][146] ([i915#8709]) +3 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-tglu-1/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-1-y-rc-ccs-cc.html * igt@kms_async_flips@invalid-async-flip: - shard-dg2: NOTRUN -> [SKIP][147] ([i915#12967] / [i915#6228]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg2-5/igt@kms_async_flips@invalid-async-flip.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-glk: NOTRUN -> [SKIP][148] ([i915#1769]) +1 other test skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-glk8/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_atomic_transition@plane-toggle-modeset-transition: - shard-dg2: [PASS][149] -> [FAIL][150] ([i915#5956]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16129/shard-dg2-5/igt@kms_atomic_transition@plane-toggle-modeset-transition.html [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg2-10/igt@kms_atomic_transition@plane-toggle-modeset-transition.html * igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-dp-4: - shard-dg2: NOTRUN -> [FAIL][151] ([i915#5956]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg2-10/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-dp-4.html * igt@kms_big_fb@4-tiled-64bpp-rotate-90: - shard-tglu-1: NOTRUN -> [SKIP][152] ([i915#5286]) +3 other tests skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-tglu-1/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html * igt@kms_big_fb@4-tiled-8bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][153] ([i915#5286]) +6 other tests skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-rkl-1/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html - shard-dg1: NOTRUN -> [SKIP][154] ([i915#4538] / [i915#5286]) +3 other tests skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg1-13/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip: - shard-tglu: NOTRUN -> [SKIP][155] ([i915#5286]) +5 other tests skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-tglu-2/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-mtlp: [PASS][156] -> [FAIL][157] ([i915#5138]) +1 other test fail [156]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16129/shard-mtlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-mtlp-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@linear-32bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][158] ([i915#3638]) +1 other test skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg1-15/igt@kms_big_fb@linear-32bpp-rotate-90.html * igt@kms_big_fb@x-tiled-32bpp-rotate-270: - shard-dg2-9: NOTRUN -> [SKIP][159] +7 other tests skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg2-9/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html * igt@kms_big_fb@x-tiled-8bpp-rotate-270: - shard-mtlp: NOTRUN -> [SKIP][160] +11 other tests skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-mtlp-5/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html * igt@kms_big_fb@y-tiled-64bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][161] ([i915#3638]) +3 other tests skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-rkl-5/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html * igt@kms_big_fb@y-tiled-8bpp-rotate-270: - shard-dg2-9: NOTRUN -> [SKIP][162] ([i915#4538] / [i915#5190]) +5 other tests skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg2-9/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html * igt@kms_big_fb@y-tiled-addfb: - shard-dg2-9: NOTRUN -> [SKIP][163] ([i915#5190]) +1 other test skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg2-9/igt@kms_big_fb@y-tiled-addfb.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][164] ([i915#4538] / [i915#5190]) +7 other tests skip [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg2-8/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: - shard-dg1: NOTRUN -> [SKIP][165] ([i915#4538]) +2 other tests skip [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg1-12/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html * igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs: - shard-mtlp: NOTRUN -> [SKIP][166] ([i915#6095]) +29 other tests skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-mtlp-3/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][167] ([i915#6095]) +159 other tests skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg1-15/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4.html * igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-2: - shard-dg2-9: NOTRUN -> [SKIP][168] ([i915#10307] / [i915#6095]) +34 other tests skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg2-9/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][169] ([i915#10307] / [i915#6095]) +161 other tests skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg2-4/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs.html * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][170] ([i915#6095]) +74 other tests skip [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-tglu-5/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs: - shard-tglu: NOTRUN -> [SKIP][171] ([i915#12313]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-tglu-9/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-tglu: NOTRUN -> [SKIP][172] ([i915#12805]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-tglu-6/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][173] ([i915#6095]) +89 other tests skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-rkl-3/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs: - shard-dg2-9: NOTRUN -> [SKIP][174] ([i915#12805]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg2-9/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html - shard-mtlp: NOTRUN -> [SKIP][175] ([i915#12805]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-mtlp-8/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-2: - shard-dg2-9: NOTRUN -> [SKIP][176] ([i915#6095]) +4 other tests skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg2-9/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-2.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][177] ([i915#6095]) +13 other tests skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg2-8/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs: - shard-rkl: NOTRUN -> [SKIP][178] ([i915#12313]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][179] ([i915#10307] / [i915#10434] / [i915#6095]) +2 other tests skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg2-8/igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-b-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][180] ([i915#6095]) +59 other tests skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-tglu-1/igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-b-hdmi-a-1.html * igt@kms_cdclk@mode-transition: - shard-dg2-9: NOTRUN -> [SKIP][181] ([i915#11616] / [i915#7213]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg2-9/igt@kms_cdclk@mode-transition.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-tglu-1: NOTRUN -> [SKIP][182] ([i915#3742]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-tglu-1/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_cdclk@mode-transition@pipe-b-hdmi-a-2: - shard-dg2-9: NOTRUN -> [SKIP][183] ([i915#7213]) +3 other tests skip [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg2-9/igt@kms_cdclk@mode-transition@pipe-b-hdmi-a-2.html * igt@kms_cdclk@plane-scaling@pipe-b-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][184] ([i915#4087]) +3 other tests skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg2-6/igt@kms_cdclk@plane-scaling@pipe-b-hdmi-a-3.html * igt@kms_chamelium_audio@dp-audio: - shard-tglu: NOTRUN -> [SKIP][185] ([i915#11151] / [i915#7828]) +8 other tests skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-tglu-2/igt@kms_chamelium_audio@dp-audio.html * igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k: - shard-tglu-1: NOTRUN -> [SKIP][186] ([i915#11151] / [i915#7828]) +4 other tests skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-tglu-1/igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k.html * igt@kms_chamelium_edid@hdmi-edid-change-during-suspend: - shard-rkl: NOTRUN -> [SKIP][187] ([i915#11151] / [i915#7828]) +7 other tests skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-rkl-5/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html - shard-dg1: NOTRUN -> [SKIP][188] ([i915#11151] / [i915#7828]) +3 other tests skip [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg1-15/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html * igt@kms_chamelium_hpd@dp-hpd-fast: - shard-dg2-9: NOTRUN -> [SKIP][189] ([i915#11151] / [i915#7828]) +3 other tests skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg2-9/igt@kms_chamelium_hpd@dp-hpd-fast.html * igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode: - shard-mtlp: NOTRUN -> [SKIP][190] ([i915#11151] / [i915#7828]) +3 other tests skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-mtlp-3/igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode.html - shard-dg2: NOTRUN -> [SKIP][191] ([i915#11151] / [i915#7828]) +3 other tests skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg2-8/igt@kms_chamelium_hpd@vga-hpd-enable-disable-mode.html * igt@kms_color@deep-color: - shard-dg2-9: NOTRUN -> [SKIP][192] ([i915#3555]) +4 other tests skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg2-9/igt@kms_color@deep-color.html * igt@kms_content_protection@atomic-dpms: - shard-dg2-9: NOTRUN -> [SKIP][193] ([i915#7118] / [i915#9424]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg2-9/igt@kms_content_protection@atomic-dpms.html - shard-rkl: NOTRUN -> [SKIP][194] ([i915#7118] / [i915#9424]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-rkl-7/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@dp-mst-type-0: - shard-tglu: NOTRUN -> [SKIP][195] ([i915#3116] / [i915#3299]) +1 other test skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-tglu-2/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@lic-type-0: - shard-tglu-1: NOTRUN -> [SKIP][196] ([i915#6944] / [i915#9424]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-tglu-1/igt@kms_content_protection@lic-type-0.html * igt@kms_content_protection@lic-type-1: - shard-tglu: NOTRUN -> [SKIP][197] ([i915#6944] / [i915#9424]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-tglu-3/igt@kms_content_protection@lic-type-1.html * igt@kms_content_protection@mei-interface: - shard-rkl: NOTRUN -> [SKIP][198] ([i915#9424]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-rkl-8/igt@kms_content_protection@mei-interface.html * igt@kms_content_protection@srm@pipe-a-dp-4: - shard-dg2: NOTRUN -> [FAIL][199] ([i915#7173]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg2-10/igt@kms_content_protection@srm@pipe-a-dp-4.html * igt@kms_content_protection@uevent: - shard-mtlp: NOTRUN -> [SKIP][200] ([i915#6944] / [i915#9424]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-mtlp-4/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-offscreen-32x10: - shard-tglu-1: NOTRUN -> [SKIP][201] ([i915#3555]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-tglu-1/igt@kms_cursor_crc@cursor-offscreen-32x10.html * igt@kms_cursor_crc@cursor-offscreen-512x170: - shard-tglu: NOTRUN -> [SKIP][202] ([i915#13049]) +2 other tests skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-tglu-7/igt@kms_cursor_crc@cursor-offscreen-512x170.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-dg2: NOTRUN -> [SKIP][203] ([i915#13049]) +1 other test skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg2-5/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_crc@cursor-onscreen-32x32: - shard-rkl: NOTRUN -> [SKIP][204] ([i915#3555]) +7 other tests skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-rkl-5/igt@kms_cursor_crc@cursor-onscreen-32x32.html * igt@kms_cursor_crc@cursor-onscreen-512x170: - shard-tglu-1: NOTRUN -> [SKIP][205] ([i915#13049]) +1 other test skip [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-tglu-1/igt@kms_cursor_crc@cursor-onscreen-512x170.html * igt@kms_cursor_crc@cursor-onscreen-64x21@pipe-a-hdmi-a-1: - shard-tglu: NOTRUN -> [FAIL][206] ([i915#13566]) +1 other test fail [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-tglu-4/igt@kms_cursor_crc@cursor-onscreen-64x21@pipe-a-hdmi-a-1.html * igt@kms_cursor_crc@cursor-rapid-movement-64x21: - shard-mtlp: NOTRUN -> [SKIP][207] ([i915#8814]) +1 other test skip [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-mtlp-6/igt@kms_cursor_crc@cursor-rapid-movement-64x21.html * igt@kms_cursor_crc@cursor-sliding-128x42: - shard-tglu: [PASS][208] -> [FAIL][209] ([i915#13566]) +3 other tests fail [208]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16129/shard-tglu-9/igt@kms_cursor_crc@cursor-sliding-128x42.html [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-tglu-5/igt@kms_cursor_crc@cursor-sliding-128x42.html - shard-rkl: [PASS][210] -> [FAIL][211] ([i915#13566]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16129/shard-rkl-2/igt@kms_cursor_crc@cursor-sliding-128x42.html [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-rkl-3/igt@kms_cursor_crc@cursor-sliding-128x42.html * igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [FAIL][212] ([i915#13566]) +5 other tests fail [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-rkl-3/igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-2.html * igt@kms_cursor_crc@cursor-sliding-32x10: - shard-dg2: NOTRUN -> [SKIP][213] ([i915#3555]) +3 other tests skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg2-3/igt@kms_cursor_crc@cursor-sliding-32x10.html - shard-mtlp: NOTRUN -> [SKIP][214] ([i915#3555] / [i915#8814]) +1 other test skip [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-mtlp-5/igt@kms_cursor_crc@cursor-sliding-32x10.html * igt@kms_cursor_crc@cursor-sliding-512x170: - shard-mtlp: NOTRUN -> [SKIP][215] ([i915#13049]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-mtlp-7/igt@kms_cursor_crc@cursor-sliding-512x170.html - shard-dg2-9: NOTRUN -> [SKIP][216] ([i915#13049]) +1 other test skip [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg2-9/igt@kms_cursor_crc@cursor-sliding-512x170.html * igt@kms_cursor_crc@cursor-sliding-512x512: - shard-rkl: NOTRUN -> [SKIP][217] ([i915#13049]) +1 other test skip [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-rkl-7/igt@kms_cursor_crc@cursor-sliding-512x512.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-dg2-9: NOTRUN -> [SKIP][218] ([i915#4103] / [i915#4213]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg2-9/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html - shard-rkl: NOTRUN -> [SKIP][219] ([i915#4103]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-rkl-4/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-tglu-1: NOTRUN -> [SKIP][220] ([i915#4103]) +1 other test skip [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-tglu-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions: - shard-dg2-9: NOTRUN -> [SKIP][221] ([i915#13046] / [i915#5354]) +2 other tests skip [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg2-9/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions.html * igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size: - shard-rkl: NOTRUN -> [SKIP][222] +21 other tests skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-rkl-3/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html - shard-mtlp: NOTRUN -> [SKIP][223] ([i915#9809]) +1 other test skip [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-mtlp-7/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@cursora-vs-flipb-legacy: - shard-dg2: NOTRUN -> [SKIP][224] ([i915#13046] / [i915#5354]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg2-5/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html * igt@kms_dirtyfb@psr-dirtyfb-ioctl: - shard-tglu-1: NOTRUN -> [SKIP][225] ([i915#9723]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-tglu-1/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc: - shard-rkl: NOTRUN -> [SKIP][226] ([i915#3555] / [i915#3804]) [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-rkl-7/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][227] ([i915#3804]) [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-rkl-7/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html * igt@kms_dp_linktrain_fallback@dp-fallback: - shard-dg2: [PASS][228] -> [SKIP][229] ([i915#12402]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16129/shard-dg2-11/igt@kms_dp_linktrain_fallback@dp-fallback.html [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg2-5/igt@kms_dp_linktrain_fallback@dp-fallback.html * igt@kms_draw_crc@draw-method-mmap-wc: - shard-dg2-9: NOTRUN -> [SKIP][230] ([i915#8812]) [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg2-9/igt@kms_draw_crc@draw-method-mmap-wc.html - shard-dg1: NOTRUN -> [SKIP][231] ([i915#8812]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg1-19/igt@kms_draw_crc@draw-method-mmap-wc.html * igt@kms_dsc@dsc-with-bpc: - shard-tglu: NOTRUN -> [SKIP][232] ([i915#3555] / [i915#3840]) +1 other test skip [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-tglu-4/igt@kms_dsc@dsc-with-bpc.html * igt@kms_dsc@dsc-with-output-formats: - shard-mtlp: NOTRUN -> [SKIP][233] ([i915#3555] / [i915#3840]) +1 other test skip [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-mtlp-5/igt@kms_dsc@dsc-with-output-formats.html - shard-dg2: NOTRUN -> [SKIP][234] ([i915#3555] / [i915#3840]) +1 other test skip [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg2-3/igt@kms_dsc@dsc-with-output-formats.html - shard-rkl: NOTRUN -> [SKIP][235] ([i915#3555] / [i915#3840]) +2 other tests skip [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-rkl-1/igt@kms_dsc@dsc-with-output-formats.html - shard-dg1: NOTRUN -> [SKIP][236] ([i915#3555] / [i915#3840]) +1 other test skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg1-13/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_fbcon_fbt@psr-suspend: - shard-dg2: NOTRUN -> [SKIP][237] ([i915#3469]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg2-5/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_feature_discovery@display-3x: - shard-rkl: NOTRUN -> [SKIP][238] ([i915#1839]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-rkl-1/igt@kms_feature_discovery@display-3x.html - shard-tglu-1: NOTRUN -> [SKIP][239] ([i915#1839]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-tglu-1/igt@kms_feature_discovery@display-3x.html * igt@kms_feature_discovery@display-4x: - shard-tglu: NOTRUN -> [SKIP][240] ([i915#1839]) +1 other test skip [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-tglu-5/igt@kms_feature_discovery@display-4x.html * igt@kms_fence_pin_leak: - shard-dg2: NOTRUN -> [SKIP][241] ([i915#4881]) [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg2-4/igt@kms_fence_pin_leak.html * igt@kms_flip@2x-blocking-wf_vblank@ab-vga1-hdmi-a1: - shard-snb: [PASS][242] -> [FAIL][243] ([i915#11989]) +3 other tests fail [242]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16129/shard-snb4/igt@kms_flip@2x-blocking-wf_vblank@ab-vga1-hdmi-a1.html [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-snb1/igt@kms_flip@2x-blocking-wf_vblank@ab-vga1-hdmi-a1.html * igt@kms_flip@2x-flip-vs-blocking-wf-vblank: - shard-dg2-9: NOTRUN -> [SKIP][244] ([i915#9934]) +1 other test skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg2-9/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html * igt@kms_flip@2x-flip-vs-fences-interruptible: - shard-rkl: NOTRUN -> [SKIP][245] ([i915#9934]) +8 other tests skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-rkl-7/igt@kms_flip@2x-flip-vs-fences-interruptible.html - shard-dg2: NOTRUN -> [SKIP][246] ([i915#8381]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg2-8/igt@kms_flip@2x-flip-vs-fences-interruptible.html * igt@kms_flip@2x-flip-vs-panning: - shard-dg2: NOTRUN -> [SKIP][247] ([i915#9934]) +5 other tests skip [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg2-5/igt@kms_flip@2x-flip-vs-panning.html * igt@kms_flip@2x-modeset-vs-vblank-race-interruptible: - shard-mtlp: NOTRUN -> [SKIP][248] ([i915#3637]) +5 other tests skip [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-mtlp-4/igt@kms_flip@2x-modeset-vs-vblank-race-interruptible.html - shard-dg1: NOTRUN -> [SKIP][249] ([i915#9934]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg1-15/igt@kms_flip@2x-modeset-vs-vblank-race-interruptible.html * igt@kms_flip@2x-plain-flip-ts-check-interruptible: - shard-tglu: NOTRUN -> [SKIP][250] ([i915#3637]) +7 other tests skip [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-tglu-6/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html * igt@kms_flip@2x-wf_vblank-ts-check: - shard-tglu-1: NOTRUN -> [SKIP][251] ([i915#3637]) +1 other test skip [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-tglu-1/igt@kms_flip@2x-wf_vblank-ts-check.html * igt@kms_flip@absolute-wf_vblank-interruptible: - shard-rkl: [PASS][252] -> [DMESG-WARN][253] ([i915#12917] / [i915#12964]) +2 other tests dmesg-warn [252]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16129/shard-rkl-1/igt@kms_flip@absolute-wf_vblank-interruptible.html [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-rkl-1/igt@kms_flip@absolute-wf_vblank-interruptible.html * igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible: - shard-tglu: [PASS][254] -> [FAIL][255] ([i915#11989]) +1 other test fail [254]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16129/shard-tglu-2/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-tglu-5/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html * igt@kms_flip@flip-vs-fences: - shard-dg1: NOTRUN -> [SKIP][256] ([i915#8381]) [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg1-19/igt@kms_flip@flip-vs-fences.html * igt@kms_flip@wf_vblank-ts-check-interruptible@a-edp1: - shard-mtlp: [PASS][257] -> [FAIL][258] ([i915#11989]) +1 other test fail [257]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16129/shard-mtlp-1/igt@kms_flip@wf_vblank-ts-check-interruptible@a-edp1.html [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-mtlp-5/igt@kms_flip@wf_vblank-ts-check-interruptible@a-edp1.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][259] ([i915#2672] / [i915#8813]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling: - shard-dg1: NOTRUN -> [SKIP][260] ([i915#2672] / [i915#3555]) [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg1-13/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-dg1: NOTRUN -> [SKIP][261] ([i915#2587] / [i915#2672]) +1 other test skip [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg1-13/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: - shard-tglu-1: NOTRUN -> [SKIP][262] ([i915#2672] / [i915#3555]) [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-tglu-1/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-valid-mode: - shard-tglu-1: NOTRUN -> [SKIP][263] ([i915#2587] / [i915#2672]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling: - shard-dg2: NOTRUN -> [SKIP][264] ([i915#2672] / [i915#3555]) [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg2-8/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][265] ([i915#2672]) +3 other tests skip [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-rkl-7/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling: - shard-dg2: NOTRUN -> [SKIP][266] ([i915#2672] / [i915#3555] / [i915#5190]) [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg2-7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html - shard-dg1: NOTRUN -> [SKIP][267] ([i915#2587] / [i915#2672] / [i915#3555]) [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg1-12/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][268] ([i915#2672]) +1 other test skip [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg2-7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling: - shard-tglu: NOTRUN -> [SKIP][269] ([i915#2587] / [i915#2672] / [i915#3555]) +1 other test skip [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/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-tglu: NOTRUN -> [SKIP][270] ([i915#2587] / [i915#2672]) +1 other test skip [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-tglu-7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling: - shard-dg2-9: NOTRUN -> [SKIP][271] ([i915#2672] / [i915#3555] / [i915#5190]) [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg2-9/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-valid-mode: - shard-dg2-9: NOTRUN -> [SKIP][272] ([i915#2672]) +1 other test skip [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg2-9/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling: - shard-rkl: NOTRUN -> [SKIP][273] ([i915#2672] / [i915#3555]) +3 other tests skip [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-rkl-5/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling: - shard-dg2-9: NOTRUN -> [SKIP][274] ([i915#2672] / [i915#3555]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg2-9/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling: - shard-mtlp: NOTRUN -> [SKIP][275] ([i915#2672] / [i915#3555] / [i915#8813]) +6 other tests skip [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen: - shard-snb: [PASS][276] -> [SKIP][277] +4 other tests skip [276]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16129/shard-snb1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-snb6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][278] ([i915#8708]) +1 other test skip [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render: - shard-dg1: NOTRUN -> [SKIP][279] +20 other tests skip [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg1-19/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-onoff: - shard-tglu: NOTRUN -> [SKIP][280] +64 other tests skip [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-tglu-9/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt: - shard-dg2: NOTRUN -> [SKIP][281] ([i915#5354]) +22 other tests skip [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbc-tiling-4: - shard-rkl: NOTRUN -> [SKIP][282] ([i915#5439]) [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-rkl-1/igt@kms_frontbuffer_tracking@fbc-tiling-4.html - shard-tglu-1: NOTRUN -> [SKIP][283] ([i915#5439]) [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-tglu-1/igt@kms_frontbuffer_tracking@fbc-tiling-4.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite: - shard-dg2: NOTRUN -> [SKIP][284] ([i915#3458]) +13 other tests skip [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-gtt: - shard-dg2-9: NOTRUN -> [SKIP][285] ([i915#8708]) +10 other tests skip [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg2-9/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][286] ([i915#8708]) +5 other tests skip [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg1-13/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw: - shard-rkl: NOTRUN -> [SKIP][287] ([i915#3023]) +21 other tests skip [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][288] ([i915#8708]) +10 other tests skip [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg2-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-pwrite: - shard-tglu-1: NOTRUN -> [SKIP][289] +65 other tests skip [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-pwrite: - shard-dg2-9: NOTRUN -> [SKIP][290] ([i915#3458]) +10 other tests skip [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg2-9/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-dg2: NOTRUN -> [SKIP][291] ([i915#10055]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html - shard-mtlp: NOTRUN -> [SKIP][292] ([i915#10055]) [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt@kms_frontbuffer_tracking@pipe-fbc-rte: - shard-tglu-1: NOTRUN -> [SKIP][293] ([i915#9766]) [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-tglu-1/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt: - shard-dg1: NOTRUN -> [SKIP][294] ([i915#3458]) +7 other tests skip [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg1-19/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt: - shard-mtlp: NOTRUN -> [SKIP][295] ([i915#1825]) +16 other tests skip [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-mtlp-5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-blt: - shard-dg2-9: NOTRUN -> [SKIP][296] ([i915#5354]) +19 other tests skip [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg2-9/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt: - shard-rkl: NOTRUN -> [SKIP][297] ([i915#1825]) +33 other tests skip [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html * igt@kms_hdr@bpc-switch: - shard-dg2: NOTRUN -> [SKIP][298] ([i915#3555] / [i915#8228]) +1 other test skip [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg2-5/igt@kms_hdr@bpc-switch.html * igt@kms_hdr@bpc-switch-dpms: - shard-rkl: NOTRUN -> [SKIP][299] ([i915#3555] / [i915#8228]) +1 other test skip [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-rkl-5/igt@kms_hdr@bpc-switch-dpms.html - shard-dg1: NOTRUN -> [SKIP][300] ([i915#3555] / [i915#8228]) +1 other test skip [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg1-15/igt@kms_hdr@bpc-switch-dpms.html - shard-tglu: NOTRUN -> [SKIP][301] ([i915#3555] / [i915#8228]) +1 other test skip [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-tglu-3/igt@kms_hdr@bpc-switch-dpms.html * igt@kms_hdr@bpc-switch-suspend: - shard-dg2-9: NOTRUN -> [SKIP][302] ([i915#3555] / [i915#8228]) [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg2-9/igt@kms_hdr@bpc-switch-suspend.html * igt@kms_hdr@static-toggle: - shard-dg2: [PASS][303] -> [SKIP][304] ([i915#3555] / [i915#8228]) +1 other test skip [303]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16129/shard-dg2-10/igt@kms_hdr@static-toggle.html [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg2-2/igt@kms_hdr@static-toggle.html * igt@kms_joiner@basic-big-joiner: - shard-rkl: NOTRUN -> [SKIP][305] ([i915#10656]) +1 other test skip [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-rkl-3/igt@kms_joiner@basic-big-joiner.html - shard-dg1: NOTRUN -> [SKIP][306] ([i915#10656]) [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg1-12/igt@kms_joiner@basic-big-joiner.html - shard-tglu: NOTRUN -> [SKIP][307] ([i915#10656]) +1 other test skip [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-tglu-5/igt@kms_joiner@basic-big-joiner.html - shard-mtlp: NOTRUN -> [SKIP][308] ([i915#10656]) [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-mtlp-7/igt@kms_joiner@basic-big-joiner.html - shard-dg2: NOTRUN -> [SKIP][309] ([i915#10656]) [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg2-11/igt@kms_joiner@basic-big-joiner.html * igt@kms_joiner@basic-ultra-joiner: - shard-tglu-1: NOTRUN -> [SKIP][310] ([i915#12339]) [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-tglu-1/igt@kms_joiner@basic-ultra-joiner.html - shard-dg2: NOTRUN -> [SKIP][311] ([i915#12339]) [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg2-8/igt@kms_joiner@basic-ultra-joiner.html * igt@kms_joiner@invalid-modeset-force-big-joiner: - shard-dg2-9: NOTRUN -> [SKIP][312] ([i915#12388]) [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg2-9/igt@kms_joiner@invalid-modeset-force-big-joiner.html * igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner: - shard-dg2-9: NOTRUN -> [SKIP][313] ([i915#13522]) [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg2-9/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html * igt@kms_panel_fitting@atomic-fastset: - shard-rkl: NOTRUN -> [SKIP][314] ([i915#6301]) [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-rkl-4/igt@kms_panel_fitting@atomic-fastset.html * igt@kms_panel_fitting@legacy: - shard-dg2: NOTRUN -> [SKIP][315] ([i915#6301]) [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg2-7/igt@kms_panel_fitting@legacy.html * igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a: - shard-glk: [PASS][316] -> [INCOMPLETE][317] ([i915#13026]) [316]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16129/shard-glk6/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-glk1/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html * igt@kms_plane_alpha_blend@alpha-opaque-fb: - shard-glk: NOTRUN -> [FAIL][318] ([i915#10647] / [i915#12169]) [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-glk2/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][319] ([i915#10647]) +1 other test fail [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-glk2/igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1.html * igt@kms_plane_lowres@tiling-y: - shard-dg2-9: NOTRUN -> [SKIP][320] ([i915#8821]) [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg2-9/igt@kms_plane_lowres@tiling-y.html * igt@kms_plane_lowres@tiling-yf: - shard-dg2: NOTRUN -> [SKIP][321] ([i915#3555] / [i915#8821]) [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg2-11/igt@kms_plane_lowres@tiling-yf.html * igt@kms_plane_scaling@2x-scaler-multi-pipe: - shard-dg2: NOTRUN -> [SKIP][322] ([i915#13046] / [i915#5354] / [i915#9423]) [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg2-7/igt@kms_plane_scaling@2x-scaler-multi-pipe.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation: - shard-dg2-9: NOTRUN -> [SKIP][323] ([i915#12247] / [i915#9423]) [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg2-9/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-d: - shard-dg2-9: NOTRUN -> [SKIP][324] ([i915#12247]) +3 other tests skip [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg2-9/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-d.html * igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a: - shard-tglu-1: NOTRUN -> [SKIP][325] ([i915#12247]) +9 other tests skip [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-tglu-1/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a.html * igt@kms_plane_scaling@planes-downscale-factor-0-25: - shard-rkl: NOTRUN -> [SKIP][326] ([i915#12247] / [i915#6953]) [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-rkl-4/igt@kms_plane_scaling@planes-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25: - shard-dg2: NOTRUN -> [SKIP][327] ([i915#12247] / [i915#6953] / [i915#9423]) [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg2-7/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html - shard-dg1: NOTRUN -> [SKIP][328] ([i915#12247] / [i915#6953]) [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg1-12/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html - shard-tglu: NOTRUN -> [SKIP][329] ([i915#12247] / [i915#6953]) [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-tglu-2/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html - shard-mtlp: NOTRUN -> [SKIP][330] ([i915#12247] / [i915#6953]) [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-mtlp-1/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-a: - shard-dg2: NOTRUN -> [SKIP][331] ([i915#12247]) +3 other tests skip [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg2-7/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-a.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b: - shard-mtlp: NOTRUN -> [SKIP][332] ([i915#12247]) +3 other tests skip [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-mtlp-1/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][333] ([i915#12247]) +8 other tests skip [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg1-12/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][334] ([i915#12247]) +7 other tests skip [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-tglu-2/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d.html * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b: - shard-rkl: NOTRUN -> [SKIP][335] ([i915#12247]) +5 other tests skip [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-rkl-4/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25: - shard-tglu: NOTRUN -> [SKIP][336] ([i915#12247] / [i915#3555]) [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-tglu-4/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html - shard-rkl: NOTRUN -> [SKIP][337] ([i915#12247] / [i915#3555]) [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-rkl-4/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25.html * igt@kms_pm_backlight@bad-brightness: - shard-rkl: NOTRUN -> [SKIP][338] ([i915#5354]) [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-rkl-3/igt@kms_pm_backlight@bad-brightness.html - shard-dg1: NOTRUN -> [SKIP][339] ([i915#5354]) [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg1-12/igt@kms_pm_backlight@bad-brightness.html - shard-tglu: NOTRUN -> [SKIP][340] ([i915#9812]) [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-tglu-5/igt@kms_pm_backlight@bad-brightness.html * igt@kms_pm_backlight@brightness-with-dpms: - shard-dg2-9: NOTRUN -> [SKIP][341] ([i915#12343]) [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg2-9/igt@kms_pm_backlight@brightness-with-dpms.html * igt@kms_pm_backlight@fade: - shard-tglu-1: NOTRUN -> [SKIP][342] ([i915#9812]) [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-tglu-1/igt@kms_pm_backlight@fade.html * igt@kms_pm_lpsp@kms-lpsp: - shard-dg2-9: NOTRUN -> [SKIP][343] ([i915#9340]) [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg2-9/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_lpsp@screens-disabled: - shard-mtlp: NOTRUN -> [SKIP][344] ([i915#8430]) [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-mtlp-6/igt@kms_pm_lpsp@screens-disabled.html * igt@kms_pm_rpm@dpms-mode-unset-lpsp: - shard-dg2: NOTRUN -> [SKIP][345] ([i915#9519]) [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg2-7/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-tglu-1: NOTRUN -> [SKIP][346] ([i915#9519]) [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-tglu-1/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@kms_pm_rpm@modeset-lpsp-stress: - shard-dg2-9: NOTRUN -> [SKIP][347] ([i915#9519]) [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg2-9/igt@kms_pm_rpm@modeset-lpsp-stress.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-tglu: NOTRUN -> [SKIP][348] ([i915#9519]) +1 other test skip [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-tglu-7/igt@kms_pm_rpm@modeset-non-lpsp.html - shard-mtlp: NOTRUN -> [SKIP][349] ([i915#9519]) +1 other test skip [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-mtlp-3/igt@kms_pm_rpm@modeset-non-lpsp.html - shard-rkl: NOTRUN -> [SKIP][350] ([i915#9519]) [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-rkl-7/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_pm_rpm@pm-tiling: - shard-dg1: NOTRUN -> [SKIP][351] ([i915#4077]) +6 other tests skip [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg1-14/igt@kms_pm_rpm@pm-tiling.html * igt@kms_prime@basic-crc-hybrid: - shard-tglu-1: NOTRUN -> [SKIP][352] ([i915#6524]) [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-tglu-1/igt@kms_prime@basic-crc-hybrid.html * igt@kms_prime@d3hot: - shard-rkl: NOTRUN -> [SKIP][353] ([i915#6524]) [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-rkl-5/igt@kms_prime@d3hot.html * igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf: - shard-dg2-9: NOTRUN -> [SKIP][354] ([i915#11520]) +5 other tests skip [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg2-9/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][355] ([i915#11520]) +17 other tests skip [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-glk8/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area: - shard-dg1: NOTRUN -> [SKIP][356] ([i915#11520]) +2 other tests skip [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg1-14/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][357] ([i915#9808]) [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-mtlp-6/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][358] ([i915#12316]) +2 other tests skip [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-mtlp-6/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area@pipe-b-edp-1.html * igt@kms_psr2_sf@pr-cursor-plane-update-sf: - shard-tglu: NOTRUN -> [SKIP][359] ([i915#11520]) +7 other tests skip [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-tglu-2/igt@kms_psr2_sf@pr-cursor-plane-update-sf.html * igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area: - shard-rkl: NOTRUN -> [SKIP][360] ([i915#11520]) +8 other tests skip [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-rkl-6/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html - shard-tglu-1: NOTRUN -> [SKIP][361] ([i915#11520]) +4 other tests skip [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-tglu-1/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf: - shard-dg2: NOTRUN -> [SKIP][362] ([i915#11520]) +5 other tests skip [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg2-1/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr2_su@page_flip-p010: - shard-dg2-9: NOTRUN -> [SKIP][363] ([i915#9683]) +1 other test skip [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg2-9/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr@fbc-psr-cursor-plane-move: - shard-dg2-9: NOTRUN -> [SKIP][364] ([i915#1072] / [i915#9732]) +12 other tests skip [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg2-9/igt@kms_psr@fbc-psr-cursor-plane-move.html * igt@kms_psr@fbc-psr-no-drrs: - shard-tglu: NOTRUN -> [SKIP][365] ([i915#9732]) +22 other tests skip [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-tglu-2/igt@kms_psr@fbc-psr-no-drrs.html * igt@kms_psr@pr-basic: - shard-mtlp: NOTRUN -> [SKIP][366] ([i915#9688]) +7 other tests skip [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-mtlp-8/igt@kms_psr@pr-basic.html * igt@kms_psr@psr-primary-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][367] ([i915#1072] / [i915#9732]) +18 other tests skip [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg2-3/igt@kms_psr@psr-primary-mmap-cpu.html * igt@kms_psr@psr-sprite-mmap-cpu: - shard-tglu-1: NOTRUN -> [SKIP][368] ([i915#9732]) +15 other tests skip [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-tglu-1/igt@kms_psr@psr-sprite-mmap-cpu.html * igt@kms_psr@psr-sprite-plane-move: - shard-rkl: NOTRUN -> [SKIP][369] ([i915#1072] / [i915#9732]) +23 other tests skip [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-rkl-4/igt@kms_psr@psr-sprite-plane-move.html * igt@kms_psr@psr2-sprite-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][370] ([i915#1072] / [i915#9732]) +10 other tests skip [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg1-14/igt@kms_psr@psr2-sprite-mmap-gtt.html - shard-mtlp: NOTRUN -> [SKIP][371] ([i915#4077] / [i915#9688]) +1 other test skip [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-mtlp-6/igt@kms_psr@psr2-sprite-mmap-gtt.html * igt@kms_psr@psr2-sprite-plane-onoff: - shard-glk: NOTRUN -> [SKIP][372] +532 other tests skip [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-glk1/igt@kms_psr@psr2-sprite-plane-onoff.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-dg2-9: NOTRUN -> [SKIP][373] ([i915#9685]) [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg2-9/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rotation_crc@primary-rotation-270: - shard-dg2: NOTRUN -> [SKIP][374] ([i915#12755]) +1 other test skip [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg2-11/igt@kms_rotation_crc@primary-rotation-270.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-tglu: NOTRUN -> [SKIP][375] ([i915#5289]) [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-tglu-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-dg2: NOTRUN -> [SKIP][376] ([i915#5190]) [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg2-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-rkl: NOTRUN -> [SKIP][377] ([i915#5289]) +1 other test skip [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-rkl-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html - shard-dg1: NOTRUN -> [SKIP][378] ([i915#5289]) [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg1-18/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_rotation_crc@sprite-rotation-90: - shard-mtlp: NOTRUN -> [SKIP][379] ([i915#12755]) +1 other test skip [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-mtlp-3/igt@kms_rotation_crc@sprite-rotation-90.html * igt@kms_selftest@drm_framebuffer: - shard-glk: NOTRUN -> [ABORT][380] ([i915#13179]) +1 other test abort [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-glk3/igt@kms_selftest@drm_framebuffer.html * igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_free: - shard-dg2-9: NOTRUN -> [ABORT][381] ([i915#13179]) +1 other test abort [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg2-9/igt@kms_selftest@drm_framebuffer@drm_test_framebuffer_free.html * igt@kms_setmode@clone-exclusive-crtc: - shard-dg1: NOTRUN -> [SKIP][382] ([i915#3555]) +3 other tests skip [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg1-15/igt@kms_setmode@clone-exclusive-crtc.html - shard-tglu: NOTRUN -> [SKIP][383] ([i915#3555]) +3 other tests skip [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-tglu-3/igt@kms_setmode@clone-exclusive-crtc.html - shard-mtlp: NOTRUN -> [SKIP][384] ([i915#3555] / [i915#8809]) +1 other test skip [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-mtlp-4/igt@kms_setmode@clone-exclusive-crtc.html * igt@kms_sysfs_edid_timing: - shard-dg2: NOTRUN -> [FAIL][385] ([IGT#160]) [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg2-6/igt@kms_sysfs_edid_timing.html - shard-dg1: NOTRUN -> [FAIL][386] ([IGT#160] / [i915#6493]) [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg1-17/igt@kms_sysfs_edid_timing.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-dg1: NOTRUN -> [SKIP][387] ([i915#8623]) [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg1-17/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html - shard-tglu: NOTRUN -> [SKIP][388] ([i915#8623]) [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-tglu-7/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html - shard-mtlp: NOTRUN -> [SKIP][389] ([i915#8623]) [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-mtlp-6/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_vblank@ts-continuation-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][390] ([i915#12276]) +1 other test incomplete [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-glk6/igt@kms_vblank@ts-continuation-suspend.html * igt@kms_vrr@flip-basic-fastset: - shard-tglu-1: NOTRUN -> [SKIP][391] ([i915#9906]) [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-tglu-1/igt@kms_vrr@flip-basic-fastset.html * igt@kms_vrr@negative-basic: - shard-dg2: [PASS][392] -> [SKIP][393] ([i915#3555] / [i915#9906]) [392]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16129/shard-dg2-11/igt@kms_vrr@negative-basic.html [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg2-3/igt@kms_vrr@negative-basic.html * igt@kms_vrr@seamless-rr-switch-drrs: - shard-mtlp: NOTRUN -> [SKIP][394] ([i915#8808] / [i915#9906]) [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-mtlp-7/igt@kms_vrr@seamless-rr-switch-drrs.html * igt@kms_vrr@seamless-rr-switch-virtual: - shard-dg2-9: NOTRUN -> [SKIP][395] ([i915#9906]) [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg2-9/igt@kms_vrr@seamless-rr-switch-virtual.html - shard-rkl: NOTRUN -> [SKIP][396] ([i915#9906]) [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-rkl-7/igt@kms_vrr@seamless-rr-switch-virtual.html - shard-dg1: NOTRUN -> [SKIP][397] ([i915#9906]) [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg1-19/igt@kms_vrr@seamless-rr-switch-virtual.html * igt@kms_vrr@seamless-rr-switch-vrr: - shard-tglu: NOTRUN -> [SKIP][398] ([i915#9906]) [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-tglu-9/igt@kms_vrr@seamless-rr-switch-vrr.html * igt@kms_writeback@writeback-fb-id: - shard-glk: NOTRUN -> [SKIP][399] ([i915#2437]) +3 other tests skip [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-glk9/igt@kms_writeback@writeback-fb-id.html - shard-dg2: NOTRUN -> [SKIP][400] ([i915#2437]) [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg2-4/igt@kms_writeback@writeback-fb-id.html - shard-tglu-1: NOTRUN -> [SKIP][401] ([i915#2437]) [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-tglu-1/igt@kms_writeback@writeback-fb-id.html * igt@kms_writeback@writeback-fb-id-xrgb2101010: - shard-rkl: NOTRUN -> [SKIP][402] ([i915#2437] / [i915#9412]) [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-rkl-8/igt@kms_writeback@writeback-fb-id-xrgb2101010.html * igt@kms_writeback@writeback-invalid-parameters: - shard-dg2-9: NOTRUN -> [SKIP][403] ([i915#2437]) [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg2-9/igt@kms_writeback@writeback-invalid-parameters.html - shard-rkl: NOTRUN -> [SKIP][404] ([i915#2437]) [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-rkl-4/igt@kms_writeback@writeback-invalid-parameters.html * igt@perf@gen8-unprivileged-single-ctx-counters: - shard-dg2-9: NOTRUN -> [SKIP][405] ([i915#2436]) [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg2-9/igt@perf@gen8-unprivileged-single-ctx-counters.html * igt@perf@global-sseu-config-invalid: - shard-dg2-9: NOTRUN -> [SKIP][406] ([i915#7387]) [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg2-9/igt@perf@global-sseu-config-invalid.html * igt@perf@unprivileged-single-ctx-counters: - shard-rkl: NOTRUN -> [SKIP][407] ([i915#2433]) [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-rkl-4/igt@perf@unprivileged-single-ctx-counters.html * igt@perf_pmu@busy-accuracy-98@rcs0: - shard-dg2: [PASS][408] -> [FAIL][409] ([i915#4349]) +1 other test fail [408]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16129/shard-dg2-1/igt@perf_pmu@busy-accuracy-98@rcs0.html [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg2-5/igt@perf_pmu@busy-accuracy-98@rcs0.html * igt@perf_pmu@invalid-init: - shard-tglu-1: NOTRUN -> [FAIL][410] ([i915#13663]) [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-tglu-1/igt@perf_pmu@invalid-init.html - shard-glk: NOTRUN -> [FAIL][411] ([i915#13663]) [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-glk9/igt@perf_pmu@invalid-init.html * igt@perf_pmu@rc6@other-idle-gt0: - shard-dg2-9: NOTRUN -> [SKIP][412] ([i915#8516]) [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg2-9/igt@perf_pmu@rc6@other-idle-gt0.html - shard-rkl: NOTRUN -> [SKIP][413] ([i915#8516]) [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-rkl-4/igt@perf_pmu@rc6@other-idle-gt0.html * igt@prime_vgem@basic-fence-flip: - shard-dg2: NOTRUN -> [SKIP][414] ([i915#3708]) [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg2-11/igt@prime_vgem@basic-fence-flip.html * igt@prime_vgem@basic-fence-read: - shard-dg2: NOTRUN -> [SKIP][415] ([i915#3291] / [i915#3708]) [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/shard-dg2-8/igt@prime_vgem@basic-fence-read.html - shard-rkl: NOTRUN -> [SKIP][416] ([i915#3291] / [i915#3708]) [416]: https://intel-gfx-ci.01.org/tree/drm-tip == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12593/index.html [-- Attachment #2: Type: text/html, Size: 110011 bytes --] ^ permalink raw reply [flat|nested] 12+ 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 22:27 [i-g-t 1/4] lib/xe: Fix a comment error Oak Zeng ` (6 preceding siblings ...) 2025-02-14 4:15 ` ✗ i915.CI.Full: failure " Patchwork @ 2025-02-14 17:42 ` Patchwork 7 siblings, 0 replies; 12+ messages in thread From: Patchwork @ 2025-02-14 17:42 UTC (permalink / raw) To: Oak Zeng; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 94557 bytes --] == Series Details == Series: series starting with [i-g-t,1/4] lib/xe: Fix a comment error URL : https://patchwork.freedesktop.org/series/144828/ State : failure == Summary == CI Bug Log - changes from XEIGT_8229_full -> XEIGTPW_12593_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12593_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12593_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_12593_full: ### IGT changes ### #### Possible regressions #### * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-bmg: [PASS][1] -> [DMESG-WARN][2] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-bmg-4/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-bmg-5/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt@kms_color@deep-color: - shard-dg2-set2: [PASS][3] -> [DMESG-WARN][4] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-dg2-466/igt@kms_color@deep-color.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-dg2-434/igt@kms_color@deep-color.html * igt@kms_flip@2x-modeset-vs-vblank-race: - shard-dg2-set2: NOTRUN -> [DMESG-WARN][5] +2 other tests dmesg-warn [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-dg2-433/igt@kms_flip@2x-modeset-vs-vblank-race.html * igt@xe_exec_fault_mode@scratch-fault (NEW): - shard-dg2-set2: NOTRUN -> [SKIP][6] [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-dg2-463/igt@xe_exec_fault_mode@scratch-fault.html - shard-lnl: NOTRUN -> [FAIL][7] [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-lnl-3/igt@xe_exec_fault_mode@scratch-fault.html - shard-bmg: NOTRUN -> [FAIL][8] [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-bmg-4/igt@xe_exec_fault_mode@scratch-fault.html * igt@xe_vm@invalid-flag-xe_vm_create_scratch_fault: - shard-bmg: NOTRUN -> [SKIP][9] [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-bmg-5/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][10] -> [SKIP][11] +1 other test skip [10]: 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 [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-lnl-3/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][12] ([Intel XE#4172]) -> [SKIP][13] [12]: 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 [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-bmg-4/igt@xe_vm@invalid-flag-xe_vm_create_scratch_fault_lr.html New tests --------- New tests have been introduced between XEIGT_8229_full and XEIGTPW_12593_full: ### New IGT tests (4) ### * igt@kms_cursor_edge_walk@256x256-top-bottom@pipe-d-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [3.24] s * igt@kms_setmode@invalid-clone-single-crtc-stealing@pipe-a-hdmi-a-2-dp-2: - Statuses : 1 pass(s) - Exec time: [0.25] s * igt@kms_setmode@invalid-clone-single-crtc-stealing@pipe-b-hdmi-a-2-dp-2: - Statuses : 1 pass(s) - Exec time: [0.24] s * 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_12593_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_12593/shard-lnl-5/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_12593/shard-lnl-7/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt@kms_async_flips@invalid-async-flip: - shard-dg2-set2: NOTRUN -> [SKIP][16] ([Intel XE#873]) [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-dg2-463/igt@kms_async_flips@invalid-async-flip.html - shard-lnl: NOTRUN -> [SKIP][17] ([Intel XE#873]) [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-lnl-7/igt@kms_async_flips@invalid-async-flip.html - shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#873]) [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-bmg-5/igt@kms_async_flips@invalid-async-flip.html * igt@kms_async_flips@invalid-async-flip-atomic: - shard-dg2-set2: NOTRUN -> [SKIP][19] ([Intel XE#3768]) [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-dg2-434/igt@kms_async_flips@invalid-async-flip-atomic.html - shard-lnl: NOTRUN -> [SKIP][20] ([Intel XE#3768]) [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-lnl-4/igt@kms_async_flips@invalid-async-flip-atomic.html - shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#3768]) [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-bmg-7/igt@kms_async_flips@invalid-async-flip-atomic.html * igt@kms_async_flips@test-cursor-atomic: - shard-lnl: NOTRUN -> [SKIP][22] ([Intel XE#664]) [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-lnl-3/igt@kms_async_flips@test-cursor-atomic.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#2385]) [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-bmg-1/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-lnl: NOTRUN -> [SKIP][24] ([Intel XE#3658]) [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-lnl-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@linear-32bpp-rotate-270: - shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#2327]) +3 other tests skip [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-bmg-7/igt@kms_big_fb@linear-32bpp-rotate-270.html * igt@kms_big_fb@linear-32bpp-rotate-90: - shard-lnl: NOTRUN -> [SKIP][26] ([Intel XE#1407]) +4 other tests skip [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-lnl-6/igt@kms_big_fb@linear-32bpp-rotate-90.html * igt@kms_big_fb@linear-8bpp-rotate-270: - shard-dg2-set2: NOTRUN -> [SKIP][27] ([Intel XE#316]) +6 other tests skip [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-dg2-463/igt@kms_big_fb@linear-8bpp-rotate-270.html * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-lnl: NOTRUN -> [SKIP][28] ([Intel XE#1477]) [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-lnl-2/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html - shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#607]) [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-bmg-5/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-0: - shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#1124]) +16 other tests skip [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-bmg-4/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-180: - shard-dg2-set2: NOTRUN -> [SKIP][31] ([Intel XE#1124]) +21 other tests skip [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-dg2-463/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-8bpp-rotate-0: - shard-lnl: NOTRUN -> [SKIP][32] ([Intel XE#1124]) +15 other tests skip [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/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][33] ([Intel XE#619]) [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-dg2-432/igt@kms_big_fb@yf-tiled-addfb.html * igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p: - shard-bmg: [PASS][34] -> [SKIP][35] ([Intel XE#2314] / [Intel XE#2894]) +1 other test skip [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-bmg-1/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-bmg-4/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html * igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p: - shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#2314] / [Intel XE#2894]) +3 other tests skip [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-bmg-1/igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p.html * igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p: - shard-lnl: NOTRUN -> [SKIP][37] ([Intel XE#2191]) +1 other test skip [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-lnl-4/igt@kms_bw@connected-linear-tiling-3-displays-2160x1440p.html * igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p: - shard-dg2-set2: NOTRUN -> [SKIP][38] ([Intel XE#2191]) +4 other tests skip [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-dg2-432/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html * igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p: - shard-lnl: NOTRUN -> [SKIP][39] ([Intel XE#1512]) +2 other tests skip [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-lnl-7/igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p.html * igt@kms_bw@linear-tiling-1-displays-2560x1440p: - shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#367]) +3 other tests skip [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-bmg-1/igt@kms_bw@linear-tiling-1-displays-2560x1440p.html * igt@kms_bw@linear-tiling-2-displays-1920x1080p: - shard-lnl: NOTRUN -> [SKIP][41] ([Intel XE#367]) [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-lnl-3/igt@kms_bw@linear-tiling-2-displays-1920x1080p.html * igt@kms_bw@linear-tiling-4-displays-2160x1440p: - shard-dg2-set2: NOTRUN -> [SKIP][42] ([Intel XE#367]) +6 other tests skip [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-dg2-433/igt@kms_bw@linear-tiling-4-displays-2160x1440p.html * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][43] ([Intel XE#455] / [Intel XE#787]) +66 other tests skip [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-dg2-464/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-6.html * igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][44] ([Intel XE#2907]) +3 other tests skip [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-dg2-464/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc@pipe-c-dp-2: - shard-dg2-set2: NOTRUN -> [SKIP][45] ([Intel XE#787]) +256 other tests skip [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-dg2-432/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc@pipe-c-dp-2.html * igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs@pipe-c-edp-1: - shard-lnl: NOTRUN -> [SKIP][46] ([Intel XE#2669]) +3 other tests skip [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-lnl-7/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs@pipe-c-edp-1.html * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][47] ([Intel XE#3442]) [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-dg2-464/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-d-hdmi-a-3: - shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#2652] / [Intel XE#787]) +21 other tests skip [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-bmg-7/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-d-hdmi-a-3.html * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs: - shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#3432]) [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-bmg-7/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs.html * igt@kms_ccs@crc-primary-suspend-y-tiled-ccs: - shard-lnl: NOTRUN -> [SKIP][50] ([Intel XE#3432]) +1 other test skip [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-lnl-5/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs: - shard-lnl: NOTRUN -> [SKIP][51] ([Intel XE#2887]) +20 other tests skip [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-lnl-7/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs: - shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#2887]) +20 other tests skip [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-bmg-4/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html - shard-dg2-set2: NOTRUN -> [INCOMPLETE][53] ([Intel XE#1727] / [Intel XE#3124] / [Intel XE#4010]) +1 other test incomplete [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-c-dp-4: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][54] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124] / [Intel XE#4010]) [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-dg2-466/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-c-dp-4.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-dp-4: - shard-dg2-set2: NOTRUN -> [DMESG-WARN][55] ([Intel XE#1727] / [Intel XE#3113]) [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-dp-4.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][56] ([Intel XE#3124] / [Intel XE#4010]) [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-bmg: NOTRUN -> [SKIP][57] ([Intel XE#2724]) +1 other test skip [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-bmg-7/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_cdclk@mode-transition@pipe-b-edp-1: - shard-lnl: NOTRUN -> [SKIP][58] ([Intel XE#314]) +4 other tests skip [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-lnl-4/igt@kms_cdclk@mode-transition@pipe-b-edp-1.html * igt@kms_cdclk@mode-transition@pipe-c-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][59] ([Intel XE#314]) +4 other tests skip [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-dg2-433/igt@kms_cdclk@mode-transition@pipe-c-dp-4.html * igt@kms_chamelium_color@degamma: - shard-dg2-set2: NOTRUN -> [SKIP][60] ([Intel XE#306]) +6 other tests skip [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-dg2-434/igt@kms_chamelium_color@degamma.html - shard-lnl: NOTRUN -> [SKIP][61] ([Intel XE#306]) +2 other tests skip [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-lnl-4/igt@kms_chamelium_color@degamma.html - shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#2325]) +1 other test skip [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-bmg-7/igt@kms_chamelium_color@degamma.html * igt@kms_chamelium_hpd@dp-hpd-storm: - shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#2252]) +10 other tests skip [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-bmg-4/igt@kms_chamelium_hpd@dp-hpd-storm.html * igt@kms_chamelium_hpd@hdmi-hpd-fast: - shard-lnl: NOTRUN -> [SKIP][64] ([Intel XE#373]) +13 other tests skip [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-lnl-6/igt@kms_chamelium_hpd@hdmi-hpd-fast.html * igt@kms_chamelium_hpd@vga-hpd-for-each-pipe: - shard-dg2-set2: NOTRUN -> [SKIP][65] ([Intel XE#373]) +18 other tests skip [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-dg2-464/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html * igt@kms_color@ctm-0-50@pipe-d-hdmi-a-3: - shard-bmg: NOTRUN -> [DMESG-WARN][66] ([Intel XE#877]) +1 other test dmesg-warn [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-bmg-7/igt@kms_color@ctm-0-50@pipe-d-hdmi-a-3.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_12593/shard-bmg-4/igt@kms_content_protection@atomic.html * igt@kms_content_protection@content-type-change: - shard-bmg: NOTRUN -> [SKIP][68] ([Intel XE#2341]) +1 other test skip [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-bmg-7/igt@kms_content_protection@content-type-change.html * igt@kms_content_protection@dp-mst-type-0: - shard-dg2-set2: NOTRUN -> [SKIP][69] ([Intel XE#307]) +1 other test skip [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-dg2-463/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@mei-interface: - shard-lnl: NOTRUN -> [SKIP][70] ([Intel XE#1468]) [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-lnl-6/igt@kms_content_protection@mei-interface.html * igt@kms_content_protection@srm: - shard-lnl: NOTRUN -> [SKIP][71] ([Intel XE#3278]) +2 other tests skip [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-lnl-4/igt@kms_content_protection@srm.html * igt@kms_content_protection@uevent@pipe-a-dp-2: - shard-dg2-set2: NOTRUN -> [FAIL][72] ([Intel XE#1188]) [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-dg2-432/igt@kms_content_protection@uevent@pipe-a-dp-2.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-dg2-set2: NOTRUN -> [SKIP][73] ([Intel XE#308]) +5 other tests skip [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-dg2-434/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_crc@cursor-random-32x32: - shard-bmg: NOTRUN -> [SKIP][74] ([Intel XE#2320]) +6 other tests skip [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-bmg-7/igt@kms_cursor_crc@cursor-random-32x32.html * igt@kms_cursor_crc@cursor-sliding-512x512: - shard-lnl: NOTRUN -> [SKIP][75] ([Intel XE#2321]) +3 other tests skip [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-lnl-5/igt@kms_cursor_crc@cursor-sliding-512x512.html - shard-bmg: NOTRUN -> [SKIP][76] ([Intel XE#2321]) +4 other tests skip [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-bmg-1/igt@kms_cursor_crc@cursor-sliding-512x512.html * igt@kms_cursor_crc@cursor-sliding-max-size: - shard-lnl: NOTRUN -> [SKIP][77] ([Intel XE#1424]) +6 other tests skip [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-lnl-3/igt@kms_cursor_crc@cursor-sliding-max-size.html * igt@kms_cursor_edge_walk@128x128-left-edge@pipe-d-dp-2: - shard-bmg: NOTRUN -> [DMESG-WARN][78] ([Intel XE#4172]) +10 other tests dmesg-warn [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-bmg-7/igt@kms_cursor_edge_walk@128x128-left-edge@pipe-d-dp-2.html * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic: - shard-dg2-set2: NOTRUN -> [SKIP][79] ([Intel XE#309]) +1 other test skip [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-dg2-464/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-dg2-set2: NOTRUN -> [SKIP][80] ([Intel XE#323]) +2 other tests skip [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-dg2-432/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-lnl: NOTRUN -> [SKIP][81] ([Intel XE#323]) [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-lnl-3/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html - shard-bmg: NOTRUN -> [SKIP][82] ([Intel XE#2286]) [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-bmg-4/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@cursor-vs-flip-legacy: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][83] ([Intel XE#3226]) [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-dg2-434/igt@kms_cursor_legacy@cursor-vs-flip-legacy.html * igt@kms_cursor_legacy@cursora-vs-flipb-atomic: - shard-bmg: [PASS][84] -> [SKIP][85] ([Intel XE#2291]) +2 other tests skip [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-bmg-7/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-bmg-4/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html * igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size: - shard-lnl: NOTRUN -> [SKIP][86] ([Intel XE#309]) +8 other tests skip [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-lnl-8/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html - shard-bmg: NOTRUN -> [SKIP][87] ([Intel XE#2291]) +3 other tests skip [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-bmg-4/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipb-toggle: - shard-dg2-set2: NOTRUN -> [DMESG-WARN][88] ([Intel XE#1033]) +44 other tests dmesg-warn [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-dg2-434/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html * igt@kms_display_modes@mst-extended-mode-negative: - shard-lnl: NOTRUN -> [SKIP][89] ([Intel XE#307]) [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-lnl-3/igt@kms_display_modes@mst-extended-mode-negative.html - shard-bmg: NOTRUN -> [SKIP][90] ([Intel XE#2323]) [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-bmg-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][91] ([Intel XE#1340]) [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-bmg-5/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-3.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][92] ([Intel XE#455] / [i915#3804]) [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-dg2-464/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-6.html * igt@kms_dsc@dsc-with-bpc-formats: - shard-lnl: NOTRUN -> [SKIP][93] ([Intel XE#2244]) +1 other test skip [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-lnl-3/igt@kms_dsc@dsc-with-bpc-formats.html * igt@kms_dsc@dsc-with-output-formats: - shard-bmg: NOTRUN -> [SKIP][94] ([Intel XE#2244]) +1 other test skip [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-bmg-4/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_fbcon_fbt@psr-suspend: - shard-bmg: NOTRUN -> [SKIP][95] ([Intel XE#776]) [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-bmg-5/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_feature_discovery@display-3x: - shard-lnl: NOTRUN -> [SKIP][96] ([Intel XE#703]) [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-lnl-7/igt@kms_feature_discovery@display-3x.html - shard-bmg: NOTRUN -> [SKIP][97] ([Intel XE#2373]) [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-bmg-5/igt@kms_feature_discovery@display-3x.html - shard-dg2-set2: NOTRUN -> [SKIP][98] ([Intel XE#703]) [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-dg2-463/igt@kms_feature_discovery@display-3x.html * igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible: - shard-lnl: NOTRUN -> [SKIP][99] ([Intel XE#1421]) +7 other tests skip [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-lnl-3/igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible.html * igt@kms_flip@2x-dpms-vs-vblank-race@ab-dp2-hdmi-a3: - shard-bmg: NOTRUN -> [FAIL][100] ([Intel XE#3098]) [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-bmg-5/igt@kms_flip@2x-dpms-vs-vblank-race@ab-dp2-hdmi-a3.html * igt@kms_flip@2x-flip-vs-blocking-wf-vblank: - shard-dg2-set2: [PASS][101] -> [SKIP][102] ([Intel XE#310]) [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-dg2-436/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-dg2-464/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ad-dp2-hdmi-a3: - shard-bmg: NOTRUN -> [FAIL][103] ([Intel XE#3321]) [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ad-dp2-hdmi-a3.html * igt@kms_flip@2x-flip-vs-expired-vblank@ad-dp2-hdmi-a3: - shard-bmg: [PASS][104] -> [FAIL][105] ([Intel XE#3321]) [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-bmg-5/igt@kms_flip@2x-flip-vs-expired-vblank@ad-dp2-hdmi-a3.html [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-bmg-5/igt@kms_flip@2x-flip-vs-expired-vblank@ad-dp2-hdmi-a3.html * igt@kms_flip@2x-modeset-vs-vblank-race-interruptible: - shard-bmg: [PASS][106] -> [SKIP][107] ([Intel XE#2316]) +3 other tests skip [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-bmg-1/igt@kms_flip@2x-modeset-vs-vblank-race-interruptible.html [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-bmg-4/igt@kms_flip@2x-modeset-vs-vblank-race-interruptible.html * igt@kms_flip@2x-plain-flip-ts-check-interruptible: - shard-bmg: NOTRUN -> [SKIP][108] ([Intel XE#2316]) +1 other test skip [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-bmg-4/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html * igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible: - shard-bmg: [PASS][109] -> [DMESG-WARN][110] ([Intel XE#2955]) [109]: 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-interruptible.html [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-bmg-7/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html - shard-dg2-set2: [PASS][111] -> [DMESG-WARN][112] ([Intel XE#2955]) [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-dg2-463/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-dg2-463/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html * igt@kms_flip@2x-wf_vblank-ts-check: - shard-bmg: [PASS][113] -> [INCOMPLETE][114] ([Intel XE#2049] / [Intel XE#4172]) [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-bmg-7/igt@kms_flip@2x-wf_vblank-ts-check.html [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-bmg-1/igt@kms_flip@2x-wf_vblank-ts-check.html * igt@kms_flip@2x-wf_vblank-ts-check@cd-dp2-hdmi-a3: - shard-bmg: [PASS][115] -> [INCOMPLETE][116] ([Intel XE#2049]) [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-bmg-7/igt@kms_flip@2x-wf_vblank-ts-check@cd-dp2-hdmi-a3.html [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-bmg-1/igt@kms_flip@2x-wf_vblank-ts-check@cd-dp2-hdmi-a3.html * igt@kms_flip@busy-flip: - shard-dg2-set2: [PASS][117] -> [DMESG-WARN][118] ([Intel XE#1033]) +40 other tests dmesg-warn [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-dg2-466/igt@kms_flip@busy-flip.html [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-dg2-434/igt@kms_flip@busy-flip.html * igt@kms_flip@single-buffer-flip-vs-dpms-off-vs-modeset: - shard-bmg: NOTRUN -> [DMESG-WARN][119] ([Intel XE#2955]) [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-bmg-5/igt@kms_flip@single-buffer-flip-vs-dpms-off-vs-modeset.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-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_12593/shard-bmg-7/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][121] ([Intel XE#1401]) +4 other tests skip [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-lnl-6/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling: - shard-lnl: NOTRUN -> [SKIP][122] ([Intel XE#1401] / [Intel XE#1745]) +4 other tests skip [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-lnl-8/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][123] ([Intel XE#2293]) +2 other tests skip [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/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-linear-to-16bpp-linear-downscaling: - shard-lnl: NOTRUN -> [SKIP][124] ([Intel XE#1397] / [Intel XE#1745]) +1 other test skip [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-lnl-3/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-16bpp-linear-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling@pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][125] ([Intel XE#1397]) +1 other test skip [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-lnl-3/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling@pipe-a-default-mode.html * igt@kms_force_connector_basic@force-connector-state: - shard-lnl: NOTRUN -> [SKIP][126] ([Intel XE#352]) [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-lnl-3/igt@kms_force_connector_basic@force-connector-state.html * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-wc: - shard-dg2-set2: NOTRUN -> [SKIP][127] ([Intel XE#651]) +52 other tests skip [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-dg2-432/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-msflip-blt: - shard-bmg: NOTRUN -> [SKIP][128] ([Intel XE#2312]) +10 other tests skip [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@drrs-modesetfrombusy: - shard-lnl: NOTRUN -> [SKIP][129] ([Intel XE#651]) +20 other tests skip [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-lnl-3/igt@kms_frontbuffer_tracking@drrs-modesetfrombusy.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt: - shard-lnl: NOTRUN -> [SKIP][130] ([Intel XE#656]) +52 other tests skip [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-lnl-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-move: - shard-dg2-set2: [PASS][131] -> [SKIP][132] ([Intel XE#656]) +2 other tests skip [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-dg2-433/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-move.html [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-dg2-464/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-move.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff: - shard-bmg: NOTRUN -> [SKIP][133] ([Intel XE#4141]) +19 other tests skip [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-msflip-blt: - shard-bmg: NOTRUN -> [SKIP][134] ([Intel XE#2311]) +30 other tests skip [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt: - shard-dg2-set2: NOTRUN -> [SKIP][135] ([Intel XE#653]) +48 other tests skip [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff: - shard-dg2-set2: NOTRUN -> [SKIP][136] ([Intel XE#656]) +9 other tests skip [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-onoff: - shard-bmg: NOTRUN -> [SKIP][137] ([Intel XE#2313]) +25 other tests skip [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-onoff.html * igt@kms_getfb@getfb-reject-ccs: - shard-lnl: NOTRUN -> [SKIP][138] ([Intel XE#605]) [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-lnl-3/igt@kms_getfb@getfb-reject-ccs.html - shard-bmg: NOTRUN -> [SKIP][139] ([Intel XE#2502]) [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-bmg-7/igt@kms_getfb@getfb-reject-ccs.html - shard-dg2-set2: NOTRUN -> [SKIP][140] ([Intel XE#605]) [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-dg2-432/igt@kms_getfb@getfb-reject-ccs.html * igt@kms_hdmi_inject@inject-4k: - shard-lnl: NOTRUN -> [SKIP][141] ([Intel XE#1470]) [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-lnl-5/igt@kms_hdmi_inject@inject-4k.html * igt@kms_joiner@basic-force-ultra-joiner: - shard-bmg: NOTRUN -> [SKIP][142] ([Intel XE#2934]) [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-bmg-7/igt@kms_joiner@basic-force-ultra-joiner.html - shard-lnl: NOTRUN -> [SKIP][143] ([Intel XE#2934]) [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-lnl-6/igt@kms_joiner@basic-force-ultra-joiner.html * igt@kms_joiner@invalid-modeset-ultra-joiner: - shard-dg2-set2: NOTRUN -> [SKIP][144] ([Intel XE#2927]) [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-dg2-463/igt@kms_joiner@invalid-modeset-ultra-joiner.html - shard-lnl: NOTRUN -> [SKIP][145] ([Intel XE#2927]) [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-lnl-7/igt@kms_joiner@invalid-modeset-ultra-joiner.html - shard-bmg: NOTRUN -> [SKIP][146] ([Intel XE#2927]) [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-bmg-4/igt@kms_joiner@invalid-modeset-ultra-joiner.html * igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner: - shard-bmg: NOTRUN -> [SKIP][147] ([Intel XE#4090]) [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-bmg-4/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html - shard-dg2-set2: NOTRUN -> [SKIP][148] ([Intel XE#2925]) +1 other test skip [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-dg2-434/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.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_12593/shard-bmg-4/igt@kms_panel_fitting@legacy.html * igt@kms_plane_lowres@tiling-yf: - shard-lnl: NOTRUN -> [SKIP][150] ([Intel XE#599]) [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-lnl-4/igt@kms_plane_lowres@tiling-yf.html * igt@kms_plane_scaling@2x-scaler-multi-pipe: - shard-bmg: [PASS][151] -> [SKIP][152] ([Intel XE#2571]) [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-bmg-5/igt@kms_plane_scaling@2x-scaler-multi-pipe.html [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-bmg-4/igt@kms_plane_scaling@2x-scaler-multi-pipe.html * igt@kms_plane_scaling@intel-max-src-size: - shard-lnl: NOTRUN -> [SKIP][153] ([Intel XE#3307]) [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-lnl-4/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a: - shard-dg2-set2: NOTRUN -> [SKIP][154] ([Intel XE#2763]) +2 other tests skip [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-dg2-434/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d: - shard-dg2-set2: NOTRUN -> [SKIP][155] ([Intel XE#2763] / [Intel XE#455]) +1 other test skip [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-dg2-434/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d.html * igt@kms_pm_backlight@bad-brightness: - shard-bmg: NOTRUN -> [SKIP][156] ([Intel XE#870]) +1 other test skip [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-bmg-5/igt@kms_pm_backlight@bad-brightness.html - shard-dg2-set2: NOTRUN -> [SKIP][157] ([Intel XE#870]) +1 other test skip [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-dg2-463/igt@kms_pm_backlight@bad-brightness.html * igt@kms_pm_dc@dc5-retention-flops: - shard-dg2-set2: NOTRUN -> [SKIP][158] ([Intel XE#3309]) [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-dg2-463/igt@kms_pm_dc@dc5-retention-flops.html * igt@kms_pm_dc@deep-pkgc: - shard-dg2-set2: NOTRUN -> [SKIP][159] ([Intel XE#908]) [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-dg2-464/igt@kms_pm_dc@deep-pkgc.html * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-lnl: NOTRUN -> [SKIP][160] ([Intel XE#1439] / [Intel XE#836]) [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-lnl-4/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@kms_pm_rpm@dpms-non-lpsp: - shard-lnl: NOTRUN -> [SKIP][161] ([Intel XE#1439] / [Intel XE#3141]) [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-lnl-8/igt@kms_pm_rpm@dpms-non-lpsp.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf: - shard-dg2-set2: NOTRUN -> [SKIP][162] ([Intel XE#1489]) +14 other tests skip [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-dg2-432/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-continuous-sf.html * igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf: - shard-lnl: NOTRUN -> [SKIP][163] ([Intel XE#2893]) +4 other tests skip [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-lnl-7/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf: - shard-bmg: NOTRUN -> [SKIP][164] ([Intel XE#1489]) +9 other tests skip [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-bmg-5/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][165] ([Intel XE#1122]) +2 other tests skip [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-dg2-432/igt@kms_psr2_su@page_flip-nv12.html - shard-lnl: NOTRUN -> [SKIP][166] ([Intel XE#1128]) [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-lnl-5/igt@kms_psr2_su@page_flip-nv12.html - shard-bmg: NOTRUN -> [SKIP][167] ([Intel XE#2387]) [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-bmg-1/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr@fbc-pr-no-drrs: - shard-lnl: NOTRUN -> [SKIP][168] ([Intel XE#1406]) +4 other tests skip [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-lnl-2/igt@kms_psr@fbc-pr-no-drrs.html * igt@kms_psr@fbc-psr2-primary-render: - shard-dg2-set2: NOTRUN -> [SKIP][169] ([Intel XE#2850] / [Intel XE#929]) +23 other tests skip [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-dg2-463/igt@kms_psr@fbc-psr2-primary-render.html * igt@kms_psr@psr-basic: - shard-bmg: NOTRUN -> [SKIP][170] ([Intel XE#2234] / [Intel XE#2850]) +15 other tests skip [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-bmg-7/igt@kms_psr@psr-basic.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-dg2-set2: NOTRUN -> [SKIP][171] ([Intel XE#2939]) [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-dg2-432/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_rotation_crc@bad-pixel-format: - shard-bmg: NOTRUN -> [SKIP][172] ([Intel XE#3414] / [Intel XE#3904]) +4 other tests skip [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-bmg-1/igt@kms_rotation_crc@bad-pixel-format.html * igt@kms_rotation_crc@bad-tiling: - shard-dg2-set2: NOTRUN -> [SKIP][173] ([Intel XE#3414]) +4 other tests skip [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-dg2-464/igt@kms_rotation_crc@bad-tiling.html * igt@kms_rotation_crc@primary-rotation-90: - shard-lnl: NOTRUN -> [SKIP][174] ([Intel XE#3414] / [Intel XE#3904]) +6 other tests skip [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-lnl-6/igt@kms_rotation_crc@primary-rotation-90.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-dg2-set2: NOTRUN -> [SKIP][175] ([Intel XE#1127]) [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-dg2-463/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_scaling_modes@scaling-mode-full-aspect: - shard-bmg: NOTRUN -> [SKIP][176] ([Intel XE#2413]) +1 other test skip [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-bmg-5/igt@kms_scaling_modes@scaling-mode-full-aspect.html * igt@kms_setmode@basic: - shard-bmg: [PASS][177] -> [FAIL][178] ([Intel XE#2883]) +5 other tests fail [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-bmg-5/igt@kms_setmode@basic.html [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-bmg-5/igt@kms_setmode@basic.html * igt@kms_setmode@clone-exclusive-crtc: - shard-bmg: [PASS][179] -> [SKIP][180] ([Intel XE#1435]) [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-bmg-1/igt@kms_setmode@clone-exclusive-crtc.html [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-bmg-4/igt@kms_setmode@clone-exclusive-crtc.html * igt@kms_setmode@invalid-clone-exclusive-crtc: - shard-lnl: NOTRUN -> [SKIP][181] ([Intel XE#1435]) [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-lnl-8/igt@kms_setmode@invalid-clone-exclusive-crtc.html * igt@kms_vrr@flip-suspend: - shard-bmg: NOTRUN -> [SKIP][182] ([Intel XE#1499]) +2 other tests skip [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-bmg-4/igt@kms_vrr@flip-suspend.html * igt@kms_vrr@flipline: - shard-dg2-set2: NOTRUN -> [SKIP][183] ([Intel XE#455]) +39 other tests skip [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-dg2-432/igt@kms_vrr@flipline.html * igt@kms_vrr@negative-basic: - shard-lnl: NOTRUN -> [SKIP][184] ([Intel XE#1499]) +1 other test skip [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-lnl-3/igt@kms_vrr@negative-basic.html * igt@kms_writeback@writeback-fb-id-xrgb2101010: - shard-dg2-set2: NOTRUN -> [SKIP][185] ([Intel XE#756]) +1 other test skip [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-dg2-432/igt@kms_writeback@writeback-fb-id-xrgb2101010.html * igt@kms_writeback@writeback-pixel-formats: - shard-bmg: NOTRUN -> [SKIP][186] ([Intel XE#756]) [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-bmg-1/igt@kms_writeback@writeback-pixel-formats.html - shard-lnl: NOTRUN -> [SKIP][187] ([Intel XE#756]) [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-lnl-5/igt@kms_writeback@writeback-pixel-formats.html * igt@testdisplay: - shard-dg2-set2: NOTRUN -> [DMESG-WARN][188] ([Intel XE#1033] / [Intel XE#2705] / [Intel XE#4212]) [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-dg2-432/igt@testdisplay.html * igt@xe_compute_preempt@compute-threadgroup-preempt@engine-drm_xe_engine_class_compute: - shard-dg2-set2: NOTRUN -> [SKIP][189] ([Intel XE#1280] / [Intel XE#455]) +1 other test skip [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-dg2-433/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][190] ([Intel XE#1123]) +1 other test skip [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-dg2-432/igt@xe_copy_basic@mem-copy-linear-0x369.html * igt@xe_copy_basic@mem-set-linear-0xfd: - shard-dg2-set2: NOTRUN -> [SKIP][191] ([Intel XE#1126]) +1 other test skip [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-dg2-434/igt@xe_copy_basic@mem-set-linear-0xfd.html * igt@xe_eudebug@attach-debug-metadata: - shard-lnl: NOTRUN -> [SKIP][192] ([Intel XE#2905]) +13 other tests skip [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-lnl-3/igt@xe_eudebug@attach-debug-metadata.html * igt@xe_eudebug@basic-close: - shard-dg2-set2: NOTRUN -> [SKIP][193] ([Intel XE#2905]) +17 other tests skip [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-dg2-432/igt@xe_eudebug@basic-close.html * igt@xe_eudebug@basic-vm-bind-ufence-reconnect: - shard-dg2-set2: NOTRUN -> [SKIP][194] ([Intel XE#3889]) [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-dg2-434/igt@xe_eudebug@basic-vm-bind-ufence-reconnect.html - shard-lnl: NOTRUN -> [SKIP][195] ([Intel XE#3889]) [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-lnl-8/igt@xe_eudebug@basic-vm-bind-ufence-reconnect.html - shard-bmg: NOTRUN -> [SKIP][196] ([Intel XE#3889]) [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-bmg-4/igt@xe_eudebug@basic-vm-bind-ufence-reconnect.html * igt@xe_eudebug@discovery-race-sigint: - shard-dg2-set2: NOTRUN -> [SKIP][197] ([Intel XE#4259]) [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-dg2-432/igt@xe_eudebug@discovery-race-sigint.html * igt@xe_eudebug@vm-bind-clear: - shard-bmg: NOTRUN -> [SKIP][198] ([Intel XE#2905]) +10 other tests skip [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-bmg-5/igt@xe_eudebug@vm-bind-clear.html * igt@xe_evict@evict-beng-large-external-cm: - shard-lnl: NOTRUN -> [SKIP][199] ([Intel XE#688]) +6 other tests skip [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-lnl-7/igt@xe_evict@evict-beng-large-external-cm.html * igt@xe_evict@evict-small-multi-vm: - shard-dg2-set2: [PASS][200] -> [DMESG-WARN][201] ([Intel XE#1033] / [Intel XE#1473]) [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-dg2-466/igt@xe_evict@evict-small-multi-vm.html [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-dg2-433/igt@xe_evict@evict-small-multi-vm.html * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-rebind: - shard-dg2-set2: NOTRUN -> [SKIP][202] ([Intel XE#1392]) +5 other tests skip [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-dg2-432/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-rebind.html * igt@xe_exec_basic@multigpu-no-exec-basic: - shard-dg2-set2: [PASS][203] -> [SKIP][204] ([Intel XE#1392]) +3 other tests skip [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-dg2-434/igt@xe_exec_basic@multigpu-no-exec-basic.html [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-dg2-432/igt@xe_exec_basic@multigpu-no-exec-basic.html * igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-invalidate: - shard-bmg: NOTRUN -> [SKIP][205] ([Intel XE#2322]) +7 other tests skip [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-bmg-1/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-userptr-invalidate.html * igt@xe_exec_basic@multigpu-no-exec-userptr: - shard-lnl: NOTRUN -> [SKIP][206] ([Intel XE#1392]) +10 other tests skip [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-lnl-5/igt@xe_exec_basic@multigpu-no-exec-userptr.html * igt@xe_exec_fault_mode@once-userptr-invalidate-race-imm: - shard-dg2-set2: NOTRUN -> [SKIP][207] ([Intel XE#288]) +50 other tests skip [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-dg2-432/igt@xe_exec_fault_mode@once-userptr-invalidate-race-imm.html * igt@xe_huc_copy@huc_copy: - shard-dg2-set2: NOTRUN -> [SKIP][208] ([Intel XE#255]) [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-dg2-434/igt@xe_huc_copy@huc_copy.html * igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit: - shard-dg2-set2: NOTRUN -> [SKIP][209] ([Intel XE#2229]) [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-dg2-464/igt@xe_live_ktest@xe_migrate@xe_validate_ccs_kunit.html * igt@xe_live_ktest@xe_mocs: - shard-lnl: NOTRUN -> [SKIP][210] ([Intel XE#1192]) [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-lnl-5/igt@xe_live_ktest@xe_mocs.html * igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit: - shard-dg2-set2: NOTRUN -> [FAIL][211] ([Intel XE#1999]) +2 other tests fail [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-dg2-463/igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit.html * igt@xe_mmap@small-bar: - shard-lnl: NOTRUN -> [SKIP][212] ([Intel XE#512]) [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-lnl-6/igt@xe_mmap@small-bar.html - shard-dg2-set2: NOTRUN -> [SKIP][213] ([Intel XE#512]) [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-dg2-433/igt@xe_mmap@small-bar.html * igt@xe_oa@oa-tlb-invalidate: - shard-lnl: NOTRUN -> [SKIP][214] ([Intel XE#2248]) [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-lnl-8/igt@xe_oa@oa-tlb-invalidate.html - shard-bmg: NOTRUN -> [SKIP][215] ([Intel XE#2248]) [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-bmg-4/igt@xe_oa@oa-tlb-invalidate.html * igt@xe_oa@syncs-ufence-wait: - shard-dg2-set2: NOTRUN -> [SKIP][216] ([Intel XE#2541] / [Intel XE#3573]) +13 other tests skip [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-dg2-434/igt@xe_oa@syncs-ufence-wait.html * igt@xe_pat@display-vs-wb-transient: - shard-dg2-set2: NOTRUN -> [SKIP][217] ([Intel XE#1337]) [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-dg2-432/igt@xe_pat@display-vs-wb-transient.html * igt@xe_peer2peer@read: - shard-dg2-set2: NOTRUN -> [FAIL][218] ([Intel XE#1173]) +3 other tests fail [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-dg2-434/igt@xe_peer2peer@read.html * igt@xe_peer2peer@write: - shard-bmg: NOTRUN -> [SKIP][219] ([Intel XE#2427]) [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-bmg-5/igt@xe_peer2peer@write.html - shard-lnl: NOTRUN -> [SKIP][220] ([Intel XE#1061]) [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-lnl-2/igt@xe_peer2peer@write.html * igt@xe_pm@d3cold-basic: - shard-lnl: NOTRUN -> [SKIP][221] ([Intel XE#2284] / [Intel XE#366]) +1 other test skip [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-lnl-4/igt@xe_pm@d3cold-basic.html * igt@xe_pm@d3cold-mocs: - shard-lnl: NOTRUN -> [SKIP][222] ([Intel XE#2284]) [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-lnl-3/igt@xe_pm@d3cold-mocs.html * igt@xe_pm@d3cold-multiple-execs: - shard-bmg: NOTRUN -> [SKIP][223] ([Intel XE#2284]) +2 other tests skip [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-bmg-5/igt@xe_pm@d3cold-multiple-execs.html * igt@xe_pm@d3hot-mocs: - shard-bmg: [PASS][224] -> [DMESG-WARN][225] ([Intel XE#4172]) +27 other tests dmesg-warn [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-bmg-7/igt@xe_pm@d3hot-mocs.html [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-bmg-7/igt@xe_pm@d3hot-mocs.html * igt@xe_pm@s3-basic-exec: - shard-dg2-set2: NOTRUN -> [DMESG-WARN][226] ([Intel XE#1033] / [Intel XE#569]) +1 other test dmesg-warn [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-dg2-463/igt@xe_pm@s3-basic-exec.html - shard-lnl: NOTRUN -> [SKIP][227] ([Intel XE#584]) [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-lnl-7/igt@xe_pm@s3-basic-exec.html * igt@xe_pm@s3-d3cold-basic-exec: - shard-dg2-set2: NOTRUN -> [SKIP][228] ([Intel XE#2284] / [Intel XE#366]) +3 other tests skip [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-dg2-433/igt@xe_pm@s3-d3cold-basic-exec.html * igt@xe_pm@s3-d3hot-basic-exec: - shard-bmg: [PASS][229] -> [DMESG-WARN][230] ([Intel XE#4172] / [Intel XE#569]) +1 other test dmesg-warn [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-bmg-1/igt@xe_pm@s3-d3hot-basic-exec.html [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-bmg-5/igt@xe_pm@s3-d3hot-basic-exec.html * igt@xe_pm@s3-multiple-execs: - shard-bmg: NOTRUN -> [DMESG-WARN][231] ([Intel XE#4172] / [Intel XE#569]) +1 other test dmesg-warn [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-bmg-7/igt@xe_pm@s3-multiple-execs.html * igt@xe_pm@s3-vm-bind-unbind-all: - shard-dg2-set2: [PASS][232] -> [DMESG-WARN][233] ([Intel XE#1033] / [Intel XE#569]) [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-dg2-464/igt@xe_pm@s3-vm-bind-unbind-all.html [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-dg2-433/igt@xe_pm@s3-vm-bind-unbind-all.html * igt@xe_pm@s4-vm-bind-prefetch: - shard-dg2-set2: NOTRUN -> [ABORT][234] ([Intel XE#4268]) [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-dg2-464/igt@xe_pm@s4-vm-bind-prefetch.html - shard-lnl: NOTRUN -> [ABORT][235] ([Intel XE#4268]) [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-lnl-3/igt@xe_pm@s4-vm-bind-prefetch.html * igt@xe_query@multigpu-query-invalid-cs-cycles: - shard-bmg: NOTRUN -> [SKIP][236] ([Intel XE#944]) +1 other test skip [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-bmg-5/igt@xe_query@multigpu-query-invalid-cs-cycles.html * igt@xe_query@multigpu-query-uc-fw-version-guc: - shard-dg2-set2: NOTRUN -> [SKIP][237] ([Intel XE#944]) +3 other tests skip [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-dg2-434/igt@xe_query@multigpu-query-uc-fw-version-guc.html - shard-lnl: NOTRUN -> [SKIP][238] ([Intel XE#944]) +1 other test skip [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-lnl-8/igt@xe_query@multigpu-query-uc-fw-version-guc.html * igt@xe_sriov_auto_provisioning@exclusive-ranges: - shard-dg2-set2: NOTRUN -> [SKIP][239] ([Intel XE#4130]) +1 other test skip [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-dg2-463/igt@xe_sriov_auto_provisioning@exclusive-ranges.html * igt@xe_sriov_auto_provisioning@fair-allocation: - shard-lnl: NOTRUN -> [SKIP][240] ([Intel XE#4130]) +2 other tests skip [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-lnl-4/igt@xe_sriov_auto_provisioning@fair-allocation.html - shard-bmg: NOTRUN -> [SKIP][241] ([Intel XE#4130]) +1 other test skip [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-bmg-7/igt@xe_sriov_auto_provisioning@fair-allocation.html * igt@xe_sriov_flr@flr-vf1-clear: - shard-dg2-set2: NOTRUN -> [SKIP][242] ([Intel XE#3342]) [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-dg2-433/igt@xe_sriov_flr@flr-vf1-clear.html #### Possible fixes #### * igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p: - shard-dg2-set2: [SKIP][243] ([Intel XE#2191]) -> [PASS][244] [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-dg2-464/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-dg2-434/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html * igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p: - shard-bmg: [SKIP][245] ([Intel XE#2314] / [Intel XE#2894]) -> [PASS][246] +1 other test pass [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-bmg-7/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy: - shard-dg2-set2: [SKIP][247] ([Intel XE#309]) -> [PASS][248] [247]: 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 [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-dg2-433/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html * igt@kms_cursor_legacy@basic-flip-before-cursor-atomic: - shard-dg2-set2: [DMESG-WARN][249] ([Intel XE#4113]) -> [PASS][250] +3 other tests pass [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-dg2-433/igt@kms_cursor_legacy@basic-flip-before-cursor-atomic.html [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-dg2-463/igt@kms_cursor_legacy@basic-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@cursorb-vs-flipa-legacy: - shard-bmg: [SKIP][251] ([Intel XE#2291]) -> [PASS][252] +1 other test 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_12593/shard-bmg-7/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html * igt@kms_flip@2x-dpms-vs-vblank-race: - shard-dg2-set2: [DMESG-WARN][253] ([Intel XE#2955]) -> [PASS][254] +1 other test pass [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-dg2-434/igt@kms_flip@2x-dpms-vs-vblank-race.html [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-dg2-463/igt@kms_flip@2x-dpms-vs-vblank-race.html * igt@kms_flip@2x-flip-vs-panning-vs-hang: - shard-dg2-set2: [SKIP][255] ([Intel XE#310]) -> [PASS][256] +2 other tests pass [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-dg2-464/igt@kms_flip@2x-flip-vs-panning-vs-hang.html [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-dg2-463/igt@kms_flip@2x-flip-vs-panning-vs-hang.html * igt@kms_flip@2x-nonexisting-fb: - shard-bmg: [SKIP][257] ([Intel XE#2316]) -> [PASS][258] +6 other tests pass [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-bmg-6/igt@kms_flip@2x-nonexisting-fb.html [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-bmg-1/igt@kms_flip@2x-nonexisting-fb.html * igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset: - shard-dg2-set2: [DMESG-WARN][259] -> [PASS][260] [259]: 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 [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-dg2-432/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html - shard-bmg: [DMESG-WARN][261] -> [PASS][262] [261]: 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 [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-bmg-1/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][263] ([Intel XE#3149] / [Intel XE#886]) -> [PASS][264] [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-lnl-2/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-lnl-6/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html * igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@c-edp1: - shard-lnl: [FAIL][265] ([Intel XE#886]) -> [PASS][266] +2 other tests pass [265]: 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 [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-lnl-6/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@c-edp1.html * igt@kms_flip@flip-vs-dpms-off-vs-modeset-interruptible: - shard-bmg: [DMESG-WARN][267] ([Intel XE#2955]) -> [PASS][268] [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-bmg-5/igt@kms_flip@flip-vs-dpms-off-vs-modeset-interruptible.html [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-bmg-7/igt@kms_flip@flip-vs-dpms-off-vs-modeset-interruptible.html * igt@kms_flip@flip-vs-suspend-interruptible: - shard-bmg: [INCOMPLETE][269] ([Intel XE#2049] / [Intel XE#2597]) -> [PASS][270] +1 other test pass [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-bmg-4/igt@kms_flip@flip-vs-suspend-interruptible.html [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-bmg-5/igt@kms_flip@flip-vs-suspend-interruptible.html - shard-dg2-set2: [INCOMPLETE][271] ([Intel XE#2049] / [Intel XE#2597]) -> [PASS][272] +1 other test pass [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-dg2-435/igt@kms_flip@flip-vs-suspend-interruptible.html [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-dg2-463/igt@kms_flip@flip-vs-suspend-interruptible.html * igt@kms_frontbuffer_tracking@fbc-2p-rte: - shard-dg2-set2: [SKIP][273] ([Intel XE#656]) -> [PASS][274] [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-dg2-464/igt@kms_frontbuffer_tracking@fbc-2p-rte.html [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-dg2-434/igt@kms_frontbuffer_tracking@fbc-2p-rte.html * igt@kms_plane@plane-position-covered@pipe-b-plane-5: - shard-dg2-set2: [DMESG-WARN][275] ([Intel XE#1033]) -> [PASS][276] +47 other tests pass [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-dg2-433/igt@kms_plane@plane-position-covered@pipe-b-plane-5.html [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-dg2-434/igt@kms_plane@plane-position-covered@pipe-b-plane-5.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format: - shard-dg2-set2: [DMESG-WARN][277] ([Intel XE#1033] / [Intel XE#2566]) -> [PASS][278] [277]: 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 [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-dg2-432/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format.html * igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format@pipe-d: - shard-bmg: [DMESG-WARN][279] ([Intel XE#4172]) -> [PASS][280] +48 other tests pass [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-bmg-5/igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format@pipe-d.html [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-bmg-4/igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format@pipe-d.html * igt@kms_setmode@invalid-clone-single-crtc: - shard-dg2-set2: [SKIP][281] ([Intel XE#455]) -> [PASS][282] [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-dg2-464/igt@kms_setmode@invalid-clone-single-crtc.html [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-dg2-432/igt@kms_setmode@invalid-clone-single-crtc.html * igt@kms_vrr@flip-basic: - shard-lnl: [FAIL][283] ([Intel XE#1522]) -> [PASS][284] +9 other tests pass [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-lnl-2/igt@kms_vrr@flip-basic.html [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-lnl-8/igt@kms_vrr@flip-basic.html * igt@xe_evict@evict-large-multi-vm: - shard-dg2-set2: [DMESG-WARN][285] ([Intel XE#1033] / [Intel XE#1473]) -> [PASS][286] [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-dg2-434/igt@xe_evict@evict-large-multi-vm.html [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-dg2-464/igt@xe_evict@evict-large-multi-vm.html * igt@xe_pm@s3-mocs: - shard-bmg: [DMESG-WARN][287] ([Intel XE#4172] / [Intel XE#569]) -> [PASS][288] +1 other test pass [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-bmg-5/igt@xe_pm@s3-mocs.html [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-bmg-7/igt@xe_pm@s3-mocs.html * igt@xe_pm@s3-vm-bind-prefetch: - shard-dg2-set2: [DMESG-WARN][289] ([Intel XE#1033] / [Intel XE#569]) -> [PASS][290] +1 other test pass [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-dg2-433/igt@xe_pm@s3-vm-bind-prefetch.html [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-dg2-433/igt@xe_pm@s3-vm-bind-prefetch.html #### Warnings #### * igt@kms_ccs@bad-aux-stride-y-tiled-ccs@pipe-d-hdmi-a-6: - shard-dg2-set2: [SKIP][291] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][292] ([Intel XE#787]) +4 other tests skip [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-dg2-464/igt@kms_ccs@bad-aux-stride-y-tiled-ccs@pipe-d-hdmi-a-6.html [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-dg2-463/igt@kms_ccs@bad-aux-stride-y-tiled-ccs@pipe-d-hdmi-a-6.html * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-d-hdmi-a-6: - shard-dg2-set2: [SKIP][293] ([Intel XE#787]) -> [SKIP][294] ([Intel XE#455] / [Intel XE#787]) +4 other tests skip [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-dg2-463/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-d-hdmi-a-6.html [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-dg2-464/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-d-hdmi-a-6.html * igt@kms_content_protection@lic-type-0@pipe-a-dp-2: - shard-bmg: [DMESG-FAIL][295] ([Intel XE#4172]) -> [FAIL][296] ([Intel XE#1178]) +1 other test fail [295]: 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 [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-bmg-4/igt@kms_content_protection@lic-type-0@pipe-a-dp-2.html * igt@kms_content_protection@srm: - shard-bmg: [SKIP][297] ([Intel XE#2341]) -> [FAIL][298] ([Intel XE#1178]) [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-bmg-6/igt@kms_content_protection@srm.html [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-bmg-7/igt@kms_content_protection@srm.html * igt@kms_content_protection@srm@pipe-a-dp-4: - shard-dg2-set2: [DMESG-FAIL][299] ([Intel XE#1033]) -> [FAIL][300] ([Intel XE#1178]) +1 other test fail [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-dg2-434/igt@kms_content_protection@srm@pipe-a-dp-4.html [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-dg2-434/igt@kms_content_protection@srm@pipe-a-dp-4.html * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic: - shard-dg2-set2: [SKIP][301] ([Intel XE#309]) -> [DMESG-WARN][302] ([Intel XE#1033]) +1 other test dmesg-warn [301]: 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 [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-dg2-434/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html * igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic: - shard-bmg: [SKIP][303] ([Intel XE#2291]) -> [DMESG-WARN][304] ([Intel XE#4172]) [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-bmg-4/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-bmg-5/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size: - shard-bmg: [DMESG-WARN][305] ([Intel XE#4172]) -> [SKIP][306] ([Intel XE#2291]) [305]: 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 [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-bmg-4/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html * igt@kms_flip@2x-dpms-vs-vblank-race: - shard-bmg: [SKIP][307] ([Intel XE#2316]) -> [FAIL][308] ([Intel XE#3098]) [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-bmg-6/igt@kms_flip@2x-dpms-vs-vblank-race.html [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-bmg-5/igt@kms_flip@2x-dpms-vs-vblank-race.html * igt@kms_flip@2x-dpms-vs-vblank-race-interruptible: - shard-bmg: [DMESG-WARN][309] ([Intel XE#2955]) -> [SKIP][310] ([Intel XE#2316]) [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-bmg-5/igt@kms_flip@2x-dpms-vs-vblank-race-interruptible.html [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-bmg-4/igt@kms_flip@2x-dpms-vs-vblank-race-interruptible.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible: - shard-bmg: [SKIP][311] ([Intel XE#2316]) -> [DMESG-FAIL][312] ([Intel XE#4172]) [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-bmg-4/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html - shard-dg2-set2: [FAIL][313] ([Intel XE#301]) -> [DMESG-WARN][314] ([Intel XE#1033]) [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-dg2-435/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-dg2-432/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html * igt@kms_flip@2x-flip-vs-wf_vblank: - shard-bmg: [DMESG-WARN][315] ([Intel XE#4172]) -> [SKIP][316] ([Intel XE#2316]) [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-bmg-1/igt@kms_flip@2x-flip-vs-wf_vblank.html [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-bmg-4/igt@kms_flip@2x-flip-vs-wf_vblank.html * igt@kms_flip@2x-plain-flip-interruptible: - shard-dg2-set2: [SKIP][317] ([Intel XE#310]) -> [DMESG-WARN][318] ([Intel XE#1033]) [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-dg2-464/igt@kms_flip@2x-plain-flip-interruptible.html [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-dg2-432/igt@kms_flip@2x-plain-flip-interruptible.html * igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw: - shard-bmg: [SKIP][319] ([Intel XE#2311]) -> [SKIP][320] ([Intel XE#2312]) +8 other tests skip [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw.html [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen: - shard-dg2-set2: [SKIP][321] ([Intel XE#656]) -> [SKIP][322] ([Intel XE#651]) +6 other tests skip [321]: 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 [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-dg2-432/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt: - shard-bmg: [SKIP][323] ([Intel XE#4141]) -> [SKIP][324] ([Intel XE#2312]) +7 other tests skip [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen: - shard-bmg: [SKIP][325] ([Intel XE#2312]) -> [SKIP][326] ([Intel XE#4141]) +5 other tests skip [325]: 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 [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-move: - shard-dg2-set2: [DMESG-WARN][327] ([Intel XE#1033]) -> [SKIP][328] ([Intel XE#656]) [327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-dg2-434/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-move.html [328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-dg2-464/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-move.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg2-set2: [SKIP][329] ([Intel XE#651]) -> [SKIP][330] ([Intel XE#656]) +7 other tests skip [329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-mmap-wc.html [330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt: - shard-bmg: [SKIP][331] ([Intel XE#2312]) -> [SKIP][332] ([Intel XE#2311]) +13 other tests skip [331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt.html [332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt: - shard-bmg: [SKIP][333] ([Intel XE#2313]) -> [SKIP][334] ([Intel XE#2312]) +10 other tests skip [333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt.html [334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc: - shard-dg2-set2: [SKIP][335] ([Intel XE#656]) -> [SKIP][336] ([Intel XE#653]) +3 other tests skip [335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html [336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-dg2-463/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt: - shard-bmg: [SKIP][337] ([Intel XE#2312]) -> [SKIP][338] ([Intel XE#2313]) +12 other tests skip [337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html [338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-rte: - shard-dg2-set2: [SKIP][339] ([Intel XE#653]) -> [SKIP][340] ([Intel XE#656]) +4 other tests skip [339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-dg2-466/igt@kms_frontbuffer_tracking@psr-2p-rte.html [340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-dg2-464/igt@kms_frontbuffer_tracking@psr-2p-rte.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-dg2-set2: [SKIP][341] ([Intel XE#836]) -> [DMESG-WARN][342] ([Intel XE#1033]) [341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-dg2-464/igt@kms_pm_rpm@modeset-non-lpsp-stress.html [342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-dg2-433/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_tiled_display@basic-test-pattern: - shard-bmg: [FAIL][343] ([Intel XE#1729]) -> [SKIP][344] ([Intel XE#2426]) [343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern.html [344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-bmg-4/igt@kms_tiled_display@basic-test-pattern.html - shard-dg2-set2: [FAIL][345] ([Intel XE#1729]) -> [SKIP][346] ([Intel XE#362]) [345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-dg2-436/igt@kms_tiled_display@basic-test-pattern.html [346]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-dg2-463/igt@kms_tiled_display@basic-test-pattern.html * igt@xe_pm@s4-d3hot-basic-exec: - shard-dg2-set2: [ABORT][347] ([Intel XE#4268]) -> [ABORT][348] ([Intel XE#1033] / [Intel XE#4268]) [347]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-dg2-435/igt@xe_pm@s4-d3hot-basic-exec.html [348]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-dg2-463/igt@xe_pm@s4-d3hot-basic-exec.html - shard-bmg: [ABORT][349] ([Intel XE#4268]) -> [ABORT][350] ([Intel XE#4172] / [Intel XE#4268]) [349]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-bmg-4/igt@xe_pm@s4-d3hot-basic-exec.html [350]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-bmg-7/igt@xe_pm@s4-d3hot-basic-exec.html * igt@xe_pm@s4-exec-after: - 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-1/igt@xe_pm@s4-exec-after.html [352]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-bmg-7/igt@xe_pm@s4-exec-after.html - shard-dg2-set2: [ABORT][353] ([Intel XE#1033] / [Intel XE#4268]) -> [ABORT][354] ([Intel XE#4268]) [353]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8229/shard-dg2-463/igt@xe_pm@s4-exec-after.html [354]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/shard-dg2-464/igt@xe_pm@s4-exec-after.html [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#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#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397 [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#1468]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1468 [Intel XE#1470]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1470 [Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473 [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#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512 [Intel XE#1522]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1522 [Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727 [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#1999]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1999 [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#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244 [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#2385]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2385 [Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387 [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#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#2571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2571 [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#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669 [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#2883]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2883 [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#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#3098]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3098 [Intel XE#310]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/310 [Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113 [Intel XE#3124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3124 [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#3226]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3226 [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#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#3442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3442 [Intel XE#352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/352 [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#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373 [Intel XE#3768]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3768 [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#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#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#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#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#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877 [Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886 [Intel XE#908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/908 [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 [i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804 Build changes ------------- * IGT: IGT_8229 -> IGTPW_12593 * Linux: xe-2652-b9696aa14a67620661572e94f4141df2a4b6b5cd -> xe-2660-4570ecc1f49b000dbba61bb05e22ef5db89382b7 IGTPW_12593: 12593 IGT_8229: 8229 xe-2652-b9696aa14a67620661572e94f4141df2a4b6b5cd: b9696aa14a67620661572e94f4141df2a4b6b5cd xe-2660-4570ecc1f49b000dbba61bb05e22ef5db89382b7: 4570ecc1f49b000dbba61bb05e22ef5db89382b7 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12593/index.html [-- Attachment #2: Type: text/html, Size: 113227 bytes --] ^ permalink raw reply [flat|nested] 12+ 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; 12+ 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] 12+ 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; 12+ 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] 12+ messages in thread
* [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 3/4] tests/intel/xe_vm: Exclude invalid_flags tests from LNL and BMG Oak Zeng 0 siblings, 1 reply; 12+ 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] 12+ 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 ` Oak Zeng 0 siblings, 0 replies; 12+ 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] 12+ messages in thread
end of thread, other threads:[~2025-02-14 17:42 UTC | newest] Thread overview: 12+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 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 2/4] lib/xe/xe_util: Introduce helper functions Oak Zeng 2025-02-14 11:35 ` Kamil Konieczny 2025-02-13 22:27 ` [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 4/4] tests/intel/xe_exec_fault_mode: Test scratch page under fault mode Oak Zeng 2025-02-13 22:28 ` ✗ GitLab.Pipeline: warning for series starting with [i-g-t,1/4] lib/xe: Fix a comment error Patchwork 2025-02-13 22:42 ` ✓ Xe.CI.BAT: success " Patchwork 2025-02-13 22:58 ` ✓ i915.CI.BAT: " Patchwork 2025-02-14 4:15 ` ✗ i915.CI.Full: failure " Patchwork 2025-02-14 17:42 ` ✗ 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 2:19 [i-g-t 1/4] lib/xe: Fix a comment error 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
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox