* [i-g-t v5 0/4] xe: Test scratch page under fault mode
@ 2025-02-21 15:53 Oak Zeng
2025-02-21 15:53 ` [i-g-t v5 1/4] lib/xe: Fix a comment error Oak Zeng
` (7 more replies)
0 siblings, 8 replies; 11+ messages in thread
From: Oak Zeng @ 2025-02-21 15:53 UTC (permalink / raw)
To: igt-dev
Cc: Thomas.Hellstrom, matthew.brost, kamil.konieczny,
zbigniew.kempczynski, ashutosh.dixit, juha-pekka.heikkila,
rodrigo.vivi
This series intoduces a subtest for Xe to test scratch page under fault
mode.
It also includes some helper functions to make the test easier.
Today most of igt tests use one single function to perform multiple
subtests. flags are used to control the behavior of the test. While
this is a good way to write efficient tests, it also makes the test
difficult to maintain, especially when we add more and more subtests
into single test function.
This patch series introduces some helper functions with which we can
write more readable tests. This is illustrated in patch 4 of this series.
Note the intention of this patch series is not to replace the existing
igt tests, but to provide an alternative way to write simple tests.
Bommu Krishnaiah (1):
lib/xe/xe_util: Introduce helper functions
Oak Zeng (3):
lib/xe: Fix a comment error
tests/intel/xe_vm: Exclude invalid_flags tests from LNL and BMG
tests/intel/xe_exec_fault_mode: Test scratch page under fault mode
lib/xe/xe_ioctl.c | 2 +-
lib/xe/xe_util.c | 239 +++++++++++++++++++++++++++++++
lib/xe/xe_util.h | 39 +++++
tests/intel/xe_exec_fault_mode.c | 68 +++++++++
tests/intel/xe_vm.c | 47 ++++--
5 files changed, 379 insertions(+), 16 deletions(-)
--
2.26.3
^ permalink raw reply [flat|nested] 11+ messages in thread* [i-g-t v5 1/4] lib/xe: Fix a comment error 2025-02-21 15:53 [i-g-t v5 0/4] xe: Test scratch page under fault mode Oak Zeng @ 2025-02-21 15:53 ` Oak Zeng 2025-02-21 15:53 ` [i-g-t v5 2/4] lib/xe/xe_util: Introduce helper functions Oak Zeng ` (6 subsequent siblings) 7 siblings, 0 replies; 11+ messages in thread From: Oak Zeng @ 2025-02-21 15:53 UTC (permalink / raw) To: igt-dev Cc: Thomas.Hellstrom, matthew.brost, kamil.konieczny, zbigniew.kempczynski, ashutosh.dixit, juha-pekka.heikkila, rodrigo.vivi The timeout value of __xe_wait_ufence returns the remaining time, not elapsed time. Fix it. Signed-off-by: Oak Zeng <oak.zeng@intel.com> --- lib/xe/xe_ioctl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/xe/xe_ioctl.c b/lib/xe/xe_ioctl.c index 6d8388918..028102aa2 100644 --- a/lib/xe/xe_ioctl.c +++ b/lib/xe/xe_ioctl.c @@ -496,7 +496,7 @@ void xe_exec_wait(int fd, uint32_t exec_queue, uint64_t addr) * * Function compares @value with memory pointed by @addr until they are equal. * - * Returns (in @timeout), the elapsed time in nanoseconds if user fence was + * Returns (in @timeout), the remaining time in nanoseconds if user fence was * signalled. Returns 0 on success, -errno of ioctl on error. */ int __xe_wait_ufence(int fd, uint64_t *addr, uint64_t value, -- 2.26.3 ^ permalink raw reply related [flat|nested] 11+ messages in thread
* [i-g-t v5 2/4] lib/xe/xe_util: Introduce helper functions 2025-02-21 15:53 [i-g-t v5 0/4] xe: Test scratch page under fault mode Oak Zeng 2025-02-21 15:53 ` [i-g-t v5 1/4] lib/xe: Fix a comment error Oak Zeng @ 2025-02-21 15:53 ` Oak Zeng 2025-02-24 7:38 ` Zbigniew Kempczyński 2025-02-21 15:53 ` [i-g-t v5 3/4] tests/intel/xe_vm: Exclude invalid_flags tests from LNL and BMG Oak Zeng ` (5 subsequent siblings) 7 siblings, 1 reply; 11+ messages in thread From: Oak Zeng @ 2025-02-21 15:53 UTC (permalink / raw) To: igt-dev Cc: Thomas.Hellstrom, matthew.brost, kamil.konieczny, zbigniew.kempczynski, ashutosh.dixit, juha-pekka.heikkila, rodrigo.vivi 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. v2: use to_user_pointer to cast a pointer (Kamil) s/insert_store/xe_insert_store (Kamil) s/cmdbuf_fill_func_t/xe_cmdbuf_fill_func_t (Kamil) v3: refactor command buffer fill interface (Zbigniew) v4: add more asserts, check function parameters, drop function xe_fill_cmdbuf, xe_close_cmdbuf etc (Zbigniew) v5: more assert, function name, cosmetic changes (Zbigniew) 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 | 239 +++++++++++++++++++++++++++++++++++++++++++++++ lib/xe/xe_util.h | 39 ++++++++ 2 files changed, 278 insertions(+) diff --git a/lib/xe/xe_util.c b/lib/xe/xe_util.c index 06b378ce0..3dda32ebb 100644 --- a/lib/xe/xe_util.c +++ b/lib/xe/xe_util.c @@ -13,6 +13,245 @@ #include "xe/xe_query.h" #include "xe/xe_util.h" +#define UFENCE_LENGTH sizeof(((struct drm_xe_sync *)0)->timeline_value) + +/** + * xe_cmdbuf_exec_ufence_gpuva: + * @cmdbuf Pointer to the xe_cmdbuf structure representing the command buffer. + * + * Returns the GPU virtual address of the execution user fence located at the + * end of the command buffer. + */ +static uint64_t xe_cmdbuf_exec_ufence_gpuva(struct xe_cmdbuf *cmdbuf) +{ + igt_assert(cmdbuf); + + return cmdbuf->buf.gpu_addr + cmdbuf->buf.size - UFENCE_LENGTH; +} + +/** + * xe_cmdbuf_exec_ufence_cpuva: + * @cmdbuf Pointer to the xe_cmdbuf structure representing the command buffer. + * + * Returns the CPU virtual address of the execution user fence located at the + * end of the command buffer. + */ +static void *xe_cmdbuf_exec_ufence_cpuva(struct xe_cmdbuf *cmdbuf) +{ + igt_assert(cmdbuf); + + return (char *)cmdbuf->buf.cpu_addr + cmdbuf->buf.size - UFENCE_LENGTH; +} + +/** + *xe_buffer_create: + * @buffer Pointer to the xe_buffer structure containing buffer details. + * + * Creates a buffer, maps it to both CPU and GPU address spaces. + */ +int xe_buffer_create(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 }, + }; + + igt_assert(buffer); + + if (buffer->fd < 0) + return -EINVAL; + + if (buffer->size == 0) + return -EINVAL; + + if (!(buffer->placement & all_memory_regions(buffer->fd))) + return -EINVAL; + + 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 = to_user_pointer(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, buffer->bind_ufence, + USER_FENCE_VALUE, buffer->bind_queue, NSEC_PER_SEC); + memset(buffer->bind_ufence, 0, PAGE_ALIGN_UFENCE); + + return 0; +} + +/** + * xe_buffer_destroy: + * @buffer Pointer to the xe_buffer structure containing buffer details + * + * Destroys a buffer created by xe_buffer_create and releases associated + * resources. + */ +void xe_buffer_destroy(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 }, + }; + + igt_assert(buffer); + + sync->addr = to_user_pointer(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, 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); +} + +/** + * __xe_cmdbuf_submit: + * @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_cmdbuf_submit(struct xe_cmdbuf *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 = cmdbuf->buf.gpu_addr, + }; + + igt_assert(cmdbuf); + + ret = __xe_exec(cmdbuf->buf.fd, &exec); + if (ret) + return ret; + + ret = __xe_wait_ufence(cmdbuf->buf.fd, + (uint64_t *)xe_cmdbuf_exec_ufence_cpuva(cmdbuf), + USER_FENCE_VALUE, cmdbuf->exec_queue, &timeout); + /* Reset the fence so the exec ufence can be reused */ + memset((char *)xe_cmdbuf_exec_ufence_cpuva(cmdbuf), 0, UFENCE_LENGTH); + + return ret; +} + +/** + * xe_cmdbuf_submit: + * @cmdbuf Pointer to the command buffer structure + * + * Wrapper function to submit a command buffer and assert its successful + * execution. + */ +void xe_cmdbuf_submit(struct xe_cmdbuf *cmdbuf) +{ + igt_assert(cmdbuf); + igt_assert_eq(__xe_cmdbuf_submit(cmdbuf), 0); +} + +/** + * xe_cmdbuf_insert_store: + * @cmdbuf: command 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 command buffer, which stores + * an immediate value to a given destination virtual address. + */ +void xe_cmdbuf_insert_store(struct xe_cmdbuf *cmdbuf, + uint64_t dst_va, uint32_t val) +{ + uint32_t *batch = cmdbuf->buf.cpu_addr; + + igt_assert(cmdbuf); + /* Leaves at least one dword for MI_BATCH_BUFFER_END */ + igt_assert(cmdbuf->write_index + 4 <= + cmdbuf->cmd_size/sizeof(uint32_t) - 1); + + batch[cmdbuf->write_index++] = MI_STORE_DWORD_IMM_GEN4; + batch[cmdbuf->write_index++] = dst_va; + batch[cmdbuf->write_index++] = dst_va >> 32; + batch[cmdbuf->write_index++] = val; +} + +void xe_cmdbuf_insert_bbe(struct xe_cmdbuf *cmdbuf) +{ + uint32_t *batch = cmdbuf->buf.cpu_addr; + + igt_assert(cmdbuf); + igt_assert(cmdbuf->write_index <= cmdbuf->cmd_size/sizeof(uint32_t) - 1); + + batch[cmdbuf->write_index++] = MI_BATCH_BUFFER_END; +} + +/** + * xe_cmdbuf_create: + * @cmdbuf Pointer to the xe_cmdbuf structure representing the command buffer. + * @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_cmdbuf_create(struct xe_cmdbuf *cmdbuf, + struct drm_xe_engine_class_instance *eci) +{ + struct xe_buffer *buf = &cmdbuf->buf; + + igt_assert(cmdbuf); + + /* + * make some room for a exec_ufence, which will be used to sync the + * submission of this command.... + */ + buf->size = xe_bb_size(buf->fd, + cmdbuf->cmd_size + PAGE_ALIGN_UFENCE); + xe_buffer_create(buf); + cmdbuf->exec_queue = xe_exec_queue_create(buf->fd, buf->vm, eci, 0); + cmdbuf->write_index = 0; +} + +/** + * xe_cmdbuf_destroy: + * @cmdbuf Pointer to the xe_buffer structure representing the command buffer. + * + * Destroys a command buffer created by xe_cmdbuf_create and releases + * associated resources. + */ +void xe_cmdbuf_destroy(struct xe_cmdbuf *cmdbuf) +{ + igt_assert(cmdbuf); + + xe_exec_queue_destroy(cmdbuf->buf.fd, cmdbuf->exec_queue); + xe_buffer_destroy(&cmdbuf->buf); +} + 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..ec0062a8d 100644 --- a/lib/xe/xe_util.h +++ b/lib/xe/xe_util.h @@ -14,6 +14,45 @@ #include "xe_query.h" +#define USER_FENCE_VALUE 0xdeadbeefdeadbeefull +#define PAGE_ALIGN_UFENCE 4096 + +struct xe_buffer { + void *cpu_addr; + uint64_t gpu_addr; + /*the user fence used to vm bind this buffer*/ + uint64_t *bind_ufence; + uint64_t size; + uint32_t flag; + uint32_t vm; + uint32_t bo; + uint32_t placement; + uint32_t bind_queue; + int fd; + bool is_userptr; +}; + +struct xe_cmdbuf { + struct xe_buffer buf; + /* command size in bytes, not including exec_ufence */ + uint64_t cmd_size; + uint32_t exec_queue; + /* Dword index to writ to command buffer */ + uint32_t write_index; +}; + +int xe_buffer_create(struct xe_buffer *buffer); +void xe_buffer_destroy(struct xe_buffer *buffer); + +void xe_cmdbuf_create(struct xe_cmdbuf *cmdbuf, + struct drm_xe_engine_class_instance *eci); +void xe_cmdbuf_insert_store(struct xe_cmdbuf *cmdbuf, uint64_t dst_va, + uint32_t val); +void xe_cmdbuf_insert_bbe(struct xe_cmdbuf *cmdbuf); +void xe_cmdbuf_submit(struct xe_cmdbuf *cmdbuf); +int64_t __xe_cmdbuf_submit(struct xe_cmdbuf *cmdbuf); +void xe_cmdbuf_destroy(struct xe_cmdbuf *cmdbuf); + #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] 11+ messages in thread
* Re: [i-g-t v5 2/4] lib/xe/xe_util: Introduce helper functions 2025-02-21 15:53 ` [i-g-t v5 2/4] lib/xe/xe_util: Introduce helper functions Oak Zeng @ 2025-02-24 7:38 ` Zbigniew Kempczyński 2025-02-24 15:43 ` Zeng, Oak 0 siblings, 1 reply; 11+ messages in thread From: Zbigniew Kempczyński @ 2025-02-24 7:38 UTC (permalink / raw) To: Oak Zeng Cc: igt-dev, Thomas.Hellstrom, matthew.brost, kamil.konieczny, ashutosh.dixit, juha-pekka.heikkila, rodrigo.vivi On Fri, Feb 21, 2025 at 10:53:34AM -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. > > v2: use to_user_pointer to cast a pointer (Kamil) > s/insert_store/xe_insert_store (Kamil) > s/cmdbuf_fill_func_t/xe_cmdbuf_fill_func_t (Kamil) > v3: refactor command buffer fill interface (Zbigniew) > v4: add more asserts, check function parameters, drop > function xe_fill_cmdbuf, xe_close_cmdbuf etc (Zbigniew) > v5: more assert, function name, cosmetic changes (Zbigniew) > > 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 | 239 +++++++++++++++++++++++++++++++++++++++++++++++ > lib/xe/xe_util.h | 39 ++++++++ > 2 files changed, 278 insertions(+) > > diff --git a/lib/xe/xe_util.c b/lib/xe/xe_util.c > index 06b378ce0..3dda32ebb 100644 > --- a/lib/xe/xe_util.c > +++ b/lib/xe/xe_util.c > @@ -13,6 +13,245 @@ > #include "xe/xe_query.h" > #include "xe/xe_util.h" > > +#define UFENCE_LENGTH sizeof(((struct drm_xe_sync *)0)->timeline_value) > + > +/** > + * xe_cmdbuf_exec_ufence_gpuva: > + * @cmdbuf Pointer to the xe_cmdbuf structure representing the command buffer. > + * > + * Returns the GPU virtual address of the execution user fence located at the > + * end of the command buffer. > + */ > +static uint64_t xe_cmdbuf_exec_ufence_gpuva(struct xe_cmdbuf *cmdbuf) > +{ > + igt_assert(cmdbuf); > + > + return cmdbuf->buf.gpu_addr + cmdbuf->buf.size - UFENCE_LENGTH; > +} > + > +/** > + * xe_cmdbuf_exec_ufence_cpuva: > + * @cmdbuf Pointer to the xe_cmdbuf structure representing the command buffer. > + * > + * Returns the CPU virtual address of the execution user fence located at the > + * end of the command buffer. > + */ > +static void *xe_cmdbuf_exec_ufence_cpuva(struct xe_cmdbuf *cmdbuf) > +{ > + igt_assert(cmdbuf); > + > + return (char *)cmdbuf->buf.cpu_addr + cmdbuf->buf.size - UFENCE_LENGTH; > +} > + > +/** > + *xe_buffer_create: > + * @buffer Pointer to the xe_buffer structure containing buffer details. > + * > + * Creates a buffer, maps it to both CPU and GPU address spaces. > + */ > +int xe_buffer_create(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 }, > + }; > + > + igt_assert(buffer); > + > + if (buffer->fd < 0) > + return -EINVAL; > + > + if (buffer->size == 0) > + return -EINVAL; > + > + if (!(buffer->placement & all_memory_regions(buffer->fd))) > + return -EINVAL; > + > + 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 = to_user_pointer(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, buffer->bind_ufence, > + USER_FENCE_VALUE, buffer->bind_queue, NSEC_PER_SEC); > + memset(buffer->bind_ufence, 0, PAGE_ALIGN_UFENCE); > + > + return 0; > +} > + > +/** > + * xe_buffer_destroy: > + * @buffer Pointer to the xe_buffer structure containing buffer details > + * > + * Destroys a buffer created by xe_buffer_create and releases associated > + * resources. > + */ > +void xe_buffer_destroy(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 }, > + }; > + > + igt_assert(buffer); > + > + sync->addr = to_user_pointer(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, 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); > +} > + > +/** > + * __xe_cmdbuf_submit: > + * @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_cmdbuf_submit(struct xe_cmdbuf *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 = cmdbuf->buf.gpu_addr, > + }; > + > + igt_assert(cmdbuf); > + > + ret = __xe_exec(cmdbuf->buf.fd, &exec); > + if (ret) > + return ret; > + > + ret = __xe_wait_ufence(cmdbuf->buf.fd, > + (uint64_t *)xe_cmdbuf_exec_ufence_cpuva(cmdbuf), > + USER_FENCE_VALUE, cmdbuf->exec_queue, &timeout); > + /* Reset the fence so the exec ufence can be reused */ > + memset((char *)xe_cmdbuf_exec_ufence_cpuva(cmdbuf), 0, UFENCE_LENGTH); > + > + return ret; > +} > + > +/** > + * xe_cmdbuf_submit: > + * @cmdbuf Pointer to the command buffer structure > + * > + * Wrapper function to submit a command buffer and assert its successful > + * execution. > + */ > +void xe_cmdbuf_submit(struct xe_cmdbuf *cmdbuf) > +{ > + igt_assert(cmdbuf); > + igt_assert_eq(__xe_cmdbuf_submit(cmdbuf), 0); > +} > + > +/** > + * xe_cmdbuf_insert_store: > + * @cmdbuf: command 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 command buffer, which stores > + * an immediate value to a given destination virtual address. > + */ > +void xe_cmdbuf_insert_store(struct xe_cmdbuf *cmdbuf, > + uint64_t dst_va, uint32_t val) > +{ > + uint32_t *batch = cmdbuf->buf.cpu_addr; > + > + igt_assert(cmdbuf); > + /* Leaves at least one dword for MI_BATCH_BUFFER_END */ > + igt_assert(cmdbuf->write_index + 4 <= > + cmdbuf->cmd_size/sizeof(uint32_t) - 1); > + > + batch[cmdbuf->write_index++] = MI_STORE_DWORD_IMM_GEN4; > + batch[cmdbuf->write_index++] = dst_va; > + batch[cmdbuf->write_index++] = dst_va >> 32; > + batch[cmdbuf->write_index++] = val; > +} > + > +void xe_cmdbuf_insert_bbe(struct xe_cmdbuf *cmdbuf) > +{ > + uint32_t *batch = cmdbuf->buf.cpu_addr; > + > + igt_assert(cmdbuf); > + igt_assert(cmdbuf->write_index <= cmdbuf->cmd_size/sizeof(uint32_t) - 1); > + > + batch[cmdbuf->write_index++] = MI_BATCH_BUFFER_END; > +} > + > +/** > + * xe_cmdbuf_create: > + * @cmdbuf Pointer to the xe_cmdbuf structure representing the command buffer. > + * @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_cmdbuf_create(struct xe_cmdbuf *cmdbuf, > + struct drm_xe_engine_class_instance *eci) > +{ > + struct xe_buffer *buf = &cmdbuf->buf; > + > + igt_assert(cmdbuf); > + > + /* > + * make some room for a exec_ufence, which will be used to sync the > + * submission of this command.... > + */ > + buf->size = xe_bb_size(buf->fd, > + cmdbuf->cmd_size + PAGE_ALIGN_UFENCE); > + xe_buffer_create(buf); > + cmdbuf->exec_queue = xe_exec_queue_create(buf->fd, buf->vm, eci, 0); > + cmdbuf->write_index = 0; > +} > + > +/** > + * xe_cmdbuf_destroy: > + * @cmdbuf Pointer to the xe_buffer structure representing the command buffer. > + * > + * Destroys a command buffer created by xe_cmdbuf_create and releases > + * associated resources. > + */ > +void xe_cmdbuf_destroy(struct xe_cmdbuf *cmdbuf) > +{ > + igt_assert(cmdbuf); > + > + xe_exec_queue_destroy(cmdbuf->buf.fd, cmdbuf->exec_queue); > + xe_buffer_destroy(&cmdbuf->buf); > +} > + > 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..ec0062a8d 100644 > --- a/lib/xe/xe_util.h > +++ b/lib/xe/xe_util.h > @@ -14,6 +14,45 @@ > > #include "xe_query.h" > > +#define USER_FENCE_VALUE 0xdeadbeefdeadbeefull > +#define PAGE_ALIGN_UFENCE 4096 You may use SZ_4K as we have defined it in igt_sizes.h but this is just a nit, not a blocker. Code looks good to me, I just only realized you keep separate bind queue/fence for each xe_buffer (to reuse them in destroy path). Please remove versioning (v2-v5) from final commit message. I think it is not needed - we may use b4 -l for merging so it will add link to the review email thread. From me: Reviewed-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com> -- Zbigniew > + > +struct xe_buffer { > + void *cpu_addr; > + uint64_t gpu_addr; > + /*the user fence used to vm bind this buffer*/ > + uint64_t *bind_ufence; > + uint64_t size; > + uint32_t flag; > + uint32_t vm; > + uint32_t bo; > + uint32_t placement; > + uint32_t bind_queue; > + int fd; > + bool is_userptr; > +}; > + > +struct xe_cmdbuf { > + struct xe_buffer buf; > + /* command size in bytes, not including exec_ufence */ > + uint64_t cmd_size; > + uint32_t exec_queue; > + /* Dword index to writ to command buffer */ > + uint32_t write_index; > +}; > + > +int xe_buffer_create(struct xe_buffer *buffer); > +void xe_buffer_destroy(struct xe_buffer *buffer); > + > +void xe_cmdbuf_create(struct xe_cmdbuf *cmdbuf, > + struct drm_xe_engine_class_instance *eci); > +void xe_cmdbuf_insert_store(struct xe_cmdbuf *cmdbuf, uint64_t dst_va, > + uint32_t val); > +void xe_cmdbuf_insert_bbe(struct xe_cmdbuf *cmdbuf); > +void xe_cmdbuf_submit(struct xe_cmdbuf *cmdbuf); > +int64_t __xe_cmdbuf_submit(struct xe_cmdbuf *cmdbuf); > +void xe_cmdbuf_destroy(struct xe_cmdbuf *cmdbuf); > + > #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] 11+ messages in thread
* RE: [i-g-t v5 2/4] lib/xe/xe_util: Introduce helper functions 2025-02-24 7:38 ` Zbigniew Kempczyński @ 2025-02-24 15:43 ` Zeng, Oak 0 siblings, 0 replies; 11+ messages in thread From: Zeng, Oak @ 2025-02-24 15:43 UTC (permalink / raw) To: Kempczynski, Zbigniew Cc: igt-dev@lists.freedesktop.org, Thomas.Hellstrom@linux.intel.com, Brost, Matthew, Konieczny, Kamil, Dixit, Ashutosh, Heikkila, Juha-pekka, Vivi, Rodrigo Thanks Zbigniew for the review. Matt - can you review patch 4 of this series? It is improved per your last review comments. Oak > -----Original Message----- > From: Kempczynski, Zbigniew <zbigniew.kempczynski@intel.com> > Sent: February 24, 2025 2:39 AM > To: Zeng, Oak <oak.zeng@intel.com> > Cc: igt-dev@lists.freedesktop.org; Thomas.Hellstrom@linux.intel.com; > Brost, Matthew <matthew.brost@intel.com>; Konieczny, Kamil > <kamil.konieczny@intel.com>; Dixit, Ashutosh > <ashutosh.dixit@intel.com>; Heikkila, Juha-pekka <juha- > pekka.heikkila@intel.com>; Vivi, Rodrigo <rodrigo.vivi@intel.com> > Subject: Re: [i-g-t v5 2/4] lib/xe/xe_util: Introduce helper functions > > On Fri, Feb 21, 2025 at 10:53:34AM -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. > > > > v2: use to_user_pointer to cast a pointer (Kamil) > > s/insert_store/xe_insert_store (Kamil) > > s/cmdbuf_fill_func_t/xe_cmdbuf_fill_func_t (Kamil) > > v3: refactor command buffer fill interface (Zbigniew) > > v4: add more asserts, check function parameters, drop > > function xe_fill_cmdbuf, xe_close_cmdbuf etc (Zbigniew) > > v5: more assert, function name, cosmetic changes (Zbigniew) > > > > 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 | 239 > +++++++++++++++++++++++++++++++++++++++++++++++ > > lib/xe/xe_util.h | 39 ++++++++ > > 2 files changed, 278 insertions(+) > > > > diff --git a/lib/xe/xe_util.c b/lib/xe/xe_util.c > > index 06b378ce0..3dda32ebb 100644 > > --- a/lib/xe/xe_util.c > > +++ b/lib/xe/xe_util.c > > @@ -13,6 +13,245 @@ > > #include "xe/xe_query.h" > > #include "xe/xe_util.h" > > > > +#define UFENCE_LENGTH sizeof(((struct drm_xe_sync > *)0)->timeline_value) > > + > > +/** > > + * xe_cmdbuf_exec_ufence_gpuva: > > + * @cmdbuf Pointer to the xe_cmdbuf structure representing the > command buffer. > > + * > > + * Returns the GPU virtual address of the execution user fence > located at the > > + * end of the command buffer. > > + */ > > +static uint64_t xe_cmdbuf_exec_ufence_gpuva(struct xe_cmdbuf > *cmdbuf) > > +{ > > + igt_assert(cmdbuf); > > + > > + return cmdbuf->buf.gpu_addr + cmdbuf->buf.size - > UFENCE_LENGTH; > > +} > > + > > +/** > > + * xe_cmdbuf_exec_ufence_cpuva: > > + * @cmdbuf Pointer to the xe_cmdbuf structure representing the > command buffer. > > + * > > + * Returns the CPU virtual address of the execution user fence > located at the > > + * end of the command buffer. > > + */ > > +static void *xe_cmdbuf_exec_ufence_cpuva(struct xe_cmdbuf > *cmdbuf) > > +{ > > + igt_assert(cmdbuf); > > + > > + return (char *)cmdbuf->buf.cpu_addr + cmdbuf->buf.size - > UFENCE_LENGTH; > > +} > > + > > +/** > > + *xe_buffer_create: > > + * @buffer Pointer to the xe_buffer structure containing buffer > details. > > + * > > + * Creates a buffer, maps it to both CPU and GPU address spaces. > > + */ > > +int xe_buffer_create(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 }, > > + }; > > + > > + igt_assert(buffer); > > + > > + if (buffer->fd < 0) > > + return -EINVAL; > > + > > + if (buffer->size == 0) > > + return -EINVAL; > > + > > + if (!(buffer->placement & all_memory_regions(buffer->fd))) > > + return -EINVAL; > > + > > + 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 = to_user_pointer(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, buffer->bind_ufence, > > + USER_FENCE_VALUE, buffer->bind_queue, > NSEC_PER_SEC); > > + memset(buffer->bind_ufence, 0, PAGE_ALIGN_UFENCE); > > + > > + return 0; > > +} > > + > > +/** > > + * xe_buffer_destroy: > > + * @buffer Pointer to the xe_buffer structure containing buffer > details > > + * > > + * Destroys a buffer created by xe_buffer_create and releases > associated > > + * resources. > > + */ > > +void xe_buffer_destroy(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 }, > > + }; > > + > > + igt_assert(buffer); > > + > > + sync->addr = to_user_pointer(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, 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); > > +} > > + > > +/** > > + * __xe_cmdbuf_submit: > > + * @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_cmdbuf_submit(struct xe_cmdbuf *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 = cmdbuf->buf.gpu_addr, > > + }; > > + > > + igt_assert(cmdbuf); > > + > > + ret = __xe_exec(cmdbuf->buf.fd, &exec); > > + if (ret) > > + return ret; > > + > > + ret = __xe_wait_ufence(cmdbuf->buf.fd, > > + (uint64_t > *)xe_cmdbuf_exec_ufence_cpuva(cmdbuf), > > + USER_FENCE_VALUE, cmdbuf- > >exec_queue, &timeout); > > + /* Reset the fence so the exec ufence can be reused */ > > + memset((char *)xe_cmdbuf_exec_ufence_cpuva(cmdbuf), 0, > UFENCE_LENGTH); > > + > > + return ret; > > +} > > + > > +/** > > + * xe_cmdbuf_submit: > > + * @cmdbuf Pointer to the command buffer structure > > + * > > + * Wrapper function to submit a command buffer and assert its > successful > > + * execution. > > + */ > > +void xe_cmdbuf_submit(struct xe_cmdbuf *cmdbuf) > > +{ > > + igt_assert(cmdbuf); > > + igt_assert_eq(__xe_cmdbuf_submit(cmdbuf), 0); > > +} > > + > > +/** > > + * xe_cmdbuf_insert_store: > > + * @cmdbuf: command 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 > command buffer, which stores > > + * an immediate value to a given destination virtual address. > > + */ > > +void xe_cmdbuf_insert_store(struct xe_cmdbuf *cmdbuf, > > + uint64_t dst_va, uint32_t val) > > +{ > > + uint32_t *batch = cmdbuf->buf.cpu_addr; > > + > > + igt_assert(cmdbuf); > > + /* Leaves at least one dword for MI_BATCH_BUFFER_END */ > > + igt_assert(cmdbuf->write_index + 4 <= > > + cmdbuf->cmd_size/sizeof(uint32_t) - 1); > > + > > + batch[cmdbuf->write_index++] = > MI_STORE_DWORD_IMM_GEN4; > > + batch[cmdbuf->write_index++] = dst_va; > > + batch[cmdbuf->write_index++] = dst_va >> 32; > > + batch[cmdbuf->write_index++] = val; > > +} > > + > > +void xe_cmdbuf_insert_bbe(struct xe_cmdbuf *cmdbuf) > > +{ > > + uint32_t *batch = cmdbuf->buf.cpu_addr; > > + > > + igt_assert(cmdbuf); > > + igt_assert(cmdbuf->write_index <= cmdbuf- > >cmd_size/sizeof(uint32_t) - 1); > > + > > + batch[cmdbuf->write_index++] = MI_BATCH_BUFFER_END; > > +} > > + > > +/** > > + * xe_cmdbuf_create: > > + * @cmdbuf Pointer to the xe_cmdbuf structure representing the > command buffer. > > + * @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_cmdbuf_create(struct xe_cmdbuf *cmdbuf, > > + struct drm_xe_engine_class_instance *eci) > > +{ > > + struct xe_buffer *buf = &cmdbuf->buf; > > + > > + igt_assert(cmdbuf); > > + > > + /* > > + * make some room for a exec_ufence, which will be used to > sync the > > + * submission of this command.... > > + */ > > + buf->size = xe_bb_size(buf->fd, > > + cmdbuf->cmd_size + > PAGE_ALIGN_UFENCE); > > + xe_buffer_create(buf); > > + cmdbuf->exec_queue = xe_exec_queue_create(buf->fd, > buf->vm, eci, 0); > > + cmdbuf->write_index = 0; > > +} > > + > > +/** > > + * xe_cmdbuf_destroy: > > + * @cmdbuf Pointer to the xe_buffer structure representing the > command buffer. > > + * > > + * Destroys a command buffer created by xe_cmdbuf_create and > releases > > + * associated resources. > > + */ > > +void xe_cmdbuf_destroy(struct xe_cmdbuf *cmdbuf) > > +{ > > + igt_assert(cmdbuf); > > + > > + xe_exec_queue_destroy(cmdbuf->buf.fd, cmdbuf- > >exec_queue); > > + xe_buffer_destroy(&cmdbuf->buf); > > +} > > + > > 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..ec0062a8d 100644 > > --- a/lib/xe/xe_util.h > > +++ b/lib/xe/xe_util.h > > @@ -14,6 +14,45 @@ > > > > #include "xe_query.h" > > > > +#define USER_FENCE_VALUE 0xdeadbeefdeadbeefull > > +#define PAGE_ALIGN_UFENCE 4096 > > You may use SZ_4K as we have defined it in igt_sizes.h but this > is just a nit, not a blocker. > > Code looks good to me, I just only realized you keep separate > bind queue/fence for each xe_buffer (to reuse them in destroy > path). > > Please remove versioning (v2-v5) from final commit message. > I think it is not needed - we may use b4 -l for merging so it > will add link to the review email thread. > > From me: > > Reviewed-by: Zbigniew Kempczyński > <zbigniew.kempczynski@intel.com> > > -- > Zbigniew > > > + > > +struct xe_buffer { > > + void *cpu_addr; > > + uint64_t gpu_addr; > > + /*the user fence used to vm bind this buffer*/ > > + uint64_t *bind_ufence; > > + uint64_t size; > > + uint32_t flag; > > + uint32_t vm; > > + uint32_t bo; > > + uint32_t placement; > > + uint32_t bind_queue; > > + int fd; > > + bool is_userptr; > > +}; > > + > > +struct xe_cmdbuf { > > + struct xe_buffer buf; > > + /* command size in bytes, not including exec_ufence */ > > + uint64_t cmd_size; > > + uint32_t exec_queue; > > + /* Dword index to writ to command buffer */ > > + uint32_t write_index; > > +}; > > + > > +int xe_buffer_create(struct xe_buffer *buffer); > > +void xe_buffer_destroy(struct xe_buffer *buffer); > > + > > +void xe_cmdbuf_create(struct xe_cmdbuf *cmdbuf, > > + struct drm_xe_engine_class_instance *eci); > > +void xe_cmdbuf_insert_store(struct xe_cmdbuf *cmdbuf, > uint64_t dst_va, > > + uint32_t val); > > +void xe_cmdbuf_insert_bbe(struct xe_cmdbuf *cmdbuf); > > +void xe_cmdbuf_submit(struct xe_cmdbuf *cmdbuf); > > +int64_t __xe_cmdbuf_submit(struct xe_cmdbuf *cmdbuf); > > +void xe_cmdbuf_destroy(struct xe_cmdbuf *cmdbuf); > > + > > #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] 11+ messages in thread
* [i-g-t v5 3/4] tests/intel/xe_vm: Exclude invalid_flags tests from LNL and BMG 2025-02-21 15:53 [i-g-t v5 0/4] xe: Test scratch page under fault mode Oak Zeng 2025-02-21 15:53 ` [i-g-t v5 1/4] lib/xe: Fix a comment error Oak Zeng 2025-02-21 15:53 ` [i-g-t v5 2/4] lib/xe/xe_util: Introduce helper functions Oak Zeng @ 2025-02-21 15:53 ` Oak Zeng 2025-02-21 15:53 ` [i-g-t v5 4/4] tests/intel/xe_exec_fault_mode: Test scratch page under fault mode Oak Zeng ` (4 subsequent siblings) 7 siblings, 0 replies; 11+ messages in thread From: Oak Zeng @ 2025-02-21 15:53 UTC (permalink / raw) To: igt-dev Cc: Thomas.Hellstrom, matthew.brost, kamil.konieczny, zbigniew.kempczynski, ashutosh.dixit, juha-pekka.heikkila, rodrigo.vivi Due to a fix of out of bound prefetch issue, we now allow scratch page coexist with fault mode on LNL and BMG, thus exclude those tests on such HW. Signed-off-by: Oak Zeng <oak.zeng@intel.com> --- tests/intel/xe_vm.c | 47 ++++++++++++++++++++++++++++++--------------- 1 file changed, 32 insertions(+), 15 deletions(-) diff --git a/tests/intel/xe_vm.c b/tests/intel/xe_vm.c index 0730dd3d3..834e0afd7 100644 --- a/tests/intel/xe_vm.c +++ b/tests/intel/xe_vm.c @@ -2349,6 +2349,7 @@ igt_main struct drm_xe_engine_class_instance *hwe, *hwe_non_copy = NULL; uint64_t bind_size; int fd; + uint16_t dev_id; const struct section { const char *name; int bo_n_pages; @@ -2441,23 +2442,28 @@ igt_main { NULL }, }; - const struct vm_create_section { - const char *name; - __u32 flags; - } xe_vm_create_invalid_flags[] = { - { "xe_vm_create_fault", DRM_XE_VM_CREATE_FLAG_FAULT_MODE }, - { "xe_vm_create_scratch_fault", - DRM_XE_VM_CREATE_FLAG_SCRATCH_PAGE | - DRM_XE_VM_CREATE_FLAG_FAULT_MODE }, - { "xe_vm_create_scratch_fault_lr", - ~(DRM_XE_VM_CREATE_FLAG_LR_MODE | - DRM_XE_VM_CREATE_FLAG_SCRATCH_PAGE | - DRM_XE_VM_CREATE_FLAG_FAULT_MODE) }, - { } - }; + const struct vm_create_section { + const char *name; + __u32 flags; + } xe_vm_create_invalid_flags1[] = { + { "xe_vm_create_fault", DRM_XE_VM_CREATE_FLAG_FAULT_MODE }, + { } + }; + + const struct vm_create_section xe_vm_create_invalid_flags2[] = { + { "xe_vm_create_scratch_fault", + DRM_XE_VM_CREATE_FLAG_SCRATCH_PAGE | + DRM_XE_VM_CREATE_FLAG_FAULT_MODE }, + { "xe_vm_create_scratch_fault_lr", + ~(DRM_XE_VM_CREATE_FLAG_LR_MODE | + DRM_XE_VM_CREATE_FLAG_SCRATCH_PAGE | + DRM_XE_VM_CREATE_FLAG_FAULT_MODE) }, + { } + }; igt_fixture { fd = drm_open_driver(DRIVER_XE); + dev_id = intel_get_drm_devid(fd); xe_for_each_engine(fd, hwe) if (hwe->engine_class != DRM_XE_ENGINE_CLASS_COPY) { @@ -2715,11 +2721,22 @@ igt_main } } - for (const struct vm_create_section *s = xe_vm_create_invalid_flags; s->name; s++) { + for (const struct vm_create_section *s = xe_vm_create_invalid_flags1; + s->name; s++) { igt_subtest_f("invalid-flag-%s", s->name) invalid_flag(fd, s->flags); } + for (const struct vm_create_section *s = xe_vm_create_invalid_flags2; + s->name; s++) { + igt_subtest_f("invalid-flag-%s", s->name) { + igt_skip_on_f(IS_LUNARLAKE(dev_id) || + IS_BATTLEMAGE(dev_id), + "Skip test on this platform\n"); + invalid_flag(fd, s->flags); + } + } + igt_subtest("invalid-extensions") invalid_extensions(fd); -- 2.26.3 ^ permalink raw reply related [flat|nested] 11+ messages in thread
* [i-g-t v5 4/4] tests/intel/xe_exec_fault_mode: Test scratch page under fault mode 2025-02-21 15:53 [i-g-t v5 0/4] xe: Test scratch page under fault mode Oak Zeng ` (2 preceding siblings ...) 2025-02-21 15:53 ` [i-g-t v5 3/4] tests/intel/xe_vm: Exclude invalid_flags tests from LNL and BMG Oak Zeng @ 2025-02-21 15:53 ` Oak Zeng 2025-02-21 16:33 ` ✓ i915.CI.BAT: success for xe: Test scratch page under fault mode (rev4) Patchwork ` (3 subsequent siblings) 7 siblings, 0 replies; 11+ messages in thread From: Oak Zeng @ 2025-02-21 15:53 UTC (permalink / raw) To: igt-dev Cc: Thomas.Hellstrom, matthew.brost, kamil.konieczny, zbigniew.kempczynski, ashutosh.dixit, juha-pekka.heikkila, rodrigo.vivi On certain HW (such as lunarlake and battlemage), driver now allows scratch page be enabled under fault mode. Test this functionality v1: Move the test to separate function. Write to scratch page before rebind (Matt) Signed-off-by: Oak Zeng <oak.zeng@intel.com> --- tests/intel/xe_exec_fault_mode.c | 68 ++++++++++++++++++++++++++++++++ 1 file changed, 68 insertions(+) diff --git a/tests/intel/xe_exec_fault_mode.c b/tests/intel/xe_exec_fault_mode.c index ae40e099b..6cc27102a 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,64 @@ #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_cmdbuf cmdbuf = { + .buf = { + .fd = fd, + .gpu_addr = 0x10a0000, + .placement = vram_if_possible(fd, eci->gt_id), + .flag = DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM, + }, + .cmd_size = bb_size, + }; + + 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; + cmdbuf.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_cmdbuf_create(&cmdbuf, eci); + xe_cmdbuf_insert_store(&cmdbuf, dst_buf.gpu_addr, 0xc0ffee); + xe_cmdbuf_insert_bbe(&cmdbuf); + xe_cmdbuf_submit(&cmdbuf); + + /* 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_buffer_create(&dst_buf); + xe_cmdbuf_submit(&cmdbuf); + igt_assert_eq(*(uint64_t *)dst_buf.cpu_addr, 0xc0ffee); + + xe_cmdbuf_destroy(&cmdbuf); + xe_buffer_destroy(&dst_buf); + xe_vm_destroy(fd, vm); +} + /** * SUBTEST: invalid-va * Description: Access invalid va and check for EIO through user fence. @@ -458,6 +517,7 @@ igt_main { NULL }, }; int fd; + uint32_t dev_id; igt_fixture { struct timespec tv = {}; @@ -466,6 +526,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 +569,13 @@ igt_main xe_for_each_engine(fd, hwe) test_exec(fd, hwe, 1, 1, ENABLE_SCRATCH | INVALID_VA); + igt_describe("Check if scratch page works under fault mode"); + igt_subtest("scratch-fault") { + igt_skip_on(!IS_LUNARLAKE(dev_id) && !IS_BATTLEMAGE(dev_id)); + xe_for_each_engine(fd, hwe) + test_scratch(fd, hwe); + } + igt_fixture { drm_close_driver(fd); } -- 2.26.3 ^ permalink raw reply related [flat|nested] 11+ messages in thread
* ✓ i915.CI.BAT: success for xe: Test scratch page under fault mode (rev4) 2025-02-21 15:53 [i-g-t v5 0/4] xe: Test scratch page under fault mode Oak Zeng ` (3 preceding siblings ...) 2025-02-21 15:53 ` [i-g-t v5 4/4] tests/intel/xe_exec_fault_mode: Test scratch page under fault mode Oak Zeng @ 2025-02-21 16:33 ` Patchwork 2025-02-21 16:52 ` ✓ Xe.CI.BAT: " Patchwork ` (2 subsequent siblings) 7 siblings, 0 replies; 11+ messages in thread From: Patchwork @ 2025-02-21 16:33 UTC (permalink / raw) To: Oak Zeng; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 2135 bytes --] == Series Details == Series: xe: Test scratch page under fault mode (rev4) URL : https://patchwork.freedesktop.org/series/144907/ State : success == Summary == CI Bug Log - changes from IGT_8245 -> IGTPW_12649 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/index.html Participating hosts (44 -> 41) ------------------------------ Missing (3): fi-rkl-11600 fi-snb-2520m bat-adls-6 Known issues ------------ Here are the changes found in IGTPW_12649 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_selftest@live: - bat-twl-2: [PASS][1] -> [ABORT][2] ([i915#12919] / [i915#13503]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8245/bat-twl-2/igt@i915_selftest@live.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/bat-twl-2/igt@i915_selftest@live.html * igt@i915_selftest@live@gt_engines: - bat-twl-2: [PASS][3] -> [ABORT][4] ([i915#12919]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8245/bat-twl-2/igt@i915_selftest@live@gt_engines.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/bat-twl-2/igt@i915_selftest@live@gt_engines.html [i915#12919]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12919 [i915#13503]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13503 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8245 -> IGTPW_12649 * Linux: CI_DRM_16164 -> CI_DRM_16167 CI-20190529: 20190529 CI_DRM_16164: 8554d5b7b4fded481a85ab11d75eeb97443450e2 @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_16167: a22ac320a08377d760e73fa530c27782f0b68b6d @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12649: 271236dac27a9991d20fdd105fd5a93d48901912 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8245: 822e95b2560133bc21aa3065f70d7148f23f87cf @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/index.html [-- Attachment #2: Type: text/html, Size: 2846 bytes --] ^ permalink raw reply [flat|nested] 11+ messages in thread
* ✓ Xe.CI.BAT: success for xe: Test scratch page under fault mode (rev4) 2025-02-21 15:53 [i-g-t v5 0/4] xe: Test scratch page under fault mode Oak Zeng ` (4 preceding siblings ...) 2025-02-21 16:33 ` ✓ i915.CI.BAT: success for xe: Test scratch page under fault mode (rev4) Patchwork @ 2025-02-21 16:52 ` Patchwork 2025-02-21 18:14 ` ✗ i915.CI.Full: failure " Patchwork 2025-02-22 5:55 ` ✗ Xe.CI.Full: " Patchwork 7 siblings, 0 replies; 11+ messages in thread From: Patchwork @ 2025-02-21 16:52 UTC (permalink / raw) To: Oak Zeng; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 2721 bytes --] == Series Details == Series: xe: Test scratch page under fault mode (rev4) URL : https://patchwork.freedesktop.org/series/144907/ State : success == Summary == CI Bug Log - changes from XEIGT_8245_BAT -> XEIGTPW_12649_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (8 -> 8) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_12649_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@xe_live_ktest@xe_dma_buf: - bat-bmg-2: [PASS][1] -> [SKIP][2] ([Intel XE#4322]) +2 other tests skip [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/bat-bmg-2/igt@xe_live_ktest@xe_dma_buf.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/bat-bmg-2/igt@xe_live_ktest@xe_dma_buf.html * igt@xe_live_ktest@xe_migrate: - bat-bmg-1: [PASS][3] -> [SKIP][4] ([Intel XE#4322]) +2 other tests skip [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/bat-bmg-1/igt@xe_live_ktest@xe_migrate.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/bat-bmg-1/igt@xe_live_ktest@xe_migrate.html - bat-lnl-1: [PASS][5] -> [SKIP][6] ([Intel XE#4322]) +1 other test skip [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/bat-lnl-1/igt@xe_live_ktest@xe_migrate.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/bat-lnl-1/igt@xe_live_ktest@xe_migrate.html #### Warnings #### * igt@xe_live_ktest@xe_bo: - bat-lnl-1: [SKIP][7] ([Intel XE#2229]) -> [SKIP][8] ([Intel XE#4322]) [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/bat-lnl-1/igt@xe_live_ktest@xe_bo.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/bat-lnl-1/igt@xe_live_ktest@xe_bo.html [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229 [Intel XE#4322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4322 Build changes ------------- * IGT: IGT_8245 -> IGTPW_12649 * Linux: xe-2695-8554d5b7b4fded481a85ab11d75eeb97443450e2 -> xe-2698-a22ac320a08377d760e73fa530c27782f0b68b6d IGTPW_12649: 271236dac27a9991d20fdd105fd5a93d48901912 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8245: 822e95b2560133bc21aa3065f70d7148f23f87cf @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2695-8554d5b7b4fded481a85ab11d75eeb97443450e2: 8554d5b7b4fded481a85ab11d75eeb97443450e2 xe-2698-a22ac320a08377d760e73fa530c27782f0b68b6d: a22ac320a08377d760e73fa530c27782f0b68b6d == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/index.html [-- Attachment #2: Type: text/html, Size: 3575 bytes --] ^ permalink raw reply [flat|nested] 11+ messages in thread
* ✗ i915.CI.Full: failure for xe: Test scratch page under fault mode (rev4) 2025-02-21 15:53 [i-g-t v5 0/4] xe: Test scratch page under fault mode Oak Zeng ` (5 preceding siblings ...) 2025-02-21 16:52 ` ✓ Xe.CI.BAT: " Patchwork @ 2025-02-21 18:14 ` Patchwork 2025-02-22 5:55 ` ✗ Xe.CI.Full: " Patchwork 7 siblings, 0 replies; 11+ messages in thread From: Patchwork @ 2025-02-21 18:14 UTC (permalink / raw) To: Oak Zeng; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 123962 bytes --] == Series Details == Series: xe: Test scratch page under fault mode (rev4) URL : https://patchwork.freedesktop.org/series/144907/ State : failure == Summary == CI Bug Log - changes from CI_DRM_16167_full -> IGTPW_12649_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12649_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12649_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_12649/index.html Participating hosts (10 -> 9) ------------------------------ Missing (1): shard-glk-0 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_12649_full: ### IGT changes ### #### Possible regressions #### * igt@gem_exec_suspend@basic-s4-devices: - shard-glk: NOTRUN -> [ABORT][1] +1 other test abort [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-glk2/igt@gem_exec_suspend@basic-s4-devices.html * igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-vga1-hdmi-a1: - shard-snb: [PASS][2] -> [FAIL][3] +3 other tests fail [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16167/shard-snb2/igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-vga1-hdmi-a1.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-snb5/igt@kms_flip@2x-plain-flip-ts-check-interruptible@ab-vga1-hdmi-a1.html * igt@kms_flip@flip-vs-absolute-wf_vblank: - shard-mtlp: [PASS][4] -> [FAIL][5] +3 other tests fail [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16167/shard-mtlp-1/igt@kms_flip@flip-vs-absolute-wf_vblank.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-mtlp-3/igt@kms_flip@flip-vs-absolute-wf_vblank.html * igt@kms_flip@flip-vs-blocking-wf-vblank: - shard-dg2: [PASS][6] -> [FAIL][7] [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16167/shard-dg2-7/igt@kms_flip@flip-vs-blocking-wf-vblank.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg2-10/igt@kms_flip@flip-vs-blocking-wf-vblank.html * igt@kms_flip@flip-vs-blocking-wf-vblank@b-dp4: - shard-dg2: NOTRUN -> [FAIL][8] +1 other test fail [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg2-10/igt@kms_flip@flip-vs-blocking-wf-vblank@b-dp4.html * igt@kms_flip@wf_vblank-ts-check: - shard-dg2-9: NOTRUN -> [FAIL][9] +2 other tests fail [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg2-9/igt@kms_flip@wf_vblank-ts-check.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * {igt@kms_dp_link_training@non-uhbr-sst}: - shard-tglu-1: NOTRUN -> [SKIP][10] [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-tglu-1/igt@kms_dp_link_training@non-uhbr-sst.html * {igt@kms_dp_link_training@uhbr-sst}: - shard-dg1: NOTRUN -> [SKIP][11] [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg1-15/igt@kms_dp_link_training@uhbr-sst.html - shard-tglu: NOTRUN -> [SKIP][12] [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-tglu-6/igt@kms_dp_link_training@uhbr-sst.html New tests --------- New tests have been introduced between CI_DRM_16167_full and IGTPW_12649_full: ### New IGT tests (1) ### * igt@kms_cursor_edge_walk@256x256-top-edge@pipe-a-vga-1: - Statuses : 1 pass(s) - Exec time: [3.40] s Known issues ------------ Here are the changes found in IGTPW_12649_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-reloc-keep-cache: - shard-mtlp: NOTRUN -> [SKIP][13] ([i915#8411]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-mtlp-5/igt@api_intel_bb@blit-reloc-keep-cache.html * igt@api_intel_bb@blit-reloc-purge-cache: - shard-dg2-9: NOTRUN -> [SKIP][14] ([i915#8411]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg2-9/igt@api_intel_bb@blit-reloc-purge-cache.html * igt@api_intel_bb@object-reloc-keep-cache: - shard-dg2: NOTRUN -> [SKIP][15] ([i915#8411]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg2-10/igt@api_intel_bb@object-reloc-keep-cache.html * igt@debugfs_test@basic-hwmon: - shard-tglu: NOTRUN -> [SKIP][16] ([i915#9318]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-tglu-2/igt@debugfs_test@basic-hwmon.html * igt@device_reset@unbind-cold-reset-rebind: - shard-rkl: NOTRUN -> [SKIP][17] ([i915#11078]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-rkl-4/igt@device_reset@unbind-cold-reset-rebind.html * igt@device_reset@unbind-reset-rebind: - shard-rkl: [PASS][18] -> [ABORT][19] ([i915#5507]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16167/shard-rkl-3/igt@device_reset@unbind-reset-rebind.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-rkl-3/igt@device_reset@unbind-reset-rebind.html - shard-tglu: NOTRUN -> [ABORT][20] ([i915#12817] / [i915#5507]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-tglu-7/igt@device_reset@unbind-reset-rebind.html * igt@drm_fdinfo@busy-idle-check-all@vcs0: - shard-dg2: NOTRUN -> [SKIP][21] ([i915#8414]) +10 other tests skip [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg2-4/igt@drm_fdinfo@busy-idle-check-all@vcs0.html * igt@drm_fdinfo@busy-idle-check-all@vcs1: - shard-dg1: NOTRUN -> [SKIP][22] ([i915#8414]) +6 other tests skip [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg1-17/igt@drm_fdinfo@busy-idle-check-all@vcs1.html * igt@drm_fdinfo@virtual-busy-all: - shard-dg2-9: NOTRUN -> [SKIP][23] ([i915#8414]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg2-9/igt@drm_fdinfo@virtual-busy-all.html * igt@drm_fdinfo@virtual-busy-hang-all: - shard-mtlp: NOTRUN -> [SKIP][24] ([i915#8414]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-mtlp-7/igt@drm_fdinfo@virtual-busy-hang-all.html * igt@gem_basic@multigpu-create-close: - shard-dg1: NOTRUN -> [SKIP][25] ([i915#7697]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg1-19/igt@gem_basic@multigpu-create-close.html - shard-tglu: NOTRUN -> [SKIP][26] ([i915#7697]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-tglu-3/igt@gem_basic@multigpu-create-close.html * igt@gem_busy@semaphore: - shard-mtlp: NOTRUN -> [SKIP][27] ([i915#3936]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-mtlp-7/igt@gem_busy@semaphore.html * igt@gem_ccs@block-copy-compressed: - shard-tglu: NOTRUN -> [SKIP][28] ([i915#3555] / [i915#9323]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-tglu-9/igt@gem_ccs@block-copy-compressed.html * igt@gem_ccs@suspend-resume: - shard-dg2: NOTRUN -> [INCOMPLETE][29] ([i915#13356]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg2-2/igt@gem_ccs@suspend-resume.html * igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0: - shard-dg2: NOTRUN -> [INCOMPLETE][30] ([i915#12392] / [i915#13356]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg2-2/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0.html * igt@gem_create@create-ext-cpu-access-sanity-check: - shard-tglu-1: NOTRUN -> [SKIP][31] ([i915#6335]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-tglu-1/igt@gem_create@create-ext-cpu-access-sanity-check.html * igt@gem_create@create-ext-set-pat: - shard-tglu: NOTRUN -> [SKIP][32] ([i915#8562]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-tglu-8/igt@gem_create@create-ext-set-pat.html * igt@gem_ctx_isolation@preservation-s3@bcs0: - shard-glk: NOTRUN -> [INCOMPLETE][33] ([i915#12353]) +1 other test incomplete [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-glk8/igt@gem_ctx_isolation@preservation-s3@bcs0.html * igt@gem_ctx_persistence@engines-cleanup: - shard-snb: NOTRUN -> [SKIP][34] ([i915#1099]) +1 other test skip [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-snb2/igt@gem_ctx_persistence@engines-cleanup.html * igt@gem_ctx_persistence@hang: - shard-dg1: NOTRUN -> [SKIP][35] ([i915#8555]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg1-17/igt@gem_ctx_persistence@hang.html * igt@gem_ctx_sseu@invalid-args: - shard-tglu: NOTRUN -> [SKIP][36] ([i915#280]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-tglu-5/igt@gem_ctx_sseu@invalid-args.html * igt@gem_eio@hibernate: - shard-tglu: NOTRUN -> [ABORT][37] ([i915#7975]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-tglu-3/igt@gem_eio@hibernate.html - shard-mtlp: NOTRUN -> [ABORT][38] ([i915#7975]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-mtlp-6/igt@gem_eio@hibernate.html * igt@gem_eio@in-flight-suspend: - shard-rkl: [PASS][39] -> [DMESG-WARN][40] ([i915#12964]) +35 other tests dmesg-warn [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16167/shard-rkl-1/igt@gem_eio@in-flight-suspend.html [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-rkl-1/igt@gem_eio@in-flight-suspend.html - shard-glk: NOTRUN -> [INCOMPLETE][41] ([i915#13390]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-glk9/igt@gem_eio@in-flight-suspend.html * igt@gem_eio@kms: - shard-dg1: NOTRUN -> [FAIL][42] ([i915#5784]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg1-16/igt@gem_eio@kms.html * igt@gem_exec_balancer@bonded-dual: - shard-mtlp: NOTRUN -> [SKIP][43] ([i915#4771]) +1 other test skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-mtlp-1/igt@gem_exec_balancer@bonded-dual.html * igt@gem_exec_balancer@hog: - shard-dg2-9: NOTRUN -> [SKIP][44] ([i915#4812]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg2-9/igt@gem_exec_balancer@hog.html * igt@gem_exec_capture@capture@vecs0-lmem0: - shard-dg2: NOTRUN -> [FAIL][45] ([i915#11965]) +4 other tests fail [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg2-5/igt@gem_exec_capture@capture@vecs0-lmem0.html * igt@gem_exec_fence@submit3: - shard-dg2: NOTRUN -> [SKIP][46] ([i915#4812]) +1 other test skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg2-1/igt@gem_exec_fence@submit3.html * igt@gem_exec_flush@basic-uc-pro-default: - shard-dg2: NOTRUN -> [SKIP][47] ([i915#3539] / [i915#4852]) +2 other tests skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg2-6/igt@gem_exec_flush@basic-uc-pro-default.html - shard-dg1: NOTRUN -> [SKIP][48] ([i915#3539] / [i915#4852]) +1 other test skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg1-13/igt@gem_exec_flush@basic-uc-pro-default.html * igt@gem_exec_flush@basic-uc-set-default: - shard-dg2-9: NOTRUN -> [SKIP][49] ([i915#3539]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg2-9/igt@gem_exec_flush@basic-uc-set-default.html * igt@gem_exec_reloc@basic-cpu-noreloc: - shard-mtlp: NOTRUN -> [SKIP][50] ([i915#3281]) +3 other tests skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-mtlp-3/igt@gem_exec_reloc@basic-cpu-noreloc.html * igt@gem_exec_reloc@basic-gtt: - shard-dg1: NOTRUN -> [SKIP][51] ([i915#3281]) +2 other tests skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg1-12/igt@gem_exec_reloc@basic-gtt.html * igt@gem_exec_reloc@basic-gtt-wc: - shard-dg2: NOTRUN -> [SKIP][52] ([i915#3281]) +4 other tests skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg2-4/igt@gem_exec_reloc@basic-gtt-wc.html * igt@gem_exec_reloc@basic-gtt-wc-noreloc: - shard-rkl: NOTRUN -> [SKIP][53] ([i915#3281]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-rkl-3/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html * igt@gem_exec_schedule@deep@rcs0: - shard-mtlp: NOTRUN -> [SKIP][54] ([i915#4537]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-mtlp-5/igt@gem_exec_schedule@deep@rcs0.html * igt@gem_exec_schedule@preempt-queue-contexts: - shard-dg1: NOTRUN -> [SKIP][55] ([i915#4812]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg1-15/igt@gem_exec_schedule@preempt-queue-contexts.html - shard-mtlp: NOTRUN -> [SKIP][56] ([i915#4537] / [i915#4812]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-mtlp-6/igt@gem_exec_schedule@preempt-queue-contexts.html * igt@gem_exec_schedule@reorder-wide: - shard-dg2: NOTRUN -> [SKIP][57] ([i915#4537] / [i915#4812]) +1 other test skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg2-10/igt@gem_exec_schedule@reorder-wide.html * igt@gem_exec_suspend@basic-s4-devices: - shard-dg2-9: NOTRUN -> [ABORT][58] ([i915#7975]) +1 other test abort [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg2-9/igt@gem_exec_suspend@basic-s4-devices.html * igt@gem_fence_thrash@bo-write-verify-threaded-none: - shard-dg2-9: NOTRUN -> [SKIP][59] ([i915#4860]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg2-9/igt@gem_fence_thrash@bo-write-verify-threaded-none.html * igt@gem_fence_thrash@bo-write-verify-y: - shard-dg2: NOTRUN -> [SKIP][60] ([i915#4860]) +1 other test skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg2-7/igt@gem_fence_thrash@bo-write-verify-y.html - shard-dg1: NOTRUN -> [SKIP][61] ([i915#4860]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg1-16/igt@gem_fence_thrash@bo-write-verify-y.html * igt@gem_fenced_exec_thrash@too-many-fences: - shard-mtlp: NOTRUN -> [SKIP][62] ([i915#4860]) +2 other tests skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-mtlp-8/igt@gem_fenced_exec_thrash@too-many-fences.html * igt@gem_huc_copy@huc-copy: - shard-rkl: NOTRUN -> [SKIP][63] ([i915#2190]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-rkl-1/igt@gem_huc_copy@huc-copy.html - shard-glk: NOTRUN -> [SKIP][64] ([i915#2190]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-glk9/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@massive-random: - shard-mtlp: NOTRUN -> [SKIP][65] ([i915#4613]) +3 other tests skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-mtlp-6/igt@gem_lmem_swapping@massive-random.html * igt@gem_lmem_swapping@parallel-multi: - shard-tglu: NOTRUN -> [SKIP][66] ([i915#4613]) +2 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-tglu-2/igt@gem_lmem_swapping@parallel-multi.html * igt@gem_lmem_swapping@parallel-random-verify-ccs: - shard-tglu-1: NOTRUN -> [SKIP][67] ([i915#4613]) +1 other test skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-tglu-1/igt@gem_lmem_swapping@parallel-random-verify-ccs.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg2: NOTRUN -> [TIMEOUT][68] ([i915#5493]) +1 other test timeout [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg2-6/igt@gem_lmem_swapping@smem-oom@lmem0.html - shard-dg1: NOTRUN -> [DMESG-WARN][69] ([i915#5493]) +1 other test dmesg-warn [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg1-13/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@gem_lmem_swapping@verify-ccs: - shard-glk: NOTRUN -> [SKIP][70] ([i915#4613]) +7 other tests skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-glk3/igt@gem_lmem_swapping@verify-ccs.html * igt@gem_madvise@dontneed-before-exec: - shard-mtlp: NOTRUN -> [SKIP][71] ([i915#3282]) +2 other tests skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-mtlp-8/igt@gem_madvise@dontneed-before-exec.html - shard-dg2-9: NOTRUN -> [SKIP][72] ([i915#3282]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg2-9/igt@gem_madvise@dontneed-before-exec.html * igt@gem_mmap@bad-size: - shard-dg2-9: NOTRUN -> [SKIP][73] ([i915#4083]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg2-9/igt@gem_mmap@bad-size.html * igt@gem_mmap_gtt@basic-small-bo: - shard-dg2: NOTRUN -> [SKIP][74] ([i915#4077]) +10 other tests skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg2-2/igt@gem_mmap_gtt@basic-small-bo.html * igt@gem_mmap_gtt@basic-write-read-distinct: - shard-mtlp: NOTRUN -> [SKIP][75] ([i915#4077]) +8 other tests skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-mtlp-1/igt@gem_mmap_gtt@basic-write-read-distinct.html * igt@gem_mmap_gtt@big-copy-xy: - shard-dg1: NOTRUN -> [SKIP][76] ([i915#4077]) +2 other tests skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg1-13/igt@gem_mmap_gtt@big-copy-xy.html * igt@gem_mmap_wc@copy: - shard-dg2: NOTRUN -> [SKIP][77] ([i915#4083]) +4 other tests skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg2-4/igt@gem_mmap_wc@copy.html * igt@gem_mmap_wc@read: - shard-dg1: NOTRUN -> [SKIP][78] ([i915#4083]) +1 other test skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg1-16/igt@gem_mmap_wc@read.html * igt@gem_mmap_wc@set-cache-level: - shard-mtlp: NOTRUN -> [SKIP][79] ([i915#4083]) +2 other tests skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-mtlp-4/igt@gem_mmap_wc@set-cache-level.html * igt@gem_partial_pwrite_pread@reads-uncached: - shard-dg1: NOTRUN -> [SKIP][80] ([i915#3282]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg1-14/igt@gem_partial_pwrite_pread@reads-uncached.html * igt@gem_pread@exhaustion: - shard-glk: NOTRUN -> [WARN][81] ([i915#2658]) +1 other test warn [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-glk8/igt@gem_pread@exhaustion.html * igt@gem_pwrite@basic-exhaustion: - shard-rkl: NOTRUN -> [SKIP][82] ([i915#3282]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-rkl-2/igt@gem_pwrite@basic-exhaustion.html - shard-tglu-1: NOTRUN -> [WARN][83] ([i915#2658]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-tglu-1/igt@gem_pwrite@basic-exhaustion.html - shard-snb: NOTRUN -> [WARN][84] ([i915#2658]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-snb1/igt@gem_pwrite@basic-exhaustion.html * igt@gem_pxp@create-regular-context-1: - shard-dg2: NOTRUN -> [SKIP][85] ([i915#4270]) +2 other tests skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg2-1/igt@gem_pxp@create-regular-context-1.html * igt@gem_pxp@create-valid-protected-context: - shard-dg2-9: NOTRUN -> [SKIP][86] ([i915#4270]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg2-9/igt@gem_pxp@create-valid-protected-context.html - shard-rkl: [PASS][87] -> [TIMEOUT][88] ([i915#12964]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16167/shard-rkl-8/igt@gem_pxp@create-valid-protected-context.html [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-rkl-1/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_12649/shard-rkl-2/igt@gem_pxp@fail-invalid-protected-context.html * igt@gem_pxp@hw-rejects-pxp-buffer: - shard-tglu-1: NOTRUN -> [SKIP][90] ([i915#13398]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-tglu-1/igt@gem_pxp@hw-rejects-pxp-buffer.html * igt@gem_pxp@reject-modify-context-protection-off-3: - shard-snb: NOTRUN -> [SKIP][91] +123 other tests skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-snb5/igt@gem_pxp@reject-modify-context-protection-off-3.html - shard-dg1: NOTRUN -> [SKIP][92] ([i915#4270]) +1 other test skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg1-19/igt@gem_pxp@reject-modify-context-protection-off-3.html * igt@gem_pxp@verify-pxp-stale-buf-optout-execution: - shard-rkl: NOTRUN -> [TIMEOUT][93] ([i915#12917] / [i915#12964]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-rkl-4/igt@gem_pxp@verify-pxp-stale-buf-optout-execution.html * igt@gem_readwrite@beyond-eob: - shard-dg2: NOTRUN -> [SKIP][94] ([i915#3282]) +2 other tests skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg2-8/igt@gem_readwrite@beyond-eob.html * igt@gem_render_copy@mixed-tiled-to-y-tiled-ccs: - shard-dg2: NOTRUN -> [SKIP][95] ([i915#5190] / [i915#8428]) +3 other tests skip [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg2-10/igt@gem_render_copy@mixed-tiled-to-y-tiled-ccs.html * igt@gem_render_copy@y-tiled-ccs-to-linear: - shard-dg2-9: NOTRUN -> [SKIP][96] ([i915#5190] / [i915#8428]) +2 other tests skip [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg2-9/igt@gem_render_copy@y-tiled-ccs-to-linear.html * igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled: - shard-mtlp: NOTRUN -> [SKIP][97] ([i915#8428]) +1 other test skip [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-mtlp-2/igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled.html * igt@gem_render_tiled_blits@basic: - shard-mtlp: NOTRUN -> [SKIP][98] ([i915#4079]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-mtlp-5/igt@gem_render_tiled_blits@basic.html * igt@gem_tiled_blits@basic: - shard-dg2-9: NOTRUN -> [SKIP][99] ([i915#4077]) +3 other tests skip [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg2-9/igt@gem_tiled_blits@basic.html * igt@gem_tiled_pread_pwrite: - shard-dg2: NOTRUN -> [SKIP][100] ([i915#4079]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg2-2/igt@gem_tiled_pread_pwrite.html * igt@gem_tiled_swapping@non-threaded: - shard-rkl: [PASS][101] -> [FAIL][102] ([i915#12941]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16167/shard-rkl-2/igt@gem_tiled_swapping@non-threaded.html [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-rkl-2/igt@gem_tiled_swapping@non-threaded.html - shard-tglu: [PASS][103] -> [FAIL][104] ([i915#12941]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16167/shard-tglu-2/igt@gem_tiled_swapping@non-threaded.html [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-tglu-7/igt@gem_tiled_swapping@non-threaded.html * igt@gem_unfence_active_buffers: - shard-dg2: NOTRUN -> [SKIP][105] ([i915#4879]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg2-8/igt@gem_unfence_active_buffers.html * igt@gem_userptr_blits@access-control: - shard-tglu: NOTRUN -> [SKIP][106] ([i915#3297]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-tglu-9/igt@gem_userptr_blits@access-control.html * igt@gem_userptr_blits@coherency-sync: - shard-dg2: NOTRUN -> [SKIP][107] ([i915#3297]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg2-7/igt@gem_userptr_blits@coherency-sync.html * igt@gem_userptr_blits@dmabuf-unsync: - shard-tglu-1: NOTRUN -> [SKIP][108] ([i915#3297]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-tglu-1/igt@gem_userptr_blits@dmabuf-unsync.html * igt@gem_userptr_blits@invalid-mmap-offset-unsync: - shard-mtlp: NOTRUN -> [SKIP][109] ([i915#3297]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-mtlp-6/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html * igt@gem_userptr_blits@readonly-pwrite-unsync: - shard-dg2-9: NOTRUN -> [SKIP][110] ([i915#3297]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg2-9/igt@gem_userptr_blits@readonly-pwrite-unsync.html * igt@gem_userptr_blits@relocations: - shard-mtlp: NOTRUN -> [SKIP][111] ([i915#3281] / [i915#3297]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-mtlp-8/igt@gem_userptr_blits@relocations.html * igt@gem_userptr_blits@sd-probe: - shard-dg2: NOTRUN -> [SKIP][112] ([i915#3297] / [i915#4958]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg2-8/igt@gem_userptr_blits@sd-probe.html - shard-dg1: NOTRUN -> [SKIP][113] ([i915#3297] / [i915#4958]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg1-16/igt@gem_userptr_blits@sd-probe.html * igt@gem_userptr_blits@unsync-unmap-cycles: - shard-rkl: NOTRUN -> [SKIP][114] ([i915#3297]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-rkl-5/igt@gem_userptr_blits@unsync-unmap-cycles.html * igt@gem_workarounds@reset: - shard-mtlp: [PASS][115] -> [ABORT][116] ([i915#13193]) +2 other tests abort [115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16167/shard-mtlp-4/igt@gem_workarounds@reset.html [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-mtlp-7/igt@gem_workarounds@reset.html * igt@gem_workarounds@suspend-resume: - shard-tglu-1: NOTRUN -> [ABORT][117] ([i915#12817]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-tglu-1/igt@gem_workarounds@suspend-resume.html * igt@gen3_render_mixed_blits: - shard-dg2: NOTRUN -> [SKIP][118] +7 other tests skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg2-10/igt@gen3_render_mixed_blits.html * igt@gen9_exec_parse@allowed-single: - shard-dg2: NOTRUN -> [SKIP][119] ([i915#2856]) +3 other tests skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg2-5/igt@gen9_exec_parse@allowed-single.html * igt@gen9_exec_parse@basic-rejected-ctx-param: - shard-tglu: NOTRUN -> [SKIP][120] ([i915#2527] / [i915#2856]) +1 other test skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-tglu-9/igt@gen9_exec_parse@basic-rejected-ctx-param.html * igt@gen9_exec_parse@batch-invalid-length: - shard-dg1: NOTRUN -> [SKIP][121] ([i915#2527]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg1-15/igt@gen9_exec_parse@batch-invalid-length.html * igt@gen9_exec_parse@bb-large: - shard-tglu-1: NOTRUN -> [SKIP][122] ([i915#2527] / [i915#2856]) +1 other test skip [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-tglu-1/igt@gen9_exec_parse@bb-large.html - shard-rkl: NOTRUN -> [SKIP][123] ([i915#2527]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-rkl-2/igt@gen9_exec_parse@bb-large.html * igt@gen9_exec_parse@bb-oversize: - shard-mtlp: NOTRUN -> [SKIP][124] ([i915#2856]) +2 other tests skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-mtlp-8/igt@gen9_exec_parse@bb-oversize.html - shard-dg2-9: NOTRUN -> [SKIP][125] ([i915#2856]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg2-9/igt@gen9_exec_parse@bb-oversize.html * igt@i915_module_load@reload-no-display: - shard-tglu-1: NOTRUN -> [DMESG-WARN][126] ([i915#13029]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-tglu-1/igt@i915_module_load@reload-no-display.html * igt@i915_module_load@reload-with-fault-injection: - shard-rkl: [PASS][127] -> [ABORT][128] ([i915#9820]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16167/shard-rkl-1/igt@i915_module_load@reload-with-fault-injection.html [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-rkl-7/igt@i915_module_load@reload-with-fault-injection.html - shard-tglu: [PASS][129] -> [ABORT][130] ([i915#10887] / [i915#12817] / [i915#9820]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16167/shard-tglu-7/igt@i915_module_load@reload-with-fault-injection.html [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-tglu-8/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_freq_api@freq-reset-multiple: - shard-tglu: NOTRUN -> [SKIP][131] ([i915#8399]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-tglu-2/igt@i915_pm_freq_api@freq-reset-multiple.html * igt@i915_pm_freq_mult@media-freq@gt0: - shard-tglu: NOTRUN -> [SKIP][132] ([i915#6590]) +1 other test skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-tglu-4/igt@i915_pm_freq_mult@media-freq@gt0.html * igt@i915_pm_rc6_residency@media-rc6-accuracy: - shard-rkl: NOTRUN -> [SKIP][133] +10 other tests skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-rkl-4/igt@i915_pm_rc6_residency@media-rc6-accuracy.html * igt@i915_pm_rc6_residency@rc6-fence: - shard-tglu: NOTRUN -> [WARN][134] ([i915#2681]) +1 other test warn [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-tglu-9/igt@i915_pm_rc6_residency@rc6-fence.html * igt@i915_pm_rpm@system-suspend: - shard-glk: [PASS][135] -> [INCOMPLETE][136] ([i915#12797]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16167/shard-glk6/igt@i915_pm_rpm@system-suspend.html [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-glk1/igt@i915_pm_rpm@system-suspend.html * igt@i915_pm_rpm@system-suspend-devices: - shard-dg2: [PASS][137] -> [SKIP][138] ([i915#13328]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16167/shard-dg2-1/igt@i915_pm_rpm@system-suspend-devices.html [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg2-8/igt@i915_pm_rpm@system-suspend-devices.html * igt@i915_pm_rps@basic-api: - shard-mtlp: NOTRUN -> [SKIP][139] ([i915#11681] / [i915#6621]) +1 other test skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-mtlp-8/igt@i915_pm_rps@basic-api.html * igt@i915_pm_rps@min-max-config-idle: - shard-dg2: NOTRUN -> [SKIP][140] ([i915#11681] / [i915#6621]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg2-2/igt@i915_pm_rps@min-max-config-idle.html * igt@i915_pm_rps@reset: - shard-snb: [PASS][141] -> [INCOMPLETE][142] ([i915#13729]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16167/shard-snb7/igt@i915_pm_rps@reset.html [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-snb2/igt@i915_pm_rps@reset.html * igt@i915_pm_rps@thresholds-idle: - shard-dg2: NOTRUN -> [SKIP][143] ([i915#11681]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg2-4/igt@i915_pm_rps@thresholds-idle.html * igt@i915_pm_sseu@full-enable: - shard-dg2: NOTRUN -> [SKIP][144] ([i915#4387]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg2-7/igt@i915_pm_sseu@full-enable.html - shard-dg1: NOTRUN -> [SKIP][145] ([i915#4387]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg1-16/igt@i915_pm_sseu@full-enable.html - shard-mtlp: NOTRUN -> [SKIP][146] ([i915#8437]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-mtlp-1/igt@i915_pm_sseu@full-enable.html * igt@i915_selftest@mock: - shard-glk: NOTRUN -> [DMESG-WARN][147] ([i915#9311]) +1 other test dmesg-warn [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-glk2/igt@i915_selftest@mock.html * igt@i915_suspend@basic-s3-without-i915: - shard-rkl: [PASS][148] -> [INCOMPLETE][149] ([i915#4817]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16167/shard-rkl-4/igt@i915_suspend@basic-s3-without-i915.html [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-rkl-8/igt@i915_suspend@basic-s3-without-i915.html * igt@intel_hwmon@hwmon-write: - shard-tglu: NOTRUN -> [SKIP][150] ([i915#7707]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-tglu-10/igt@intel_hwmon@hwmon-write.html * igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy: - shard-mtlp: NOTRUN -> [SKIP][151] ([i915#4212]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-mtlp-3/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html * igt@kms_addfb_basic@clobberred-modifier: - shard-dg2: NOTRUN -> [SKIP][152] ([i915#4212]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg2-5/igt@kms_addfb_basic@clobberred-modifier.html * igt@kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-tglu: NOTRUN -> [SKIP][153] ([i915#12454] / [i915#12712]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-tglu-9/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html - shard-mtlp: NOTRUN -> [SKIP][154] ([i915#12454] / [i915#12712]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-mtlp-2/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt@kms_addfb_basic@tile-pitch-mismatch: - shard-dg2-9: NOTRUN -> [SKIP][155] ([i915#4212]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg2-9/igt@kms_addfb_basic@tile-pitch-mismatch.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-2-y-rc-ccs-cc: - shard-rkl: NOTRUN -> [SKIP][156] ([i915#8709]) +1 other test skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-rkl-5/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-2-y-rc-ccs-cc.html * igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-3: - shard-dg1: [PASS][157] -> [FAIL][158] ([i915#5956]) +1 other test fail [157]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16167/shard-dg1-13/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-3.html [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg1-13/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-3.html * igt@kms_big_fb@4-tiled-8bpp-rotate-0: - shard-dg1: NOTRUN -> [SKIP][159] ([i915#4538] / [i915#5286]) +1 other test skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg1-13/igt@kms_big_fb@4-tiled-8bpp-rotate-0.html * igt@kms_big_fb@4-tiled-addfb: - shard-dg1: NOTRUN -> [SKIP][160] ([i915#5286]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg1-19/igt@kms_big_fb@4-tiled-addfb.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip: - shard-tglu: NOTRUN -> [SKIP][161] ([i915#5286]) +2 other tests skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-tglu-5/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-tglu-1: NOTRUN -> [SKIP][162] ([i915#5286]) +1 other test skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-tglu-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip: - shard-rkl: NOTRUN -> [SKIP][163] ([i915#5286]) +2 other tests skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-rkl-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-mtlp: [PASS][164] -> [FAIL][165] ([i915#5138]) +1 other test fail [164]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16167/shard-mtlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-mtlp-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180: - shard-glk: NOTRUN -> [DMESG-WARN][166] ([i915#118]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-glk2/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180.html * igt@kms_big_fb@x-tiled-16bpp-rotate-90: - shard-dg2-9: NOTRUN -> [SKIP][167] +2 other tests skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg2-9/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html * igt@kms_big_fb@y-tiled-64bpp-rotate-0: - shard-dg2-9: NOTRUN -> [SKIP][168] ([i915#4538] / [i915#5190]) +3 other tests skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg2-9/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html * igt@kms_big_fb@y-tiled-8bpp-rotate-180: - shard-dg2: NOTRUN -> [SKIP][169] ([i915#4538] / [i915#5190]) +10 other tests skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg2-10/igt@kms_big_fb@y-tiled-8bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-180: - shard-mtlp: NOTRUN -> [SKIP][170] +11 other tests skip [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-mtlp-2/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-addfb-size-overflow: - shard-mtlp: NOTRUN -> [SKIP][171] ([i915#6187]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-mtlp-3/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180: - shard-dg1: NOTRUN -> [SKIP][172] ([i915#4538]) +1 other test skip [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg1-12/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180.html * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][173] ([i915#6095]) +128 other tests skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg1-15/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4.html * igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs: - shard-mtlp: NOTRUN -> [SKIP][174] ([i915#6095]) +49 other tests skip [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-mtlp-4/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs.html * igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs: - shard-tglu-1: NOTRUN -> [SKIP][175] ([i915#12313]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-tglu-1/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-basic-y-tiled-ccs: - shard-tglu-1: NOTRUN -> [SKIP][176] ([i915#6095]) +24 other tests skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-tglu-1/igt@kms_ccs@crc-primary-basic-y-tiled-ccs.html * igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-c-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][177] ([i915#6095]) +49 other tests skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-tglu-9/igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-c-hdmi-a-1.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs: - shard-dg1: NOTRUN -> [SKIP][178] ([i915#12313]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg1-12/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html - shard-mtlp: NOTRUN -> [SKIP][179] ([i915#12313]) +1 other test skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-mtlp-5/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][180] ([i915#6095]) +84 other tests skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-rkl-2/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs: - shard-dg2: NOTRUN -> [SKIP][181] ([i915#12313]) +1 other test skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg2-4/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][182] ([i915#10307] / [i915#6095]) +161 other tests skip [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg2-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3.html * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-tglu-1: NOTRUN -> [SKIP][183] ([i915#12805]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-tglu-1/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-2: - shard-glk: NOTRUN -> [INCOMPLETE][184] ([i915#12796]) +3 other tests incomplete [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-glk8/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-2.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][185] ([i915#6095]) +21 other tests skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg2-8/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-1.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs: - shard-rkl: NOTRUN -> [SKIP][186] ([i915#12313]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-rkl-3/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-2: - shard-dg2-9: NOTRUN -> [SKIP][187] ([i915#10307] / [i915#6095]) +19 other tests skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg2-9/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-2.html * igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][188] ([i915#10307] / [i915#10434] / [i915#6095]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg2-4/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-hdmi-a-1.html * igt@kms_cdclk@mode-transition: - shard-dg2-9: NOTRUN -> [SKIP][189] ([i915#11616] / [i915#7213]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg2-9/igt@kms_cdclk@mode-transition.html - shard-tglu: NOTRUN -> [SKIP][190] ([i915#3742]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-tglu-4/igt@kms_cdclk@mode-transition.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-rkl: NOTRUN -> [SKIP][191] ([i915#3742]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-rkl-5/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_cdclk@mode-transition@pipe-b-hdmi-a-2: - shard-dg2-9: NOTRUN -> [SKIP][192] ([i915#7213]) +3 other tests skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/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][193] ([i915#4087]) +4 other tests skip [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg2-2/igt@kms_cdclk@plane-scaling@pipe-b-hdmi-a-3.html * igt@kms_chamelium_audio@hdmi-audio-edid: - shard-tglu-1: NOTRUN -> [SKIP][194] ([i915#11151] / [i915#7828]) +5 other tests skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-tglu-1/igt@kms_chamelium_audio@hdmi-audio-edid.html * igt@kms_chamelium_edid@dp-edid-stress-resolution-4k: - shard-rkl: NOTRUN -> [SKIP][195] ([i915#11151] / [i915#7828]) +2 other tests skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-rkl-8/igt@kms_chamelium_edid@dp-edid-stress-resolution-4k.html * igt@kms_chamelium_frames@dp-crc-multiple: - shard-dg2: NOTRUN -> [SKIP][196] ([i915#11151] / [i915#7828]) +4 other tests skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg2-5/igt@kms_chamelium_frames@dp-crc-multiple.html * igt@kms_chamelium_frames@hdmi-frame-dump: - shard-dg1: NOTRUN -> [SKIP][197] ([i915#11151] / [i915#7828]) +1 other test skip [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg1-19/igt@kms_chamelium_frames@hdmi-frame-dump.html * igt@kms_chamelium_hpd@dp-hpd-fast: - shard-dg2-9: NOTRUN -> [SKIP][198] ([i915#11151] / [i915#7828]) +1 other test skip [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg2-9/igt@kms_chamelium_hpd@dp-hpd-fast.html * igt@kms_chamelium_hpd@dp-hpd-for-each-pipe: - shard-mtlp: NOTRUN -> [SKIP][199] ([i915#11151] / [i915#7828]) +3 other tests skip [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-mtlp-3/igt@kms_chamelium_hpd@dp-hpd-for-each-pipe.html * igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode: - shard-tglu: NOTRUN -> [SKIP][200] ([i915#11151] / [i915#7828]) +4 other tests skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-tglu-10/igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode.html * igt@kms_content_protection@atomic: - shard-dg2: NOTRUN -> [SKIP][201] ([i915#7118] / [i915#9424]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg2-1/igt@kms_content_protection@atomic.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-dg2: NOTRUN -> [SKIP][202] ([i915#3299]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg2-10/igt@kms_content_protection@dp-mst-lic-type-1.html - shard-tglu-1: NOTRUN -> [SKIP][203] ([i915#3116] / [i915#3299]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-tglu-1/igt@kms_content_protection@dp-mst-lic-type-1.html - shard-dg1: NOTRUN -> [SKIP][204] ([i915#3299]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg1-18/igt@kms_content_protection@dp-mst-lic-type-1.html - shard-mtlp: NOTRUN -> [SKIP][205] ([i915#3299]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-mtlp-8/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@dp-mst-type-0: - shard-rkl: NOTRUN -> [SKIP][206] ([i915#3116]) +1 other test skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-rkl-4/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@legacy: - shard-rkl: NOTRUN -> [SKIP][207] ([i915#7118] / [i915#9424]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-rkl-2/igt@kms_content_protection@legacy.html * igt@kms_content_protection@mei-interface: - shard-dg2: NOTRUN -> [SKIP][208] ([i915#9424]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg2-6/igt@kms_content_protection@mei-interface.html - shard-dg1: NOTRUN -> [SKIP][209] ([i915#9433]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg1-13/igt@kms_content_protection@mei-interface.html - shard-mtlp: NOTRUN -> [SKIP][210] ([i915#8063] / [i915#9433]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-mtlp-2/igt@kms_content_protection@mei-interface.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-tglu-1: NOTRUN -> [SKIP][211] ([i915#13049]) +1 other test skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-tglu-1/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_crc@cursor-onscreen-32x32: - shard-rkl: NOTRUN -> [SKIP][212] ([i915#3555]) +5 other tests skip [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-rkl-2/igt@kms_cursor_crc@cursor-onscreen-32x32.html * igt@kms_cursor_crc@cursor-onscreen-512x512: - shard-mtlp: NOTRUN -> [SKIP][213] ([i915#13049]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-mtlp-1/igt@kms_cursor_crc@cursor-onscreen-512x512.html - shard-dg2: NOTRUN -> [SKIP][214] ([i915#13049]) +1 other test skip [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg2-7/igt@kms_cursor_crc@cursor-onscreen-512x512.html - shard-dg1: NOTRUN -> [SKIP][215] ([i915#13049]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg1-16/igt@kms_cursor_crc@cursor-onscreen-512x512.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-dg2-9: NOTRUN -> [SKIP][216] ([i915#13049]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg2-9/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_crc@cursor-rapid-movement-128x42: - shard-mtlp: NOTRUN -> [SKIP][217] ([i915#8814]) +2 other tests skip [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-mtlp-2/igt@kms_cursor_crc@cursor-rapid-movement-128x42.html * igt@kms_cursor_crc@cursor-rapid-movement-32x32: - shard-mtlp: NOTRUN -> [SKIP][218] ([i915#3555] / [i915#8814]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-mtlp-8/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html * igt@kms_cursor_crc@cursor-rapid-movement-512x170: - shard-rkl: NOTRUN -> [SKIP][219] ([i915#13049]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-rkl-7/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html * igt@kms_cursor_crc@cursor-sliding-128x42: - shard-tglu: [PASS][220] -> [FAIL][221] ([i915#13566]) +1 other test fail [220]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16167/shard-tglu-9/igt@kms_cursor_crc@cursor-sliding-128x42.html [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-tglu-7/igt@kms_cursor_crc@cursor-sliding-128x42.html - shard-rkl: [PASS][222] -> [FAIL][223] ([i915#13566]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16167/shard-rkl-2/igt@kms_cursor_crc@cursor-sliding-128x42.html [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/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][224] ([i915#13566]) +2 other tests fail [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-rkl-3/igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-2.html * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic: - shard-mtlp: NOTRUN -> [SKIP][225] ([i915#9809]) +4 other tests skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-mtlp-5/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic: - shard-dg2-9: NOTRUN -> [SKIP][226] ([i915#13046] / [i915#5354]) +2 other tests skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg2-9/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-dg2: NOTRUN -> [SKIP][227] ([i915#4103] / [i915#4213]) +1 other test skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg2-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html - shard-tglu-1: NOTRUN -> [SKIP][228] ([i915#4103]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-tglu-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic: - shard-dg2: NOTRUN -> [SKIP][229] ([i915#13046] / [i915#5354]) +2 other tests skip [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg2-6/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-mtlp: NOTRUN -> [SKIP][230] ([i915#9067]) [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-mtlp-4/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html - shard-dg2: NOTRUN -> [SKIP][231] ([i915#9067]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg2-4/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html - shard-dg1: NOTRUN -> [SKIP][232] ([i915#9067]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg1-12/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-mtlp: NOTRUN -> [SKIP][233] ([i915#4213]) +1 other test skip [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-mtlp-3/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc: - shard-rkl: NOTRUN -> [SKIP][234] ([i915#3555] / [i915#3804]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-rkl-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][235] ([i915#3804]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-rkl-6/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html * igt@kms_dp_linktrain_fallback@dsc-fallback: - shard-rkl: NOTRUN -> [SKIP][236] ([i915#13707]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-rkl-2/igt@kms_dp_linktrain_fallback@dsc-fallback.html * igt@kms_dsc@dsc-fractional-bpp: - shard-tglu: NOTRUN -> [SKIP][237] ([i915#3840]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-tglu-2/igt@kms_dsc@dsc-fractional-bpp.html * igt@kms_dsc@dsc-fractional-bpp-with-bpc: - shard-dg2: NOTRUN -> [SKIP][238] ([i915#3840]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg2-6/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html - shard-tglu-1: NOTRUN -> [SKIP][239] ([i915#3840]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-tglu-1/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html * igt@kms_dsc@dsc-with-bpc-formats: - shard-dg2: NOTRUN -> [SKIP][240] ([i915#3555] / [i915#3840]) [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg2-3/igt@kms_dsc@dsc-with-bpc-formats.html - shard-dg1: NOTRUN -> [SKIP][241] ([i915#3555] / [i915#3840]) [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg1-14/igt@kms_dsc@dsc-with-bpc-formats.html * igt@kms_dsc@dsc-with-output-formats: - shard-mtlp: NOTRUN -> [SKIP][242] ([i915#3555] / [i915#3840]) +1 other test skip [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-mtlp-3/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_fbcon_fbt@psr-suspend: - shard-dg2: NOTRUN -> [SKIP][243] ([i915#3469]) [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg2-8/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_feature_discovery@display-3x: - shard-dg2-9: NOTRUN -> [SKIP][244] ([i915#1839]) [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg2-9/igt@kms_feature_discovery@display-3x.html * igt@kms_feature_discovery@psr2: - shard-tglu-1: NOTRUN -> [SKIP][245] ([i915#658]) [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-tglu-1/igt@kms_feature_discovery@psr2.html - shard-dg2: NOTRUN -> [SKIP][246] ([i915#658]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg2-10/igt@kms_feature_discovery@psr2.html * igt@kms_flip@2x-absolute-wf_vblank-interruptible: - shard-mtlp: NOTRUN -> [SKIP][247] ([i915#3637]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-mtlp-2/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html * igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible: - shard-tglu-1: NOTRUN -> [SKIP][248] ([i915#3637]) +1 other test skip [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-tglu-1/igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible.html * igt@kms_flip@2x-flip-vs-blocking-wf-vblank: - shard-rkl: NOTRUN -> [SKIP][249] ([i915#9934]) +3 other tests skip [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-rkl-7/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html * igt@kms_flip@2x-flip-vs-fences: - shard-dg1: NOTRUN -> [SKIP][250] ([i915#8381]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg1-19/igt@kms_flip@2x-flip-vs-fences.html - shard-tglu: NOTRUN -> [SKIP][251] ([i915#3637]) +3 other tests skip [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-tglu-6/igt@kms_flip@2x-flip-vs-fences.html * igt@kms_flip@2x-flip-vs-rmfb-interruptible: - shard-dg2-9: NOTRUN -> [SKIP][252] ([i915#9934]) +1 other test skip [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg2-9/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html * igt@kms_flip@2x-plain-flip: - shard-dg2: NOTRUN -> [SKIP][253] ([i915#9934]) +4 other tests skip [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg2-5/igt@kms_flip@2x-plain-flip.html * igt@kms_flip@flip-vs-panning-vs-hang@a-hdmi-a1: - shard-rkl: NOTRUN -> [DMESG-WARN][254] ([i915#12964]) +2 other tests dmesg-warn [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-rkl-4/igt@kms_flip@flip-vs-panning-vs-hang@a-hdmi-a1.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling: - shard-dg2: NOTRUN -> [SKIP][255] ([i915#2672] / [i915#3555]) +2 other tests skip [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg2-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][256] ([i915#2672]) +1 other test skip [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-rkl-5/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling: - shard-tglu: NOTRUN -> [SKIP][257] ([i915#2587] / [i915#2672] / [i915#3555]) +1 other test skip [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-tglu-9/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling: - shard-mtlp: NOTRUN -> [SKIP][258] ([i915#2672] / [i915#3555] / [i915#8813]) +2 other tests skip [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][259] ([i915#2587] / [i915#2672]) +1 other test skip [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-tglu-7/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling: - shard-rkl: NOTRUN -> [SKIP][260] ([i915#2672] / [i915#3555]) +1 other test skip [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-rkl-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling: - shard-tglu-1: NOTRUN -> [SKIP][261] ([i915#2672] / [i915#3555]) [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html - shard-mtlp: NOTRUN -> [SKIP][262] ([i915#3555] / [i915#8813]) [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][263] ([i915#8810]) +1 other test skip [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-valid-mode: - shard-tglu-1: NOTRUN -> [SKIP][264] ([i915#2587] / [i915#2672]) [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-tglu-1/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling: - shard-dg1: NOTRUN -> [SKIP][265] ([i915#2672] / [i915#3555]) +1 other test skip [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg1-18/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][266] ([i915#2587] / [i915#2672]) +1 other test skip [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg1-18/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling: - shard-mtlp: NOTRUN -> [SKIP][267] ([i915#3555] / [i915#8810] / [i915#8813]) +1 other test skip [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][268] ([i915#3555] / [i915#8810]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][269] ([i915#2672]) +2 other tests skip [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg2-10/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][270] ([i915#2672] / [i915#8813]) [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-default-mode.html * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-pwrite: - shard-dg2: [PASS][271] -> [FAIL][272] ([i915#6880]) +1 other test fail [271]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16167/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-pwrite.html [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][273] ([i915#8708]) +1 other test skip [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-onoff: - shard-mtlp: NOTRUN -> [SKIP][274] ([i915#1825]) +18 other tests skip [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbc-2p-rte: - shard-dg2: NOTRUN -> [SKIP][275] ([i915#5354]) +26 other tests skip [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-2p-rte.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-pwrite: - shard-dg1: NOTRUN -> [SKIP][276] +20 other tests skip [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg1-16/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-cpu: - shard-snb: [PASS][277] -> [SKIP][278] +3 other tests skip [277]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16167/shard-snb4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-cpu.html [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-snb4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-cpu: - shard-dg2: NOTRUN -> [FAIL][279] ([i915#6880]) [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbc-suspend: - shard-rkl: [PASS][280] -> [DMESG-FAIL][281] ([i915#12964]) +2 other tests dmesg-fail [280]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16167/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-suspend.html [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-rkl-4/igt@kms_frontbuffer_tracking@fbc-suspend.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-pwrite: - shard-dg2: NOTRUN -> [SKIP][282] ([i915#10433] / [i915#3458]) [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt: - shard-dg2-9: NOTRUN -> [SKIP][283] ([i915#5354]) +7 other tests skip [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg2-9/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-pwrite: - shard-tglu-1: NOTRUN -> [SKIP][284] +40 other tests skip [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][285] ([i915#8708]) +14 other tests skip [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-render: - shard-dg1: NOTRUN -> [SKIP][286] ([i915#3458]) +8 other tests skip [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg1-15/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-4: - shard-tglu: NOTRUN -> [SKIP][287] ([i915#5439]) [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-tglu-3/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html * igt@kms_frontbuffer_tracking@pipe-fbc-rte: - shard-tglu: NOTRUN -> [SKIP][288] ([i915#9766]) [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-tglu-7/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][289] ([i915#8708]) +2 other tests skip [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg1-15/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-1p-pri-indfb-multidraw: - shard-dg2-9: NOTRUN -> [SKIP][290] ([i915#3458]) +2 other tests skip [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg2-9/igt@kms_frontbuffer_tracking@psr-1p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][291] ([i915#3458]) +15 other tests skip [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg2-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-wc: - shard-dg2-9: NOTRUN -> [SKIP][292] ([i915#8708]) +1 other test skip [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg2-9/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-onoff: - shard-rkl: NOTRUN -> [SKIP][293] ([i915#1825]) +18 other tests skip [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@psr-modesetfrombusy: - shard-rkl: NOTRUN -> [SKIP][294] ([i915#3023]) +11 other tests skip [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-modesetfrombusy.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-blt: - shard-tglu: NOTRUN -> [SKIP][295] +59 other tests skip [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-tglu-9/igt@kms_frontbuffer_tracking@psr-rgb565-draw-blt.html * igt@kms_hdr@brightness-with-hdr: - shard-tglu-1: NOTRUN -> [SKIP][296] ([i915#12713]) [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-tglu-1/igt@kms_hdr@brightness-with-hdr.html * igt@kms_hdr@invalid-hdr: - shard-dg2: NOTRUN -> [SKIP][297] ([i915#3555] / [i915#8228]) [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg2-11/igt@kms_hdr@invalid-hdr.html - shard-dg1: NOTRUN -> [SKIP][298] ([i915#3555] / [i915#8228]) [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg1-17/igt@kms_hdr@invalid-hdr.html * igt@kms_hdr@invalid-metadata-sizes: - shard-tglu: NOTRUN -> [SKIP][299] ([i915#3555] / [i915#8228]) +1 other test skip [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-tglu-10/igt@kms_hdr@invalid-metadata-sizes.html * igt@kms_hdr@static-toggle-dpms: - shard-dg2-9: NOTRUN -> [SKIP][300] ([i915#3555] / [i915#8228]) [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg2-9/igt@kms_hdr@static-toggle-dpms.html * igt@kms_hdr@static-toggle-suspend: - shard-rkl: NOTRUN -> [SKIP][301] ([i915#3555] / [i915#8228]) +1 other test skip [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-rkl-8/igt@kms_hdr@static-toggle-suspend.html * igt@kms_joiner@basic-force-ultra-joiner: - shard-tglu: NOTRUN -> [SKIP][302] ([i915#12394]) [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-tglu-10/igt@kms_joiner@basic-force-ultra-joiner.html * igt@kms_joiner@basic-max-non-joiner: - shard-mtlp: NOTRUN -> [SKIP][303] ([i915#13688]) [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-mtlp-3/igt@kms_joiner@basic-max-non-joiner.html - shard-dg2: NOTRUN -> [SKIP][304] ([i915#13688]) [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg2-7/igt@kms_joiner@basic-max-non-joiner.html - shard-dg1: NOTRUN -> [SKIP][305] ([i915#13688]) [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg1-19/igt@kms_joiner@basic-max-non-joiner.html * igt@kms_joiner@basic-ultra-joiner: - shard-dg2: NOTRUN -> [SKIP][306] ([i915#12339]) [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg2-6/igt@kms_joiner@basic-ultra-joiner.html * igt@kms_joiner@invalid-modeset-big-joiner: - shard-rkl: NOTRUN -> [SKIP][307] ([i915#10656]) [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-rkl-8/igt@kms_joiner@invalid-modeset-big-joiner.html - shard-tglu-1: NOTRUN -> [SKIP][308] ([i915#10656]) [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-tglu-1/igt@kms_joiner@invalid-modeset-big-joiner.html * igt@kms_joiner@invalid-modeset-force-ultra-joiner: - shard-tglu-1: NOTRUN -> [SKIP][309] ([i915#12394]) [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-tglu-1/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html * igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner: - shard-dg2-9: NOTRUN -> [SKIP][310] ([i915#13522]) [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg2-9/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html * igt@kms_lease@lease-uevent: - shard-dg1: [PASS][311] -> [DMESG-WARN][312] ([i915#4423]) +1 other test dmesg-warn [311]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16167/shard-dg1-16/igt@kms_lease@lease-uevent.html [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg1-18/igt@kms_lease@lease-uevent.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-dg2: NOTRUN -> [SKIP][313] ([i915#4816]) [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg2-2/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.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_12649/shard-rkl-7/igt@kms_panel_fitting@atomic-fastset.html * igt@kms_pipe_stress@stress-xrgb8888-ytiled: - shard-dg2: NOTRUN -> [SKIP][315] ([i915#13705]) [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg2-4/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html * igt@kms_plane@plane-panning-bottom-right-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][316] ([i915#13026]) +1 other test incomplete [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-glk2/igt@kms_plane@plane-panning-bottom-right-suspend.html * igt@kms_plane_alpha_blend@alpha-basic: - shard-glk: NOTRUN -> [FAIL][317] ([i915#12178]) [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-glk4/igt@kms_plane_alpha_blend@alpha-basic.html * igt@kms_plane_alpha_blend@alpha-basic@pipe-c-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][318] ([i915#7862]) +1 other test fail [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-glk4/igt@kms_plane_alpha_blend@alpha-basic@pipe-c-hdmi-a-1.html * igt@kms_plane_alpha_blend@alpha-transparent-fb: - shard-glk: NOTRUN -> [FAIL][319] ([i915#10647] / [i915#12177]) [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-glk3/igt@kms_plane_alpha_blend@alpha-transparent-fb.html * igt@kms_plane_alpha_blend@constant-alpha-max: - shard-glk: NOTRUN -> [FAIL][320] ([i915#10647] / [i915#12169]) [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-glk1/igt@kms_plane_alpha_blend@constant-alpha-max.html * igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][321] ([i915#10647]) +3 other tests fail [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-glk1/igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-a: - shard-mtlp: NOTRUN -> [SKIP][322] ([i915#12247]) +8 other tests skip [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-mtlp-6/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-a.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-c: - shard-tglu: NOTRUN -> [SKIP][323] ([i915#12247]) +13 other tests skip [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-tglu-3/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-c.html * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a: - shard-tglu-1: NOTRUN -> [SKIP][324] ([i915#12247]) +4 other tests skip [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-tglu-1/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a.html - shard-dg1: NOTRUN -> [SKIP][325] ([i915#12247]) +4 other tests skip [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg1-15/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a.html * igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a: - shard-rkl: NOTRUN -> [SKIP][326] ([i915#12247]) +5 other tests skip [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-rkl-7/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-a.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d: - shard-dg2: NOTRUN -> [SKIP][327] ([i915#12247]) +7 other tests skip [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-d.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20: - shard-dg2: NOTRUN -> [SKIP][328] ([i915#12247] / [i915#9423]) +1 other test skip [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25: - shard-tglu: NOTRUN -> [SKIP][329] ([i915#12247] / [i915#6953]) [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-tglu-7/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5: - shard-mtlp: NOTRUN -> [SKIP][330] ([i915#6953]) [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-mtlp-7/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5.html * igt@kms_pm_backlight@brightness-with-dpms: - shard-dg2: NOTRUN -> [SKIP][331] ([i915#12343]) [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg2-4/igt@kms_pm_backlight@brightness-with-dpms.html * igt@kms_pm_dc@dc5-psr: - shard-tglu: NOTRUN -> [SKIP][332] ([i915#9685]) [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-tglu-6/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_dc@dc5-retention-flops: - shard-tglu-1: NOTRUN -> [SKIP][333] ([i915#3828]) [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-tglu-1/igt@kms_pm_dc@dc5-retention-flops.html * igt@kms_pm_lpsp@kms-lpsp: - shard-dg2: NOTRUN -> [SKIP][334] ([i915#9340]) [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg2-2/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-dg2: [PASS][335] -> [SKIP][336] ([i915#9519]) [335]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16167/shard-dg2-1/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg2-8/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@kms_pm_rpm@dpms-non-lpsp: - shard-mtlp: NOTRUN -> [SKIP][337] ([i915#9519]) [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-mtlp-5/igt@kms_pm_rpm@dpms-non-lpsp.html - shard-rkl: [PASS][338] -> [SKIP][339] ([i915#9519]) +1 other test skip [338]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16167/shard-rkl-5/igt@kms_pm_rpm@dpms-non-lpsp.html [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-rkl-2/igt@kms_pm_rpm@dpms-non-lpsp.html * igt@kms_pm_rpm@modeset-lpsp: - shard-dg2: NOTRUN -> [SKIP][340] ([i915#9519]) +1 other test skip [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg2-1/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-tglu: NOTRUN -> [SKIP][341] ([i915#9519]) [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-tglu-4/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_prime@basic-crc-hybrid: - shard-dg2: NOTRUN -> [SKIP][342] ([i915#6524] / [i915#6805]) [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg2-4/igt@kms_prime@basic-crc-hybrid.html - shard-rkl: NOTRUN -> [SKIP][343] ([i915#6524]) [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-rkl-2/igt@kms_prime@basic-crc-hybrid.html - shard-dg1: NOTRUN -> [SKIP][344] ([i915#6524]) [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg1-12/igt@kms_prime@basic-crc-hybrid.html - shard-tglu: NOTRUN -> [SKIP][345] ([i915#6524]) [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-tglu-5/igt@kms_prime@basic-crc-hybrid.html - shard-mtlp: NOTRUN -> [SKIP][346] ([i915#6524]) [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-mtlp-4/igt@kms_prime@basic-crc-hybrid.html * igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf: - shard-rkl: NOTRUN -> [SKIP][347] ([i915#11520]) +5 other tests skip [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-rkl-1/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf: - shard-snb: NOTRUN -> [SKIP][348] ([i915#11520]) +6 other tests skip [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-snb6/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf: - shard-dg2: NOTRUN -> [SKIP][349] ([i915#11520]) +9 other tests skip [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg2-6/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html * igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf: - shard-tglu: NOTRUN -> [SKIP][350] ([i915#11520]) +3 other tests skip [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-tglu-5/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html - shard-mtlp: NOTRUN -> [SKIP][351] ([i915#12316]) +4 other tests skip [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-mtlp-1/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html * igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf: - shard-dg1: NOTRUN -> [SKIP][352] ([i915#11520]) +3 other tests skip [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg1-18/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html * igt@kms_psr2_sf@psr2-cursor-plane-update-sf: - shard-dg2-9: NOTRUN -> [SKIP][353] ([i915#11520]) +1 other test skip [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg2-9/igt@kms_psr2_sf@psr2-cursor-plane-update-sf.html * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf: - shard-tglu-1: NOTRUN -> [SKIP][354] ([i915#11520]) +5 other tests skip [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-tglu-1/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html * igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][355] ([i915#11520]) +18 other tests skip [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-glk4/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_su@page_flip-p010: - shard-dg2: NOTRUN -> [SKIP][356] ([i915#9683]) [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg2-5/igt@kms_psr2_su@page_flip-p010.html - shard-dg1: NOTRUN -> [SKIP][357] ([i915#9683]) [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg1-18/igt@kms_psr2_su@page_flip-p010.html - shard-mtlp: NOTRUN -> [SKIP][358] ([i915#4348]) [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-mtlp-1/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr@fbc-pr-basic: - shard-mtlp: NOTRUN -> [SKIP][359] ([i915#9688]) +12 other tests skip [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-mtlp-5/igt@kms_psr@fbc-pr-basic.html * igt@kms_psr@fbc-psr2-no-drrs: - shard-tglu: NOTRUN -> [SKIP][360] ([i915#9732]) +16 other tests skip [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-tglu-10/igt@kms_psr@fbc-psr2-no-drrs.html * igt@kms_psr@psr-sprite-mmap-gtt@edp-1: - shard-mtlp: NOTRUN -> [SKIP][361] ([i915#4077] / [i915#9688]) +3 other tests skip [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-mtlp-3/igt@kms_psr@psr-sprite-mmap-gtt@edp-1.html * igt@kms_psr@psr2-primary-blt: - shard-dg2-9: NOTRUN -> [SKIP][362] ([i915#1072] / [i915#9732]) +5 other tests skip [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg2-9/igt@kms_psr@psr2-primary-blt.html * igt@kms_psr@psr2-primary-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][363] ([i915#1072] / [i915#9732]) +22 other tests skip [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg2-10/igt@kms_psr@psr2-primary-mmap-gtt.html * igt@kms_psr@psr2-sprite-blt: - shard-tglu-1: NOTRUN -> [SKIP][364] ([i915#9732]) +10 other tests skip [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-tglu-1/igt@kms_psr@psr2-sprite-blt.html * igt@kms_psr@psr2-sprite-plane-onoff: - shard-glk: NOTRUN -> [SKIP][365] +609 other tests skip [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-glk7/igt@kms_psr@psr2-sprite-plane-onoff.html * igt@kms_psr@psr2-suspend: - shard-rkl: NOTRUN -> [SKIP][366] ([i915#1072] / [i915#9732]) +9 other tests skip [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-rkl-6/igt@kms_psr@psr2-suspend.html - shard-dg1: NOTRUN -> [SKIP][367] ([i915#1072] / [i915#9732]) +9 other tests skip [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg1-13/igt@kms_psr@psr2-suspend.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-tglu-1: NOTRUN -> [SKIP][368] ([i915#9685]) +1 other test skip [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-tglu-1/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rotation_crc@primary-rotation-90: - shard-mtlp: NOTRUN -> [SKIP][369] ([i915#12755]) [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-mtlp-1/igt@kms_rotation_crc@primary-rotation-90.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-tglu: NOTRUN -> [SKIP][370] ([i915#5289]) [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-tglu-9/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-tglu-1: NOTRUN -> [SKIP][371] ([i915#5289]) +1 other test skip [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-tglu-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html - shard-dg1: NOTRUN -> [SKIP][372] ([i915#5289]) [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg1-18/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html - shard-mtlp: NOTRUN -> [SKIP][373] ([i915#5289]) [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-mtlp-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html - shard-dg2: NOTRUN -> [SKIP][374] ([i915#5190]) [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg2-10/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_rotation_crc@sprite-rotation-90: - shard-dg2: NOTRUN -> [SKIP][375] ([i915#12755]) [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg2-2/igt@kms_rotation_crc@sprite-rotation-90.html * igt@kms_scaling_modes@scaling-mode-center: - shard-dg1: NOTRUN -> [SKIP][376] ([i915#3555]) +2 other tests skip [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg1-18/igt@kms_scaling_modes@scaling-mode-center.html * igt@kms_scaling_modes@scaling-mode-full-aspect: - shard-tglu: NOTRUN -> [SKIP][377] ([i915#3555]) +4 other tests skip [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-tglu-3/igt@kms_scaling_modes@scaling-mode-full-aspect.html * igt@kms_selftest@drm_framebuffer: - shard-tglu: NOTRUN -> [ABORT][378] ([i915#13179]) +1 other test abort [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-tglu-10/igt@kms_selftest@drm_framebuffer.html * igt@kms_setmode@basic-clone-single-crtc: - shard-tglu-1: NOTRUN -> [SKIP][379] ([i915#3555]) +4 other tests skip [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-tglu-1/igt@kms_setmode@basic-clone-single-crtc.html * igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-2: - shard-glk: NOTRUN -> [INCOMPLETE][380] ([i915#12276]) +2 other tests incomplete [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-glk9/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-2.html * igt@kms_vrr@flip-basic: - shard-dg2: NOTRUN -> [SKIP][381] ([i915#3555]) +2 other tests skip [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg2-10/igt@kms_vrr@flip-basic.html * igt@kms_vrr@flip-basic-fastset: - shard-tglu-1: NOTRUN -> [SKIP][382] ([i915#9906]) [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-tglu-1/igt@kms_vrr@flip-basic-fastset.html * igt@kms_vrr@flipline: - shard-mtlp: NOTRUN -> [SKIP][383] ([i915#3555] / [i915#8808]) [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-mtlp-4/igt@kms_vrr@flipline.html * igt@kms_vrr@lobf: - shard-rkl: NOTRUN -> [SKIP][384] ([i915#11920]) [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-rkl-8/igt@kms_vrr@lobf.html * igt@kms_vrr@negative-basic: - shard-dg2: [PASS][385] -> [SKIP][386] ([i915#3555] / [i915#9906]) [385]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16167/shard-dg2-10/igt@kms_vrr@negative-basic.html [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg2-4/igt@kms_vrr@negative-basic.html * igt@kms_vrr@seamless-rr-switch-drrs: - shard-rkl: NOTRUN -> [SKIP][387] ([i915#9906]) [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-rkl-5/igt@kms_vrr@seamless-rr-switch-drrs.html * igt@kms_writeback@writeback-fb-id: - shard-tglu: NOTRUN -> [SKIP][388] ([i915#2437]) [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-tglu-6/igt@kms_writeback@writeback-fb-id.html - shard-mtlp: NOTRUN -> [SKIP][389] ([i915#2437]) [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-mtlp-6/igt@kms_writeback@writeback-fb-id.html * igt@kms_writeback@writeback-fb-id-xrgb2101010: - shard-mtlp: NOTRUN -> [SKIP][390] ([i915#2437] / [i915#9412]) [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-mtlp-3/igt@kms_writeback@writeback-fb-id-xrgb2101010.html * igt@kms_writeback@writeback-invalid-parameters: - shard-glk: NOTRUN -> [SKIP][391] ([i915#2437]) [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-glk1/igt@kms_writeback@writeback-invalid-parameters.html - shard-dg2-9: NOTRUN -> [SKIP][392] ([i915#2437]) [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg2-9/igt@kms_writeback@writeback-invalid-parameters.html * igt@perf_pmu@busy-double-start@vecs1: - shard-dg2-9: NOTRUN -> [FAIL][393] ([i915#4349]) +4 other tests fail [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg2-9/igt@perf_pmu@busy-double-start@vecs1.html * igt@perf_pmu@rc6@other-idle-gt0: - shard-dg2: NOTRUN -> [SKIP][394] ([i915#8516]) [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg2-1/igt@perf_pmu@rc6@other-idle-gt0.html * igt@prime_vgem@basic-fence-mmap: - shard-dg2: NOTRUN -> [SKIP][395] ([i915#3708] / [i915#4077]) [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg2-1/igt@prime_vgem@basic-fence-mmap.html * igt@prime_vgem@basic-fence-read: - shard-dg2: NOTRUN -> [SKIP][396] ([i915#3291] / [i915#3708]) +1 other test skip [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg2-8/igt@prime_vgem@basic-fence-read.html * igt@prime_vgem@basic-write: - shard-rkl: NOTRUN -> [SKIP][397] ([i915#3291] / [i915#3708]) [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-rkl-2/igt@prime_vgem@basic-write.html * igt@prime_vgem@fence-read-hang: - shard-dg2: NOTRUN -> [SKIP][398] ([i915#3708]) [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg2-7/igt@prime_vgem@fence-read-hang.html * igt@sriov_basic@bind-unbind-vf: - shard-dg2-9: NOTRUN -> [SKIP][399] ([i915#9917]) [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg2-9/igt@sriov_basic@bind-unbind-vf.html - shard-rkl: NOTRUN -> [SKIP][400] ([i915#9917]) [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-rkl-1/igt@sriov_basic@bind-unbind-vf.html * igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-5: - shard-tglu-1: NOTRUN -> [FAIL][401] ([i915#12910]) +9 other tests fail [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-tglu-1/igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-5.html * igt@sriov_basic@enable-vfs-bind-unbind-each: - shard-dg2: NOTRUN -> [SKIP][402] ([i915#9917]) [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg2-8/igt@sriov_basic@enable-vfs-bind-unbind-each.html #### Possible fixes #### * igt@gem_eio@kms: - shard-tglu: [DMESG-WARN][403] ([i915#13363]) -> [PASS][404] [403]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16167/shard-tglu-7/igt@gem_eio@kms.html [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-tglu-2/igt@gem_eio@kms.html * igt@gem_eio@reset-stress: - shard-dg1: [FAIL][405] ([i915#12543] / [i915#5784]) -> [PASS][406] [405]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16167/shard-dg1-16/igt@gem_eio@reset-stress.html [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg1-13/igt@gem_eio@reset-stress.html * igt@gem_pxp@create-regular-context-1: - shard-rkl: [TIMEOUT][407] ([i915#12917] / [i915#12964]) -> [PASS][408] [407]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16167/shard-rkl-4/igt@gem_pxp@create-regular-context-1.html [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-rkl-8/igt@gem_pxp@create-regular-context-1.html * igt@gem_pxp@verify-pxp-execution-after-suspend-resume: - shard-rkl: [SKIP][409] ([i915#4270]) -> [PASS][410] +1 other test pass [409]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16167/shard-rkl-3/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-rkl-8/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html * igt@i915_module_load@reload-with-fault-injection: - shard-snb: [ABORT][411] ([i915#9820]) -> [PASS][412] [411]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16167/shard-snb1/igt@i915_module_load@reload-with-fault-injection.html [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-snb6/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_rpm@system-suspend-execbuf: - shard-dg2: [DMESG-WARN][413] -> [PASS][414] [413]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16167/shard-dg2-4/igt@i915_pm_rpm@system-suspend-execbuf.html [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg2-10/igt@i915_pm_rpm@system-suspend-execbuf.html * igt@i915_selftest@perf: - shard-snb: [ABORT][415] ([i915#11703]) -> [PASS][416] +1 other test pass [415]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16167/shard-snb6/igt@i915_selftest@perf.html [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-snb7/igt@i915_selftest@perf.html * igt@i915_suspend@basic-s3-without-i915: - shard-glk: [INCOMPLETE][417] ([i915#4817]) -> [PASS][418] [417]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16167/shard-glk8/igt@i915_suspend@basic-s3-without-i915.html [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-glk8/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-a-hdmi-a-4: - shard-dg1: [FAIL][419] ([i915#5956]) -> [PASS][420] +1 other test pass [419]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16167/shard-dg1-19/igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-a-hdmi-a-4.html [420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg1-15/igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-a-hdmi-a-4.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size: - shard-snb: [SKIP][421] -> [PASS][422] +2 other tests pass [421]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16167/shard-snb6/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html [422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-snb5/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html * igt@kms_dither@fb-8bpc-vs-panel-8bpc: - shard-dg2: [SKIP][423] ([i915#3555]) -> [PASS][424] [423]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16167/shard-dg2-7/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html [424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg2-11/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html * {igt@kms_dp_link_training@non-uhbr-sst}: - shard-dg2: [SKIP][425] -> [PASS][426] [425]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16167/shard-dg2-4/igt@kms_dp_link_training@non-uhbr-sst.html [426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg2-10/igt@kms_dp_link_training@non-uhbr-sst.html * igt@kms_flip@dpms-off-confusion-interruptible: - shard-snb: [INCOMPLETE][427] ([i915#12314]) -> [PASS][428] +1 other test pass [427]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16167/shard-snb6/igt@kms_flip@dpms-off-confusion-interruptible.html [428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-snb6/igt@kms_flip@dpms-off-confusion-interruptible.html * igt@kms_flip@dpms-off-confusion-interruptible@a-hdmi-a1: - shard-rkl: [DMESG-WARN][429] ([i915#12964]) -> [PASS][430] +40 other tests pass [429]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16167/shard-rkl-4/igt@kms_flip@dpms-off-confusion-interruptible@a-hdmi-a1.html [430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-rkl-7/igt@kms_flip@dpms-off-confusion-interruptible@a-hdmi-a1.html * igt@kms_flip@plain-flip-fb-recreate-interruptible: - shard-tglu: [FAIL][431] -> [PASS][432] +4 other tests pass [431]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16167/shard-tglu-5/igt@kms_flip@plain-flip-fb-recreate-interruptible.html [432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-tglu-10/igt@kms_flip@plain-flip-fb-recreate-interruptible.html - shard-rkl: [FAIL][433] -> [PASS][434] +1 other test pass [433]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16167/shard-rkl-5/igt@kms_flip@plain-flip-fb-recreate-interruptible.html [434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-rkl-5/igt@kms_flip@plain-flip-fb-recreate-interruptible.html * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-rkl: [SKIP][435] ([i915#9519]) -> [PASS][436] [435]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16167/shard-rkl-7/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html [436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-rkl-6/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@kms_universal_plane@disable-primary-vs-flip: - shard-dg1: [DMESG-WARN][437] ([i915#4423]) -> [PASS][438] +2 other tests pass [437]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16167/shard-dg1-12/igt@kms_universal_plane@disable-primary-vs-flip.html [438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg1-14/igt@kms_universal_plane@disable-primary-vs-flip.html * igt@kms_vblank@ts-continuation-dpms-rpm: - shard-rkl: [DMESG-WARN][439] ([i915#12917] / [i915#12964]) -> [PASS][440] [439]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16167/shard-rkl-5/igt@kms_vblank@ts-continuation-dpms-rpm.html [440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-rkl-8/igt@kms_vblank@ts-continuation-dpms-rpm.html * igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-1: - shard-glk: [INCOMPLETE][441] ([i915#12276]) -> [PASS][442] [441]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16167/shard-glk7/igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-1.html [442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-glk3/igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-1.html #### Warnings #### * igt@gem_pxp@display-protected-crc: - shard-rkl: [TIMEOUT][443] ([i915#12917] / [i915#12964]) -> [SKIP][444] ([i915#4270]) [443]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16167/shard-rkl-6/igt@gem_pxp@display-protected-crc.html [444]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-rkl-5/igt@gem_pxp@display-protected-crc.html * igt@gem_pxp@reject-modify-context-protection-on: - shard-rkl: [SKIP][445] ([i915#4270]) -> [TIMEOUT][446] ([i915#12917] / [i915#12964]) [445]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16167/shard-rkl-7/igt@gem_pxp@reject-modify-context-protection-on.html [446]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-rkl-5/igt@gem_pxp@reject-modify-context-protection-on.html * igt@i915_module_load@reload-with-fault-injection: - shard-mtlp: [ABORT][447] ([i915#10131] / [i915#10887] / [i915#9820]) -> [ABORT][448] ([i915#10131] / [i915#13592]) [447]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16167/shard-mtlp-8/igt@i915_module_load@reload-with-fault-injection.html [448]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-mtlp-3/igt@i915_module_load@reload-with-fault-injection.html - shard-dg2: [ABORT][449] ([i915#10887] / [i915#9820]) -> [ABORT][450] ([i915#9820]) [449]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16167/shard-dg2-2/igt@i915_module_load@reload-with-fault-injection.html [450]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg2-7/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_suspend@basic-s3-without-i915: - shard-tglu: [INCOMPLETE][451] ([i915#7443]) -> [INCOMPLETE][452] ([i915#4817] / [i915#7443]) [451]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16167/shard-tglu-3/igt@i915_suspend@basic-s3-without-i915.html [452]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-tglu-8/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_content_protection@srm: - shard-dg2: [FAIL][453] ([i915#7173]) -> [SKIP][454] ([i915#7118]) [453]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16167/shard-dg2-11/igt@kms_content_protection@srm.html [454]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg2-3/igt@kms_content_protection@srm.html - shard-dg1: [SKIP][455] ([i915#7116]) -> [SKIP][456] ([i915#4423] / [i915#7116]) [455]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16167/shard-dg1-17/igt@kms_content_protection@srm.html [456]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg1-14/igt@kms_content_protection@srm.html * igt@kms_content_protection@type1: - shard-snb: [INCOMPLETE][457] ([i915#8816]) -> [SKIP][458] [457]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16167/shard-snb4/igt@kms_content_protection@type1.html [458]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-snb4/igt@kms_content_protection@type1.html * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-blt: - shard-dg2: [SKIP][459] ([i915#3458]) -> [SKIP][460] ([i915#10433] / [i915#3458]) +1 other test skip [459]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16167/shard-dg2-10/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-blt.html [460]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-pwrite: - shard-dg1: [SKIP][461] -> [SKIP][462] ([i915#4423]) [461]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16167/shard-dg1-17/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-pwrite.html [462]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg1-14/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-pwrite.html * igt@kms_hdr@brightness-with-hdr: - shard-dg1: [SKIP][463] ([i915#12713]) -> [SKIP][464] ([i915#1187] / [i915#12713]) [463]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16167/shard-dg1-15/igt@kms_hdr@brightness-with-hdr.html [464]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg1-13/igt@kms_hdr@brightness-with-hdr.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-rkl: [SKIP][465] ([i915#4816]) -> [SKIP][466] ([i915#4070] / [i915#4816]) [465]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16167/shard-rkl-4/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html [466]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-rkl-6/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a: - shard-dg1: [SKIP][467] ([i915#12247]) -> [SKIP][468] ([i915#12247] / [i915#4423]) +1 other test skip [467]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16167/shard-dg1-19/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a.html [468]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg1-18/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-a.html * igt@kms_pm_lpsp@kms-lpsp: - shard-rkl: [SKIP][469] ([i915#3828]) -> [SKIP][470] ([i915#9340]) [469]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16167/shard-rkl-4/igt@kms_pm_lpsp@kms-lpsp.html [470]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-rkl-5/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_rpm@modeset-lpsp: - shard-rkl: [SKIP][471] ([i915#12916]) -> [SKIP][472] ([i915#9519]) [471]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16167/shard-rkl-1/igt@kms_pm_rpm@modeset-lpsp.html [472]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-rkl-8/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_psr@pr-sprite-blt: - shard-dg2: [INCOMPLETE][473] -> [SKIP][474] ([i915#1072] / [i915#9732]) [473]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_16167/shard-dg2-4/igt@kms_psr@pr-sprite-blt.html [474]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/shard-dg2-1/igt@kms_psr@pr-sprite-blt.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [i915#10131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10131 [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307 [i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433 [i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434 [i915#10647]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647 [i915#10656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656 [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#10887]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10887 [i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099 [i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078 [i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151 [i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520 [i915#11616]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11616 [i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681 [i915#11703]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11703 [i915#118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/118 [i915#1187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1187 [i915#11920]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920 [i915#11965]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11965 [i915#12169]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12169 [i915#12177]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12177 [i915#12178]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12178 [i915#12247]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12247 [i915#12276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12276 [i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313 [i915#12314]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12314 [i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316 [i915#12339]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12339 [i915#12343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12343 [i915#12353]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12353 [i915#12392]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12392 [i915#12394]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12394 [i915#12454]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12454 [i915#12543]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12543 [i915#12712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12712 [i915#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713 [i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755 [i915#12796]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12796 [i915#12797]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12797 [i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805 [i915#12817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12817 [i915#12910]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910 [i915#12916]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12916 [i915#12917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12917 [i915#12941]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12941 [i915#12964]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964 [i915#13026]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13026 [i915#13029]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13029 [i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046 [i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049 [i915#13179]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13179 [i915#13193]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13193 [i915#13328]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13328 [i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356 [i915#13363]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13363 [i915#13390]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13390 [i915#13398]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13398 [i915#13522]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13522 [i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566 [i915#13592]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13592 [i915#13688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13688 [i915#13705]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13705 [i915#13707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707 [i915#13729]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13729 [i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839 [i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190 [i915#2437]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527 [i915#2587]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587 [i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658 [i915#2672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672 [i915#2681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2681 [i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280 [i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023 [i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116 [i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299 [i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458 [i915#3469]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3469 [i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637 [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708 [i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742 [i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804 [i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828 [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840 [i915#3936]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3936 [i915#4070]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4070 [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083 [i915#4087]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4087 [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213 [i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270 [i915#4348]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4348 [i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349 [i915#4387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4387 [i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423 [i915#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537 [i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#4771]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4771 [i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812 [i915#4816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4816 [i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817 [i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852 [i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860 [i915#4879]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4879 [i915#4958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4958 [i915#5138]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5138 [i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190 [i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289 [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354 [i915#5439]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439 [i915#5493]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5493 [i915#5507]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5507 [i915#5784]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5784 [i915#5956]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5956 [i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095 [i915#6187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6187 [i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301 [i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335 [i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658 [i915#6590]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6590 [i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621 [i915#6805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6805 [i915#6880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880 [i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953 [i915#7116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118 [i915#7173]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173 [i915#7213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7213 [i915#7443]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7443 [i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697 [i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707 [i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828 [i915#7862]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7862 [i915#7975]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7975 [i915#8063]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8063 [i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228 [i915#8381]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381 [i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399 [i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411 [i915#8414]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8414 [i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428 [i915#8437]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8437 [i915#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516 [i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555 [i915#8562]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8562 [i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708 [i915#8709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8709 [i915#8808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808 [i915#8810]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8810 [i915#8813]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813 [i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814 [i915#8816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8816 [i915#9067]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067 [i915#9311]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9311 [i915#9318]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9318 [i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323 [i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340 [i915#9412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9412 [i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423 [i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424 [i915#9433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9433 [i915#9519]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519 [i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683 [i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685 [i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688 [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 [i915#9766]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9766 [i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809 [i915#9820]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9820 [i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906 [i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917 [i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8245 -> IGTPW_12649 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_16167: a22ac320a08377d760e73fa530c27782f0b68b6d @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12649: 271236dac27a9991d20fdd105fd5a93d48901912 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8245: 822e95b2560133bc21aa3065f70d7148f23f87cf @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12649/index.html [-- Attachment #2: Type: text/html, Size: 156844 bytes --] ^ permalink raw reply [flat|nested] 11+ messages in thread
* ✗ Xe.CI.Full: failure for xe: Test scratch page under fault mode (rev4) 2025-02-21 15:53 [i-g-t v5 0/4] xe: Test scratch page under fault mode Oak Zeng ` (6 preceding siblings ...) 2025-02-21 18:14 ` ✗ i915.CI.Full: failure " Patchwork @ 2025-02-22 5:55 ` Patchwork 7 siblings, 0 replies; 11+ messages in thread From: Patchwork @ 2025-02-22 5:55 UTC (permalink / raw) To: Oak Zeng; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 144840 bytes --] == Series Details == Series: xe: Test scratch page under fault mode (rev4) URL : https://patchwork.freedesktop.org/series/144907/ State : failure == Summary == CI Bug Log - changes from XEIGT_8245_full -> XEIGTPW_12649_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_12649_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_12649_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_12649_full: ### IGT changes ### #### Possible regressions #### * igt@kms_plane_lowres@tiling-4: - shard-dg2-set2: [PASS][1] -> [DMESG-WARN][2] +2 other tests dmesg-warn [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-435/igt@kms_plane_lowres@tiling-4.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-dg2-464/igt@kms_plane_lowres@tiling-4.html * igt@xe_exec_fault_mode@scratch-fault (NEW): - shard-dg2-set2: NOTRUN -> [SKIP][3] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-dg2-432/igt@xe_exec_fault_mode@scratch-fault.html - shard-lnl: NOTRUN -> [FAIL][4] [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-lnl-7/igt@xe_exec_fault_mode@scratch-fault.html - shard-bmg: NOTRUN -> [FAIL][5] [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-bmg-8/igt@xe_exec_fault_mode@scratch-fault.html * igt@xe_vm@invalid-flag-xe_vm_create_scratch_fault_lr: - shard-lnl: [PASS][6] -> [SKIP][7] [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-lnl-6/igt@xe_vm@invalid-flag-xe_vm_create_scratch_fault_lr.html [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-lnl-8/igt@xe_vm@invalid-flag-xe_vm_create_scratch_fault_lr.html - shard-bmg: [PASS][8] -> [SKIP][9] [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-bmg-2/igt@xe_vm@invalid-flag-xe_vm_create_scratch_fault_lr.html [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-bmg-8/igt@xe_vm@invalid-flag-xe_vm_create_scratch_fault_lr.html New tests --------- New tests have been introduced between XEIGT_8245_full and XEIGTPW_12649_full: ### New IGT tests (434) ### * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-dp-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-b-dp-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-c-dp-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-d-dp-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-2: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-2: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-2: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-a-dp-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-b-dp-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-b-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-c-dp-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-c-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-d-dp-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@bad-aux-stride-yf-tiled-ccs@pipe-a-dp-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@bad-aux-stride-yf-tiled-ccs@pipe-a-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@bad-aux-stride-yf-tiled-ccs@pipe-b-dp-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@bad-aux-stride-yf-tiled-ccs@pipe-b-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@bad-aux-stride-yf-tiled-ccs@pipe-c-dp-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@bad-aux-stride-yf-tiled-ccs@pipe-c-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@bad-aux-stride-yf-tiled-ccs@pipe-d-dp-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@bad-aux-stride-yf-tiled-ccs@pipe-d-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc@pipe-a-dp-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [0.00] s * igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc@pipe-b-dp-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc@pipe-c-dp-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc@pipe-d-dp-4: - Statuses : 1 pass(s) - Exec time: [0.00] s * igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc@pipe-d-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs@pipe-a-dp-4: - Statuses : 1 pass(s) - Exec time: [0.00] s * igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [0.00] s * igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs@pipe-b-dp-4: - Statuses : 1 pass(s) - Exec time: [0.00] s * igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [0.00] s * igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs@pipe-c-dp-4: - Statuses : 1 pass(s) - Exec time: [0.00] s * igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [0.00] s * igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs@pipe-d-dp-4: - Statuses : 1 pass(s) - Exec time: [0.00] s * igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs@pipe-d-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [0.00] s * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-dp-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-b-dp-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-c-dp-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-d-dp-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs@pipe-a-dp-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs@pipe-b-dp-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs@pipe-c-dp-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs@pipe-c-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs@pipe-d-dp-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs@pipe-d-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs@pipe-a-dp-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs@pipe-b-dp-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs@pipe-c-dp-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs@pipe-d-dp-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs@pipe-a-dp-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs@pipe-b-dp-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs@pipe-b-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs@pipe-c-dp-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs@pipe-c-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs@pipe-d-dp-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@bad-pixel-format-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@bad-pixel-format-yf-tiled-ccs@pipe-a-hdmi-a-2: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@bad-pixel-format-yf-tiled-ccs@pipe-b-hdmi-a-2: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@bad-pixel-format-yf-tiled-ccs@pipe-c-hdmi-a-2: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@bad-pixel-format-yf-tiled-ccs@pipe-d-hdmi-a-2: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc@pipe-a-dp-4: - Statuses : 1 pass(s) - Exec time: [0.01] s * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [3.48] s * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc@pipe-b-dp-4: - Statuses : 1 pass(s) - Exec time: [0.01] s * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [0.01] s * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc@pipe-c-dp-4: - Statuses : 1 pass(s) - Exec time: [0.01] s * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [0.01] s * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc@pipe-d-dp-4: - Statuses : 1 pass(s) - Exec time: [0.01] s * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc@pipe-d-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [0.01] s * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-mc-ccs@pipe-a-dp-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-mc-ccs@pipe-b-dp-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-mc-ccs@pipe-c-dp-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-mc-ccs@pipe-d-dp-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs@pipe-a-dp-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs@pipe-b-dp-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs@pipe-c-dp-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs@pipe-d-dp-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc@pipe-a-hdmi-a-2: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc@pipe-b-hdmi-a-2: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc@pipe-c-hdmi-a-2: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs@pipe-b-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs@pipe-c-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@bad-rotation-90-yf-tiled-ccs@pipe-a-hdmi-a-2: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@bad-rotation-90-yf-tiled-ccs@pipe-b-hdmi-a-2: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@bad-rotation-90-yf-tiled-ccs@pipe-c-hdmi-a-2: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@bad-rotation-90-yf-tiled-ccs@pipe-d-hdmi-a-2: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs@pipe-a-dp-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs@pipe-b-dp-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs@pipe-c-dp-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs@pipe-c-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs@pipe-d-dp-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs@pipe-d-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-a-dp-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-a-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-dp-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-c-dp-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-c-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-d-dp-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-d-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-2: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-2: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-2: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-2: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc@pipe-a-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc@pipe-b-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc@pipe-c-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs@pipe-a-dp-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs@pipe-b-dp-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs@pipe-b-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs@pipe-c-dp-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs@pipe-c-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs@pipe-d-dp-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs@pipe-a-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs@pipe-b-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs@pipe-c-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs@pipe-d-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@crc-primary-basic-4-tiled-dg2-mc-ccs@pipe-a-dp-4: - Statuses : 1 pass(s) - Exec time: [1.54] s * igt@kms_ccs@crc-primary-basic-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [5.76] s * igt@kms_ccs@crc-primary-basic-4-tiled-dg2-mc-ccs@pipe-b-dp-4: - Statuses : 1 pass(s) - Exec time: [1.53] s * igt@kms_ccs@crc-primary-basic-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [1.49] s * igt@kms_ccs@crc-primary-basic-4-tiled-dg2-mc-ccs@pipe-c-dp-4: - Statuses : 1 pass(s) - Exec time: [1.52] s * igt@kms_ccs@crc-primary-basic-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [1.49] s * igt@kms_ccs@crc-primary-basic-4-tiled-dg2-mc-ccs@pipe-d-dp-4: - Statuses : 1 pass(s) - Exec time: [1.51] s * igt@kms_ccs@crc-primary-basic-4-tiled-dg2-mc-ccs@pipe-d-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [1.49] s * igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [7.20] s * igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [0.70] s * igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [0.70] s * igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs@pipe-a-dp-4: - Statuses : 1 pass(s) - Exec time: [0.76] s * igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [3.58] s * igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs@pipe-b-dp-4: - Statuses : 1 pass(s) - Exec time: [0.71] s * igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [0.69] s * igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs@pipe-c-dp-4: - Statuses : 1 pass(s) - Exec time: [0.71] s * igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [0.69] s * igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs@pipe-d-dp-4: - Statuses : 1 pass(s) - Exec time: [0.72] s * igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs@pipe-d-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [0.69] s * igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs@pipe-c-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs@pipe-d-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@crc-primary-basic-y-tiled-ccs@pipe-a-dp-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@crc-primary-basic-y-tiled-ccs@pipe-a-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@crc-primary-basic-y-tiled-ccs@pipe-b-dp-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@crc-primary-basic-y-tiled-ccs@pipe-b-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@crc-primary-basic-y-tiled-ccs@pipe-c-dp-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@crc-primary-basic-y-tiled-ccs@pipe-c-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@crc-primary-basic-y-tiled-ccs@pipe-d-dp-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@crc-primary-basic-y-tiled-ccs@pipe-d-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@crc-primary-basic-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-2: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@crc-primary-basic-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-2: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@crc-primary-basic-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-2: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc@pipe-a-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc@pipe-b-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc@pipe-c-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs@pipe-a-dp-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs@pipe-b-dp-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs@pipe-b-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs@pipe-c-dp-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs@pipe-c-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs@pipe-d-dp-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@crc-primary-basic-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-a-dp-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-a-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-b-dp-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-b-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-c-dp-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-c-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-d-dp-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@crc-primary-basic-yf-tiled-ccs@pipe-d-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [5.58] s * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [1.49] s * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [1.49] s * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-d-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [1.49] s * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc@pipe-a-dp-4: - Statuses : 1 pass(s) - Exec time: [0.76] s * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [7.77] s * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc@pipe-b-dp-4: - Statuses : 1 pass(s) - Exec time: [0.74] s * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [0.69] s * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc@pipe-c-dp-4: - Statuses : 1 pass(s) - Exec time: [0.75] s * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [0.72] s * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc@pipe-d-dp-4: - Statuses : 1 pass(s) - Exec time: [0.75] s * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc@pipe-d-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [0.69] s * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-a-dp-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-b-dp-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-c-dp-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-d-dp-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-2: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-c-hdmi-a-2: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-d-hdmi-a-2: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc@pipe-a-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc@pipe-b-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc@pipe-c-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-2: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs@pipe-b-hdmi-a-2: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs@pipe-c-hdmi-a-2: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-a-dp-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-a-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-b-dp-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-b-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-c-dp-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-c-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-d-dp-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-d-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-a-dp-4: - Statuses : 1 pass(s) - Exec time: [0.33] s * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [0.28] s * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-b-dp-4: - Statuses : 1 pass(s) - Exec time: [0.31] s * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [0.31] s * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-c-dp-4: - Statuses : 1 pass(s) - Exec time: [0.31] s * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [0.29] s * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-d-dp-4: - Statuses : 1 pass(s) - Exec time: [0.32] s * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-d-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [0.29] s * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc@pipe-a-dp-4: - Statuses : 1 pass(s) - Exec time: [0.54] s * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [3.38] s * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc@pipe-b-dp-4: - Statuses : 1 pass(s) - Exec time: [0.52] s * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [0.51] s * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc@pipe-c-dp-4: - Statuses : 1 pass(s) - Exec time: [0.52] s * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [0.49] s * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc@pipe-d-dp-4: - Statuses : 1 pass(s) - Exec time: [0.53] s * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc@pipe-d-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [0.51] s * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs@pipe-a-dp-4: - Statuses : 1 pass(s) - Exec time: [0.54] s * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [3.35] s * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs@pipe-b-dp-4: - Statuses : 1 pass(s) - Exec time: [0.51] s * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [0.49] s * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs@pipe-c-dp-4: - Statuses : 1 pass(s) - Exec time: [0.53] s * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [0.49] s * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs@pipe-d-dp-4: - Statuses : 1 pass(s) - Exec time: [0.51] s * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs@pipe-d-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [0.49] s * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-dp-4: - Statuses : 1 skip(s) - Exec time: [0.00] s * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.00] s * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-b-dp-4: - Statuses : 1 skip(s) - Exec time: [0.00] s * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.00] s * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-c-dp-4: - Statuses : 1 skip(s) - Exec time: [0.00] s * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.00] s * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-d-dp-4: - Statuses : 1 skip(s) - Exec time: [0.00] s * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.00] s * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-a-dp-4: - Statuses : 1 skip(s) - Exec time: [0.00] s * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.00] s * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-b-dp-4: - Statuses : 1 skip(s) - Exec time: [0.00] s * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.00] s * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-c-dp-4: - Statuses : 1 skip(s) - Exec time: [0.00] s * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.00] s * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-d-dp-4: - Statuses : 1 skip(s) - Exec time: [0.00] s * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.00] s * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-a-dp-4: - Statuses : 1 skip(s) - Exec time: [0.00] s * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.00] s * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-b-dp-4: - Statuses : 1 skip(s) - Exec time: [0.00] s * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.00] s * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-c-dp-4: - Statuses : 1 skip(s) - Exec time: [0.00] s * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-c-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.00] s * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-d-dp-4: - Statuses : 1 skip(s) - Exec time: [0.00] s * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-d-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.00] s * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs@pipe-a-dp-4: - Statuses : 1 skip(s) - Exec time: [0.00] s * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs@pipe-a-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.00] s * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs@pipe-b-dp-4: - Statuses : 1 skip(s) - Exec time: [0.00] s * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs@pipe-b-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.00] s * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs@pipe-c-dp-4: - Statuses : 1 skip(s) - Exec time: [0.00] s * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs@pipe-c-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.00] s * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs@pipe-d-dp-4: - Statuses : 1 skip(s) - Exec time: [0.00] s * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs@pipe-d-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.00] s * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.00] s * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.00] s * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.00] s * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.00] s * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs-cc@pipe-a-dp-4: - Statuses : 1 skip(s) - Exec time: [0.00] s * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs-cc@pipe-a-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.00] s * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs-cc@pipe-b-dp-4: - Statuses : 1 skip(s) - Exec time: [0.00] s * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs-cc@pipe-b-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.00] s * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs-cc@pipe-c-dp-4: - Statuses : 1 skip(s) - Exec time: [0.00] s * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs-cc@pipe-c-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.00] s * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4: - Statuses : 1 skip(s) - Exec time: [0.00] s * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.00] s * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.00] s * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-b-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.00] s * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-c-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.00] s * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.00] s * igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-a-dp-4: - Statuses : 1 skip(s) - Exec time: [0.00] s * igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-a-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.00] s * igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-b-dp-4: - Statuses : 1 skip(s) - Exec time: [0.00] s * igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-b-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.00] s * igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-c-dp-4: - Statuses : 1 skip(s) - Exec time: [0.00] s * igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-c-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.00] s * igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-d-dp-4: - Statuses : 1 skip(s) - Exec time: [0.00] s * igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs@pipe-d-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.00] s * igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-2: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-2: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs-cc@pipe-a-dp-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs-cc@pipe-b-dp-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs-cc@pipe-c-dp-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs-cc@pipe-d-dp-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-2: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs@pipe-c-hdmi-a-2: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs@pipe-d-hdmi-a-2: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-a-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-b-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-c-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-d-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs-cc@pipe-a-dp-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs-cc@pipe-a-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs-cc@pipe-b-dp-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs-cc@pipe-b-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs-cc@pipe-c-dp-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs-cc@pipe-c-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@missing-ccs-buffer-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-a-dp-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-a-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-b-dp-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-b-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-c-dp-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-c-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-d-dp-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-d-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [4.57] s * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [4.62] s * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [4.64] s * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-d-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [4.63] s * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-dp-4: - Statuses : 1 pass(s) - Exec time: [2.84] s * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [2.78] s * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-dp-4: - Statuses : 1 pass(s) - Exec time: [2.82] s * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [2.81] s * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-c-dp-4: - Statuses : 1 incomplete(s) - Exec time: [50.15] s * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-6: - Statuses : 1 dmesg-warn(s) - Exec time: [50.15] s * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-dp-4: - Statuses : 1 pass(s) - Exec time: [2.87] s * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-a-hdmi-a-6: - Statuses : 1 pass(s) - Exec time: [2.81] s * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-dp-4: - Statuses : 1 incomplete(s) - Exec time: [49.58] s * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6: - Statuses : 1 dmesg-warn(s) - Exec time: [49.58] s * igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-2: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-2: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-2: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-2: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-a-dp-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-dp-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-c-dp-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-c-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-d-dp-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-d-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@random-ccs-data-y-tiled-ccs@pipe-a-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@random-ccs-data-y-tiled-ccs@pipe-b-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@random-ccs-data-y-tiled-ccs@pipe-c-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@random-ccs-data-y-tiled-ccs@pipe-d-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-a-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-d-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc@pipe-a-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc@pipe-b-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc@pipe-c-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs@pipe-a-dp-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs@pipe-b-dp-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs@pipe-b-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs@pipe-c-dp-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs@pipe-c-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs@pipe-d-dp-4: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-6: - Statuses : 1 skip(s) - Exec time: [0.0] 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_12649_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-6-4-mc-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][10] ([Intel XE#2550] / [Intel XE#3767]) +7 other tests skip [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-dg2-464/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-6-4-mc-ccs.html * igt@kms_async_flips@test-cursor: - shard-lnl: NOTRUN -> [SKIP][11] ([Intel XE#664]) [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-lnl-5/igt@kms_async_flips@test-cursor.html * igt@kms_atomic_transition@plane-all-modeset-transition: - shard-lnl: NOTRUN -> [SKIP][12] ([Intel XE#3279]) [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-lnl-8/igt@kms_atomic_transition@plane-all-modeset-transition.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#2370]) [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-bmg-6/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_big_fb@4-tiled-32bpp-rotate-90: - shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#2327]) +3 other tests skip [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-bmg-8/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-lnl: NOTRUN -> [SKIP][15] ([Intel XE#3658]) [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-lnl-2/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@linear-32bpp-rotate-270: - shard-dg2-set2: NOTRUN -> [SKIP][16] ([Intel XE#316]) +3 other tests skip [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-dg2-464/igt@kms_big_fb@linear-32bpp-rotate-270.html * igt@kms_big_fb@x-tiled-8bpp-rotate-270: - shard-lnl: NOTRUN -> [SKIP][17] ([Intel XE#1407]) +4 other tests skip [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-lnl-4/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html * igt@kms_big_fb@y-tiled-32bpp-rotate-180: - shard-lnl: NOTRUN -> [SKIP][18] ([Intel XE#1124]) +7 other tests skip [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-lnl-4/igt@kms_big_fb@y-tiled-32bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-180: - shard-dg2-set2: NOTRUN -> [SKIP][19] ([Intel XE#1124]) +11 other tests skip [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-dg2-466/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-addfb-size-overflow: - shard-dg2-set2: NOTRUN -> [SKIP][20] ([Intel XE#610]) [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-dg2-432/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#1124]) +8 other tests skip [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-bmg-6/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p: - shard-dg2-set2: NOTRUN -> [SKIP][22] ([Intel XE#2191]) +3 other tests skip [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-dg2-464/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html * igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p: - shard-lnl: NOTRUN -> [SKIP][23] ([Intel XE#2191]) [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-lnl-3/igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p.html * igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p: - shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#2314] / [Intel XE#2894]) +2 other tests skip [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-bmg-7/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html - shard-lnl: NOTRUN -> [SKIP][25] ([Intel XE#1512]) [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-lnl-3/igt@kms_bw@connected-linear-tiling-4-displays-3840x2160p.html * igt@kms_bw@linear-tiling-1-displays-2560x1440p: - shard-dg2-set2: NOTRUN -> [SKIP][26] ([Intel XE#367]) +4 other tests skip [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-dg2-464/igt@kms_bw@linear-tiling-1-displays-2560x1440p.html * igt@kms_bw@linear-tiling-2-displays-2160x1440p: - shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#367]) +3 other tests skip [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-bmg-5/igt@kms_bw@linear-tiling-2-displays-2160x1440p.html * igt@kms_bw@linear-tiling-3-displays-2160x1440p: - shard-lnl: NOTRUN -> [SKIP][28] ([Intel XE#367]) +2 other tests skip [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-lnl-8/igt@kms_bw@linear-tiling-3-displays-2160x1440p.html * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#2887]) +17 other tests skip [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-bmg-8/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc.html * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-6 (NEW): - shard-dg2-set2: [SKIP][30] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][31] ([Intel XE#787]) +2 other tests skip [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-464/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-6.html [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-dg2-434/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-6.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc: - shard-lnl: NOTRUN -> [SKIP][32] ([Intel XE#2887]) +14 other tests skip [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-lnl-6/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs@pipe-b-edp-1: - shard-lnl: NOTRUN -> [SKIP][33] ([Intel XE#2669]) +11 other tests skip [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-lnl-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs@pipe-b-edp-1.html * igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-6 (NEW): - shard-dg2-set2: [SKIP][34] ([Intel XE#787]) -> [SKIP][35] ([Intel XE#455] / [Intel XE#787]) +10 other tests skip [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-433/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-6.html [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-dg2-464/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc@pipe-d-hdmi-a-6.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs: - shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#3432]) [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-bmg-6/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-b-edp-1: - shard-lnl: [PASS][37] -> [DMESG-WARN][38] ([Intel XE#2932]) +2 other tests dmesg-warn [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-lnl-7/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-b-edp-1.html [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-lnl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-b-edp-1.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][39] ([Intel XE#2907]) +3 other tests skip [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-dg2-432/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-6 (NEW): - shard-dg2-set2: NOTRUN -> [SKIP][40] ([Intel XE#787]) +181 other tests skip [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-dg2-464/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-6.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc: - shard-dg2-set2: [PASS][41] -> [INCOMPLETE][42] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124]) [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-c-dp-4 (NEW): - shard-dg2-set2: NOTRUN -> [INCOMPLETE][43] ([Intel XE#3124]) +1 other test incomplete [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-dg2-436/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-cc@pipe-c-hdmi-a-6 (NEW): - shard-dg2-set2: [PASS][44] -> [DMESG-WARN][45] ([Intel XE#1727] / [Intel XE#3113]) [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-6.html [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-dg2-436/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-6.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6 (NEW): - shard-dg2-set2: NOTRUN -> [DMESG-WARN][46] ([Intel XE#1727] / [Intel XE#3113]) [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-6.html * igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc@pipe-d-dp-2: - shard-dg2-set2: NOTRUN -> [SKIP][47] ([Intel XE#455] / [Intel XE#787]) +50 other tests skip [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-dg2-432/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc@pipe-d-dp-2.html * igt@kms_chamelium_color@ctm-max: - shard-lnl: NOTRUN -> [SKIP][48] ([Intel XE#306]) +2 other tests skip [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-lnl-3/igt@kms_chamelium_color@ctm-max.html * igt@kms_chamelium_color@ctm-red-to-blue: - shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#2325]) +1 other test skip [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-bmg-5/igt@kms_chamelium_color@ctm-red-to-blue.html * igt@kms_chamelium_color@gamma: - shard-dg2-set2: NOTRUN -> [SKIP][50] ([Intel XE#306]) +2 other tests skip [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-dg2-434/igt@kms_chamelium_color@gamma.html * igt@kms_chamelium_frames@dp-crc-single: - shard-bmg: NOTRUN -> [SKIP][51] ([Intel XE#2252]) +7 other tests skip [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-bmg-5/igt@kms_chamelium_frames@dp-crc-single.html * igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe: - shard-dg2-set2: NOTRUN -> [SKIP][52] ([Intel XE#373]) +10 other tests skip [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-dg2-464/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html - shard-lnl: NOTRUN -> [SKIP][53] ([Intel XE#373]) +8 other tests skip [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-lnl-6/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html * igt@kms_content_protection@atomic@pipe-a-dp-4: - shard-dg2-set2: NOTRUN -> [FAIL][54] ([Intel XE#1178]) [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-dg2-436/igt@kms_content_protection@atomic@pipe-a-dp-4.html * igt@kms_content_protection@dp-mst-type-0: - shard-bmg: NOTRUN -> [SKIP][55] ([Intel XE#2390]) [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-bmg-5/igt@kms_content_protection@dp-mst-type-0.html - shard-dg2-set2: NOTRUN -> [SKIP][56] ([Intel XE#307]) [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-dg2-464/igt@kms_content_protection@dp-mst-type-0.html - shard-lnl: NOTRUN -> [SKIP][57] ([Intel XE#307]) [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-lnl-6/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_cursor_crc@cursor-offscreen-128x42: - shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#2320]) +6 other tests skip [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-bmg-6/igt@kms_cursor_crc@cursor-offscreen-128x42.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-lnl: NOTRUN -> [SKIP][59] ([Intel XE#2321]) +4 other tests skip [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-lnl-5/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_crc@cursor-onscreen-512x512: - shard-dg2-set2: NOTRUN -> [SKIP][60] ([Intel XE#308]) +3 other tests skip [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-dg2-464/igt@kms_cursor_crc@cursor-onscreen-512x512.html * igt@kms_cursor_crc@cursor-onscreen-64x64: - shard-dg2-set2: [PASS][61] -> [DMESG-WARN][62] ([Intel XE#4330]) +58 other tests dmesg-warn [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-463/igt@kms_cursor_crc@cursor-onscreen-64x64.html [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-dg2-464/igt@kms_cursor_crc@cursor-onscreen-64x64.html * igt@kms_cursor_crc@cursor-random-max-size: - shard-lnl: NOTRUN -> [SKIP][63] ([Intel XE#1424]) +10 other tests skip [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-lnl-6/igt@kms_cursor_crc@cursor-random-max-size.html * igt@kms_cursor_crc@cursor-sliding-512x512: - shard-bmg: NOTRUN -> [SKIP][64] ([Intel XE#2321]) +4 other tests skip [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-bmg-3/igt@kms_cursor_crc@cursor-sliding-512x512.html * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic: - shard-lnl: NOTRUN -> [SKIP][65] ([Intel XE#309]) +5 other tests skip [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-lnl-5/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html * igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions: - shard-dg2-set2: [PASS][66] -> [SKIP][67] ([Intel XE#309]) [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-433/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions.html [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-dg2-464/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions.html * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic: - shard-bmg: [PASS][68] -> [SKIP][69] ([Intel XE#2291]) +1 other test skip [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-bmg-2/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic.html [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic.html * igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size: - shard-bmg: [PASS][70] -> [DMESG-WARN][71] ([Intel XE#4330] / [Intel XE#877]) [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-bmg-3/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-bmg-3/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-dg2-set2: NOTRUN -> [SKIP][72] ([Intel XE#323]) [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-dg2-432/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt@kms_cursor_legacy@single-bo: - shard-dg2-set2: [PASS][73] -> [INCOMPLETE][74] ([Intel XE#3226]) +1 other test incomplete [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-466/igt@kms_cursor_legacy@single-bo.html [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-dg2-433/igt@kms_cursor_legacy@single-bo.html * igt@kms_dirtyfb@fbc-dirtyfb-ioctl: - shard-bmg: NOTRUN -> [SKIP][75] ([Intel XE#4210]) [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-bmg-8/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html * igt@kms_dirtyfb@psr-dirtyfb-ioctl: - shard-bmg: NOTRUN -> [SKIP][76] ([Intel XE#1508]) [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-bmg-6/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html * igt@kms_display_modes@extended-mode-basic: - shard-bmg: [PASS][77] -> [SKIP][78] ([Intel XE#4302]) [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-bmg-7/igt@kms_display_modes@extended-mode-basic.html [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-bmg-6/igt@kms_display_modes@extended-mode-basic.html - shard-dg2-set2: [PASS][79] -> [SKIP][80] ([Intel XE#4302]) [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-463/igt@kms_display_modes@extended-mode-basic.html [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-dg2-464/igt@kms_display_modes@extended-mode-basic.html * igt@kms_dp_linktrain_fallback@dp-fallback: - shard-lnl: NOTRUN -> [SKIP][81] ([Intel XE#4294]) [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-lnl-3/igt@kms_dp_linktrain_fallback@dp-fallback.html * igt@kms_dp_linktrain_fallback@dsc-fallback: - shard-bmg: NOTRUN -> [SKIP][82] ([Intel XE#4331]) [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-bmg-8/igt@kms_dp_linktrain_fallback@dsc-fallback.html - shard-dg2-set2: NOTRUN -> [SKIP][83] ([Intel XE#4331]) [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-dg2-432/igt@kms_dp_linktrain_fallback@dsc-fallback.html - shard-lnl: NOTRUN -> [SKIP][84] ([Intel XE#4331]) [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-lnl-8/igt@kms_dp_linktrain_fallback@dsc-fallback.html * igt@kms_dsc@dsc-fractional-bpp-with-bpc: - shard-lnl: NOTRUN -> [SKIP][85] ([Intel XE#2244]) [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-lnl-3/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html * igt@kms_dsc@dsc-with-bpc: - shard-bmg: NOTRUN -> [SKIP][86] ([Intel XE#2244]) [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-bmg-6/igt@kms_dsc@dsc-with-bpc.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-bmg: NOTRUN -> [SKIP][87] ([Intel XE#4156]) [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-bmg-7/igt@kms_fbcon_fbt@fbc-suspend.html - shard-dg2-set2: NOTRUN -> [DMESG-FAIL][88] ([Intel XE#4330]) [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-dg2-434/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_fbcon_fbt@psr-suspend: - shard-dg2-set2: NOTRUN -> [SKIP][89] ([Intel XE#776]) +1 other test skip [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-dg2-434/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_feature_discovery@chamelium: - shard-bmg: NOTRUN -> [SKIP][90] ([Intel XE#2372]) [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-bmg-3/igt@kms_feature_discovery@chamelium.html - shard-lnl: NOTRUN -> [SKIP][91] ([Intel XE#701]) [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-lnl-6/igt@kms_feature_discovery@chamelium.html * igt@kms_feature_discovery@display-3x: - shard-lnl: NOTRUN -> [SKIP][92] ([Intel XE#703]) [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-lnl-7/igt@kms_feature_discovery@display-3x.html - shard-bmg: NOTRUN -> [SKIP][93] ([Intel XE#2373]) [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-bmg-5/igt@kms_feature_discovery@display-3x.html - shard-dg2-set2: NOTRUN -> [SKIP][94] ([Intel XE#703]) [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-dg2-466/igt@kms_feature_discovery@display-3x.html * igt@kms_flip@2x-absolute-wf_vblank-interruptible: - shard-dg2-set2: [PASS][95] -> [SKIP][96] ([Intel XE#310]) +5 other tests skip [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-436/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-dg2-464/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html * igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible@bc-dp2-hdmi-a3: - shard-bmg: [PASS][97] -> [INCOMPLETE][98] ([Intel XE#2049]) +1 other test incomplete [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-bmg-8/igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible@bc-dp2-hdmi-a3.html [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-bmg-7/igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible@bc-dp2-hdmi-a3.html * igt@kms_flip@2x-dpms-vs-vblank-race: - shard-lnl: NOTRUN -> [SKIP][99] ([Intel XE#1421]) +7 other tests skip [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-lnl-8/igt@kms_flip@2x-dpms-vs-vblank-race.html * igt@kms_flip@2x-flip-vs-expired-vblank@ac-dp2-hdmi-a3: - shard-bmg: NOTRUN -> [FAIL][100] ([Intel XE#3321]) +5 other tests fail [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-bmg-8/igt@kms_flip@2x-flip-vs-expired-vblank@ac-dp2-hdmi-a3.html * igt@kms_flip@2x-flip-vs-wf_vblank-interruptible: - shard-bmg: [PASS][101] -> [DMESG-FAIL][102] ([Intel XE#4330]) [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-bmg-7/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-bmg-1/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html * igt@kms_flip@2x-flip-vs-wf_vblank-interruptible@ac-dp2-hdmi-a3: - shard-bmg: [PASS][103] -> [FAIL][104] ([Intel XE#3098]) [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-bmg-7/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible@ac-dp2-hdmi-a3.html [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-bmg-1/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible@ac-dp2-hdmi-a3.html * igt@kms_flip@2x-flip-vs-wf_vblank-interruptible@cd-hdmi-a6-dp4: - shard-dg2-set2: NOTRUN -> [DMESG-WARN][105] ([Intel XE#4330]) +38 other tests dmesg-warn [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-dg2-466/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible@cd-hdmi-a6-dp4.html * igt@kms_flip@2x-plain-flip-ts-check-interruptible: - shard-bmg: [PASS][106] -> [FAIL][107] ([Intel XE#2882]) +1 other test fail [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-bmg-1/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-bmg-7/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html * igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset: - shard-bmg: [PASS][108] -> [SKIP][109] ([Intel XE#2316]) +5 other tests skip [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-bmg-3/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-bmg-6/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html - shard-dg2-set2: NOTRUN -> [SKIP][110] ([Intel XE#310]) +2 other tests skip [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-dg2-464/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@d-dp4: - shard-dg2-set2: NOTRUN -> [FAIL][111] ([Intel XE#301]) +5 other tests fail [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-dg2-434/igt@kms_flip@flip-vs-expired-vblank-interruptible@d-dp4.html * igt@kms_flip@flip-vs-expired-vblank@d-dp2: - shard-bmg: [PASS][112] -> [FAIL][113] ([Intel XE#3321]) +2 other tests fail [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-bmg-5/igt@kms_flip@flip-vs-expired-vblank@d-dp2.html [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-bmg-7/igt@kms_flip@flip-vs-expired-vblank@d-dp2.html * igt@kms_flip@modeset-vs-vblank-race-interruptible: - shard-bmg: [PASS][114] -> [DMESG-WARN][115] ([Intel XE#2955]) +1 other test dmesg-warn [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-bmg-6/igt@kms_flip@modeset-vs-vblank-race-interruptible.html [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-bmg-8/igt@kms_flip@modeset-vs-vblank-race-interruptible.html - shard-dg2-set2: [PASS][116] -> [DMESG-WARN][117] ([Intel XE#2955]) +2 other tests dmesg-warn [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-432/igt@kms_flip@modeset-vs-vblank-race-interruptible.html [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-dg2-432/igt@kms_flip@modeset-vs-vblank-race-interruptible.html * igt@kms_flip@plain-flip-fb-recreate@a-edp1: - shard-lnl: NOTRUN -> [FAIL][118] ([Intel XE#886]) +1 other test fail [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-lnl-7/igt@kms_flip@plain-flip-fb-recreate@a-edp1.html * igt@kms_flip@plain-flip-fb-recreate@c-edp1: - shard-lnl: NOTRUN -> [FAIL][119] ([Intel XE#3149] / [Intel XE#886]) +1 other test fail [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-lnl-7/igt@kms_flip@plain-flip-fb-recreate@c-edp1.html * igt@kms_flip@single-buffer-flip-vs-dpms-off-vs-modeset@d-hdmi-a3: - shard-bmg: NOTRUN -> [DMESG-WARN][120] ([Intel XE#4330]) +37 other tests dmesg-warn [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-bmg-1/igt@kms_flip@single-buffer-flip-vs-dpms-off-vs-modeset@d-hdmi-a3.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling: - shard-bmg: NOTRUN -> [SKIP][121] ([Intel XE#2293] / [Intel XE#2380]) +5 other tests skip [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-bmg-8/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling: - shard-lnl: NOTRUN -> [SKIP][122] ([Intel XE#1397] / [Intel XE#1745]) [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-lnl-8/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][123] ([Intel XE#1397]) [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-lnl-8/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][124] ([Intel XE#1401]) +6 other tests skip [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-lnl-6/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][125] ([Intel XE#2293]) +5 other tests skip [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-bmg-5/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling: - shard-lnl: NOTRUN -> [SKIP][126] ([Intel XE#1401] / [Intel XE#1745]) +6 other tests skip [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-lnl-4/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html * igt@kms_frontbuffer_tracking@drrs-rgb565-draw-render: - shard-bmg: NOTRUN -> [SKIP][127] ([Intel XE#2311]) +26 other tests skip [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-rgb565-draw-render.html * igt@kms_frontbuffer_tracking@drrs-suspend: - shard-dg2-set2: NOTRUN -> [SKIP][128] ([Intel XE#651]) +31 other tests skip [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-dg2-464/igt@kms_frontbuffer_tracking@drrs-suspend.html - shard-lnl: NOTRUN -> [SKIP][129] ([Intel XE#651]) +11 other tests skip [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-lnl-6/igt@kms_frontbuffer_tracking@drrs-suspend.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-onoff: - shard-dg2-set2: [PASS][130] -> [SKIP][131] ([Intel XE#656]) +4 other tests skip [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-433/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-onoff.html [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-dg2-464/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render: - shard-bmg: NOTRUN -> [SKIP][132] ([Intel XE#4141]) +16 other tests skip [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt: - shard-lnl: NOTRUN -> [SKIP][133] ([Intel XE#656]) +49 other tests skip [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-lnl-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt: - shard-dg2-set2: NOTRUN -> [SKIP][134] ([Intel XE#653]) +33 other tests skip [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff: - shard-bmg: NOTRUN -> [SKIP][135] ([Intel XE#2312]) +9 other tests skip [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt: - shard-bmg: NOTRUN -> [SKIP][136] ([Intel XE#2313]) +26 other tests skip [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-render: - shard-dg2-set2: NOTRUN -> [SKIP][137] ([Intel XE#656]) +12 other tests skip [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-render.html * igt@kms_hdmi_inject@inject-audio: - shard-lnl: NOTRUN -> [SKIP][138] ([Intel XE#1470] / [Intel XE#2853]) [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-lnl-1/igt@kms_hdmi_inject@inject-audio.html * igt@kms_hdr@brightness-with-hdr: - shard-lnl: NOTRUN -> [SKIP][139] ([Intel XE#3374] / [Intel XE#3544]) [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-lnl-3/igt@kms_hdr@brightness-with-hdr.html * igt@kms_hdr@invalid-hdr: - shard-dg2-set2: NOTRUN -> [SKIP][140] ([Intel XE#455]) +29 other tests skip [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-dg2-434/igt@kms_hdr@invalid-hdr.html * igt@kms_hdr@static-toggle-dpms: - shard-lnl: NOTRUN -> [SKIP][141] ([Intel XE#1503]) +1 other test skip [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-lnl-6/igt@kms_hdr@static-toggle-dpms.html * igt@kms_joiner@invalid-modeset-big-joiner: - shard-lnl: NOTRUN -> [SKIP][142] ([Intel XE#346]) [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-lnl-7/igt@kms_joiner@invalid-modeset-big-joiner.html * igt@kms_joiner@invalid-modeset-ultra-joiner: - shard-dg2-set2: NOTRUN -> [SKIP][143] ([Intel XE#2927]) +1 other test skip [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-dg2-434/igt@kms_joiner@invalid-modeset-ultra-joiner.html * igt@kms_panel_fitting@legacy: - shard-bmg: NOTRUN -> [SKIP][144] ([Intel XE#2486]) +1 other test skip [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-bmg-5/igt@kms_panel_fitting@legacy.html * igt@kms_plane_cursor@primary@pipe-a-hdmi-a-6-size-256: - shard-dg2-set2: NOTRUN -> [FAIL][145] ([Intel XE#616]) +2 other tests fail [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-dg2-464/igt@kms_plane_cursor@primary@pipe-a-hdmi-a-6-size-256.html * igt@kms_plane_lowres@tiling-4: - shard-bmg: [PASS][146] -> [DMESG-WARN][147] ([Intel XE#4091]) [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-bmg-6/igt@kms_plane_lowres@tiling-4.html [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-bmg-6/igt@kms_plane_lowres@tiling-4.html * igt@kms_plane_multiple@tiling-y: - shard-bmg: NOTRUN -> [SKIP][148] ([Intel XE#2493]) [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-bmg-8/igt@kms_plane_multiple@tiling-y.html - shard-lnl: NOTRUN -> [SKIP][149] ([Intel XE#2493]) [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-lnl-7/igt@kms_plane_multiple@tiling-y.html * igt@kms_plane_scaling@2x-scaler-multi-pipe: - shard-dg2-set2: NOTRUN -> [SKIP][150] ([Intel XE#309]) +1 other test skip [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-dg2-464/igt@kms_plane_scaling@2x-scaler-multi-pipe.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [DMESG-WARN][151] ([Intel XE#4212]) +2 other tests dmesg-warn [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-dg2-434/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a: - shard-dg2-set2: NOTRUN -> [SKIP][152] ([Intel XE#2763]) +2 other tests skip [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-dg2-436/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-b: - shard-lnl: NOTRUN -> [SKIP][153] ([Intel XE#2763]) +15 other tests skip [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-lnl-4/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-b.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-d: - shard-dg2-set2: NOTRUN -> [SKIP][154] ([Intel XE#2763] / [Intel XE#455]) +1 other test skip [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-dg2-436/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-d.html * igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers: - shard-bmg: [PASS][155] -> [DMESG-WARN][156] ([Intel XE#4330]) +50 other tests dmesg-warn [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-bmg-4/igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers.html [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-bmg-6/igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5: - shard-bmg: NOTRUN -> [SKIP][157] ([Intel XE#2763]) +19 other tests skip [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-bmg-5/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html * igt@kms_pm_backlight@fade-with-suspend: - shard-dg2-set2: NOTRUN -> [SKIP][158] ([Intel XE#870]) [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-dg2-432/igt@kms_pm_backlight@fade-with-suspend.html - shard-bmg: NOTRUN -> [SKIP][159] ([Intel XE#870]) [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-bmg-8/igt@kms_pm_backlight@fade-with-suspend.html * igt@kms_pm_dc@dc6-dpms: - shard-bmg: NOTRUN -> [DMESG-FAIL][160] ([Intel XE#4330]) [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-bmg-3/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_dc@dc6-psr: - shard-lnl: NOTRUN -> [FAIL][161] ([Intel XE#1430]) +1 other test fail [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-lnl-7/igt@kms_pm_dc@dc6-psr.html - shard-bmg: NOTRUN -> [SKIP][162] ([Intel XE#2392]) [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-bmg-8/igt@kms_pm_dc@dc6-psr.html - shard-dg2-set2: NOTRUN -> [SKIP][163] ([Intel XE#1129]) [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-dg2-432/igt@kms_pm_dc@dc6-psr.html * igt@kms_pm_dc@deep-pkgc: - shard-bmg: NOTRUN -> [SKIP][164] ([Intel XE#2505]) [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-bmg-3/igt@kms_pm_dc@deep-pkgc.html - shard-lnl: NOTRUN -> [FAIL][165] ([Intel XE#2029]) [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-lnl-1/igt@kms_pm_dc@deep-pkgc.html * igt@kms_pm_lpsp@kms-lpsp: - shard-bmg: NOTRUN -> [SKIP][166] ([Intel XE#2499]) [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-bmg-6/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_rpm@dpms-mode-unset-lpsp: - shard-bmg: NOTRUN -> [SKIP][167] ([Intel XE#1439] / [Intel XE#836]) [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-bmg-7/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html * igt@kms_pm_rpm@modeset-lpsp: - shard-bmg: NOTRUN -> [SKIP][168] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836]) +1 other test skip [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-bmg-7/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area: - shard-lnl: NOTRUN -> [SKIP][169] ([Intel XE#2893]) +6 other tests skip [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-lnl-2/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf: - shard-bmg: NOTRUN -> [SKIP][170] ([Intel XE#1489]) +11 other tests skip [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-bmg-8/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area: - shard-dg2-set2: NOTRUN -> [SKIP][171] ([Intel XE#1489]) +15 other tests skip [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-dg2-464/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html * igt@kms_psr@fbc-psr2-cursor-plane-move: - shard-bmg: NOTRUN -> [SKIP][172] ([Intel XE#2234] / [Intel XE#2850]) +11 other tests skip [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-bmg-5/igt@kms_psr@fbc-psr2-cursor-plane-move.html * igt@kms_psr@fbc-psr2-sprite-plane-onoff: - shard-dg2-set2: NOTRUN -> [SKIP][173] ([Intel XE#2850] / [Intel XE#929]) +14 other tests skip [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-dg2-434/igt@kms_psr@fbc-psr2-sprite-plane-onoff.html * igt@kms_psr@pr-no-drrs: - shard-lnl: NOTRUN -> [SKIP][174] ([Intel XE#1406]) +3 other tests skip [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-lnl-4/igt@kms_psr@pr-no-drrs.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-bmg: NOTRUN -> [SKIP][175] ([Intel XE#2414]) [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-bmg-8/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html - shard-dg2-set2: NOTRUN -> [SKIP][176] ([Intel XE#2939]) +1 other test skip [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-dg2-432/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_rotation_crc@bad-tiling: - shard-lnl: NOTRUN -> [SKIP][177] ([Intel XE#3414] / [Intel XE#3904]) +1 other test skip [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-lnl-1/igt@kms_rotation_crc@bad-tiling.html * igt@kms_rotation_crc@primary-rotation-90: - shard-dg2-set2: NOTRUN -> [SKIP][178] ([Intel XE#3414]) +1 other test skip [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-dg2-434/igt@kms_rotation_crc@primary-rotation-90.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-bmg: NOTRUN -> [SKIP][179] ([Intel XE#2330]) [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-bmg-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html - shard-dg2-set2: NOTRUN -> [SKIP][180] ([Intel XE#1127]) +1 other test skip [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-dg2-434/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html - shard-lnl: NOTRUN -> [SKIP][181] ([Intel XE#1127]) [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-lnl-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-bmg: NOTRUN -> [SKIP][182] ([Intel XE#3414] / [Intel XE#3904]) [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-bmg-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_setmode@clone-exclusive-crtc: - shard-dg2-set2: [PASS][183] -> [SKIP][184] ([Intel XE#455]) [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-432/igt@kms_setmode@clone-exclusive-crtc.html [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-dg2-464/igt@kms_setmode@clone-exclusive-crtc.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-bmg: NOTRUN -> [SKIP][185] ([Intel XE#2426]) [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-bmg-8/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html - shard-dg2-set2: NOTRUN -> [SKIP][186] ([Intel XE#1500]) [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-dg2-432/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html - shard-lnl: NOTRUN -> [SKIP][187] ([Intel XE#362]) [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-lnl-7/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_vrr@flip-basic-fastset: - shard-bmg: NOTRUN -> [SKIP][188] ([Intel XE#1499]) [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-bmg-7/igt@kms_vrr@flip-basic-fastset.html * igt@kms_vrr@lobf: - shard-bmg: NOTRUN -> [SKIP][189] ([Intel XE#2168]) +1 other test skip [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-bmg-5/igt@kms_vrr@lobf.html - shard-dg2-set2: NOTRUN -> [SKIP][190] ([Intel XE#2168]) +1 other test skip [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-dg2-466/igt@kms_vrr@lobf.html - shard-lnl: NOTRUN -> [SKIP][191] ([Intel XE#1499]) [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-lnl-7/igt@kms_vrr@lobf.html * igt@sriov_basic@enable-vfs-autoprobe-off: - shard-lnl: NOTRUN -> [SKIP][192] ([Intel XE#1091] / [Intel XE#2849]) [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-lnl-4/igt@sriov_basic@enable-vfs-autoprobe-off.html * igt@xe_compute_preempt@compute-threadgroup-preempt@engine-drm_xe_engine_class_compute: - shard-dg2-set2: NOTRUN -> [SKIP][193] ([Intel XE#1280] / [Intel XE#455]) +1 other test skip [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-dg2-434/igt@xe_compute_preempt@compute-threadgroup-preempt@engine-drm_xe_engine_class_compute.html * igt@xe_copy_basic@mem-set-linear-0x3fff: - shard-dg2-set2: NOTRUN -> [SKIP][194] ([Intel XE#1126]) +1 other test skip [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-dg2-464/igt@xe_copy_basic@mem-set-linear-0x3fff.html * igt@xe_eudebug@basic-vm-bind-ufence-reconnect: - shard-bmg: NOTRUN -> [SKIP][195] ([Intel XE#3889]) [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-bmg-3/igt@xe_eudebug@basic-vm-bind-ufence-reconnect.html - shard-dg2-set2: NOTRUN -> [SKIP][196] ([Intel XE#3889]) [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-dg2-433/igt@xe_eudebug@basic-vm-bind-ufence-reconnect.html * igt@xe_eudebug_online@interrupt-other-debuggable: - shard-dg2-set2: NOTRUN -> [SKIP][197] ([Intel XE#2905]) +17 other tests skip [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-dg2-464/igt@xe_eudebug_online@interrupt-other-debuggable.html * igt@xe_eudebug_online@single-step: - shard-bmg: NOTRUN -> [SKIP][198] ([Intel XE#2905]) +12 other tests skip [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-bmg-6/igt@xe_eudebug_online@single-step.html * igt@xe_eudebug_online@writes-caching-sram-bb-sram-target-sram: - shard-lnl: NOTRUN -> [SKIP][199] ([Intel XE#2905]) +11 other tests skip [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-lnl-7/igt@xe_eudebug_online@writes-caching-sram-bb-sram-target-sram.html * igt@xe_evict_ccs@evict-overcommit-standalone-instantfree-samefd: - shard-lnl: NOTRUN -> [SKIP][200] ([Intel XE#688]) +4 other tests skip [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-lnl-6/igt@xe_evict_ccs@evict-overcommit-standalone-instantfree-samefd.html * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr: - shard-dg2-set2: [PASS][201] -> [SKIP][202] ([Intel XE#1392]) +4 other tests skip [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-436/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-dg2-432/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html * igt@xe_exec_basic@multigpu-no-exec-rebind: - shard-bmg: NOTRUN -> [SKIP][203] ([Intel XE#2322]) +9 other tests skip [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-bmg-5/igt@xe_exec_basic@multigpu-no-exec-rebind.html * igt@xe_exec_basic@multigpu-once-userptr: - shard-lnl: NOTRUN -> [SKIP][204] ([Intel XE#1392]) +11 other tests skip [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-lnl-8/igt@xe_exec_basic@multigpu-once-userptr.html * igt@xe_exec_fault_mode@once-bindexecqueue-rebind-prefetch: - shard-dg2-set2: NOTRUN -> [SKIP][205] ([Intel XE#288]) +32 other tests skip [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-dg2-433/igt@xe_exec_fault_mode@once-bindexecqueue-rebind-prefetch.html * igt@xe_exec_mix_modes@exec-simple-batch-store-lr: - shard-dg2-set2: NOTRUN -> [SKIP][206] ([Intel XE#2360]) +1 other test skip [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-dg2-432/igt@xe_exec_mix_modes@exec-simple-batch-store-lr.html * igt@xe_exec_reset@cm-gt-reset: - shard-bmg: [PASS][207] -> [INCOMPLETE][208] ([Intel XE#3592]) [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-bmg-4/igt@xe_exec_reset@cm-gt-reset.html [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-bmg-8/igt@xe_exec_reset@cm-gt-reset.html * igt@xe_mmap@small-bar: - shard-bmg: NOTRUN -> [SKIP][209] ([Intel XE#586]) [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-bmg-8/igt@xe_mmap@small-bar.html - shard-dg2-set2: NOTRUN -> [SKIP][210] ([Intel XE#512]) [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-dg2-432/igt@xe_mmap@small-bar.html - shard-lnl: NOTRUN -> [SKIP][211] ([Intel XE#512]) [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-lnl-7/igt@xe_mmap@small-bar.html * igt@xe_module_load@force-load: - shard-lnl: NOTRUN -> [SKIP][212] ([Intel XE#378]) [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-lnl-6/igt@xe_module_load@force-load.html * igt@xe_oa@oa-unit-exclusive-stream-sample-oa: - shard-dg2-set2: NOTRUN -> [SKIP][213] ([Intel XE#2541] / [Intel XE#3573]) +12 other tests skip [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-dg2-464/igt@xe_oa@oa-unit-exclusive-stream-sample-oa.html * igt@xe_peer2peer@write: - shard-bmg: NOTRUN -> [SKIP][214] ([Intel XE#2427]) [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-bmg-1/igt@xe_peer2peer@write.html - shard-dg2-set2: NOTRUN -> [SKIP][215] ([Intel XE#1061]) [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-dg2-432/igt@xe_peer2peer@write.html - shard-lnl: NOTRUN -> [SKIP][216] ([Intel XE#1061]) [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-lnl-5/igt@xe_peer2peer@write.html * igt@xe_pm@d3cold-mocs: - shard-dg2-set2: NOTRUN -> [SKIP][217] ([Intel XE#2284]) [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-dg2-436/igt@xe_pm@d3cold-mocs.html * igt@xe_pm@d3cold-multiple-execs: - shard-bmg: NOTRUN -> [SKIP][218] ([Intel XE#2284]) [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-bmg-5/igt@xe_pm@d3cold-multiple-execs.html - shard-dg2-set2: NOTRUN -> [SKIP][219] ([Intel XE#2284] / [Intel XE#366]) [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-dg2-434/igt@xe_pm@d3cold-multiple-execs.html - shard-lnl: NOTRUN -> [SKIP][220] ([Intel XE#2284] / [Intel XE#366]) [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-lnl-1/igt@xe_pm@d3cold-multiple-execs.html * igt@xe_pm@s3-d3hot-basic-exec: - shard-bmg: [PASS][221] -> [DMESG-WARN][222] ([Intel XE#4330] / [Intel XE#569]) +2 other tests dmesg-warn [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-bmg-8/igt@xe_pm@s3-d3hot-basic-exec.html [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-bmg-6/igt@xe_pm@s3-d3hot-basic-exec.html - shard-dg2-set2: [PASS][223] -> [DMESG-WARN][224] ([Intel XE#4330] / [Intel XE#569]) +1 other test dmesg-warn [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-464/igt@xe_pm@s3-d3hot-basic-exec.html [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-dg2-464/igt@xe_pm@s3-d3hot-basic-exec.html * igt@xe_pm@s3-multiple-execs: - shard-lnl: NOTRUN -> [SKIP][225] ([Intel XE#584]) [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-lnl-1/igt@xe_pm@s3-multiple-execs.html * igt@xe_pm@s4-basic: - shard-lnl: NOTRUN -> [ABORT][226] ([Intel XE#4268]) [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-lnl-8/igt@xe_pm@s4-basic.html * igt@xe_pm@s4-exec-after: - shard-dg2-set2: NOTRUN -> [ABORT][227] ([Intel XE#4268]) [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-dg2-466/igt@xe_pm@s4-exec-after.html * igt@xe_query@multigpu-query-cs-cycles: - shard-dg2-set2: NOTRUN -> [SKIP][228] ([Intel XE#944]) +2 other tests skip [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-dg2-432/igt@xe_query@multigpu-query-cs-cycles.html * igt@xe_query@multigpu-query-invalid-query: - shard-bmg: NOTRUN -> [SKIP][229] ([Intel XE#944]) +1 other test skip [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-bmg-1/igt@xe_query@multigpu-query-invalid-query.html * igt@xe_query@multigpu-query-topology-l3-bank-mask: - shard-lnl: NOTRUN -> [SKIP][230] ([Intel XE#944]) +2 other tests skip [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-lnl-7/igt@xe_query@multigpu-query-topology-l3-bank-mask.html * igt@xe_sriov_auto_provisioning@fair-allocation: - shard-bmg: NOTRUN -> [SKIP][231] ([Intel XE#4130]) [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-bmg-6/igt@xe_sriov_auto_provisioning@fair-allocation.html * igt@xe_sriov_auto_provisioning@selfconfig-reprovision-increase-numvfs: - shard-dg2-set2: NOTRUN -> [SKIP][232] ([Intel XE#4130]) [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-dg2-434/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-increase-numvfs.html * igt@xe_sriov_scheduling@equal-throughput: - shard-lnl: NOTRUN -> [SKIP][233] ([Intel XE#4351]) [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-lnl-6/igt@xe_sriov_scheduling@equal-throughput.html - shard-bmg: NOTRUN -> [SKIP][234] ([Intel XE#4351]) [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-bmg-3/igt@xe_sriov_scheduling@equal-throughput.html * igt@xe_wedged@wedged-mode-toggle: - shard-dg2-set2: NOTRUN -> [ABORT][235] ([Intel XE#3075] / [Intel XE#3084]) [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-dg2-464/igt@xe_wedged@wedged-mode-toggle.html #### Possible fixes #### * igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p: - shard-bmg: [SKIP][236] ([Intel XE#2314] / [Intel XE#2894]) -> [PASS][237] [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-bmg-6/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-bmg-8/igt@kms_bw@connected-linear-tiling-2-displays-2560x1440p.html * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-bmg: [INCOMPLETE][238] ([Intel XE#3862]) -> [PASS][239] +1 other test pass [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-bmg-8/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-bmg-7/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs: - shard-dg2-set2: [INCOMPLETE][240] ([Intel XE#3862]) -> [PASS][241] [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-436/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-dg2-432/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs: - shard-dg2-set2: [INCOMPLETE][242] ([Intel XE#2705] / [Intel XE#3113]) -> [PASS][243] [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6 (NEW): - shard-dg2-set2: [INCOMPLETE][244] ([Intel XE#3113]) -> [PASS][245] [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6.html [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic: - shard-bmg: [SKIP][246] ([Intel XE#2291]) -> [PASS][247] +2 other tests pass [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-bmg-4/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-bmg-8/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic: - shard-dg2-set2: [SKIP][248] ([Intel XE#309]) -> [PASS][249] [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-464/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-dg2-434/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html * igt@kms_cursor_legacy@forked-bo@pipe-c: - shard-dg2-set2: [DMESG-WARN][250] ([Intel XE#4330]) -> [PASS][251] +22 other tests pass [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-464/igt@kms_cursor_legacy@forked-bo@pipe-c.html [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-dg2-433/igt@kms_cursor_legacy@forked-bo@pipe-c.html * igt@kms_feature_discovery@display-2x: - shard-bmg: [SKIP][252] ([Intel XE#2373]) -> [PASS][253] [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-bmg-4/igt@kms_feature_discovery@display-2x.html [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-bmg-7/igt@kms_feature_discovery@display-2x.html * igt@kms_flip@2x-flip-vs-dpms: - shard-bmg: [DMESG-WARN][254] ([Intel XE#2955]) -> [PASS][255] +1 other test pass [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-bmg-2/igt@kms_flip@2x-flip-vs-dpms.html [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-bmg-3/igt@kms_flip@2x-flip-vs-dpms.html - shard-dg2-set2: [SKIP][256] ([Intel XE#310]) -> [PASS][257] [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-464/igt@kms_flip@2x-flip-vs-dpms.html [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-dg2-434/igt@kms_flip@2x-flip-vs-dpms.html * igt@kms_flip@2x-modeset-vs-vblank-race: - shard-dg2-set2: [DMESG-WARN][258] ([Intel XE#2955]) -> [PASS][259] [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-432/igt@kms_flip@2x-modeset-vs-vblank-race.html [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-dg2-436/igt@kms_flip@2x-modeset-vs-vblank-race.html * igt@kms_flip@2x-plain-flip-fb-recreate: - shard-bmg: [SKIP][260] ([Intel XE#2316]) -> [PASS][261] +3 other tests pass [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-bmg-4/igt@kms_flip@2x-plain-flip-fb-recreate.html [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-bmg-5/igt@kms_flip@2x-plain-flip-fb-recreate.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1: - shard-lnl: [FAIL][262] ([Intel XE#301]) -> [PASS][263] +1 other test pass [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html * igt@kms_flip@flip-vs-expired-vblank@a-dp2: - shard-bmg: [FAIL][264] ([Intel XE#3321]) -> [PASS][265] +1 other test pass [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-bmg-5/igt@kms_flip@flip-vs-expired-vblank@a-dp2.html [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-bmg-7/igt@kms_flip@flip-vs-expired-vblank@a-dp2.html * igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a6: - shard-dg2-set2: [FAIL][266] ([Intel XE#301]) -> [PASS][267] +1 other test pass [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-466/igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a6.html [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-dg2-434/igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a6.html * igt@kms_flip@flip-vs-suspend-interruptible@a-dp4: - shard-dg2-set2: [INCOMPLETE][268] ([Intel XE#2049] / [Intel XE#2597]) -> [PASS][269] [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-463/igt@kms_flip@flip-vs-suspend-interruptible@a-dp4.html [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-dg2-434/igt@kms_flip@flip-vs-suspend-interruptible@a-dp4.html * igt@kms_flip@flip-vs-suspend-interruptible@d-dp2: - shard-bmg: [INCOMPLETE][270] ([Intel XE#2049] / [Intel XE#2597]) -> [PASS][271] [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-bmg-7/igt@kms_flip@flip-vs-suspend-interruptible@d-dp2.html [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-bmg-3/igt@kms_flip@flip-vs-suspend-interruptible@d-dp2.html * igt@kms_flip@plain-flip-ts-check@a-edp1: - shard-lnl: [FAIL][272] ([Intel XE#886]) -> [PASS][273] +1 other test pass [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-lnl-6/igt@kms_flip@plain-flip-ts-check@a-edp1.html [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-lnl-7/igt@kms_flip@plain-flip-ts-check@a-edp1.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc: - shard-dg2-set2: [SKIP][274] ([Intel XE#656]) -> [PASS][275] +4 other tests pass [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-464/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-dg2-433/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html * igt@kms_hdr@bpc-switch-dpms: - shard-dg2-set2: [INCOMPLETE][276] -> [PASS][277] +1 other test pass [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-435/igt@kms_hdr@bpc-switch-dpms.html [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-dg2-466/igt@kms_hdr@bpc-switch-dpms.html * igt@kms_joiner@invalid-modeset-force-big-joiner: - shard-bmg: [SKIP][278] ([Intel XE#3012]) -> [PASS][279] [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-bmg-6/igt@kms_joiner@invalid-modeset-force-big-joiner.html [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-bmg-7/igt@kms_joiner@invalid-modeset-force-big-joiner.html * igt@kms_plane_lowres@tiling-x: - shard-bmg: [DMESG-WARN][280] ([Intel XE#4091]) -> [PASS][281] [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-bmg-2/igt@kms_plane_lowres@tiling-x.html [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-bmg-8/igt@kms_plane_lowres@tiling-x.html * igt@kms_pm_dc@dc5-dpms: - shard-lnl: [FAIL][282] ([Intel XE#718]) -> [PASS][283] [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-lnl-4/igt@kms_pm_dc@dc5-dpms.html [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-lnl-1/igt@kms_pm_dc@dc5-dpms.html * igt@kms_pm_rpm@system-suspend-modeset: - shard-dg2-set2: [DMESG-WARN][284] ([Intel XE#2042] / [Intel XE#4330]) -> [PASS][285] [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-464/igt@kms_pm_rpm@system-suspend-modeset.html [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-dg2-436/igt@kms_pm_rpm@system-suspend-modeset.html * igt@kms_setmode@invalid-clone-single-crtc-stealing: - shard-bmg: [SKIP][286] ([Intel XE#1435]) -> [PASS][287] [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-bmg-6/igt@kms_setmode@invalid-clone-single-crtc-stealing.html [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-bmg-7/igt@kms_setmode@invalid-clone-single-crtc-stealing.html * igt@kms_vrr@flipline: - shard-lnl: [FAIL][288] ([Intel XE#1522]) -> [PASS][289] +1 other test pass [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-lnl-5/igt@kms_vrr@flipline.html [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-lnl-6/igt@kms_vrr@flipline.html * igt@xe_exec_basic@multigpu-no-exec-userptr-invalidate: - shard-dg2-set2: [SKIP][290] ([Intel XE#1392]) -> [PASS][291] [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-432/igt@xe_exec_basic@multigpu-no-exec-userptr-invalidate.html [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-dg2-436/igt@xe_exec_basic@multigpu-no-exec-userptr-invalidate.html * igt@xe_live_ktest@xe_mocs: - shard-bmg: [SKIP][292] ([Intel XE#4322]) -> [PASS][293] [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-bmg-6/igt@xe_live_ktest@xe_mocs.html [293]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-bmg-7/igt@xe_live_ktest@xe_mocs.html * igt@xe_pm@s2idle-basic-exec: - shard-bmg: [DMESG-WARN][294] ([Intel XE#4330]) -> [PASS][295] +32 other tests pass [294]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-bmg-2/igt@xe_pm@s2idle-basic-exec.html [295]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-bmg-1/igt@xe_pm@s2idle-basic-exec.html #### Warnings #### * igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-d-hdmi-a-6: - shard-dg2-set2: [SKIP][296] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][297] ([Intel XE#787]) +1 other test skip [296]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-464/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-d-hdmi-a-6.html [297]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-dg2-434/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-d-hdmi-a-6.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-6: - shard-dg2-set2: [SKIP][298] ([Intel XE#787]) -> [SKIP][299] ([Intel XE#455] / [Intel XE#787]) [298]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-463/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-6.html [299]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-dg2-464/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-6.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs: - shard-dg2-set2: [INCOMPLETE][300] ([Intel XE#1727]) -> [INCOMPLETE][301] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124]) [300]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-464/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html [301]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-dg2-433/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs.html * igt@kms_content_protection@atomic-dpms: - shard-bmg: [FAIL][302] ([Intel XE#1178]) -> [SKIP][303] ([Intel XE#2341]) [302]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-bmg-8/igt@kms_content_protection@atomic-dpms.html [303]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-bmg-6/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@lic-type-0@pipe-a-dp-2: - shard-bmg: [FAIL][304] ([Intel XE#1178]) -> [DMESG-FAIL][305] ([Intel XE#4330]) +1 other test dmesg-fail [304]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-bmg-3/igt@kms_content_protection@lic-type-0@pipe-a-dp-2.html [305]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-bmg-3/igt@kms_content_protection@lic-type-0@pipe-a-dp-2.html * igt@kms_content_protection@uevent: - shard-dg2-set2: [FAIL][306] ([Intel XE#1188]) -> [SKIP][307] ([Intel XE#455]) [306]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-434/igt@kms_content_protection@uevent.html [307]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-dg2-464/igt@kms_content_protection@uevent.html - shard-bmg: [FAIL][308] ([Intel XE#1188]) -> [SKIP][309] ([Intel XE#2341]) [308]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-bmg-5/igt@kms_content_protection@uevent.html [309]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-bmg-6/igt@kms_content_protection@uevent.html * igt@kms_cursor_legacy@cursorb-vs-flipa-toggle: - shard-dg2-set2: [SKIP][310] ([Intel XE#309]) -> [DMESG-WARN][311] ([Intel XE#4330]) [310]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-464/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html [311]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-dg2-432/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html - shard-bmg: [SKIP][312] ([Intel XE#2291]) -> [DMESG-WARN][313] ([Intel XE#4330] / [Intel XE#877]) [312]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html [313]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-bmg-8/igt@kms_cursor_legacy@cursorb-vs-flipa-toggle.html * igt@kms_flip@2x-flip-vs-expired-vblank: - shard-bmg: [SKIP][314] ([Intel XE#2316]) -> [FAIL][315] ([Intel XE#3321]) [314]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-bmg-6/igt@kms_flip@2x-flip-vs-expired-vblank.html [315]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-bmg-8/igt@kms_flip@2x-flip-vs-expired-vblank.html * igt@kms_flip@2x-flip-vs-suspend-interruptible: - shard-bmg: [SKIP][316] ([Intel XE#2316]) -> [DMESG-WARN][317] ([Intel XE#2955]) [316]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-bmg-4/igt@kms_flip@2x-flip-vs-suspend-interruptible.html [317]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-bmg-3/igt@kms_flip@2x-flip-vs-suspend-interruptible.html * igt@kms_flip@2x-flip-vs-wf_vblank-interruptible: - shard-dg2-set2: [SKIP][318] ([Intel XE#310]) -> [DMESG-WARN][319] ([Intel XE#4330]) [318]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-464/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html [319]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-dg2-466/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html * igt@kms_flip@flip-vs-suspend-interruptible: - shard-bmg: [INCOMPLETE][320] ([Intel XE#2049] / [Intel XE#2597]) -> [DMESG-WARN][321] ([Intel XE#2955]) [320]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-bmg-7/igt@kms_flip@flip-vs-suspend-interruptible.html [321]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-bmg-3/igt@kms_flip@flip-vs-suspend-interruptible.html - shard-dg2-set2: [INCOMPLETE][322] ([Intel XE#2049] / [Intel XE#2597]) -> [DMESG-WARN][323] ([Intel XE#2955]) [322]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-463/igt@kms_flip@flip-vs-suspend-interruptible.html [323]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-dg2-434/igt@kms_flip@flip-vs-suspend-interruptible.html * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-onoff: - shard-dg2-set2: [SKIP][324] ([Intel XE#656]) -> [SKIP][325] ([Intel XE#651]) +8 other tests skip [324]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-464/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-onoff.html [325]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-dg2-434/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt: - shard-bmg: [SKIP][326] ([Intel XE#2311]) -> [SKIP][327] ([Intel XE#2312]) +6 other tests skip [326]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-bmg-1/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html [327]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-bmg-6/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt: - shard-bmg: [SKIP][328] ([Intel XE#2312]) -> [SKIP][329] ([Intel XE#4141]) +5 other tests skip [328]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html [329]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-fullscreen: - shard-bmg: [SKIP][330] ([Intel XE#4141]) -> [SKIP][331] ([Intel XE#2312]) +4 other tests skip [330]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-fullscreen.html [331]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-bmg-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-move: - shard-bmg: [SKIP][332] ([Intel XE#2312]) -> [SKIP][333] ([Intel XE#2311]) +7 other tests skip [332]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-move.html [333]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-mmap-wc: - shard-dg2-set2: [SKIP][334] ([Intel XE#651]) -> [SKIP][335] ([Intel XE#656]) +10 other tests skip [334]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-mmap-wc.html [335]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-pgflip-blt: - shard-bmg: [SKIP][336] ([Intel XE#2313]) -> [SKIP][337] ([Intel XE#2312]) +8 other tests skip [336]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-pgflip-blt.html [337]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-render: - shard-dg2-set2: [SKIP][338] ([Intel XE#653]) -> [SKIP][339] ([Intel XE#656]) +8 other tests skip [338]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-render.html [339]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt: - shard-dg2-set2: [SKIP][340] ([Intel XE#656]) -> [SKIP][341] ([Intel XE#653]) +9 other tests skip [340]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-dg2-464/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt.html [341]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-dg2-466/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-bmg: [SKIP][342] ([Intel XE#2312]) -> [SKIP][343] ([Intel XE#2313]) +11 other tests skip [342]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html [343]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt@xe_live_ktest@xe_eudebug: - shard-bmg: [SKIP][344] ([Intel XE#4322]) -> [SKIP][345] ([Intel XE#2833]) [344]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8245/shard-bmg-2/igt@xe_live_ktest@xe_eudebug.html [345]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/shard-bmg-5/igt@xe_live_ktest@xe_eudebug.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [Intel XE#1061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1061 [Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091 [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#1129]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1129 [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#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280 [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#1430]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1430 [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#1470]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1470 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499 [Intel XE#1500]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1500 [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503 [Intel XE#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508 [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#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745 [Intel XE#2029]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2029 [Intel XE#2042]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2042 [Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049 [Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168 [Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244 [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252 [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284 [Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291 [Intel XE#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#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325 [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327 [Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330 [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341 [Intel XE#2360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2360 [Intel XE#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370 [Intel XE#2372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2372 [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#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390 [Intel XE#2392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2392 [Intel XE#2414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2414 [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426 [Intel XE#2427]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2427 [Intel XE#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486 [Intel XE#2493]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2493 [Intel XE#2499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2499 [Intel XE#2505]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2505 [Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541 [Intel XE#2550]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2550 [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597 [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#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763 [Intel XE#2833]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2833 [Intel XE#2849]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2849 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#2853]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2853 [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288 [Intel XE#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882 [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#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927 [Intel XE#2932]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2932 [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#3012]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012 [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#3075]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3075 [Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308 [Intel XE#3084]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3084 [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#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141 [Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149 [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#3279]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3279 [Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321 [Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374 [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414 [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432 [Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346 [Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544 [Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573 [Intel XE#3592]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3592 [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#3767]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3767 [Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378 [Intel XE#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862 [Intel XE#3889]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3889 [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904 [Intel XE#4091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4091 [Intel XE#4130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130 [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141 [Intel XE#4156]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4156 [Intel XE#4210]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4210 [Intel XE#4212]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4212 [Intel XE#4268]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4268 [Intel XE#4294]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4294 [Intel XE#4302]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4302 [Intel XE#4322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4322 [Intel XE#4330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4330 [Intel XE#4331]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4331 [Intel XE#4351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4351 [Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354 [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#586]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/586 [Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610 [Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616 [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#701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/701 [Intel XE#703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/703 [Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718 [Intel XE#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#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877 [Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886 [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 Build changes ------------- * IGT: IGT_8245 -> IGTPW_12649 * Linux: xe-2695-8554d5b7b4fded481a85ab11d75eeb97443450e2 -> xe-2698-a22ac320a08377d760e73fa530c27782f0b68b6d IGTPW_12649: 271236dac27a9991d20fdd105fd5a93d48901912 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8245: 822e95b2560133bc21aa3065f70d7148f23f87cf @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-2695-8554d5b7b4fded481a85ab11d75eeb97443450e2: 8554d5b7b4fded481a85ab11d75eeb97443450e2 xe-2698-a22ac320a08377d760e73fa530c27782f0b68b6d: a22ac320a08377d760e73fa530c27782f0b68b6d == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12649/index.html [-- Attachment #2: Type: text/html, Size: 174423 bytes --] ^ permalink raw reply [flat|nested] 11+ messages in thread
end of thread, other threads:[~2025-02-24 15:43 UTC | newest] Thread overview: 11+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2025-02-21 15:53 [i-g-t v5 0/4] xe: Test scratch page under fault mode Oak Zeng 2025-02-21 15:53 ` [i-g-t v5 1/4] lib/xe: Fix a comment error Oak Zeng 2025-02-21 15:53 ` [i-g-t v5 2/4] lib/xe/xe_util: Introduce helper functions Oak Zeng 2025-02-24 7:38 ` Zbigniew Kempczyński 2025-02-24 15:43 ` Zeng, Oak 2025-02-21 15:53 ` [i-g-t v5 3/4] tests/intel/xe_vm: Exclude invalid_flags tests from LNL and BMG Oak Zeng 2025-02-21 15:53 ` [i-g-t v5 4/4] tests/intel/xe_exec_fault_mode: Test scratch page under fault mode Oak Zeng 2025-02-21 16:33 ` ✓ i915.CI.BAT: success for xe: Test scratch page under fault mode (rev4) Patchwork 2025-02-21 16:52 ` ✓ Xe.CI.BAT: " Patchwork 2025-02-21 18:14 ` ✗ i915.CI.Full: failure " Patchwork 2025-02-22 5:55 ` ✗ Xe.CI.Full: " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox