* [PATCH i-g-t 1/2] tests/amdgpu/amd_deadlock: add gfx user-queue clean-hang reset test
@ 2026-07-20 9:55 Jesse Zhang
2026-07-20 9:55 ` [PATCH i-g-t 2/2] tests/amdgpu/amd_deadlock: add gfx user-queue priv-fault " Jesse Zhang
` (4 more replies)
0 siblings, 5 replies; 6+ messages in thread
From: Jesse Zhang @ 2026-07-20 9:55 UTC (permalink / raw)
To: igt-dev
Cc: Vitaly Prosyak, Alex Deucher, Christian Koenig, Jesse Zhang,
Jesse Zhang
Submit a gfx user-queue job whose only packet is a WAIT_REG_MEM that never
completes (polls a resident BO for a value that never arrives). The queue
hangs with no fault, so the driver recovers it with a per-queue reset. Add
it as the amdgpu-deadlock-gfx-umq subtest, gated on AMDGPU_ENABLE_USERQTEST
and per-queue reset capability.
Signed-off-by: Jesse Zhang <jesse.zhang@amd.com>
---
lib/amdgpu/amd_deadlock_helpers.c | 91 +++++++++++++++++++++++++++++++
lib/amdgpu/amd_deadlock_helpers.h | 4 ++
tests/amdgpu/amd_deadlock.c | 9 +++
3 files changed, 104 insertions(+)
diff --git a/lib/amdgpu/amd_deadlock_helpers.c b/lib/amdgpu/amd_deadlock_helpers.c
index 06c577085..c679e60c7 100644
--- a/lib/amdgpu/amd_deadlock_helpers.c
+++ b/lib/amdgpu/amd_deadlock_helpers.c
@@ -412,6 +412,97 @@ bad_access_helper(amdgpu_device_handle device_handle, unsigned int cmd_error,
}
}
+/*
+ * Emit a WAIT_REG_MEM that waits forever: poll bo_mc (initialised to 0) for a
+ * value != 0. This is a valid packet that never completes, i.e. a clean hang
+ * with no page fault, so it can be recovered by a per-queue reset.
+ */
+static void gfx_ring_emit_wait_reg_mem_hang(struct amdgpu_ring_context *ring_context)
+{
+ uint32_t i = 0;
+
+ ring_context->pm4[i++] = PACKET3(PACKET3_WAIT_REG_MEM, 5);
+ ring_context->pm4[i++] = WAIT_REG_MEM_MEM_SPACE(1) | /* memory */
+ WAIT_REG_MEM_FUNCTION(4) | /* != */
+ WAIT_REG_MEM_ENGINE(0); /* me */
+ ring_context->pm4[i++] = ring_context->bo_mc & 0xfffffffc;
+ ring_context->pm4[i++] = (ring_context->bo_mc >> 32) & 0xffffffff;
+ ring_context->pm4[i++] = 0; /* reference value */
+ ring_context->pm4[i++] = 0xffffffff; /* and mask */
+ ring_context->pm4[i++] = 0x00000004; /* poll interval */
+ ring_context->pm4_dw = i;
+}
+
+/*
+ * Submit a single job that hangs the queue on a WAIT_REG_MEM (no fault) and
+ * let per-queue reset recover it. Uses the normal (synchronised) submit path
+ * so the CP actually runs the packet.
+ */
+void amdgpu_hang_ring_helper(amdgpu_device_handle device_handle, unsigned int ip_type,
+ struct pci_addr *pci, bool user_queue)
+{
+ const struct amdgpu_ip_block_version *ip_block;
+ const int write_length = 128;
+ const int pm4_dw = 256;
+ struct amdgpu_ring_context *ring_context;
+ int r = 0;
+
+ ip_block = get_ip_block(device_handle, ip_type);
+ ring_context = calloc(1, sizeof(*ring_context));
+ igt_assert(ring_context);
+
+ if (user_queue) {
+ ip_block->funcs->userq_create(device_handle, ring_context, ip_type);
+ } else {
+ r = amdgpu_cs_ctx_create(device_handle, &ring_context->context_handle);
+ igt_assert_eq(r, 0);
+ }
+
+ ring_context->write_length = write_length;
+ ring_context->pm4 = calloc(pm4_dw, sizeof(*ring_context->pm4));
+ ring_context->pm4_size = pm4_dw;
+ ring_context->res_cnt = 1;
+ ring_context->ring_id = 0;
+ ring_context->user_queue = user_queue;
+ igt_assert(ring_context->pm4);
+
+ r = amdgpu_bo_alloc_and_map_sync(device_handle,
+ ring_context->write_length * sizeof(uint32_t),
+ 4096, AMDGPU_GEM_DOMAIN_GTT,
+ AMDGPU_GEM_CREATE_CPU_GTT_USWC,
+ AMDGPU_VM_MTYPE_UC,
+ &ring_context->bo,
+ (void **)&ring_context->bo_cpu,
+ &ring_context->bo_mc,
+ &ring_context->va_handle,
+ ring_context->timeline_syncobj_handle,
+ ++ring_context->point, user_queue);
+ igt_assert_eq(r, 0);
+ if (user_queue) {
+ r = amdgpu_timeline_syncobj_wait(device_handle,
+ ring_context->timeline_syncobj_handle,
+ ring_context->point);
+ igt_assert_eq(r, 0);
+ }
+
+ /* the memory the queue polls stays 0, so the queue hangs */
+ memset((void *)ring_context->bo_cpu, 0, ring_context->write_length * sizeof(uint32_t));
+ ring_context->resources[0] = ring_context->bo;
+
+ gfx_ring_emit_wait_reg_mem_hang(ring_context);
+
+ amdgpu_test_exec_cs_helper(device_handle, ip_block->type, ring_context, 0);
+
+ amdgpu_bo_unmap_and_free(ring_context->bo, ring_context->va_handle, ring_context->bo_mc,
+ ring_context->write_length * sizeof(uint32_t));
+ if (user_queue) {
+ ip_block->funcs->userq_destroy(device_handle, ring_context, ip_type);
+ } else {
+ free(ring_context->pm4);
+ free(ring_context);
+ }
+}
+
#define MAX_DMABUF_COUNT 0x20000
#define MAX_DWORD_COUNT 256
diff --git a/lib/amdgpu/amd_deadlock_helpers.h b/lib/amdgpu/amd_deadlock_helpers.h
index c46ebb67b..accbf2e41 100644
--- a/lib/amdgpu/amd_deadlock_helpers.h
+++ b/lib/amdgpu/amd_deadlock_helpers.h
@@ -33,5 +33,9 @@ bad_access_ring_helper(amdgpu_device_handle device_handle, unsigned int cmd_erro
void
amdgpu_hang_sdma_ring_helper(amdgpu_device_handle device_handle, uint8_t hang_type, struct pci_addr *pci);
+
+void
+amdgpu_hang_ring_helper(amdgpu_device_handle device_handle, unsigned int ip_type,
+ struct pci_addr *pci, bool user_queue);
#endif
diff --git a/tests/amdgpu/amd_deadlock.c b/tests/amdgpu/amd_deadlock.c
index 5325c0ade..118948992 100644
--- a/tests/amdgpu/amd_deadlock.c
+++ b/tests/amdgpu/amd_deadlock.c
@@ -246,6 +246,15 @@ int igt_main()
amdgpu_wait_memory_helper(device, AMDGPU_HW_IP_DMA, &pci, true);
}
}
+
+ igt_describe("Test-per-queue-reset-of-a-cleanly-hung-gfx-user-queue");
+ igt_subtest_with_dynamic("amdgpu-deadlock-gfx-umq") {
+ if (enable_test && userq_arr_cap[AMD_IP_GFX] &&
+ is_reset_enable(AMD_IP_GFX, AMDGPU_RESET_TYPE_PER_QUEUE, &pci)) {
+ igt_dynamic_f("amdgpu-deadlock-gfx-umq")
+ amdgpu_hang_ring_helper(device, AMDGPU_HW_IP_GFX, &pci, true);
+ }
+ }
#endif
igt_fixture() {
--
2.49.0
^ permalink raw reply related [flat|nested] 6+ messages in thread* [PATCH i-g-t 2/2] tests/amdgpu/amd_deadlock: add gfx user-queue priv-fault reset test 2026-07-20 9:55 [PATCH i-g-t 1/2] tests/amdgpu/amd_deadlock: add gfx user-queue clean-hang reset test Jesse Zhang @ 2026-07-20 9:55 ` Jesse Zhang 2026-07-21 1:46 ` ✓ Xe.CI.BAT: success for series starting with [i-g-t,1/2] tests/amdgpu/amd_deadlock: add gfx user-queue clean-hang " Patchwork ` (3 subsequent siblings) 4 siblings, 0 replies; 6+ messages in thread From: Jesse Zhang @ 2026-07-20 9:55 UTC (permalink / raw) To: igt-dev Cc: Vitaly Prosyak, Alex Deucher, Christian Koenig, Jesse Zhang, Jesse Zhang Submit a gfx user-queue job that raises a priv-fault interrupt and then hangs cleanly: a minimal invalid opcode (0xf2) makes the CP raise CP_BAD_OPCODE_ERROR without running off into memory, and a trailing WAIT_REG_MEM that never completes keeps the queue hung. The driver recovers it with a per-queue reset instead of a full GPU reset. The job is submitted on the synchronised path so it blocks until the reset completes the fence. Add it as the amdgpu-gfx-priv-fault-umq subtest, gated on AMDGPU_ENABLE_USERQTEST and per-queue reset capability. Signed-off-by: Jesse Zhang <jesse.zhang@amd.com> --- lib/amdgpu/amd_deadlock_helpers.c | 108 ++++++++++++++++++++++++++++++ lib/amdgpu/amd_deadlock_helpers.h | 4 ++ tests/amdgpu/amd_deadlock.c | 9 +++ 3 files changed, 121 insertions(+) diff --git a/lib/amdgpu/amd_deadlock_helpers.c b/lib/amdgpu/amd_deadlock_helpers.c index c679e60c7..402972b5c 100644 --- a/lib/amdgpu/amd_deadlock_helpers.c +++ b/lib/amdgpu/amd_deadlock_helpers.c @@ -503,6 +503,114 @@ void amdgpu_hang_ring_helper(amdgpu_device_handle device_handle, unsigned int ip } } +/* + * Build a packet stream that raises a gfx priv-fault interrupt and then hangs + * the queue cleanly: a minimal invalid opcode (CP_BAD_OPCODE_ERROR) followed by + * a WAIT_REG_MEM that never completes. The bad opcode alone would let the CP + * run to completion (self-recovering), and a bad opcode with a mis-parseable + * body drags the CP into a page fault (only recoverable by a full GPU reset). + * Combining a minimal bad opcode with a clean wait gives the wanted case: the + * priv-fault interrupt fires, the queue hangs without faulting the CP, and the + * driver recovers it with a per-queue reset. + */ +static void gfx_ring_emit_priv_fault_hang(struct amdgpu_ring_context *ring_context) +{ + uint32_t i = 0; + + /* Invalid opcode: the CP fails to decode it and raises a + * CP_BAD_OPCODE_ERROR interrupt (a gfx priv-fault). Keep it minimal so + * the CP does not run off into memory. + */ + ring_context->pm4[i++] = PACKET3(0xf2, 0); + ring_context->pm4[i++] = 0x0; + + /* Then wait forever on a resident BO (initialised to 0, polled for + * != 0). The queue hangs cleanly with no page fault, so the driver can + * recover it with a per-queue reset instead of a full GPU reset. + */ + ring_context->pm4[i++] = PACKET3(PACKET3_WAIT_REG_MEM, 5); + ring_context->pm4[i++] = WAIT_REG_MEM_MEM_SPACE(1) | + WAIT_REG_MEM_FUNCTION(4) | + WAIT_REG_MEM_ENGINE(0); + ring_context->pm4[i++] = ring_context->bo_mc & 0xfffffffc; + ring_context->pm4[i++] = (ring_context->bo_mc >> 32) & 0xffffffff; + ring_context->pm4[i++] = 0; /* reference value */ + ring_context->pm4[i++] = 0xffffffff; /* and mask */ + ring_context->pm4[i++] = 0x00000004; /* poll interval */ + ring_context->pm4_dw = i; +} + +/* + * Fault a user queue with an invalid opcode followed by an endless wait: the + * bad opcode raises the gfx priv-fault interrupt and the wait hangs the queue + * cleanly, so the driver recovers it with a per-queue reset (no full GPU + * reset). The faulting submit uses the normal (synchronised) path so it blocks + * until the per-queue reset completes the fence. + */ +void amdgpu_priv_fault_ring_helper(amdgpu_device_handle device_handle, unsigned int ip_type, + struct pci_addr *pci, bool user_queue) +{ + const struct amdgpu_ip_block_version *ip_block; + const int write_length = 128; + const int pm4_dw = 256; + struct amdgpu_ring_context *ring_context; + int r = 0; + + ip_block = get_ip_block(device_handle, ip_type); + ring_context = calloc(1, sizeof(*ring_context)); + igt_assert(ring_context); + + if (user_queue) { + ip_block->funcs->userq_create(device_handle, ring_context, ip_type); + } else { + r = amdgpu_cs_ctx_create(device_handle, &ring_context->context_handle); + igt_assert_eq(r, 0); + } + + ring_context->write_length = write_length; + ring_context->pm4 = calloc(pm4_dw, sizeof(*ring_context->pm4)); + ring_context->pm4_size = pm4_dw; + ring_context->res_cnt = 1; + ring_context->ring_id = 0; + ring_context->user_queue = user_queue; + igt_assert(ring_context->pm4); + + r = amdgpu_bo_alloc_and_map_sync(device_handle, + ring_context->write_length * sizeof(uint32_t), + 4096, AMDGPU_GEM_DOMAIN_GTT, + AMDGPU_GEM_CREATE_CPU_GTT_USWC, + AMDGPU_VM_MTYPE_UC, + &ring_context->bo, + (void **)&ring_context->bo_cpu, + &ring_context->bo_mc, + &ring_context->va_handle, + ring_context->timeline_syncobj_handle, + ++ring_context->point, user_queue); + igt_assert_eq(r, 0); + if (user_queue) { + r = amdgpu_timeline_syncobj_wait(device_handle, + ring_context->timeline_syncobj_handle, + ring_context->point); + igt_assert_eq(r, 0); + } + + memset((void *)ring_context->bo_cpu, 0, ring_context->write_length * sizeof(uint32_t)); + ring_context->resources[0] = ring_context->bo; + + gfx_ring_emit_priv_fault_hang(ring_context); + + amdgpu_test_exec_cs_helper(device_handle, ip_block->type, ring_context, 0); + + amdgpu_bo_unmap_and_free(ring_context->bo, ring_context->va_handle, ring_context->bo_mc, + ring_context->write_length * sizeof(uint32_t)); + if (user_queue) { + ip_block->funcs->userq_destroy(device_handle, ring_context, ip_type); + } else { + free(ring_context->pm4); + free(ring_context); + } +} + #define MAX_DMABUF_COUNT 0x20000 #define MAX_DWORD_COUNT 256 diff --git a/lib/amdgpu/amd_deadlock_helpers.h b/lib/amdgpu/amd_deadlock_helpers.h index accbf2e41..6e69e62cb 100644 --- a/lib/amdgpu/amd_deadlock_helpers.h +++ b/lib/amdgpu/amd_deadlock_helpers.h @@ -37,5 +37,9 @@ amdgpu_hang_sdma_ring_helper(amdgpu_device_handle device_handle, uint8_t hang_ty void amdgpu_hang_ring_helper(amdgpu_device_handle device_handle, unsigned int ip_type, struct pci_addr *pci, bool user_queue); + +void +amdgpu_priv_fault_ring_helper(amdgpu_device_handle device_handle, unsigned int ip_type, + struct pci_addr *pci, bool user_queue); #endif diff --git a/tests/amdgpu/amd_deadlock.c b/tests/amdgpu/amd_deadlock.c index 118948992..0d0e4ba6e 100644 --- a/tests/amdgpu/amd_deadlock.c +++ b/tests/amdgpu/amd_deadlock.c @@ -255,6 +255,15 @@ int igt_main() amdgpu_hang_ring_helper(device, AMDGPU_HW_IP_GFX, &pci, true); } } + + igt_describe("Test-per-queue-reset-recovery-of-a-gfx-user-queue-priv-fault"); + igt_subtest_with_dynamic("amdgpu-gfx-priv-fault-umq") { + if (enable_test && userq_arr_cap[AMD_IP_GFX] && + is_reset_enable(AMD_IP_GFX, AMDGPU_RESET_TYPE_PER_QUEUE, &pci)) { + igt_dynamic_f("amdgpu-gfx-priv-fault-umq") + amdgpu_priv_fault_ring_helper(device, AMDGPU_HW_IP_GFX, &pci, true); + } + } #endif igt_fixture() { -- 2.49.0 ^ permalink raw reply related [flat|nested] 6+ messages in thread
* ✓ Xe.CI.BAT: success for series starting with [i-g-t,1/2] tests/amdgpu/amd_deadlock: add gfx user-queue clean-hang reset test 2026-07-20 9:55 [PATCH i-g-t 1/2] tests/amdgpu/amd_deadlock: add gfx user-queue clean-hang reset test Jesse Zhang 2026-07-20 9:55 ` [PATCH i-g-t 2/2] tests/amdgpu/amd_deadlock: add gfx user-queue priv-fault " Jesse Zhang @ 2026-07-21 1:46 ` Patchwork 2026-07-21 2:03 ` ✓ i915.CI.BAT: " Patchwork ` (2 subsequent siblings) 4 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2026-07-21 1:46 UTC (permalink / raw) To: Jesse Zhang; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 921 bytes --] == Series Details == Series: series starting with [i-g-t,1/2] tests/amdgpu/amd_deadlock: add gfx user-queue clean-hang reset test URL : https://patchwork.freedesktop.org/series/170728/ State : success == Summary == CI Bug Log - changes from XEIGT_9015_BAT -> XEIGTPW_15563_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (13 -> 13) ------------------------------ No changes in participating hosts Changes ------- No changes found Build changes ------------- * IGT: IGT_9015 -> IGTPW_15563 IGTPW_15563: 15563 IGT_9015: c656c9ccd7e45834f4ca191dbf729e7ba4676f6b @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-5443-b521b0cb70bcb6e524b6c2ee6f86f5c6f0803405: b521b0cb70bcb6e524b6c2ee6f86f5c6f0803405 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15563/index.html [-- Attachment #2: Type: text/html, Size: 1466 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
* ✓ i915.CI.BAT: success for series starting with [i-g-t,1/2] tests/amdgpu/amd_deadlock: add gfx user-queue clean-hang reset test 2026-07-20 9:55 [PATCH i-g-t 1/2] tests/amdgpu/amd_deadlock: add gfx user-queue clean-hang reset test Jesse Zhang 2026-07-20 9:55 ` [PATCH i-g-t 2/2] tests/amdgpu/amd_deadlock: add gfx user-queue priv-fault " Jesse Zhang 2026-07-21 1:46 ` ✓ Xe.CI.BAT: success for series starting with [i-g-t,1/2] tests/amdgpu/amd_deadlock: add gfx user-queue clean-hang " Patchwork @ 2026-07-21 2:03 ` Patchwork 2026-07-21 9:47 ` ✗ Xe.CI.FULL: failure " Patchwork 2026-07-21 14:29 ` ✗ i915.CI.Full: " Patchwork 4 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2026-07-21 2:03 UTC (permalink / raw) To: Jesse Zhang; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 4243 bytes --] == Series Details == Series: series starting with [i-g-t,1/2] tests/amdgpu/amd_deadlock: add gfx user-queue clean-hang reset test URL : https://patchwork.freedesktop.org/series/170728/ State : success == Summary == CI Bug Log - changes from IGT_9015 -> IGTPW_15563 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/index.html Participating hosts (41 -> 40) ------------------------------ Additional (1): bat-adls-6 Missing (2): bat-dg2-13 fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_15563 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_lmem_swapping@parallel-random-engines: - bat-adls-6: NOTRUN -> [SKIP][1] ([i915#4613]) +3 other tests skip [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/bat-adls-6/igt@gem_lmem_swapping@parallel-random-engines.html * igt@gem_tiled_pread_basic@basic: - bat-adls-6: NOTRUN -> [SKIP][2] ([i915#15656]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/bat-adls-6/igt@gem_tiled_pread_basic@basic.html * igt@intel_hwmon@hwmon-read: - bat-adls-6: NOTRUN -> [SKIP][3] ([i915#7707]) +1 other test skip [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/bat-adls-6/igt@intel_hwmon@hwmon-read.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - bat-adls-6: NOTRUN -> [SKIP][4] ([i915#4103]) +1 other test skip [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/bat-adls-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_dsc@dsc-basic: - bat-adls-6: NOTRUN -> [SKIP][5] ([i915#16361]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/bat-adls-6/igt@kms_dsc@dsc-basic.html * igt@kms_force_connector_basic@force-load-detect: - bat-adls-6: NOTRUN -> [SKIP][6] [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/bat-adls-6/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_pm_backlight@basic-brightness: - bat-adls-6: NOTRUN -> [SKIP][7] ([i915#5354]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/bat-adls-6/igt@kms_pm_backlight@basic-brightness.html * igt@kms_psr@psr-primary-mmap-gtt: - bat-adls-6: NOTRUN -> [SKIP][8] ([i915#1072] / [i915#9732]) +3 other tests skip [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/bat-adls-6/igt@kms_psr@psr-primary-mmap-gtt.html * igt@kms_setmode@basic-clone-single-crtc: - bat-adls-6: NOTRUN -> [SKIP][9] ([i915#3555]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/bat-adls-6/igt@kms_setmode@basic-clone-single-crtc.html * igt@prime_vgem@basic-fence-read: - bat-adls-6: NOTRUN -> [SKIP][10] ([i915#3291]) +2 other tests skip [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/bat-adls-6/igt@prime_vgem@basic-fence-read.html [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#15656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15656 [i915#16361]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16361 [i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354 [i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707 [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_9015 -> IGTPW_15563 CI-20190529: 20190529 CI_DRM_18861: b521b0cb70bcb6e524b6c2ee6f86f5c6f0803405 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_15563: 15563 IGT_9015: c656c9ccd7e45834f4ca191dbf729e7ba4676f6b @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/index.html [-- Attachment #2: Type: text/html, Size: 5092 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
* ✗ Xe.CI.FULL: failure for series starting with [i-g-t,1/2] tests/amdgpu/amd_deadlock: add gfx user-queue clean-hang reset test 2026-07-20 9:55 [PATCH i-g-t 1/2] tests/amdgpu/amd_deadlock: add gfx user-queue clean-hang reset test Jesse Zhang ` (2 preceding siblings ...) 2026-07-21 2:03 ` ✓ i915.CI.BAT: " Patchwork @ 2026-07-21 9:47 ` Patchwork 2026-07-21 14:29 ` ✗ i915.CI.Full: " Patchwork 4 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2026-07-21 9:47 UTC (permalink / raw) To: Jesse Zhang; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 31915 bytes --] == Series Details == Series: series starting with [i-g-t,1/2] tests/amdgpu/amd_deadlock: add gfx user-queue clean-hang reset test URL : https://patchwork.freedesktop.org/series/170728/ State : failure == Summary == CI Bug Log - changes from XEIGT_9015_FULL -> XEIGTPW_15563_FULL ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_15563_FULL absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_15563_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 (2 -> 2) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_15563_FULL: ### IGT changes ### #### Possible regressions #### * igt@xe_pmu@engine-activity-accuracy-90@engine-drm_xe_engine_class_video_enhance0: - shard-bmg: [PASS][1] -> [INCOMPLETE][2] +1 other test incomplete [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9015/shard-bmg-8/igt@xe_pmu@engine-activity-accuracy-90@engine-drm_xe_engine_class_video_enhance0.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15563/shard-bmg-6/igt@xe_pmu@engine-activity-accuracy-90@engine-drm_xe_engine_class_video_enhance0.html Known issues ------------ Here are the changes found in XEIGTPW_15563_FULL that come from known issues: ### IGT changes ### #### Issues hit #### * igt@core_hotunplug@hotrebind: - shard-lnl: [PASS][3] -> [ABORT][4] ([Intel XE#8007]) [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9015/shard-lnl-6/igt@core_hotunplug@hotrebind.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15563/shard-lnl-7/igt@core_hotunplug@hotrebind.html * igt@core_hotunplug@unplug-rescan: - shard-bmg: [PASS][5] -> [ABORT][6] ([Intel XE#8007]) +1 other test abort [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9015/shard-bmg-4/igt@core_hotunplug@unplug-rescan.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15563/shard-bmg-5/igt@core_hotunplug@unplug-rescan.html * igt@kms_big_fb@4-tiled-16bpp-rotate-90: - shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#2327]) +1 other test skip [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15563/shard-bmg-10/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html * igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip: - shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#7059] / [Intel XE#7085]) [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15563/shard-bmg-6/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@y-tiled-addfb: - shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#2328] / [Intel XE#7367]) [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15563/shard-bmg-10/igt@kms_big_fb@y-tiled-addfb.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-270: - shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#1124]) +6 other tests skip [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15563/shard-bmg-3/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html * igt@kms_bw@connected-linear-tiling-4-displays-target-2160x1440p: - shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#7679]) +1 other test skip [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15563/shard-bmg-4/igt@kms_bw@connected-linear-tiling-4-displays-target-2160x1440p.html * igt@kms_bw@linear-tiling-1-displays-target-3840x2160p: - shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#367]) +2 other tests skip [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15563/shard-bmg-7/igt@kms_bw@linear-tiling-1-displays-target-3840x2160p.html * igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#2887]) +10 other tests skip [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15563/shard-bmg-9/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc.html * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-d-dp-2: - shard-bmg: [PASS][14] -> [INCOMPLETE][15] ([Intel XE#7084] / [Intel XE#8150]) [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9015/shard-bmg-5/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-d-dp-2.html [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15563/shard-bmg-6/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-d-dp-2.html * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#3432]) +1 other test skip [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15563/shard-bmg-8/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc.html * igt@kms_cdclk@plane-scaling: - shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#2724] / [Intel XE#7449]) +1 other test skip [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15563/shard-bmg-5/igt@kms_cdclk@plane-scaling.html * igt@kms_chamelium_color@ctm-negative: - shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#2325] / [Intel XE#7358]) +1 other test skip [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15563/shard-bmg-8/igt@kms_chamelium_color@ctm-negative.html * igt@kms_chamelium_color_pipeline@plane-lut1d-ctm3x4-lut1d: - shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#7358]) [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15563/shard-bmg-7/igt@kms_chamelium_color_pipeline@plane-lut1d-ctm3x4-lut1d.html * igt@kms_chamelium_edid@dp-edid-change-during-hibernate: - shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#2252]) +2 other tests skip [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15563/shard-bmg-5/igt@kms_chamelium_edid@dp-edid-change-during-hibernate.html * igt@kms_content_protection@atomic-dpms-hdcp14@pipe-a-dp-2: - shard-bmg: NOTRUN -> [FAIL][21] ([Intel XE#3304] / [Intel XE#7374]) +1 other test fail [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15563/shard-bmg-1/igt@kms_content_protection@atomic-dpms-hdcp14@pipe-a-dp-2.html * igt@kms_content_protection@dp-mst-type-0-suspend-resume: - shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#6974]) [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15563/shard-bmg-8/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html * igt@kms_content_protection@lic-type-0@pipe-a-dp-2: - shard-bmg: NOTRUN -> [FAIL][23] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) +1 other test fail [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15563/shard-bmg-2/igt@kms_content_protection@lic-type-0@pipe-a-dp-2.html * igt@kms_cursor_crc@cursor-onscreen-512x170: - shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#2321] / [Intel XE#7355]) +1 other test skip [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15563/shard-bmg-5/igt@kms_cursor_crc@cursor-onscreen-512x170.html * igt@kms_cursor_crc@cursor-random-32x32: - shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#2320]) +5 other tests skip [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15563/shard-bmg-2/igt@kms_cursor_crc@cursor-random-32x32.html * igt@kms_dsc@dsc-fractional-bpp: - shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#8265]) +3 other tests skip [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15563/shard-bmg-7/igt@kms_dsc@dsc-fractional-bpp.html * igt@kms_feature_discovery@psr2: - shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#2374] / [Intel XE#6128]) [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15563/shard-bmg-8/igt@kms_feature_discovery@psr2.html * igt@kms_flip@flip-vs-expired-vblank@c-edp1: - shard-lnl: [PASS][28] -> [FAIL][29] ([Intel XE#301] / [Intel XE#3149]) +1 other test fail [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9015/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15563/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling: - shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#7178] / [Intel XE#7351]) +4 other tests skip [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15563/shard-bmg-8/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt: - shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#2311]) +42 other tests skip [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15563/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt: - shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#4141]) +3 other tests skip [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15563/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt: - shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#2313]) +36 other tests skip [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15563/shard-bmg-7/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psr-abgr161616f-draw-blt: - shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#7061] / [Intel XE#7356]) +3 other tests skip [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15563/shard-bmg-1/igt@kms_frontbuffer_tracking@psr-abgr161616f-draw-blt.html * igt@kms_frontbuffer_tracking@psrhdr-argb161616f-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#7061]) +5 other tests skip [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15563/shard-bmg-8/igt@kms_frontbuffer_tracking@psrhdr-argb161616f-draw-mmap-wc.html * igt@kms_hdmi_inject@inject-audio: - shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#7308]) [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15563/shard-bmg-3/igt@kms_hdmi_inject@inject-audio.html * igt@kms_joiner@basic-force-ultra-joiner: - shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#6911] / [Intel XE#7466]) [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15563/shard-bmg-10/igt@kms_joiner@basic-force-ultra-joiner.html * igt@kms_panel_fitting@legacy: - shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#2486]) [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15563/shard-bmg-8/igt@kms_panel_fitting@legacy.html * igt@kms_pipe_stress@stress-xrgb8888-ytiled: - shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#4329] / [Intel XE#6912] / [Intel XE#7375]) [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15563/shard-bmg-8/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html * igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier: - shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#7283]) +1 other test skip [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15563/shard-bmg-5/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier.html * igt@kms_plane_scaling@intel-max-src-size: - shard-bmg: [PASS][41] -> [SKIP][42] ([Intel XE#2685] / [Intel XE#3307]) [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9015/shard-bmg-5/igt@kms_plane_scaling@intel-max-src-size.html [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15563/shard-bmg-10/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-a: - shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#2763] / [Intel XE#6886]) +4 other tests skip [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15563/shard-bmg-7/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-a.html * igt@kms_pm_backlight@fade: - shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#7376] / [Intel XE#7760] / [Intel XE#870]) +2 other tests skip [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15563/shard-bmg-8/igt@kms_pm_backlight@fade.html * igt@kms_pm_dc@dc6-psr: - shard-lnl: [PASS][45] -> [FAIL][46] ([Intel XE#8399]) [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9015/shard-lnl-2/igt@kms_pm_dc@dc6-psr.html [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15563/shard-lnl-5/igt@kms_pm_dc@dc6-psr.html * igt@kms_pm_rpm@dpms-lpsp: - shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#7383] / [Intel XE#836]) [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15563/shard-bmg-8/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf: - shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#1489]) +3 other tests skip [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15563/shard-bmg-9/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html * igt@kms_psr@psr-cursor-plane-onoff: - shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#2234] / [Intel XE#2850]) +12 other tests skip [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15563/shard-bmg-7/igt@kms_psr@psr-cursor-plane-onoff.html * igt@kms_scaling_modes@scaling-mode-center: - shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#2413]) [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15563/shard-bmg-3/igt@kms_scaling_modes@scaling-mode-center.html * igt@kms_sharpness_filter@filter-scaler-upscale: - shard-bmg: NOTRUN -> [SKIP][51] ([Intel XE#6503]) [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15563/shard-bmg-6/igt@kms_sharpness_filter@filter-scaler-upscale.html * igt@kms_vrr@flip-suspend: - shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#1499]) +2 other tests skip [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15563/shard-bmg-8/igt@kms_vrr@flip-suspend.html * igt@kms_vrr@flipline: - shard-lnl: [PASS][53] -> [FAIL][54] ([Intel XE#4227] / [Intel XE#7397]) +1 other test fail [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9015/shard-lnl-2/igt@kms_vrr@flipline.html [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15563/shard-lnl-6/igt@kms_vrr@flipline.html * igt@kms_vrr@lobf: - shard-bmg: NOTRUN -> [SKIP][55] ([Intel XE#2168] / [Intel XE#7444]) [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15563/shard-bmg-4/igt@kms_vrr@lobf.html * igt@xe_evict@evict-threads-small-multi-queue: - shard-bmg: NOTRUN -> [SKIP][56] ([Intel XE#8370]) +1 other test skip [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15563/shard-bmg-4/igt@xe_evict@evict-threads-small-multi-queue.html * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate-race: - shard-bmg: NOTRUN -> [SKIP][57] ([Intel XE#2322] / [Intel XE#7372]) +3 other tests skip [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15563/shard-bmg-8/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-userptr-invalidate-race.html * igt@xe_exec_fault_mode@twice-multi-queue-userptr-invalidate-race-imm: - shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#8374]) +7 other tests skip [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15563/shard-bmg-7/igt@xe_exec_fault_mode@twice-multi-queue-userptr-invalidate-race-imm.html * igt@xe_exec_multi_queue@two-queues-priority: - shard-bmg: NOTRUN -> [SKIP][59] ([Intel XE#8364]) +19 other tests skip [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15563/shard-bmg-4/igt@xe_exec_multi_queue@two-queues-priority.html * igt@xe_exec_reset@long-spin-sys-reuse-many-preempt-threads: - shard-bmg: [PASS][60] -> [FAIL][61] ([Intel XE#7850]) [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9015/shard-bmg-7/igt@xe_exec_reset@long-spin-sys-reuse-many-preempt-threads.html [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15563/shard-bmg-10/igt@xe_exec_reset@long-spin-sys-reuse-many-preempt-threads.html * igt@xe_exec_reset@multi-queue-close-execqueues: - shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#8369]) +1 other test skip [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15563/shard-bmg-2/igt@xe_exec_reset@multi-queue-close-execqueues.html * igt@xe_exec_threads@threads-multi-queue-fd-basic: - shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#8378]) +6 other tests skip [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15563/shard-bmg-7/igt@xe_exec_threads@threads-multi-queue-fd-basic.html * igt@xe_multigpu_svm@mgpu-latency-copy-basic: - shard-bmg: NOTRUN -> [SKIP][64] ([Intel XE#6964]) +2 other tests skip [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15563/shard-bmg-10/igt@xe_multigpu_svm@mgpu-latency-copy-basic.html * igt@xe_page_reclaim@many-vma-same-bo: - shard-bmg: NOTRUN -> [SKIP][65] ([Intel XE#7793]) +1 other test skip [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15563/shard-bmg-7/igt@xe_page_reclaim@many-vma-same-bo.html * igt@xe_pat@pat-sw-hw-compare: - shard-bmg: NOTRUN -> [FAIL][66] ([Intel XE#7695]) [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15563/shard-bmg-5/igt@xe_pat@pat-sw-hw-compare.html * igt@xe_peer2peer@read: - shard-bmg: NOTRUN -> [SKIP][67] ([Intel XE#2427] / [Intel XE#6953] / [Intel XE#7326] / [Intel XE#7353]) [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15563/shard-bmg-6/igt@xe_peer2peer@read.html * igt@xe_pm@d3cold-mmap-system: - shard-bmg: NOTRUN -> [SKIP][68] ([Intel XE#2284] / [Intel XE#7370]) +1 other test skip [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15563/shard-bmg-2/igt@xe_pm@d3cold-mmap-system.html * igt@xe_pmu@engine-activity-accuracy-50: - shard-bmg: [PASS][69] -> [FAIL][70] ([Intel XE#8555]) +6 other tests fail [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9015/shard-bmg-9/igt@xe_pmu@engine-activity-accuracy-50.html [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15563/shard-bmg-9/igt@xe_pmu@engine-activity-accuracy-50.html * igt@xe_pxp@pxp-termination-key-update-post-rpm: - shard-bmg: NOTRUN -> [SKIP][71] ([Intel XE#4733] / [Intel XE#7417]) [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15563/shard-bmg-4/igt@xe_pxp@pxp-termination-key-update-post-rpm.html * igt@xe_query@multigpu-query-topology: - shard-bmg: NOTRUN -> [SKIP][72] ([Intel XE#944]) [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15563/shard-bmg-7/igt@xe_query@multigpu-query-topology.html * igt@xe_sriov_flr@flr-twice: - shard-bmg: NOTRUN -> [FAIL][73] ([Intel XE#6569]) [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15563/shard-bmg-10/igt@xe_sriov_flr@flr-twice.html * igt@xe_sriov_vram@vf-access-after-resize-up: - shard-bmg: [PASS][74] -> [FAIL][75] ([Intel XE#7992]) +1 other test fail [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9015/shard-bmg-5/igt@xe_sriov_vram@vf-access-after-resize-up.html [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15563/shard-bmg-10/igt@xe_sriov_vram@vf-access-after-resize-up.html * igt@xe_wedged@basic-wedged: - shard-bmg: NOTRUN -> [ABORT][76] ([Intel XE#8591]) [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15563/shard-bmg-3/igt@xe_wedged@basic-wedged.html #### Possible fixes #### * igt@kms_atomic_transition@plane-all-transition@pipe-a-hdmi-a-3: - shard-bmg: [INCOMPLETE][77] ([Intel XE#6819] / [Intel XE#8174]) -> [PASS][78] +1 other test pass [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9015/shard-bmg-3/igt@kms_atomic_transition@plane-all-transition@pipe-a-hdmi-a-3.html [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15563/shard-bmg-8/igt@kms_atomic_transition@plane-all-transition@pipe-a-hdmi-a-3.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1: - shard-lnl: [FAIL][79] ([Intel XE#301]) -> [PASS][80] +1 other test pass [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9015/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15563/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1: - shard-lnl: [FAIL][81] ([Intel XE#301] / [Intel XE#3149]) -> [PASS][82] +1 other test pass [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9015/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1.html [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15563/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1.html * igt@kms_pm_dc@dc5-psr: - shard-lnl: [FAIL][83] ([Intel XE#8399]) -> [PASS][84] [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9015/shard-lnl-6/igt@kms_pm_dc@dc5-psr.html [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15563/shard-lnl-4/igt@kms_pm_dc@dc5-psr.html * igt@kms_vrr@flip-basic-fastset: - shard-lnl: [FAIL][85] ([Intel XE#4227] / [Intel XE#7397]) -> [PASS][86] +1 other test pass [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9015/shard-lnl-7/igt@kms_vrr@flip-basic-fastset.html [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15563/shard-lnl-3/igt@kms_vrr@flip-basic-fastset.html * igt@xe_fault_injection@inject-fault-probe-function-guc_wait_ucode: - shard-bmg: [ABORT][87] -> [PASS][88] [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9015/shard-bmg-6/igt@xe_fault_injection@inject-fault-probe-function-guc_wait_ucode.html [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15563/shard-bmg-6/igt@xe_fault_injection@inject-fault-probe-function-guc_wait_ucode.html * igt@xe_sriov_scheduling@equal-throughput-low-priority: - shard-bmg: [FAIL][89] ([Intel XE#7992]) -> [PASS][90] +1 other test pass [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9015/shard-bmg-8/igt@xe_sriov_scheduling@equal-throughput-low-priority.html [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15563/shard-bmg-7/igt@xe_sriov_scheduling@equal-throughput-low-priority.html * igt@xe_sriov_scheduling@equal-throughput-low-priority@numvfs-random-gt1-vcs0: - shard-bmg: [FAIL][91] ([Intel XE#8526]) -> [PASS][92] [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9015/shard-bmg-8/igt@xe_sriov_scheduling@equal-throughput-low-priority@numvfs-random-gt1-vcs0.html [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15563/shard-bmg-7/igt@xe_sriov_scheduling@equal-throughput-low-priority@numvfs-random-gt1-vcs0.html * igt@xe_wedged@basic-wedged-read: - shard-bmg: [ABORT][93] ([Intel XE#8007]) -> [PASS][94] [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9015/shard-bmg-1/igt@xe_wedged@basic-wedged-read.html [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15563/shard-bmg-3/igt@xe_wedged@basic-wedged-read.html #### Warnings #### * igt@kms_hdr@brightness-with-hdr: - shard-bmg: [SKIP][95] ([Intel XE#3374] / [Intel XE#3544]) -> [SKIP][96] ([Intel XE#3544]) [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9015/shard-bmg-6/igt@kms_hdr@brightness-with-hdr.html [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15563/shard-bmg-10/igt@kms_hdr@brightness-with-hdr.html * igt@kms_tiled_display@basic-test-pattern: - shard-bmg: [SKIP][97] ([Intel XE#2426] / [Intel XE#5848]) -> [FAIL][98] ([Intel XE#1729] / [Intel XE#7424]) [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9015/shard-bmg-8/igt@kms_tiled_display@basic-test-pattern.html [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15563/shard-bmg-4/igt@kms_tiled_display@basic-test-pattern.html [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178 [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439 [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#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729 [Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [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#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313 [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#2328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328 [Intel XE#2374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374 [Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413 [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426 [Intel XE#2427]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2427 [Intel XE#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486 [Intel XE#2685]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2685 [Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724 [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [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#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304 [Intel XE#3307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3307 [Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374 [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432 [Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544 [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367 [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141 [Intel XE#4227]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4227 [Intel XE#4329]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4329 [Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733 [Intel XE#5848]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5848 [Intel XE#6128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6128 [Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503 [Intel XE#6569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6569 [Intel XE#6819]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6819 [Intel XE#6886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886 [Intel XE#6911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6911 [Intel XE#6912]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6912 [Intel XE#6953]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6953 [Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964 [Intel XE#6974]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6974 [Intel XE#7059]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7059 [Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061 [Intel XE#7084]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7084 [Intel XE#7085]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7085 [Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178 [Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283 [Intel XE#7308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7308 [Intel XE#7326]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7326 [Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351 [Intel XE#7353]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7353 [Intel XE#7355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7355 [Intel XE#7356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7356 [Intel XE#7358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7358 [Intel XE#7367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7367 [Intel XE#7370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7370 [Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372 [Intel XE#7374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7374 [Intel XE#7375]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7375 [Intel XE#7376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7376 [Intel XE#7383]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7383 [Intel XE#7397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7397 [Intel XE#7417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7417 [Intel XE#7424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7424 [Intel XE#7444]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7444 [Intel XE#7449]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7449 [Intel XE#7466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7466 [Intel XE#7679]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7679 [Intel XE#7695]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7695 [Intel XE#7760]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7760 [Intel XE#7793]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7793 [Intel XE#7850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7850 [Intel XE#7992]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7992 [Intel XE#8007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8007 [Intel XE#8150]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8150 [Intel XE#8174]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8174 [Intel XE#8265]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8265 [Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836 [Intel XE#8364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8364 [Intel XE#8369]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8369 [Intel XE#8370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8370 [Intel XE#8374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8374 [Intel XE#8378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8378 [Intel XE#8399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8399 [Intel XE#8526]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8526 [Intel XE#8555]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8555 [Intel XE#8591]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8591 [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 Build changes ------------- * IGT: IGT_9015 -> IGTPW_15563 IGTPW_15563: 15563 IGT_9015: c656c9ccd7e45834f4ca191dbf729e7ba4676f6b @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-5443-b521b0cb70bcb6e524b6c2ee6f86f5c6f0803405: b521b0cb70bcb6e524b6c2ee6f86f5c6f0803405 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15563/index.html [-- Attachment #2: Type: text/html, Size: 34951 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
* ✗ i915.CI.Full: failure for series starting with [i-g-t,1/2] tests/amdgpu/amd_deadlock: add gfx user-queue clean-hang reset test 2026-07-20 9:55 [PATCH i-g-t 1/2] tests/amdgpu/amd_deadlock: add gfx user-queue clean-hang reset test Jesse Zhang ` (3 preceding siblings ...) 2026-07-21 9:47 ` ✗ Xe.CI.FULL: failure " Patchwork @ 2026-07-21 14:29 ` Patchwork 4 siblings, 0 replies; 6+ messages in thread From: Patchwork @ 2026-07-21 14:29 UTC (permalink / raw) To: Jesse Zhang; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 157391 bytes --] == Series Details == Series: series starting with [i-g-t,1/2] tests/amdgpu/amd_deadlock: add gfx user-queue clean-hang reset test URL : https://patchwork.freedesktop.org/series/170728/ State : failure == Summary == CI Bug Log - changes from IGT_9015_full -> IGTPW_15563_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_15563_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_15563_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_15563/index.html Participating hosts (10 -> 10) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_15563_full: ### IGT changes ### #### Possible regressions #### * igt@kms_pipe_stress@stress-xrgb8888-untiled: - shard-tglu: [PASS][1] -> [DMESG-WARN][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-tglu-7/igt@kms_pipe_stress@stress-xrgb8888-untiled.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-tglu-2/igt@kms_pipe_stress@stress-xrgb8888-untiled.html * igt@perf_pmu@busy-start@rcs0: - shard-rkl: NOTRUN -> [FAIL][3] +1 other test fail [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-2/igt@perf_pmu@busy-start@rcs0.html New tests --------- New tests have been introduced between IGT_9015_full and IGTPW_15563_full: ### New IGT tests (5) ### * igt@kms_async_flips@test-cursor@pipe-a-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.38] s * igt@kms_async_flips@test-cursor@pipe-b-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.10] s * igt@kms_async_flips@test-cursor@pipe-c-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.10] s * igt@kms_async_flips@test-cursor@pipe-d-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.11] s * igt@kms_setmode@basic@pipe-a-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [2.16] s Known issues ------------ Here are the changes found in IGTPW_15563_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-reloc-purge-cache: - shard-rkl: NOTRUN -> [SKIP][4] ([i915#8411]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-4/igt@api_intel_bb@blit-reloc-purge-cache.html * igt@gem_basic@multigpu-create-close: - shard-tglu: NOTRUN -> [SKIP][5] ([i915#7697]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-tglu-6/igt@gem_basic@multigpu-create-close.html * igt@gem_ccs@suspend-resume@tile64-compressed-compfmt0-lmem0-lmem0: - shard-dg2: NOTRUN -> [INCOMPLETE][6] ([i915#13356] / [i915#16348]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg2-3/igt@gem_ccs@suspend-resume@tile64-compressed-compfmt0-lmem0-lmem0.html * igt@gem_close_race@multigpu-basic-threads: - shard-dg2: NOTRUN -> [SKIP][7] ([i915#7697]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg2-7/igt@gem_close_race@multigpu-basic-threads.html * igt@gem_create@create-ext-cpu-access-sanity-check: - shard-tglu: NOTRUN -> [SKIP][8] ([i915#6335]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-tglu-4/igt@gem_create@create-ext-cpu-access-sanity-check.html - shard-mtlp: NOTRUN -> [SKIP][9] ([i915#6335]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-mtlp-2/igt@gem_create@create-ext-cpu-access-sanity-check.html - shard-rkl: NOTRUN -> [SKIP][10] ([i915#6335]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-3/igt@gem_create@create-ext-cpu-access-sanity-check.html * igt@gem_ctx_persistence@heartbeat-many: - shard-dg2: NOTRUN -> [SKIP][11] ([i915#8555]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg2-6/igt@gem_ctx_persistence@heartbeat-many.html - shard-dg1: NOTRUN -> [SKIP][12] ([i915#8555]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg1-14/igt@gem_ctx_persistence@heartbeat-many.html - shard-mtlp: NOTRUN -> [SKIP][13] ([i915#8555]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-mtlp-5/igt@gem_ctx_persistence@heartbeat-many.html * igt@gem_ctx_persistence@legacy-engines-mixed-process: - shard-snb: NOTRUN -> [SKIP][14] ([i915#1099]) +1 other test skip [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-snb1/igt@gem_ctx_persistence@legacy-engines-mixed-process.html * igt@gem_ctx_sseu@engines: - shard-dg2: NOTRUN -> [SKIP][15] ([i915#280]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg2-6/igt@gem_ctx_sseu@engines.html - shard-rkl: NOTRUN -> [SKIP][16] ([i915#280]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-5/igt@gem_ctx_sseu@engines.html - shard-dg1: NOTRUN -> [SKIP][17] ([i915#280]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg1-12/igt@gem_ctx_sseu@engines.html - shard-mtlp: NOTRUN -> [SKIP][18] ([i915#280]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-mtlp-1/igt@gem_ctx_sseu@engines.html * igt@gem_ctx_sseu@mmap-args: - shard-tglu: NOTRUN -> [SKIP][19] ([i915#280]) +2 other tests skip [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-tglu-7/igt@gem_ctx_sseu@mmap-args.html * igt@gem_eio@in-flight-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][20] ([i915#13390]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-glk4/igt@gem_eio@in-flight-suspend.html * igt@gem_exec_balancer@hog: - shard-dg2: NOTRUN -> [SKIP][21] ([i915#4812]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg2-5/igt@gem_exec_balancer@hog.html - shard-dg1: NOTRUN -> [SKIP][22] ([i915#4812]) +2 other tests skip [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg1-17/igt@gem_exec_balancer@hog.html * igt@gem_exec_balancer@parallel-bb-first: - shard-tglu-1: NOTRUN -> [SKIP][23] ([i915#4525]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-tglu-1/igt@gem_exec_balancer@parallel-bb-first.html * igt@gem_exec_balancer@parallel-keep-submit-fence: - shard-rkl: NOTRUN -> [SKIP][24] ([i915#4525]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-5/igt@gem_exec_balancer@parallel-keep-submit-fence.html - shard-tglu: NOTRUN -> [SKIP][25] ([i915#4525]) +2 other tests skip [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-tglu-9/igt@gem_exec_balancer@parallel-keep-submit-fence.html * igt@gem_exec_big@single: - shard-tglu: NOTRUN -> [FAIL][26] ([i915#15816]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-tglu-5/igt@gem_exec_big@single.html - shard-mtlp: NOTRUN -> [FAIL][27] ([i915#15871]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-mtlp-6/igt@gem_exec_big@single.html * igt@gem_exec_endless@dispatch@vcs0: - shard-dg2: NOTRUN -> [TIMEOUT][28] ([i915#3778] / [i915#7016]) +1 other test timeout [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg2-6/igt@gem_exec_endless@dispatch@vcs0.html * igt@gem_exec_fence@concurrent: - shard-mtlp: NOTRUN -> [SKIP][29] ([i915#4812]) +1 other test skip [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-mtlp-6/igt@gem_exec_fence@concurrent.html * igt@gem_exec_flush@basic-batch-kernel-default-cmd: - shard-dg2: NOTRUN -> [SKIP][30] ([i915#3539] / [i915#4852]) +1 other test skip [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg2-4/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html - shard-dg1: NOTRUN -> [SKIP][31] ([i915#3539] / [i915#4852]) +1 other test skip [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg1-14/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html - shard-mtlp: NOTRUN -> [SKIP][32] ([i915#3711]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-mtlp-5/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html * igt@gem_exec_flush@basic-uc-set-default: - shard-dg2: NOTRUN -> [SKIP][33] ([i915#3539]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg2-3/igt@gem_exec_flush@basic-uc-set-default.html - shard-dg1: NOTRUN -> [SKIP][34] ([i915#3539]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg1-19/igt@gem_exec_flush@basic-uc-set-default.html * igt@gem_exec_reloc@basic-cpu-read: - shard-dg2: NOTRUN -> [SKIP][35] ([i915#3281]) +5 other tests skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg2-3/igt@gem_exec_reloc@basic-cpu-read.html * igt@gem_exec_reloc@basic-softpin: - shard-rkl: NOTRUN -> [SKIP][36] ([i915#3281]) +8 other tests skip [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-5/igt@gem_exec_reloc@basic-softpin.html * igt@gem_exec_reloc@basic-wc-read-active: - shard-dg1: NOTRUN -> [SKIP][37] ([i915#3281]) +3 other tests skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg1-12/igt@gem_exec_reloc@basic-wc-read-active.html * igt@gem_exec_reloc@basic-write-wc: - shard-mtlp: NOTRUN -> [SKIP][38] ([i915#3281]) +3 other tests skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-mtlp-2/igt@gem_exec_reloc@basic-write-wc.html * igt@gem_exec_schedule@deep@rcs0: - shard-mtlp: NOTRUN -> [SKIP][39] ([i915#4537]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-mtlp-2/igt@gem_exec_schedule@deep@rcs0.html * igt@gem_exec_schedule@preempt-queue-chain: - shard-mtlp: NOTRUN -> [SKIP][40] ([i915#4537] / [i915#4812]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-mtlp-3/igt@gem_exec_schedule@preempt-queue-chain.html - shard-dg2: NOTRUN -> [SKIP][41] ([i915#4537] / [i915#4812]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg2-4/igt@gem_exec_schedule@preempt-queue-chain.html * igt@gem_exec_suspend@basic-s0: - shard-dg2: [PASS][42] -> [INCOMPLETE][43] ([i915#13356]) +1 other test incomplete [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-dg2-5/igt@gem_exec_suspend@basic-s0.html [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg2-5/igt@gem_exec_suspend@basic-s0.html * igt@gem_exec_suspend@basic-s3: - shard-rkl: [PASS][44] -> [INCOMPLETE][45] ([i915#13356]) +2 other tests incomplete [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-5/igt@gem_exec_suspend@basic-s3.html [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-7/igt@gem_exec_suspend@basic-s3.html * igt@gem_fence_thrash@bo-write-verify-x: - shard-dg1: NOTRUN -> [SKIP][46] ([i915#4860]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg1-17/igt@gem_fence_thrash@bo-write-verify-x.html - shard-mtlp: NOTRUN -> [SKIP][47] ([i915#4860]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-mtlp-1/igt@gem_fence_thrash@bo-write-verify-x.html * igt@gem_fenced_exec_thrash@no-spare-fences-interruptible: - shard-dg2: NOTRUN -> [SKIP][48] ([i915#4860]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg2-5/igt@gem_fenced_exec_thrash@no-spare-fences-interruptible.html * igt@gem_lmem_swapping@heavy-verify-random-ccs: - shard-rkl: NOTRUN -> [SKIP][49] ([i915#4613]) +2 other tests skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-7/igt@gem_lmem_swapping@heavy-verify-random-ccs.html * igt@gem_lmem_swapping@massive-random: - shard-glk: NOTRUN -> [SKIP][50] ([i915#4613]) +3 other tests skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-glk6/igt@gem_lmem_swapping@massive-random.html * igt@gem_lmem_swapping@parallel-random-engines: - shard-mtlp: NOTRUN -> [SKIP][51] ([i915#4613]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-mtlp-8/igt@gem_lmem_swapping@parallel-random-engines.html * igt@gem_lmem_swapping@parallel-random-verify-ccs: - shard-tglu: NOTRUN -> [SKIP][52] ([i915#4613]) +4 other tests skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-tglu-5/igt@gem_lmem_swapping@parallel-random-verify-ccs.html * igt@gem_lmem_swapping@verify-ccs: - shard-tglu-1: NOTRUN -> [SKIP][53] ([i915#4613]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-tglu-1/igt@gem_lmem_swapping@verify-ccs.html * igt@gem_madvise@dontneed-before-pwrite: - shard-dg1: NOTRUN -> [SKIP][54] ([i915#3282]) +1 other test skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg1-19/igt@gem_madvise@dontneed-before-pwrite.html - shard-mtlp: NOTRUN -> [SKIP][55] ([i915#3282]) +1 other test skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-mtlp-6/igt@gem_madvise@dontneed-before-pwrite.html * igt@gem_media_fill@media-fill: - shard-mtlp: NOTRUN -> [SKIP][56] ([i915#8289]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-mtlp-7/igt@gem_media_fill@media-fill.html - shard-dg2: NOTRUN -> [SKIP][57] ([i915#8289]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg2-8/igt@gem_media_fill@media-fill.html * igt@gem_mmap@bad-object: - shard-dg1: NOTRUN -> [SKIP][58] ([i915#4083]) +2 other tests skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg1-15/igt@gem_mmap@bad-object.html * igt@gem_mmap_gtt@cpuset-medium-copy-odd: - shard-mtlp: NOTRUN -> [SKIP][59] ([i915#4077]) +7 other tests skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-mtlp-5/igt@gem_mmap_gtt@cpuset-medium-copy-odd.html * igt@gem_mmap_gtt@cpuset-medium-copy-xy: - shard-dg2: NOTRUN -> [SKIP][60] ([i915#4077]) +9 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg2-6/igt@gem_mmap_gtt@cpuset-medium-copy-xy.html - shard-dg1: NOTRUN -> [SKIP][61] ([i915#4077]) +7 other tests skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg1-18/igt@gem_mmap_gtt@cpuset-medium-copy-xy.html * igt@gem_mmap_wc@bad-object: - shard-dg2: NOTRUN -> [SKIP][62] ([i915#4083]) +2 other tests skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg2-1/igt@gem_mmap_wc@bad-object.html * igt@gem_mmap_wc@write: - shard-mtlp: NOTRUN -> [SKIP][63] ([i915#4083]) +2 other tests skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-mtlp-6/igt@gem_mmap_wc@write.html * igt@gem_partial_pwrite_pread@reads: - shard-dg2: NOTRUN -> [SKIP][64] ([i915#3282]) +4 other tests skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg2-6/igt@gem_partial_pwrite_pread@reads.html * igt@gem_pread@exhaustion: - shard-glk: NOTRUN -> [WARN][65] ([i915#2658]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-glk4/igt@gem_pread@exhaustion.html * igt@gem_pwrite_snooped: - shard-rkl: NOTRUN -> [SKIP][66] ([i915#14544] / [i915#3282]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-6/igt@gem_pwrite_snooped.html * igt@gem_pxp@display-protected-crc: - shard-dg2: NOTRUN -> [SKIP][67] ([i915#4270]) +2 other tests skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg2-8/igt@gem_pxp@display-protected-crc.html - shard-dg1: NOTRUN -> [SKIP][68] ([i915#4270]) +2 other tests skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg1-16/igt@gem_pxp@display-protected-crc.html * igt@gem_pxp@hw-rejects-pxp-buffer: - shard-tglu-1: NOTRUN -> [SKIP][69] ([i915#13398]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-tglu-1/igt@gem_pxp@hw-rejects-pxp-buffer.html * igt@gem_pxp@verify-pxp-execution-after-suspend-resume: - shard-rkl: NOTRUN -> [ABORT][70] ([i915#15131]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-1/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html * igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][71] ([i915#5190] / [i915#8428]) +7 other tests skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg2-1/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs.html * igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-y-tiled: - shard-mtlp: NOTRUN -> [SKIP][72] ([i915#8428]) +2 other tests skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-mtlp-7/igt@gem_render_copy@y-tiled-mc-ccs-to-vebox-y-tiled.html * igt@gem_set_tiling_vs_gtt: - shard-dg1: NOTRUN -> [SKIP][73] ([i915#4079]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg1-18/igt@gem_set_tiling_vs_gtt.html - shard-mtlp: NOTRUN -> [SKIP][74] ([i915#4079]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-mtlp-8/igt@gem_set_tiling_vs_gtt.html - shard-dg2: NOTRUN -> [SKIP][75] ([i915#4079]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg2-6/igt@gem_set_tiling_vs_gtt.html * igt@gem_set_tiling_vs_pwrite: - shard-rkl: NOTRUN -> [SKIP][76] ([i915#3282]) +6 other tests skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-4/igt@gem_set_tiling_vs_pwrite.html * igt@gem_softpin@evict-snoop: - shard-dg1: NOTRUN -> [SKIP][77] ([i915#4885]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg1-17/igt@gem_softpin@evict-snoop.html - shard-mtlp: NOTRUN -> [SKIP][78] ([i915#4885]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-mtlp-3/igt@gem_softpin@evict-snoop.html - shard-dg2: NOTRUN -> [SKIP][79] ([i915#4885]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg2-8/igt@gem_softpin@evict-snoop.html * igt@gem_unfence_active_buffers: - shard-dg2: NOTRUN -> [SKIP][80] ([i915#4879]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg2-7/igt@gem_unfence_active_buffers.html * igt@gem_userptr_blits@access-control: - shard-tglu: NOTRUN -> [SKIP][81] ([i915#3297]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-tglu-2/igt@gem_userptr_blits@access-control.html * igt@gem_userptr_blits@dmabuf-sync: - shard-tglu: NOTRUN -> [SKIP][82] ([i915#3297] / [i915#3323]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-tglu-8/igt@gem_userptr_blits@dmabuf-sync.html * igt@gem_userptr_blits@forbidden-operations: - shard-rkl: NOTRUN -> [SKIP][83] ([i915#14544] / [i915#3282] / [i915#3297]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-6/igt@gem_userptr_blits@forbidden-operations.html * igt@gem_userptr_blits@readonly-unsync: - shard-dg2: NOTRUN -> [SKIP][84] ([i915#3297]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg2-4/igt@gem_userptr_blits@readonly-unsync.html * igt@gem_userptr_blits@sd-probe: - shard-dg2: NOTRUN -> [SKIP][85] ([i915#3297] / [i915#4958]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg2-3/igt@gem_userptr_blits@sd-probe.html - shard-dg1: NOTRUN -> [SKIP][86] ([i915#3297] / [i915#4958]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg1-14/igt@gem_userptr_blits@sd-probe.html * igt@gem_workarounds@suspend-resume-context: - shard-glk: NOTRUN -> [INCOMPLETE][87] ([i915#13356]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-glk8/igt@gem_workarounds@suspend-resume-context.html * igt@gen9_exec_parse@allowed-single: - shard-rkl: NOTRUN -> [SKIP][88] ([i915#2527]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-1/igt@gen9_exec_parse@allowed-single.html * igt@gen9_exec_parse@batch-invalid-length: - shard-tglu: NOTRUN -> [SKIP][89] ([i915#2527] / [i915#2856]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-tglu-6/igt@gen9_exec_parse@batch-invalid-length.html * igt@gen9_exec_parse@bb-oversize: - shard-tglu-1: NOTRUN -> [SKIP][90] ([i915#2527] / [i915#2856]) +1 other test skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-tglu-1/igt@gen9_exec_parse@bb-oversize.html * igt@gen9_exec_parse@unaligned-jump: - shard-dg2: NOTRUN -> [SKIP][91] ([i915#2856]) +1 other test skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg2-8/igt@gen9_exec_parse@unaligned-jump.html * igt@gpu_buddy@gpu_buddy: - shard-tglu: NOTRUN -> [SKIP][92] ([i915#15678]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-tglu-2/igt@gpu_buddy@gpu_buddy.html * igt@i915_drm_fdinfo@all-busy-check-all: - shard-dg2: NOTRUN -> [SKIP][93] ([i915#14123]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg2-8/igt@i915_drm_fdinfo@all-busy-check-all.html * igt@i915_drm_fdinfo@busy-check-all: - shard-dg1: NOTRUN -> [SKIP][94] ([i915#11527]) +5 other tests skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg1-12/igt@i915_drm_fdinfo@busy-check-all.html * igt@i915_drm_fdinfo@busy-check-all@ccs0: - shard-mtlp: NOTRUN -> [SKIP][95] ([i915#11527]) +6 other tests skip [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-mtlp-6/igt@i915_drm_fdinfo@busy-check-all@ccs0.html * igt@i915_drm_fdinfo@busy-check-all@vecs0: - shard-dg2: NOTRUN -> [SKIP][96] ([i915#11527]) +7 other tests skip [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg2-7/igt@i915_drm_fdinfo@busy-check-all@vecs0.html * igt@i915_drm_fdinfo@busy-idle@bcs0: - shard-dg1: NOTRUN -> [SKIP][97] ([i915#14073]) +11 other tests skip [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg1-13/igt@i915_drm_fdinfo@busy-idle@bcs0.html * igt@i915_drm_fdinfo@busy@rcs0: - shard-mtlp: NOTRUN -> [SKIP][98] ([i915#14073]) +6 other tests skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-mtlp-4/igt@i915_drm_fdinfo@busy@rcs0.html * igt@i915_drm_fdinfo@virtual-busy-idle-all: - shard-dg2: NOTRUN -> [SKIP][99] ([i915#14118]) +1 other test skip [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg2-4/igt@i915_drm_fdinfo@virtual-busy-idle-all.html - shard-dg1: NOTRUN -> [SKIP][100] ([i915#14118]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg1-13/igt@i915_drm_fdinfo@virtual-busy-idle-all.html - shard-mtlp: NOTRUN -> [SKIP][101] ([i915#14118]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-mtlp-1/igt@i915_drm_fdinfo@virtual-busy-idle-all.html * igt@i915_module_load@reload-no-display: - shard-dg2: [PASS][102] -> [DMESG-WARN][103] ([i915#13029] / [i915#14545]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-dg2-1/igt@i915_module_load@reload-no-display.html [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg2-4/igt@i915_module_load@reload-no-display.html - shard-dg1: [PASS][104] -> [DMESG-WARN][105] ([i915#13029] / [i915#14545]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-dg1-18/igt@i915_module_load@reload-no-display.html [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg1-12/igt@i915_module_load@reload-no-display.html * igt@i915_pm_freq_api@freq-suspend: - shard-tglu: NOTRUN -> [SKIP][106] ([i915#8399]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-tglu-8/igt@i915_pm_freq_api@freq-suspend.html * igt@i915_pm_freq_mult@media-freq@gt0: - shard-rkl: NOTRUN -> [SKIP][107] ([i915#6590]) +1 other test skip [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-3/igt@i915_pm_freq_mult@media-freq@gt0.html - shard-dg1: NOTRUN -> [SKIP][108] ([i915#6590]) +1 other test skip [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg1-13/igt@i915_pm_freq_mult@media-freq@gt0.html - shard-tglu: NOTRUN -> [SKIP][109] ([i915#6590]) +1 other test skip [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-tglu-5/igt@i915_pm_freq_mult@media-freq@gt0.html * igt@i915_pm_freq_mult@media-freq@gt1: - shard-mtlp: NOTRUN -> [SKIP][110] ([i915#6590]) +2 other tests skip [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-mtlp-7/igt@i915_pm_freq_mult@media-freq@gt1.html * igt@i915_pm_rpm@system-suspend-execbuf: - shard-glk11: NOTRUN -> [INCOMPLETE][111] ([i915#13356] / [i915#15172]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-glk11/igt@i915_pm_rpm@system-suspend-execbuf.html * igt@i915_pm_rps@min-max-config-loaded: - shard-dg2: NOTRUN -> [SKIP][112] ([i915#11681] / [i915#6621]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg2-8/igt@i915_pm_rps@min-max-config-loaded.html * igt@i915_pm_rps@thresholds-idle: - shard-dg2: NOTRUN -> [SKIP][113] ([i915#11681]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg2-8/igt@i915_pm_rps@thresholds-idle.html * igt@i915_query@hwconfig_table: - shard-tglu-1: NOTRUN -> [SKIP][114] ([i915#6245]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-tglu-1/igt@i915_query@hwconfig_table.html * igt@i915_query@query-topology-unsupported: - shard-tglu-1: NOTRUN -> [SKIP][115] ([i915#16079]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-tglu-1/igt@i915_query@query-topology-unsupported.html * igt@i915_query@test-query-geometry-subslices: - shard-rkl: NOTRUN -> [SKIP][116] ([i915#5723]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-5/igt@i915_query@test-query-geometry-subslices.html - shard-dg1: NOTRUN -> [SKIP][117] ([i915#5723]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg1-14/igt@i915_query@test-query-geometry-subslices.html - shard-tglu: NOTRUN -> [SKIP][118] ([i915#5723]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-tglu-9/igt@i915_query@test-query-geometry-subslices.html * igt@i915_suspend@debugfs-reader: - shard-glk: NOTRUN -> [INCOMPLETE][119] ([i915#16182] / [i915#4817]) +1 other test incomplete [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-glk2/igt@i915_suspend@debugfs-reader.html * igt@i915_suspend@fence-restore-tiled2untiled: - shard-rkl: [PASS][120] -> [INCOMPLETE][121] ([i915#4817]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-5/igt@i915_suspend@fence-restore-tiled2untiled.html [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-4/igt@i915_suspend@fence-restore-tiled2untiled.html * igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling: - shard-dg2: NOTRUN -> [SKIP][122] ([i915#4212]) +1 other test skip [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg2-1/igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling.html * igt@kms_addfb_basic@addfb25-x-tiled-legacy: - shard-mtlp: NOTRUN -> [SKIP][123] ([i915#4212]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-mtlp-1/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html - shard-dg1: NOTRUN -> [SKIP][124] ([i915#4212]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg1-13/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html * igt@kms_async_flips@alternate-sync-async-flip-atomic: - shard-dg1: [PASS][125] -> [FAIL][126] ([i915#14888]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-dg1-19/igt@kms_async_flips@alternate-sync-async-flip-atomic.html [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg1-14/igt@kms_async_flips@alternate-sync-async-flip-atomic.html * igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-a-hdmi-a-1: - shard-dg1: NOTRUN -> [FAIL][127] ([i915#14888]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg1-14/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-a-hdmi-a-1.html * igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-c-hdmi-a-1: - shard-glk: [PASS][128] -> [FAIL][129] ([i915#14888]) +1 other test fail [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-glk2/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-c-hdmi-a-1.html [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-glk6/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-c-hdmi-a-1.html * igt@kms_async_flips@async-flip-suspend-resume: - shard-glk: NOTRUN -> [INCOMPLETE][130] ([i915#12761]) +1 other test incomplete [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-glk8/igt@kms_async_flips@async-flip-suspend-resume.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-glk: NOTRUN -> [SKIP][131] ([i915#1769]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-glk8/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-glk11: NOTRUN -> [SKIP][132] ([i915#1769]) [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-glk11/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_big_fb@4-tiled-32bpp-rotate-180: - shard-tglu-1: NOTRUN -> [SKIP][133] ([i915#5286]) +1 other test skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-tglu-1/igt@kms_big_fb@4-tiled-32bpp-rotate-180.html * igt@kms_big_fb@4-tiled-64bpp-rotate-90: - shard-glk11: NOTRUN -> [SKIP][134] +147 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-glk11/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html * igt@kms_big_fb@4-tiled-addfb: - shard-tglu: NOTRUN -> [SKIP][135] ([i915#5286]) +7 other tests skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-tglu-3/igt@kms_big_fb@4-tiled-addfb.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-dg1: NOTRUN -> [SKIP][136] ([i915#4538] / [i915#5286]) +2 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg1-16/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-rkl: NOTRUN -> [SKIP][137] ([i915#5286]) +4 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-7/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_big_fb@linear-64bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][138] ([i915#3638]) +3 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-8/igt@kms_big_fb@linear-64bpp-rotate-90.html * igt@kms_big_fb@x-tiled-16bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][139] ([i915#3638]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg1-18/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-8bpp-rotate-0: - shard-dg1: NOTRUN -> [SKIP][140] ([i915#4538]) +3 other tests skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg1-13/igt@kms_big_fb@yf-tiled-8bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-8bpp-rotate-270: - shard-mtlp: NOTRUN -> [SKIP][141] +11 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-mtlp-3/igt@kms_big_fb@yf-tiled-8bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-8bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][142] ([i915#4538] / [i915#5190]) +14 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg2-8/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][143] ([i915#6095]) +212 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg1-19/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4.html * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][144] ([i915#6095]) +34 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-mtlp-7/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs@pipe-c-edp-1.html * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][145] ([i915#6095]) +89 other tests skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-tglu-3/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@crc-primary-basic-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][146] ([i915#14098] / [i915#14544] / [i915#6095]) +2 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-6/igt@kms_ccs@crc-primary-basic-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-2.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][147] ([i915#14544] / [i915#6095]) +5 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-2.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc: - shard-glk: NOTRUN -> [SKIP][148] +410 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-glk4/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc.html * igt@kms_ccs@crc-primary-suspend-y-tiled-ccs: - shard-glk: NOTRUN -> [INCOMPLETE][149] ([i915#15582]) +1 other test incomplete [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-glk6/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs.html * igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-b-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][150] ([i915#6095]) +24 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-tglu-1/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][151] ([i915#6095]) +22 other tests skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg2-7/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs: - shard-tglu-1: NOTRUN -> [SKIP][152] ([i915#12313]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-tglu-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][153] ([i915#10307] / [i915#6095]) +107 other tests skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg2-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][154] ([i915#14098] / [i915#6095]) +47 other tests skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-7/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-2.html * igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][155] ([i915#6095]) +67 other tests skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-4/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][156] ([i915#10307] / [i915#10434] / [i915#6095]) +3 other tests skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg2-4/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-d-hdmi-a-1.html * igt@kms_cdclk@mode-transition: - shard-rkl: NOTRUN -> [SKIP][157] ([i915#3742]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-7/igt@kms_cdclk@mode-transition.html - shard-dg1: NOTRUN -> [SKIP][158] ([i915#3742]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg1-19/igt@kms_cdclk@mode-transition.html - shard-tglu: NOTRUN -> [SKIP][159] ([i915#3742]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-tglu-5/igt@kms_cdclk@mode-transition.html * igt@kms_cdclk@mode-transition@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][160] ([i915#13781]) +4 other tests skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-mtlp-6/igt@kms_cdclk@mode-transition@pipe-b-edp-1.html * igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][161] ([i915#13781]) +4 other tests skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg2-7/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html * igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][162] ([i915#13783]) +3 other tests skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg2-8/igt@kms_cdclk@plane-scaling@pipe-c-hdmi-a-3.html * igt@kms_chamelium_audio@hdmi-audio-after-suspend: - shard-tglu: NOTRUN -> [SKIP][163] ([i915#11151]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-tglu-10/igt@kms_chamelium_audio@hdmi-audio-after-suspend.html * igt@kms_chamelium_audio@hdmi-audio-edid: - shard-dg1: NOTRUN -> [SKIP][164] ([i915#11151] / [i915#7828]) +2 other tests skip [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg1-19/igt@kms_chamelium_audio@hdmi-audio-edid.html - shard-tglu: NOTRUN -> [SKIP][165] ([i915#11151] / [i915#7828]) +5 other tests skip [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-tglu-8/igt@kms_chamelium_audio@hdmi-audio-edid.html - shard-mtlp: NOTRUN -> [SKIP][166] ([i915#11151] / [i915#7828]) +2 other tests skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-mtlp-7/igt@kms_chamelium_audio@hdmi-audio-edid.html * igt@kms_chamelium_color@ctm-green-to-red: - shard-dg2: NOTRUN -> [SKIP][167] +9 other tests skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg2-5/igt@kms_chamelium_color@ctm-green-to-red.html * igt@kms_chamelium_color_pipeline@plane-ctm3x4: - shard-mtlp: NOTRUN -> [SKIP][168] ([i915#16464] / [i915#16471]) +1 other test skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-mtlp-5/igt@kms_chamelium_color_pipeline@plane-ctm3x4.html * igt@kms_chamelium_color_pipeline@plane-lut1d-post-ctm3x4: - shard-tglu-1: NOTRUN -> [SKIP][169] ([i915#16471]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-tglu-1/igt@kms_chamelium_color_pipeline@plane-lut1d-post-ctm3x4.html * igt@kms_chamelium_color_pipeline@plane-lut1d-pre-ctm3x4: - shard-tglu: NOTRUN -> [SKIP][170] ([i915#16471]) +3 other tests skip [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-tglu-10/igt@kms_chamelium_color_pipeline@plane-lut1d-pre-ctm3x4.html * igt@kms_chamelium_color_pipeline@plane-lut3d-green-only: - shard-dg2: NOTRUN -> [SKIP][171] ([i915#16471]) +2 other tests skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg2-1/igt@kms_chamelium_color_pipeline@plane-lut3d-green-only.html - shard-rkl: NOTRUN -> [SKIP][172] ([i915#16471]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-4/igt@kms_chamelium_color_pipeline@plane-lut3d-green-only.html - shard-dg1: NOTRUN -> [SKIP][173] ([i915#16471]) +1 other test skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg1-18/igt@kms_chamelium_color_pipeline@plane-lut3d-green-only.html * igt@kms_chamelium_edid@dp-edid-change-during-suspend: - shard-rkl: NOTRUN -> [SKIP][174] ([i915#11151] / [i915#14544] / [i915#7828]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-6/igt@kms_chamelium_edid@dp-edid-change-during-suspend.html * igt@kms_chamelium_frames@dp-frame-dump: - shard-tglu-1: NOTRUN -> [SKIP][175] ([i915#11151] / [i915#7828]) +3 other tests skip [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-tglu-1/igt@kms_chamelium_frames@dp-frame-dump.html * igt@kms_chamelium_frames@hdmi-cmp-planar-formats: - shard-dg2: NOTRUN -> [SKIP][176] ([i915#11151] / [i915#7828]) +4 other tests skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg2-4/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html - shard-rkl: NOTRUN -> [SKIP][177] ([i915#11151] / [i915#7828]) +4 other tests skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-3/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html * igt@kms_color@deep-color: - shard-dg2: NOTRUN -> [SKIP][178] ([i915#12655] / [i915#3555]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg2-4/igt@kms_color@deep-color.html * igt@kms_content_protection@atomic: - shard-tglu-1: NOTRUN -> [SKIP][179] ([i915#15865]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-tglu-1/igt@kms_content_protection@atomic.html * igt@kms_content_protection@dp-mst-lic-type-0-hdcp14: - shard-tglu: NOTRUN -> [SKIP][180] ([i915#15330]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-tglu-10/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-dg2: NOTRUN -> [SKIP][181] ([i915#15330] / [i915#3299]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg2-6/igt@kms_content_protection@dp-mst-lic-type-1.html - shard-dg1: NOTRUN -> [SKIP][182] ([i915#15330] / [i915#3299]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg1-19/igt@kms_content_protection@dp-mst-lic-type-1.html - shard-tglu: NOTRUN -> [SKIP][183] ([i915#15330] / [i915#3116] / [i915#3299]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-tglu-8/igt@kms_content_protection@dp-mst-lic-type-1.html - shard-mtlp: NOTRUN -> [SKIP][184] ([i915#15330] / [i915#3299]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-mtlp-7/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@legacy-hdcp14: - shard-dg2: NOTRUN -> [SKIP][185] ([i915#15865]) +2 other tests skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg2-8/igt@kms_content_protection@legacy-hdcp14.html * igt@kms_content_protection@uevent: - shard-mtlp: NOTRUN -> [SKIP][186] ([i915#15865]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-mtlp-7/igt@kms_content_protection@uevent.html - shard-dg1: NOTRUN -> [SKIP][187] ([i915#15865]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg1-19/igt@kms_content_protection@uevent.html * igt@kms_content_protection@uevent-hdcp14: - shard-tglu: NOTRUN -> [SKIP][188] ([i915#15865]) +1 other test skip [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-tglu-7/igt@kms_content_protection@uevent-hdcp14.html * igt@kms_cursor_crc@cursor-onscreen-32x32: - shard-rkl: NOTRUN -> [SKIP][189] ([i915#3555]) +4 other tests skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-3/igt@kms_cursor_crc@cursor-onscreen-32x32.html - shard-dg1: NOTRUN -> [SKIP][190] ([i915#3555]) +2 other tests skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg1-13/igt@kms_cursor_crc@cursor-onscreen-32x32.html - shard-tglu: NOTRUN -> [SKIP][191] ([i915#3555]) +5 other tests skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-tglu-5/igt@kms_cursor_crc@cursor-onscreen-32x32.html - shard-mtlp: NOTRUN -> [SKIP][192] ([i915#3555] / [i915#8814]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-mtlp-7/igt@kms_cursor_crc@cursor-onscreen-32x32.html * igt@kms_cursor_crc@cursor-random-256x85: - shard-mtlp: NOTRUN -> [SKIP][193] ([i915#8814]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-mtlp-8/igt@kms_cursor_crc@cursor-random-256x85.html * igt@kms_cursor_crc@cursor-random-32x10: - shard-tglu-1: NOTRUN -> [SKIP][194] ([i915#3555]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-tglu-1/igt@kms_cursor_crc@cursor-random-32x10.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-dg2: NOTRUN -> [SKIP][195] ([i915#13049]) +3 other tests skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg2-5/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_crc@cursor-random-512x512: - shard-rkl: NOTRUN -> [SKIP][196] ([i915#13049]) +3 other tests skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-2/igt@kms_cursor_crc@cursor-random-512x512.html - shard-dg1: NOTRUN -> [SKIP][197] ([i915#13049]) +2 other tests skip [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg1-13/igt@kms_cursor_crc@cursor-random-512x512.html - shard-tglu: NOTRUN -> [SKIP][198] ([i915#13049]) +3 other tests skip [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-tglu-10/igt@kms_cursor_crc@cursor-random-512x512.html - shard-mtlp: NOTRUN -> [SKIP][199] ([i915#13049]) +2 other tests skip [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-mtlp-1/igt@kms_cursor_crc@cursor-random-512x512.html * igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1: - shard-tglu: [PASS][200] -> [FAIL][201] ([i915#13566]) +1 other test fail [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-tglu-5/igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1.html [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-tglu-3/igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-tglu: NOTRUN -> [SKIP][202] ([i915#4103]) +1 other test skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-tglu-7/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions: - shard-mtlp: NOTRUN -> [SKIP][203] ([i915#9809]) +2 other tests skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-mtlp-2/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html * igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size: - shard-dg2: NOTRUN -> [SKIP][204] ([i915#13046] / [i915#5354]) +5 other tests skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg2-4/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-rkl: NOTRUN -> [SKIP][205] ([i915#9067]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-1/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-dg2: NOTRUN -> [SKIP][206] ([i915#4103]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg2-7/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html - shard-rkl: NOTRUN -> [SKIP][207] ([i915#4103]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-7/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html - shard-dg1: NOTRUN -> [SKIP][208] ([i915#4103]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg1-19/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html - shard-mtlp: NOTRUN -> [SKIP][209] ([i915#16119] / [i915#4213]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-mtlp-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_display_modes@extended-mode-basic: - shard-dg2: NOTRUN -> [SKIP][210] ([i915#13691]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg2-4/igt@kms_display_modes@extended-mode-basic.html - shard-rkl: NOTRUN -> [SKIP][211] ([i915#13691]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-2/igt@kms_display_modes@extended-mode-basic.html - shard-dg1: NOTRUN -> [SKIP][212] ([i915#13691]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg1-13/igt@kms_display_modes@extended-mode-basic.html - shard-tglu: NOTRUN -> [SKIP][213] ([i915#13691]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-tglu-10/igt@kms_display_modes@extended-mode-basic.html - shard-mtlp: NOTRUN -> [SKIP][214] ([i915#13691]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-mtlp-1/igt@kms_display_modes@extended-mode-basic.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc: - shard-tglu-1: NOTRUN -> [SKIP][215] ([i915#1769] / [i915#3555] / [i915#3804]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-tglu-1/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][216] ([i915#3804]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-tglu-1/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html * igt@kms_dp_link_training@uhbr-sst: - shard-rkl: NOTRUN -> [SKIP][217] ([i915#13748]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-8/igt@kms_dp_link_training@uhbr-sst.html - shard-dg1: NOTRUN -> [SKIP][218] ([i915#13748]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg1-15/igt@kms_dp_link_training@uhbr-sst.html - shard-tglu: NOTRUN -> [SKIP][219] ([i915#13748]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-tglu-6/igt@kms_dp_link_training@uhbr-sst.html - shard-mtlp: NOTRUN -> [SKIP][220] ([i915#13749]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-mtlp-4/igt@kms_dp_link_training@uhbr-sst.html - shard-dg2: NOTRUN -> [SKIP][221] ([i915#13748]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg2-1/igt@kms_dp_link_training@uhbr-sst.html * igt@kms_dp_linktrain_fallback@dp-fallback: - shard-dg2: [PASS][222] -> [SKIP][223] ([i915#13707]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-dg2-10/igt@kms_dp_linktrain_fallback@dp-fallback.html [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg2-7/igt@kms_dp_linktrain_fallback@dp-fallback.html - shard-tglu-1: NOTRUN -> [SKIP][224] ([i915#13707]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-tglu-1/igt@kms_dp_linktrain_fallback@dp-fallback.html * igt@kms_dsc@dsc-basic: - shard-dg2: NOTRUN -> [SKIP][225] ([i915#16361]) +3 other tests skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg2-5/igt@kms_dsc@dsc-basic.html * igt@kms_dsc@dsc-with-output-formats-bigjoiner: - shard-rkl: NOTRUN -> [SKIP][226] ([i915#16361]) +4 other tests skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-4/igt@kms_dsc@dsc-with-output-formats-bigjoiner.html - shard-dg1: NOTRUN -> [SKIP][227] ([i915#16361]) +2 other tests skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg1-16/igt@kms_dsc@dsc-with-output-formats-bigjoiner.html - shard-tglu: NOTRUN -> [SKIP][228] ([i915#16361]) +5 other tests skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-tglu-4/igt@kms_dsc@dsc-with-output-formats-bigjoiner.html - shard-mtlp: NOTRUN -> [SKIP][229] ([i915#16361]) +2 other tests skip [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-mtlp-3/igt@kms_dsc@dsc-with-output-formats-bigjoiner.html * igt@kms_dsc@dsc-with-output-formats-ultrajoiner: - shard-rkl: NOTRUN -> [SKIP][230] ([i915#14544] / [i915#16361]) [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-6/igt@kms_dsc@dsc-with-output-formats-ultrajoiner.html * igt@kms_fbcon_fbt@psr-suspend: - shard-rkl: NOTRUN -> [SKIP][231] ([i915#3955]) +1 other test skip [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-2/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_feature_discovery@dp-mst: - shard-dg2: NOTRUN -> [SKIP][232] ([i915#16599]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg2-4/igt@kms_feature_discovery@dp-mst.html - shard-rkl: NOTRUN -> [SKIP][233] ([i915#16599]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-3/igt@kms_feature_discovery@dp-mst.html - shard-dg1: NOTRUN -> [SKIP][234] ([i915#16599]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg1-12/igt@kms_feature_discovery@dp-mst.html - shard-tglu: NOTRUN -> [SKIP][235] ([i915#16599]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-tglu-8/igt@kms_feature_discovery@dp-mst.html - shard-mtlp: NOTRUN -> [SKIP][236] ([i915#16599]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-mtlp-3/igt@kms_feature_discovery@dp-mst.html * igt@kms_feature_discovery@dsc: - shard-tglu-1: NOTRUN -> [SKIP][237] ([i915#16600]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-tglu-1/igt@kms_feature_discovery@dsc.html * igt@kms_feature_discovery@hdr: - shard-tglu: NOTRUN -> [SKIP][238] ([i915#16600]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-tglu-8/igt@kms_feature_discovery@hdr.html * igt@kms_feature_discovery@psr2: - shard-dg1: NOTRUN -> [SKIP][239] ([i915#658]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg1-16/igt@kms_feature_discovery@psr2.html - shard-tglu: NOTRUN -> [SKIP][240] ([i915#658]) [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-tglu-7/igt@kms_feature_discovery@psr2.html - shard-rkl: NOTRUN -> [SKIP][241] ([i915#658]) [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-5/igt@kms_feature_discovery@psr2.html * igt@kms_flip@2x-flip-vs-rmfb: - shard-tglu-1: NOTRUN -> [SKIP][242] ([i915#3637] / [i915#9934]) +1 other test skip [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-tglu-1/igt@kms_flip@2x-flip-vs-rmfb.html * igt@kms_flip@2x-flip-vs-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][243] ([i915#12314] / [i915#12745] / [i915#4839] / [i915#6113]) [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-glk5/igt@kms_flip@2x-flip-vs-suspend.html * igt@kms_flip@2x-flip-vs-suspend@ac-hdmi-a1-hdmi-a2: - shard-glk: NOTRUN -> [INCOMPLETE][244] ([i915#12314] / [i915#12745]) [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-glk5/igt@kms_flip@2x-flip-vs-suspend@ac-hdmi-a1-hdmi-a2.html * igt@kms_flip@2x-plain-flip-fb-recreate-interruptible: - shard-dg1: NOTRUN -> [SKIP][245] ([i915#9934]) +2 other tests skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg1-14/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html - shard-tglu: NOTRUN -> [SKIP][246] ([i915#3637] / [i915#9934]) +8 other tests skip [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-tglu-3/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html - shard-mtlp: NOTRUN -> [SKIP][247] ([i915#3637] / [i915#9934]) +2 other tests skip [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-mtlp-5/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html * igt@kms_flip@2x-plain-flip-ts-check: - shard-dg2: NOTRUN -> [SKIP][248] ([i915#9934]) +5 other tests skip [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg2-5/igt@kms_flip@2x-plain-flip-ts-check.html - shard-rkl: NOTRUN -> [SKIP][249] ([i915#9934]) +3 other tests skip [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-3/igt@kms_flip@2x-plain-flip-ts-check.html * igt@kms_flip@flip-vs-expired-vblank: - shard-mtlp: [PASS][250] -> [FAIL][251] ([i915#13027]) +3 other tests fail [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-mtlp-5/igt@kms_flip@flip-vs-expired-vblank.html [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-mtlp-8/igt@kms_flip@flip-vs-expired-vblank.html * igt@kms_flip@flip-vs-fences: - shard-mtlp: NOTRUN -> [SKIP][252] ([i915#8381]) [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-mtlp-5/igt@kms_flip@flip-vs-fences.html - shard-dg2: NOTRUN -> [SKIP][253] ([i915#8381]) [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg2-3/igt@kms_flip@flip-vs-fences.html - shard-dg1: NOTRUN -> [SKIP][254] ([i915#8381]) [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg1-14/igt@kms_flip@flip-vs-fences.html * igt@kms_flip@flip-vs-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][255] ([i915#12745] / [i915#4839] / [i915#6113]) [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-glk1/igt@kms_flip@flip-vs-suspend.html * igt@kms_flip@flip-vs-suspend@a-hdmi-a1: - shard-glk: NOTRUN -> [INCOMPLETE][256] ([i915#12745] / [i915#6113]) [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-glk1/igt@kms_flip@flip-vs-suspend@a-hdmi-a1.html * igt@kms_flip@wf_vblank-ts-check-interruptible@b-edp1: - shard-mtlp: [PASS][257] -> [FAIL][258] ([i915#14600]) +1 other test fail [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-mtlp-4/igt@kms_flip@wf_vblank-ts-check-interruptible@b-edp1.html [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-mtlp-8/igt@kms_flip@wf_vblank-ts-check-interruptible@b-edp1.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling: - shard-rkl: NOTRUN -> [SKIP][259] ([i915#15643]) +1 other test skip [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-7/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling: - shard-dg1: NOTRUN -> [SKIP][260] ([i915#15643]) +1 other test skip [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg1-17/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html - shard-tglu: NOTRUN -> [SKIP][261] ([i915#15643]) +5 other tests skip [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-tglu-7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html - shard-mtlp: NOTRUN -> [SKIP][262] ([i915#15643]) +2 other tests skip [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling: - shard-tglu-1: NOTRUN -> [SKIP][263] ([i915#15643]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][264] ([i915#3555] / [i915#8810] / [i915#8813]) +1 other test skip [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-mtlp-4/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-32bpp-ytile-downscaling: - shard-dg2: NOTRUN -> [SKIP][265] ([i915#15643] / [i915#5190]) +2 other tests skip [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg2-6/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling: - shard-dg2: NOTRUN -> [SKIP][266] ([i915#15643]) [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg2-7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][267] ([i915#15990] / [i915#8708]) +8 other tests skip [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][268] ([i915#10056] / [i915#16593]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-glk3/igt@kms_frontbuffer_tracking@fbc-suspend.html * igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-cur-indfb-onoff: - shard-tglu-1: NOTRUN -> [SKIP][269] ([i915#15989]) +5 other tests skip [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-tglu-1/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-indfb-plflip-blt: - shard-tglu: NOTRUN -> [SKIP][270] ([i915#15989]) +30 other tests skip [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-tglu-5/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-indfb-plflip-blt.html - shard-mtlp: NOTRUN -> [SKIP][271] ([i915#15989]) +21 other tests skip [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-spr-indfb-onoff: - shard-rkl: NOTRUN -> [SKIP][272] ([i915#15989]) +16 other tests skip [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-8/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbchdr-1p-rte: - shard-dg2: NOTRUN -> [SKIP][273] ([i915#15989]) +12 other tests skip [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg2-1/igt@kms_frontbuffer_tracking@fbchdr-1p-rte.html - shard-dg1: NOTRUN -> [SKIP][274] ([i915#15989]) +8 other tests skip [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg1-15/igt@kms_frontbuffer_tracking@fbchdr-1p-rte.html * igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-cur-indfb-draw-mmap-wc: - shard-glk: [PASS][275] -> [SKIP][276] +5 other tests skip [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-glk8/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-cur-indfb-draw-mmap-wc.html [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-glk2/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-shrfb-msflip-blt: - shard-tglu: NOTRUN -> [SKIP][277] +133 other tests skip [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-tglu-7/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-shrfb-pgflip-blt: - shard-dg1: NOTRUN -> [SKIP][278] +47 other tests skip [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg1-15/igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][279] ([i915#14544] / [i915#15102] / [i915#3023]) +2 other tests skip [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff: - shard-mtlp: NOTRUN -> [SKIP][280] ([i915#15991] / [i915#1825]) +18 other tests skip [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-move: - shard-dg2: NOTRUN -> [SKIP][281] ([i915#15991] / [i915#5354]) +35 other tests skip [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt: - shard-rkl: NOTRUN -> [SKIP][282] +83 other tests skip [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc: - shard-rkl: NOTRUN -> [SKIP][283] ([i915#15102] / [i915#3023]) +16 other tests skip [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html - shard-tglu-1: NOTRUN -> [SKIP][284] ([i915#15102]) +20 other tests skip [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html - shard-dg1: NOTRUN -> [SKIP][285] ([i915#15990] / [i915#8708]) +6 other tests skip [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-primscrn-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][286] ([i915#15990]) +9 other tests skip [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-mtlp-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-primscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@hdr-1p-primscrn-pri-shrfb-draw-mmap-cpu: - shard-rkl: [PASS][287] -> [SKIP][288] ([i915#15989]) +14 other tests skip [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-1/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-3/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@hdr-1p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][289] ([i915#15990]) +24 other tests skip [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg2-6/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-pri-shrfb-draw-mmap-wc.html - shard-dg1: NOTRUN -> [SKIP][290] ([i915#15990]) +13 other tests skip [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg1-14/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@hdr-2p-primscrn-shrfb-msflip-blt: - shard-tglu-1: NOTRUN -> [SKIP][291] +39 other tests skip [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-tglu-1/igt@kms_frontbuffer_tracking@hdr-2p-primscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@hdr-suspend: - shard-glk10: NOTRUN -> [INCOMPLETE][292] ([i915#16056] / [i915#16593]) [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-glk10/igt@kms_frontbuffer_tracking@hdr-suspend.html * igt@kms_frontbuffer_tracking@pipe-fbc-rte: - shard-tglu-1: NOTRUN -> [SKIP][293] ([i915#9766]) [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-tglu-1/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html - shard-dg2: NOTRUN -> [SKIP][294] ([i915#9766]) [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg2-7/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][295] ([i915#15102]) +27 other tests skip [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt.html - shard-dg1: NOTRUN -> [SKIP][296] ([i915#15104] / [i915#15990]) [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt.html - shard-mtlp: NOTRUN -> [SKIP][297] ([i915#15104] / [i915#15990]) [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-mtlp-1/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][298] ([i915#15104] / [i915#15990]) +1 other test skip [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg2-7/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][299] ([i915#15102]) +32 other tests skip [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-render: - shard-rkl: NOTRUN -> [SKIP][300] ([i915#14544]) +12 other tests skip [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc: - shard-rkl: NOTRUN -> [SKIP][301] ([i915#1825]) +6 other tests skip [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][302] ([i915#15990] / [i915#8708]) +3 other tests skip [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-mtlp-7/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary: - shard-tglu: NOTRUN -> [SKIP][303] ([i915#15102]) +51 other tests skip [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-tglu-7/igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary.html * igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-cur-indfb-draw-mmap-cpu: - shard-mtlp: NOTRUN -> [SKIP][304] ([i915#15991]) +22 other tests skip [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-mtlp-2/igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-cur-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-pri-shrfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][305] ([i915#15991]) +33 other tests skip [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg2-6/igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@psrhdr-rgb565-draw-render: - shard-dg1: NOTRUN -> [SKIP][306] ([i915#15102]) +18 other tests skip [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg1-13/igt@kms_frontbuffer_tracking@psrhdr-rgb565-draw-render.html * igt@kms_frontbuffer_tracking@psrhdr-suspend: - shard-rkl: NOTRUN -> [SKIP][307] ([i915#14544] / [i915#15102]) [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-6/igt@kms_frontbuffer_tracking@psrhdr-suspend.html * igt@kms_hdmi_inject@inject-audio: - shard-mtlp: [PASS][308] -> [SKIP][309] ([i915#15725]) [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-mtlp-4/igt@kms_hdmi_inject@inject-audio.html [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-mtlp-1/igt@kms_hdmi_inject@inject-audio.html * igt@kms_hdr@bpc-switch-dpms: - shard-tglu: NOTRUN -> [SKIP][310] ([i915#3555] / [i915#8228]) [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-tglu-5/igt@kms_hdr@bpc-switch-dpms.html * igt@kms_hdr@bpc-switch-suspend@pipe-a-hdmi-a-2-xrgb2101010: - shard-rkl: NOTRUN -> [INCOMPLETE][311] ([i915#15436]) +1 other test incomplete [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-6/igt@kms_hdr@bpc-switch-suspend@pipe-a-hdmi-a-2-xrgb2101010.html * igt@kms_hdr@brightness-with-hdr: - shard-dg2: NOTRUN -> [SKIP][312] ([i915#12713] / [i915#16518]) [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg2-1/igt@kms_hdr@brightness-with-hdr.html * igt@kms_hdr@static-toggle: - shard-rkl: NOTRUN -> [SKIP][313] ([i915#16644] / [i915#3555] / [i915#8228]) [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-3/igt@kms_hdr@static-toggle.html * igt@kms_joiner@basic-max-non-joiner: - shard-dg1: NOTRUN -> [SKIP][314] ([i915#13688]) [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg1-17/igt@kms_joiner@basic-max-non-joiner.html * igt@kms_joiner@basic-ultra-joiner: - shard-dg2: NOTRUN -> [SKIP][315] ([i915#15458]) [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg2-6/igt@kms_joiner@basic-ultra-joiner.html - shard-rkl: NOTRUN -> [SKIP][316] ([i915#15458]) [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-5/igt@kms_joiner@basic-ultra-joiner.html - shard-dg1: NOTRUN -> [SKIP][317] ([i915#15458]) [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg1-14/igt@kms_joiner@basic-ultra-joiner.html - shard-tglu: NOTRUN -> [SKIP][318] ([i915#15458]) [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-tglu-9/igt@kms_joiner@basic-ultra-joiner.html - shard-mtlp: NOTRUN -> [SKIP][319] ([i915#15458]) [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-mtlp-5/igt@kms_joiner@basic-ultra-joiner.html * igt@kms_joiner@invalid-modeset-force-big-joiner: - shard-tglu: NOTRUN -> [SKIP][320] ([i915#15459]) [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-tglu-10/igt@kms_joiner@invalid-modeset-force-big-joiner.html * igt@kms_panel_fitting@atomic-fastset: - shard-tglu: NOTRUN -> [SKIP][321] ([i915#6301]) [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-tglu-4/igt@kms_panel_fitting@atomic-fastset.html * igt@kms_panel_fitting@legacy: - shard-dg2: NOTRUN -> [SKIP][322] ([i915#6301]) [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg2-8/igt@kms_panel_fitting@legacy.html * igt@kms_pipe_crc_basic@suspend-read-crc: - shard-snb: NOTRUN -> [ABORT][323] ([i915#15840]) +1 other test abort [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-snb7/igt@kms_pipe_crc_basic@suspend-read-crc.html * igt@kms_pipe_stress@stress-xrgb8888-untiled: - shard-glk11: NOTRUN -> [DMESG-WARN][324] ([i915#118]) [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-glk11/igt@kms_pipe_stress@stress-xrgb8888-untiled.html * igt@kms_pipe_stress@stress-xrgb8888-xtiled: - shard-glk: NOTRUN -> [DMESG-FAIL][325] ([i915#118]) [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-glk2/igt@kms_pipe_stress@stress-xrgb8888-xtiled.html * igt@kms_pipe_stress@stress-xrgb8888-yftiled: - shard-dg2: NOTRUN -> [SKIP][326] ([i915#14712]) [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg2-5/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html * igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier: - shard-glk10: NOTRUN -> [SKIP][327] +173 other tests skip [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-glk10/igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier.html * igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier-source-clamping: - shard-tglu: NOTRUN -> [SKIP][328] ([i915#15709]) +3 other tests skip [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-tglu-3/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier-source-clamping.html * igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier: - shard-dg1: NOTRUN -> [SKIP][329] ([i915#15709]) [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg1-15/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier.html - shard-mtlp: NOTRUN -> [SKIP][330] ([i915#15709]) [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-mtlp-2/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier.html * igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier@pipe-b-plane-5: - shard-dg2: NOTRUN -> [SKIP][331] ([i915#16386]) +1 other test skip [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg2-5/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier@pipe-b-plane-5.html * igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping: - shard-dg2: NOTRUN -> [SKIP][332] ([i915#15709]) +2 other tests skip [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg2-7/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping.html * igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier: - shard-rkl: NOTRUN -> [SKIP][333] ([i915#15709]) +3 other tests skip [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-4/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier.html * igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier@pipe-a-plane-7: - shard-tglu-1: NOTRUN -> [SKIP][334] ([i915#16386]) +3 other tests skip [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-tglu-1/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier@pipe-a-plane-7.html * igt@kms_plane@pixel-format-yf-tiled-ccs-modifier-source-clamping: - shard-tglu-1: NOTRUN -> [SKIP][335] ([i915#15709]) [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-tglu-1/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier-source-clamping.html * igt@kms_plane@planar-pixel-format-settings: - shard-snb: NOTRUN -> [SKIP][336] +217 other tests skip [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-snb5/igt@kms_plane@planar-pixel-format-settings.html * igt@kms_plane@planar-pixel-format-settings@nv12-tile4-src-y: - shard-dg2: NOTRUN -> [SKIP][337] ([i915#16112]) [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg2-8/igt@kms_plane@planar-pixel-format-settings@nv12-tile4-src-y.html - shard-rkl: NOTRUN -> [SKIP][338] ([i915#16112]) [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-4/igt@kms_plane@planar-pixel-format-settings@nv12-tile4-src-y.html - shard-dg1: NOTRUN -> [SKIP][339] ([i915#16112]) [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg1-16/igt@kms_plane@planar-pixel-format-settings@nv12-tile4-src-y.html - shard-tglu: NOTRUN -> [SKIP][340] ([i915#16112]) [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-tglu-4/igt@kms_plane@planar-pixel-format-settings@nv12-tile4-src-y.html - shard-mtlp: NOTRUN -> [SKIP][341] ([i915#16112]) [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-mtlp-3/igt@kms_plane@planar-pixel-format-settings@nv12-tile4-src-y.html * igt@kms_plane_alpha_blend@alpha-basic: - shard-glk: NOTRUN -> [FAIL][342] ([i915#12178]) [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-glk5/igt@kms_plane_alpha_blend@alpha-basic.html * igt@kms_plane_alpha_blend@alpha-basic@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][343] ([i915#7862]) +1 other test fail [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-glk5/igt@kms_plane_alpha_blend@alpha-basic@pipe-a-hdmi-a-1.html * igt@kms_plane_alpha_blend@alpha-transparent-fb: - shard-glk10: NOTRUN -> [FAIL][344] ([i915#10647] / [i915#12177]) [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-glk10/igt@kms_plane_alpha_blend@alpha-transparent-fb.html * igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1: - shard-glk10: NOTRUN -> [FAIL][345] ([i915#10647]) +1 other test fail [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-glk10/igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1.html * igt@kms_plane_multiple@2x-tiling-4: - shard-dg2: NOTRUN -> [SKIP][346] ([i915#13958]) +1 other test skip [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg2-6/igt@kms_plane_multiple@2x-tiling-4.html - shard-rkl: NOTRUN -> [SKIP][347] ([i915#13958]) [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-5/igt@kms_plane_multiple@2x-tiling-4.html - shard-dg1: NOTRUN -> [SKIP][348] ([i915#13958]) [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg1-18/igt@kms_plane_multiple@2x-tiling-4.html - shard-tglu: NOTRUN -> [SKIP][349] ([i915#13958]) +1 other test skip [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-tglu-4/igt@kms_plane_multiple@2x-tiling-4.html - shard-mtlp: NOTRUN -> [SKIP][350] ([i915#13958]) [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-mtlp-8/igt@kms_plane_multiple@2x-tiling-4.html * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a: - shard-tglu: NOTRUN -> [SKIP][351] ([i915#15329]) +4 other tests skip [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-tglu-5/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a.html * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-c: - shard-rkl: NOTRUN -> [SKIP][352] ([i915#15329]) +3 other tests skip [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-7/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-c.html * igt@kms_plane_scaling@planes-downscale-factor-0-5: - shard-mtlp: NOTRUN -> [SKIP][353] ([i915#15329] / [i915#6953]) [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-mtlp-8/igt@kms_plane_scaling@planes-downscale-factor-0-5.html * igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-a: - shard-mtlp: NOTRUN -> [SKIP][354] ([i915#15329]) +3 other tests skip [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-mtlp-8/igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-a.html * igt@kms_pm_backlight@basic-brightness: - shard-dg2: NOTRUN -> [SKIP][355] ([i915#12343] / [i915#5354]) [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg2-3/igt@kms_pm_backlight@basic-brightness.html * igt@kms_pm_backlight@fade: - shard-rkl: NOTRUN -> [SKIP][356] ([i915#12343] / [i915#5354]) [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-8/igt@kms_pm_backlight@fade.html * igt@kms_pm_dc@dc6-dpms: - shard-dg2: NOTRUN -> [SKIP][357] ([i915#15751]) [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg2-1/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_lpsp@kms-lpsp: - shard-dg2: NOTRUN -> [SKIP][358] ([i915#9340]) [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg2-8/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-dg2: NOTRUN -> [SKIP][359] ([i915#15073]) [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg2-4/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html - shard-dg1: NOTRUN -> [SKIP][360] ([i915#15073]) +1 other test skip [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg1-14/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@kms_pm_rpm@dpms-non-lpsp: - shard-tglu: NOTRUN -> [SKIP][361] ([i915#15073]) +2 other tests skip [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-tglu-9/igt@kms_pm_rpm@dpms-non-lpsp.html - shard-mtlp: NOTRUN -> [SKIP][362] ([i915#15073]) +1 other test skip [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-mtlp-2/igt@kms_pm_rpm@dpms-non-lpsp.html - shard-rkl: NOTRUN -> [SKIP][363] ([i915#15073]) [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-8/igt@kms_pm_rpm@dpms-non-lpsp.html * igt@kms_pm_rpm@modeset-lpsp: - shard-rkl: [PASS][364] -> [SKIP][365] ([i915#15073]) +1 other test skip [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-2/igt@kms_pm_rpm@modeset-lpsp.html [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-4/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_pm_rpm@modeset-lpsp-stress: - shard-rkl: [PASS][366] -> [SKIP][367] ([i915#14544] / [i915#15073]) [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-5/igt@kms_pm_rpm@modeset-lpsp-stress.html [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-6/igt@kms_pm_rpm@modeset-lpsp-stress.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-dg1: [PASS][368] -> [SKIP][369] ([i915#15073]) +1 other test skip [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-dg1-16/igt@kms_pm_rpm@modeset-non-lpsp.html [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg1-14/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-tglu-1: NOTRUN -> [SKIP][370] ([i915#15073]) [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-tglu-1/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@kms_pm_rpm@system-suspend-modeset: - shard-glk: [PASS][371] -> [INCOMPLETE][372] ([i915#10553]) [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-glk9/igt@kms_pm_rpm@system-suspend-modeset.html [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-glk6/igt@kms_pm_rpm@system-suspend-modeset.html * igt@kms_prime@basic-crc-vgem: - shard-dg2: NOTRUN -> [SKIP][373] ([i915#6524] / [i915#6805]) [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg2-5/igt@kms_prime@basic-crc-vgem.html * igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf: - shard-glk10: NOTRUN -> [SKIP][374] ([i915#11520]) +4 other tests skip [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-glk10/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf: - shard-dg2: NOTRUN -> [SKIP][375] ([i915#11520]) +10 other tests skip [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg2-6/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf: - shard-glk11: NOTRUN -> [SKIP][376] ([i915#11520]) +4 other tests skip [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-glk11/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf.html * igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf: - shard-tglu-1: NOTRUN -> [SKIP][377] ([i915#11520]) +2 other tests skip [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-tglu-1/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-sf: - shard-mtlp: NOTRUN -> [SKIP][378] ([i915#12316]) +4 other tests skip [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-mtlp-3/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf: - shard-rkl: NOTRUN -> [SKIP][379] ([i915#11520]) +11 other tests skip [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-4/igt@kms_psr2_sf@pr-overlay-plane-update-continuous-sf.html * igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area: - shard-rkl: NOTRUN -> [SKIP][380] ([i915#11520] / [i915#14544]) [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-6/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][381] ([i915#11520]) +10 other tests skip [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-glk2/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb: - shard-snb: NOTRUN -> [SKIP][382] ([i915#11520]) +6 other tests skip [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-snb4/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html - shard-dg1: NOTRUN -> [SKIP][383] ([i915#11520]) +6 other tests skip [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg1-17/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html - shard-tglu: NOTRUN -> [SKIP][384] ([i915#11520]) +9 other tests skip [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-tglu-6/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html * igt@kms_psr2_su@page_flip-nv12: - shard-tglu: NOTRUN -> [SKIP][385] ([i915#9683]) [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-tglu-10/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-dg2: NOTRUN -> [SKIP][386] ([i915#9683]) [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg2-8/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@fbc-pr-sprite-render: - shard-tglu: NOTRUN -> [SKIP][387] ([i915#9732]) +24 other tests skip [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-tglu-3/igt@kms_psr@fbc-pr-sprite-render.html * igt@kms_psr@fbc-psr2-cursor-plane-onoff: - shard-mtlp: NOTRUN -> [SKIP][388] ([i915#9688]) +12 other tests skip [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-mtlp-4/igt@kms_psr@fbc-psr2-cursor-plane-onoff.html * igt@kms_psr@fbc-psr2-sprite-render: - shard-rkl: NOTRUN -> [SKIP][389] ([i915#1072] / [i915#9732]) +18 other tests skip [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-7/igt@kms_psr@fbc-psr2-sprite-render.html - shard-dg1: NOTRUN -> [SKIP][390] ([i915#1072] / [i915#9732]) +10 other tests skip [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg1-12/igt@kms_psr@fbc-psr2-sprite-render.html * igt@kms_psr@pr-no-drrs: - shard-rkl: NOTRUN -> [SKIP][391] ([i915#1072] / [i915#14544] / [i915#9732]) +1 other test skip [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-6/igt@kms_psr@pr-no-drrs.html * igt@kms_psr@pr-primary-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][392] ([i915#1072] / [i915#9732]) +18 other tests skip [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg2-1/igt@kms_psr@pr-primary-mmap-gtt.html * igt@kms_psr@pr-sprite-plane-onoff: - shard-tglu-1: NOTRUN -> [SKIP][393] ([i915#9732]) +8 other tests skip [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-tglu-1/igt@kms_psr@pr-sprite-plane-onoff.html * igt@kms_psr@psr-primary-mmap-gtt@edp-1: - shard-mtlp: NOTRUN -> [SKIP][394] ([i915#4077] / [i915#9688]) +1 other test skip [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-mtlp-8/igt@kms_psr@psr-primary-mmap-gtt@edp-1.html * igt@kms_rotation_crc@multiplane-rotation-cropping-top: - shard-glk10: NOTRUN -> [INCOMPLETE][395] ([i915#15492] / [i915#16184]) [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-glk10/igt@kms_rotation_crc@multiplane-rotation-cropping-top.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-180: - shard-mtlp: NOTRUN -> [SKIP][396] ([i915#5289]) [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-mtlp-8/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-dg2: NOTRUN -> [SKIP][397] ([i915#5190]) [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg2-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-tglu: NOTRUN -> [SKIP][398] ([i915#5289]) [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-tglu-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-rkl: NOTRUN -> [SKIP][399] ([i915#5289]) [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_scaling_modes@scaling-mode-none: - shard-dg2: NOTRUN -> [SKIP][400] ([i915#3555]) +3 other tests skip [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg2-8/igt@kms_scaling_modes@scaling-mode-none.html - shard-mtlp: NOTRUN -> [SKIP][401] ([i915#3555] / [i915#5030] / [i915#9041]) [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-mtlp-7/igt@kms_scaling_modes@scaling-mode-none.html * igt@kms_scaling_modes@scaling-mode-none@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][402] ([i915#5030]) +2 other tests skip [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-mtlp-7/igt@kms_scaling_modes@scaling-mode-none@pipe-a-edp-1.html * igt@kms_scaling_modes@scaling-mode-none@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][403] ([i915#5030] / [i915#9041]) [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-mtlp-7/igt@kms_scaling_modes@scaling-mode-none@pipe-d-edp-1.html * igt@kms_setmode@basic: - shard-snb: NOTRUN -> [FAIL][404] ([i915#15106]) +6 other tests fail [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-snb6/igt@kms_setmode@basic.html * igt@kms_tiled_display@basic-test-pattern: - shard-tglu: NOTRUN -> [SKIP][405] ([i915#8623]) [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-tglu-9/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-rkl: NOTRUN -> [SKIP][406] ([i915#8623]) [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-4/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html - shard-dg1: NOTRUN -> [SKIP][407] ([i915#8623]) [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg1-18/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_vrr@flip-basic: - shard-dg2: NOTRUN -> [SKIP][408] ([i915#15243] / [i915#3555]) [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg2-6/igt@kms_vrr@flip-basic.html - shard-mtlp: NOTRUN -> [SKIP][409] ([i915#3555] / [i915#8808]) [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-mtlp-7/igt@kms_vrr@flip-basic.html * igt@kms_vrr@max-min: - shard-dg2: NOTRUN -> [SKIP][410] ([i915#9906]) [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg2-5/igt@kms_vrr@max-min.html - shard-rkl: NOTRUN -> [SKIP][411] ([i915#14544] / [i915#9906]) [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-6/igt@kms_vrr@max-min.html - shard-dg1: NOTRUN -> [SKIP][412] ([i915#9906]) [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg1-17/igt@kms_vrr@max-min.html - shard-tglu: NOTRUN -> [SKIP][413] ([i915#9906]) [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-tglu-7/igt@kms_vrr@max-min.html - shard-mtlp: NOTRUN -> [SKIP][414] ([i915#8808] / [i915#9906]) [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-mtlp-2/igt@kms_vrr@max-min.html * igt@kms_vrr@negative-basic: - shard-rkl: NOTRUN -> [SKIP][415] ([i915#3555] / [i915#9906]) [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-8/igt@kms_vrr@negative-basic.html - shard-dg1: NOTRUN -> [SKIP][416] ([i915#3555] / [i915#9906]) [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg1-15/igt@kms_vrr@negative-basic.html * igt@kms_vrr@seamless-rr-switch-vrr: - shard-tglu-1: NOTRUN -> [SKIP][417] ([i915#9906]) +1 other test skip [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-tglu-1/igt@kms_vrr@seamless-rr-switch-vrr.html * igt@perf_pmu@rc6-all-gts: - shard-tglu-1: NOTRUN -> [SKIP][418] ([i915#8516]) [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-tglu-1/igt@perf_pmu@rc6-all-gts.html * igt@prime_udl@share-import-addfb: - shard-mtlp: NOTRUN -> [SKIP][419] ([i915#16420]) [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-mtlp-4/igt@prime_udl@share-import-addfb.html - shard-rkl: NOTRUN -> [SKIP][420] ([i915#16420]) [420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-5/igt@prime_udl@share-import-addfb.html - shard-dg1: NOTRUN -> [SKIP][421] ([i915#16420]) [421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg1-16/igt@prime_udl@share-import-addfb.html - shard-tglu: NOTRUN -> [SKIP][422] ([i915#16420]) [422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-tglu-7/igt@prime_udl@share-import-addfb.html * igt@prime_vgem@basic-fence-read: - shard-dg2: NOTRUN -> [SKIP][423] ([i915#3291] / [i915#3708]) [423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg2-7/igt@prime_vgem@basic-fence-read.html * igt@prime_vgem@basic-gtt: - shard-dg2: NOTRUN -> [SKIP][424] ([i915#3708] / [i915#4077]) +1 other test skip [424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg2-6/igt@prime_vgem@basic-gtt.html * igt@tools_test@sysfs_l3_parity: - shard-dg2: NOTRUN -> [SKIP][425] ([i915#4818]) [425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg2-7/igt@tools_test@sysfs_l3_parity.html - shard-dg1: NOTRUN -> [SKIP][426] ([i915#4818]) [426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg1-19/igt@tools_test@sysfs_l3_parity.html #### Possible fixes #### * igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0: - shard-dg2: [INCOMPLETE][427] ([i915#13356] / [i915#16348]) -> [PASS][428] [427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-dg2-1/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html [428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg2-3/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html * igt@gem_eio@in-flight-suspend: - shard-rkl: [INCOMPLETE][429] ([i915#13390]) -> [PASS][430] [429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-3/igt@gem_eio@in-flight-suspend.html [430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-3/igt@gem_eio@in-flight-suspend.html * igt@gem_exec_suspend@basic-s4-devices: - shard-dg2: [ABORT][431] ([i915#15542] / [i915#7975]) -> [PASS][432] +1 other test pass [431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-dg2-10/igt@gem_exec_suspend@basic-s4-devices.html [432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg2-7/igt@gem_exec_suspend@basic-s4-devices.html * igt@i915_power@sanity: - shard-mtlp: [SKIP][433] ([i915#7984]) -> [PASS][434] [433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-mtlp-2/igt@i915_power@sanity.html [434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-mtlp-5/igt@i915_power@sanity.html * igt@i915_suspend@basic-s2idle-without-i915: - shard-rkl: [ABORT][435] ([i915#15131]) -> [PASS][436] [435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-1/igt@i915_suspend@basic-s2idle-without-i915.html [436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-3/igt@i915_suspend@basic-s2idle-without-i915.html * igt@i915_suspend@debugfs-reader: - shard-rkl: [INCOMPLETE][437] ([i915#4817]) -> [PASS][438] [437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-6/igt@i915_suspend@debugfs-reader.html [438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-2/igt@i915_suspend@debugfs-reader.html * igt@kms_3d@basic: - shard-mtlp: [SKIP][439] ([i915#15726]) -> [PASS][440] [439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-mtlp-1/igt@kms_3d@basic.html [440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-mtlp-7/igt@kms_3d@basic.html * igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-a-hdmi-a-1: - shard-glk: [FAIL][441] ([i915#14888]) -> [PASS][442] +1 other test pass [441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-glk2/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-a-hdmi-a-1.html [442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-glk6/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-a-hdmi-a-1.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-mtlp: [FAIL][443] ([i915#5956]) -> [PASS][444] +1 other test pass [443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-mtlp-2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html [444]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-mtlp-4/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-mtlp: [FAIL][445] ([i915#15733] / [i915#5138]) -> [PASS][446] +1 other test pass [445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-mtlp-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html [446]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-mtlp-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-snb: [FAIL][447] ([i915#16662]) -> [PASS][448] [447]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-snb5/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html [448]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-snb6/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc: - shard-dg1: [DMESG-WARN][449] ([i915#4423]) -> [PASS][450] [449]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-dg1-12/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc.html [450]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg1-18/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc.html * igt@kms_cursor_crc@cursor-onscreen-128x42: - shard-rkl: [FAIL][451] ([i915#13566]) -> [PASS][452] +6 other tests pass [451]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-8/igt@kms_cursor_crc@cursor-onscreen-128x42.html [452]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-5/igt@kms_cursor_crc@cursor-onscreen-128x42.html * igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1: - shard-tglu: [FAIL][453] ([i915#13566]) -> [PASS][454] +1 other test pass [453]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-tglu-10/igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1.html [454]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-tglu-6/igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1.html * igt@kms_flip@flip-vs-expired-vblank@d-hdmi-a3: - shard-dg2: [FAIL][455] ([i915#13027]) -> [PASS][456] +1 other test pass [455]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-dg2-5/igt@kms_flip@flip-vs-expired-vblank@d-hdmi-a3.html [456]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg2-1/igt@kms_flip@flip-vs-expired-vblank@d-hdmi-a3.html * igt@kms_force_connector_basic@prune-stale-modes: - shard-mtlp: [SKIP][457] ([i915#15672]) -> [PASS][458] [457]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-mtlp-1/igt@kms_force_connector_basic@prune-stale-modes.html [458]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-mtlp-3/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_frontbuffer_tracking@hdr-1p-primscrn-pri-indfb-draw-render: - shard-glk: [SKIP][459] -> [PASS][460] +3 other tests pass [459]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-glk3/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-pri-indfb-draw-render.html [460]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-glk8/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@hdr-1p-primscrn-spr-indfb-draw-blt: - shard-rkl: [SKIP][461] ([i915#15989]) -> [PASS][462] +6 other tests pass [461]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-3/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-spr-indfb-draw-blt.html [462]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-1/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-spr-indfb-draw-blt.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-dg1: [SKIP][463] ([i915#15073]) -> [PASS][464] [463]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-dg1-14/igt@kms_pm_rpm@modeset-non-lpsp-stress.html [464]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg1-17/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-rkl: [SKIP][465] ([i915#15073]) -> [PASS][466] +1 other test pass [465]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-5/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html [466]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-7/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@kms_pm_rpm@system-suspend-modeset: - shard-rkl: [INCOMPLETE][467] ([i915#14419]) -> [PASS][468] [467]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-6/igt@kms_pm_rpm@system-suspend-modeset.html [468]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-5/igt@kms_pm_rpm@system-suspend-modeset.html * igt@perf_pmu@busy-idle-check-all@ccs0: - shard-mtlp: [FAIL][469] ([i915#4349]) -> [PASS][470] +6 other tests pass [469]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-mtlp-5/igt@perf_pmu@busy-idle-check-all@ccs0.html [470]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-mtlp-8/igt@perf_pmu@busy-idle-check-all@ccs0.html * igt@perf_pmu@busy-idle-check-all@vcs0: - shard-dg2: [FAIL][471] ([i915#4349]) -> [PASS][472] +8 other tests pass [471]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-dg2-5/igt@perf_pmu@busy-idle-check-all@vcs0.html [472]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg2-6/igt@perf_pmu@busy-idle-check-all@vcs0.html * igt@perf_pmu@busy-idle-check-all@vecs0: - shard-dg1: [FAIL][473] ([i915#4349]) -> [PASS][474] +3 other tests pass [473]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-dg1-12/igt@perf_pmu@busy-idle-check-all@vecs0.html [474]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg1-18/igt@perf_pmu@busy-idle-check-all@vecs0.html #### Warnings #### * igt@gem_ctx_sseu@invalid-sseu: - shard-rkl: [SKIP][475] ([i915#14544] / [i915#280]) -> [SKIP][476] ([i915#280]) [475]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-6/igt@gem_ctx_sseu@invalid-sseu.html [476]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-7/igt@gem_ctx_sseu@invalid-sseu.html * igt@gem_exec_balancer@parallel: - shard-rkl: [SKIP][477] ([i915#14544] / [i915#4525]) -> [SKIP][478] ([i915#4525]) [477]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-6/igt@gem_exec_balancer@parallel.html [478]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-5/igt@gem_exec_balancer@parallel.html * igt@gem_exec_capture@capture-invisible@smem0: - shard-rkl: [SKIP][479] ([i915#6334]) -> [SKIP][480] ([i915#14544] / [i915#6334]) +1 other test skip [479]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-3/igt@gem_exec_capture@capture-invisible@smem0.html [480]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-6/igt@gem_exec_capture@capture-invisible@smem0.html * igt@gem_exec_reloc@basic-gtt-wc-noreloc: - shard-rkl: [SKIP][481] ([i915#3281]) -> [SKIP][482] ([i915#14544] / [i915#3281]) +1 other test skip [481]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-1/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html [482]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-6/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html * igt@gem_exec_reloc@basic-write-read: - shard-rkl: [SKIP][483] ([i915#14544] / [i915#3281]) -> [SKIP][484] ([i915#3281]) +2 other tests skip [483]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-6/igt@gem_exec_reloc@basic-write-read.html [484]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-5/igt@gem_exec_reloc@basic-write-read.html * igt@gem_lmem_swapping@verify: - shard-rkl: [SKIP][485] ([i915#14544] / [i915#4613]) -> [SKIP][486] ([i915#4613]) +1 other test skip [485]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-6/igt@gem_lmem_swapping@verify.html [486]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-3/igt@gem_lmem_swapping@verify.html * igt@gem_media_vme: - shard-rkl: [SKIP][487] ([i915#284]) -> [SKIP][488] ([i915#14544] / [i915#284]) [487]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-3/igt@gem_media_vme.html [488]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-6/igt@gem_media_vme.html * igt@gem_partial_pwrite_pread@reads-uncached: - shard-rkl: [SKIP][489] ([i915#14544] / [i915#3282]) -> [SKIP][490] ([i915#3282]) +4 other tests skip [489]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-6/igt@gem_partial_pwrite_pread@reads-uncached.html [490]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-1/igt@gem_partial_pwrite_pread@reads-uncached.html * igt@gem_partial_pwrite_pread@write-display: - shard-rkl: [SKIP][491] ([i915#3282]) -> [SKIP][492] ([i915#14544] / [i915#3282]) [491]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-5/igt@gem_partial_pwrite_pread@write-display.html [492]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-6/igt@gem_partial_pwrite_pread@write-display.html * igt@gem_set_tiling_vs_blt@tiled-to-tiled: - shard-rkl: [SKIP][493] ([i915#14544] / [i915#8411]) -> [SKIP][494] ([i915#8411]) [493]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-6/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html [494]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-8/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html * igt@gem_set_tiling_vs_blt@tiled-to-untiled: - shard-rkl: [SKIP][495] ([i915#8411]) -> [SKIP][496] ([i915#14544] / [i915#8411]) [495]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-7/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html [496]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-6/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html * igt@gem_userptr_blits@unsync-overlap: - shard-rkl: [SKIP][497] ([i915#14544] / [i915#3297]) -> [SKIP][498] ([i915#3297]) +1 other test skip [497]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-6/igt@gem_userptr_blits@unsync-overlap.html [498]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-8/igt@gem_userptr_blits@unsync-overlap.html * igt@gen9_exec_parse@valid-registers: - shard-rkl: [SKIP][499] ([i915#2527]) -> [SKIP][500] ([i915#14544] / [i915#2527]) [499]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-4/igt@gen9_exec_parse@valid-registers.html [500]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-6/igt@gen9_exec_parse@valid-registers.html * igt@gpu_buddy@gpu_buddy: - shard-rkl: [SKIP][501] ([i915#15678]) -> [SKIP][502] ([i915#14544] / [i915#15678]) [501]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-2/igt@gpu_buddy@gpu_buddy.html [502]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-6/igt@gpu_buddy@gpu_buddy.html * igt@i915_pm_freq_api@freq-reset: - shard-rkl: [SKIP][503] ([i915#14544] / [i915#8399]) -> [SKIP][504] ([i915#8399]) [503]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-6/igt@i915_pm_freq_api@freq-reset.html [504]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-1/igt@i915_pm_freq_api@freq-reset.html * igt@i915_query@query-topology-known-pci-ids: - shard-rkl: [SKIP][505] ([i915#14544] / [i915#16109]) -> [SKIP][506] ([i915#16109]) [505]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-6/igt@i915_query@query-topology-known-pci-ids.html [506]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-4/igt@i915_query@query-topology-known-pci-ids.html * igt@i915_query@query-topology-unsupported: - shard-rkl: [SKIP][507] ([i915#14544] / [i915#16079]) -> [SKIP][508] ([i915#16079]) [507]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-6/igt@i915_query@query-topology-unsupported.html [508]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-7/igt@i915_query@query-topology-unsupported.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-rkl: [SKIP][509] ([i915#9531]) -> [SKIP][510] ([i915#14544] / [i915#9531]) [509]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-1/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html [510]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-6/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_big_fb@4-tiled-64bpp-rotate-0: - shard-rkl: [SKIP][511] ([i915#5286]) -> [SKIP][512] ([i915#14544] / [i915#5286]) +3 other tests skip [511]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-7/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html [512]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-6/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html * igt@kms_big_fb@4-tiled-64bpp-rotate-270: - shard-rkl: [SKIP][513] ([i915#14544] / [i915#5286]) -> [SKIP][514] ([i915#5286]) [513]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-6/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html [514]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-2/igt@kms_big_fb@4-tiled-64bpp-rotate-270.html * igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip: - shard-rkl: [SKIP][515] ([i915#3828]) -> [SKIP][516] ([i915#14544] / [i915#3828]) [515]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-7/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip.html [516]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-6/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-rkl: [SKIP][517] ([i915#14544]) -> [SKIP][518] +34 other tests skip [517]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-6/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html [518]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-1/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs: - shard-rkl: [SKIP][519] ([i915#14098] / [i915#6095]) -> [SKIP][520] ([i915#14098] / [i915#14544] / [i915#6095]) +8 other tests skip [519]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-7/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs.html [520]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-6/igt@kms_ccs@bad-pixel-format-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-2: - shard-rkl: [SKIP][521] ([i915#6095]) -> [SKIP][522] ([i915#14544] / [i915#6095]) +5 other tests skip [521]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-7/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-2.html [522]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-6/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-2.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2: - shard-rkl: [SKIP][523] ([i915#14544] / [i915#6095]) -> [SKIP][524] ([i915#6095]) +10 other tests skip [523]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-6/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html [524]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-1/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs: - shard-rkl: [SKIP][525] ([i915#12313]) -> [SKIP][526] ([i915#12313] / [i915#14544]) [525]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-4/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html [526]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs: - shard-rkl: [SKIP][527] ([i915#12805]) -> [SKIP][528] ([i915#12805] / [i915#14544]) [527]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-5/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html [528]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs: - shard-rkl: [SKIP][529] ([i915#14098] / [i915#14544] / [i915#6095]) -> [SKIP][530] ([i915#14098] / [i915#6095]) +15 other tests skip [529]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html [530]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-4/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-rkl: [SKIP][531] ([i915#3742]) -> [SKIP][532] ([i915#14544] / [i915#3742]) [531]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-7/igt@kms_cdclk@mode-transition-all-outputs.html [532]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-6/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_chamelium_color_pipeline@plane-lut1d-lut1d: - shard-rkl: [SKIP][533] ([i915#16471]) -> [SKIP][534] ([i915#14544] / [i915#16471]) [533]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-7/igt@kms_chamelium_color_pipeline@plane-lut1d-lut1d.html [534]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-6/igt@kms_chamelium_color_pipeline@plane-lut1d-lut1d.html * igt@kms_chamelium_edid@hdmi-mode-timings: - shard-rkl: [SKIP][535] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][536] ([i915#11151] / [i915#7828]) +4 other tests skip [535]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-6/igt@kms_chamelium_edid@hdmi-mode-timings.html [536]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-3/igt@kms_chamelium_edid@hdmi-mode-timings.html * igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode: - shard-rkl: [SKIP][537] ([i915#11151] / [i915#7828]) -> [SKIP][538] ([i915#11151] / [i915#14544] / [i915#7828]) +1 other test skip [537]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-3/igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode.html [538]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-6/igt@kms_chamelium_hpd@vga-hpd-with-enabled-mode.html * igt@kms_content_protection@dp-mst-type-0-hdcp14: - shard-rkl: [SKIP][539] ([i915#15330]) -> [SKIP][540] ([i915#14544] / [i915#15330]) [539]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-1/igt@kms_content_protection@dp-mst-type-0-hdcp14.html [540]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-6/igt@kms_content_protection@dp-mst-type-0-hdcp14.html * igt@kms_content_protection@dp-mst-type-1: - shard-rkl: [SKIP][541] ([i915#15330] / [i915#3116]) -> [SKIP][542] ([i915#14544] / [i915#15330] / [i915#3116]) [541]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-7/igt@kms_content_protection@dp-mst-type-1.html [542]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-6/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@mei-interface: - shard-dg1: [SKIP][543] ([i915#15865]) -> [SKIP][544] ([i915#9433]) [543]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-dg1-14/igt@kms_content_protection@mei-interface.html [544]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg1-12/igt@kms_content_protection@mei-interface.html * igt@kms_content_protection@type1: - shard-rkl: [SKIP][545] ([i915#14544] / [i915#15865]) -> [SKIP][546] ([i915#15865]) +1 other test skip [545]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-6/igt@kms_content_protection@type1.html [546]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-4/igt@kms_content_protection@type1.html * igt@kms_cursor_crc@cursor-onscreen-512x512: - shard-rkl: [SKIP][547] ([i915#13049] / [i915#14544]) -> [SKIP][548] ([i915#13049]) [547]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-512x512.html [548]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-2/igt@kms_cursor_crc@cursor-onscreen-512x512.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-rkl: [SKIP][549] ([i915#13049]) -> [SKIP][550] ([i915#13049] / [i915#14544]) +1 other test skip [549]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-4/igt@kms_cursor_crc@cursor-random-512x170.html [550]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-6/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_crc@cursor-rapid-movement-32x10: - shard-rkl: [SKIP][551] ([i915#3555]) -> [SKIP][552] ([i915#14544] / [i915#3555]) [551]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-8/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html [552]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-6/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-rkl: [SKIP][553] ([i915#14544] / [i915#4103]) -> [SKIP][554] ([i915#4103]) [553]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-6/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html [554]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-4/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt@kms_dp_link_training@non-uhbr-mst: - shard-rkl: [SKIP][555] ([i915#13749]) -> [SKIP][556] ([i915#13749] / [i915#14544]) [555]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-4/igt@kms_dp_link_training@non-uhbr-mst.html [556]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-6/igt@kms_dp_link_training@non-uhbr-mst.html * igt@kms_dp_linktrain_fallback@dsc-fallback: - shard-rkl: [SKIP][557] ([i915#13707] / [i915#14544]) -> [SKIP][558] ([i915#13707]) [557]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-6/igt@kms_dp_linktrain_fallback@dsc-fallback.html [558]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-1/igt@kms_dp_linktrain_fallback@dsc-fallback.html * igt@kms_dsc@dsc-with-formats-bigjoiner: - shard-rkl: [SKIP][559] ([i915#14544] / [i915#16361]) -> [SKIP][560] ([i915#16361]) +1 other test skip [559]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-6/igt@kms_dsc@dsc-with-formats-bigjoiner.html [560]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-3/igt@kms_dsc@dsc-with-formats-bigjoiner.html * igt@kms_feature_discovery@display-4x: - shard-rkl: [SKIP][561] ([i915#14544] / [i915#16081]) -> [SKIP][562] ([i915#16081]) [561]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-6/igt@kms_feature_discovery@display-4x.html [562]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-4/igt@kms_feature_discovery@display-4x.html * igt@kms_feature_discovery@psr1: - shard-rkl: [SKIP][563] ([i915#658]) -> [SKIP][564] ([i915#14544] / [i915#658]) [563]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-7/igt@kms_feature_discovery@psr1.html [564]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-6/igt@kms_feature_discovery@psr1.html * igt@kms_flip@2x-absolute-wf_vblank-interruptible: - shard-rkl: [SKIP][565] ([i915#14544] / [i915#9934]) -> [SKIP][566] ([i915#9934]) +3 other tests skip [565]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-6/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html [566]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-3/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html * igt@kms_flip@2x-flip-vs-panning-vs-hang: - shard-rkl: [SKIP][567] ([i915#9934]) -> [SKIP][568] ([i915#14544] / [i915#9934]) +2 other tests skip [567]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-1/igt@kms_flip@2x-flip-vs-panning-vs-hang.html [568]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-6/igt@kms_flip@2x-flip-vs-panning-vs-hang.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling: - shard-rkl: [SKIP][569] ([i915#14544] / [i915#15643]) -> [SKIP][570] ([i915#15643]) +3 other tests skip [569]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html [570]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc: - shard-rkl: [SKIP][571] ([i915#14544] / [i915#1825]) -> [SKIP][572] ([i915#1825]) +3 other tests skip [571]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html [572]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw: - shard-rkl: [SKIP][573] ([i915#14544] / [i915#15102] / [i915#3023]) -> [SKIP][574] ([i915#15102] / [i915#3023]) +8 other tests skip [573]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html [574]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-rte: - shard-rkl: [SKIP][575] ([i915#15102] / [i915#3023]) -> [SKIP][576] ([i915#14544] / [i915#15102] / [i915#3023]) +2 other tests skip [575]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-rte.html [576]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-rte.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc: - shard-rkl: [SKIP][577] ([i915#1825]) -> [SKIP][578] ([i915#14544] / [i915#1825]) [577]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc.html [578]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-shrfb-pgflip-blt: - shard-rkl: [SKIP][579] ([i915#15102]) -> [SKIP][580] ([i915#14544] / [i915#15102]) +8 other tests skip [579]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-8/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-shrfb-pgflip-blt.html [580]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-rte: - shard-rkl: [SKIP][581] ([i915#14544] / [i915#15102]) -> [SKIP][582] ([i915#15102]) +6 other tests skip [581]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-rte.html [582]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-rte.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-primscrn-spr-indfb-draw-render: - shard-rkl: [SKIP][583] -> [SKIP][584] ([i915#14544]) +26 other tests skip [583]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-primscrn-spr-indfb-draw-render.html [584]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-primscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@hdr-suspend: - shard-rkl: [SKIP][585] ([i915#15989]) -> [INCOMPLETE][586] ([i915#16056]) [585]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-7/igt@kms_frontbuffer_tracking@hdr-suspend.html [586]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-6/igt@kms_frontbuffer_tracking@hdr-suspend.html * igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary: - shard-dg2: [SKIP][587] ([i915#15102]) -> [SKIP][588] ([i915#10433] / [i915#15102]) [587]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-dg2-8/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html [588]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html * igt@kms_hdr@brightness-with-hdr: - shard-dg1: [SKIP][589] ([i915#1187] / [i915#12713]) -> [SKIP][590] ([i915#12713]) [589]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-dg1-13/igt@kms_hdr@brightness-with-hdr.html [590]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg1-15/igt@kms_hdr@brightness-with-hdr.html * igt@kms_joiner@basic-force-ultra-joiner: - shard-rkl: [SKIP][591] ([i915#14544] / [i915#15458]) -> [SKIP][592] ([i915#15458]) [591]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-6/igt@kms_joiner@basic-force-ultra-joiner.html [592]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-7/igt@kms_joiner@basic-force-ultra-joiner.html * igt@kms_joiner@invalid-modeset-ultra-joiner: - shard-rkl: [SKIP][593] ([i915#15458]) -> [SKIP][594] ([i915#14544] / [i915#15458]) [593]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-7/igt@kms_joiner@invalid-modeset-ultra-joiner.html [594]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-6/igt@kms_joiner@invalid-modeset-ultra-joiner.html * igt@kms_plane@pixel-format-y-tiled-ccs-modifier: - shard-rkl: [SKIP][595] ([i915#15709]) -> [SKIP][596] ([i915#14544] / [i915#15709]) +1 other test skip [595]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-5/igt@kms_plane@pixel-format-y-tiled-ccs-modifier.html [596]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-6/igt@kms_plane@pixel-format-y-tiled-ccs-modifier.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-b: - shard-rkl: [SKIP][597] ([i915#15329]) -> [SKIP][598] ([i915#14544] / [i915#15329]) +6 other tests skip [597]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-3/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-b.html [598]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-6/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-b.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation: - shard-rkl: [SKIP][599] ([i915#15329] / [i915#3555]) -> [SKIP][600] ([i915#14544] / [i915#15329] / [i915#3555]) [599]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-4/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html [600]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-6/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html * igt@kms_pm_backlight@bad-brightness: - shard-rkl: [SKIP][601] ([i915#12343] / [i915#14544] / [i915#5354]) -> [SKIP][602] ([i915#12343] / [i915#5354]) [601]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-6/igt@kms_pm_backlight@bad-brightness.html [602]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-5/igt@kms_pm_backlight@bad-brightness.html * igt@kms_pm_backlight@brightness-with-dpms: - shard-rkl: [SKIP][603] ([i915#12343]) -> [SKIP][604] ([i915#12343] / [i915#14544]) [603]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-1/igt@kms_pm_backlight@brightness-with-dpms.html [604]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-6/igt@kms_pm_backlight@brightness-with-dpms.html * igt@kms_pm_dc@dc5-retention-flops: - shard-rkl: [SKIP][605] ([i915#14544] / [i915#3828]) -> [SKIP][606] ([i915#3828]) +1 other test skip [605]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-6/igt@kms_pm_dc@dc5-retention-flops.html [606]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-3/igt@kms_pm_dc@dc5-retention-flops.html * igt@kms_pm_dc@dc6-dpms: - shard-tglu: [FAIL][607] ([i915#16479]) -> [SKIP][608] ([i915#15128]) [607]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-tglu-4/igt@kms_pm_dc@dc6-dpms.html [608]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-tglu-6/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_rpm@system-suspend-idle: - shard-dg2: [INCOMPLETE][609] ([i915#14419]) -> [ABORT][610] ([i915#15132]) [609]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-dg2-4/igt@kms_pm_rpm@system-suspend-idle.html [610]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg2-10/igt@kms_pm_rpm@system-suspend-idle.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf: - shard-rkl: [SKIP][611] ([i915#11520] / [i915#14544]) -> [SKIP][612] ([i915#11520]) +3 other tests skip [611]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-6/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html [612]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-8/igt@kms_psr2_sf@fbc-psr2-cursor-plane-update-sf.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf: - shard-rkl: [SKIP][613] ([i915#11520]) -> [SKIP][614] ([i915#11520] / [i915#14544]) +1 other test skip [613]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-1/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf.html [614]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-6/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf.html * igt@kms_psr@fbc-pr-suspend: - shard-rkl: [SKIP][615] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][616] ([i915#1072] / [i915#9732]) +6 other tests skip [615]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-6/igt@kms_psr@fbc-pr-suspend.html [616]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-8/igt@kms_psr@fbc-pr-suspend.html * igt@kms_psr@fbc-psr-basic: - shard-rkl: [SKIP][617] ([i915#1072] / [i915#9732]) -> [SKIP][618] ([i915#1072] / [i915#14544] / [i915#9732]) +6 other tests skip [617]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-3/igt@kms_psr@fbc-psr-basic.html [618]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-6/igt@kms_psr@fbc-psr-basic.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-dg2: [SKIP][619] ([i915#15867] / [i915#5190]) -> [SKIP][620] ([i915#12755] / [i915#15867] / [i915#5190]) [619]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-dg2-10/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html [620]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg2-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_selftest@drm_framebuffer: - shard-dg1: [ABORT][621] ([i915#13179] / [i915#16508]) -> [ABORT][622] ([i915#13179]) +1 other test abort [621]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-dg1-14/igt@kms_selftest@drm_framebuffer.html [622]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg1-12/igt@kms_selftest@drm_framebuffer.html * igt@perf_pmu@module-unload: - shard-dg2: [ABORT][623] ([i915#13029] / [i915#15778]) -> [ABORT][624] ([i915#15778]) [623]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-dg2-6/igt@perf_pmu@module-unload.html [624]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-dg2-1/igt@perf_pmu@module-unload.html * igt@sriov_basic@enable-vfs-autoprobe-off: - shard-rkl: [SKIP][625] ([i915#9917]) -> [SKIP][626] ([i915#14544] / [i915#9917]) [625]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9015/shard-rkl-7/igt@sriov_basic@enable-vfs-autoprobe-off.html [626]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/shard-rkl-6/igt@sriov_basic@enable-vfs-autoprobe-off.html [i915#10056]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10056 [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#10553]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10553 [i915#10647]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647 [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099 [i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151 [i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520 [i915#11527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11527 [i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681 [i915#118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/118 [i915#1187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1187 [i915#12177]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12177 [i915#12178]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12178 [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#12343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12343 [i915#12655]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12655 [i915#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713 [i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745 [i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755 [i915#12761]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12761 [i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805 [i915#13027]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13027 [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#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356 [i915#13390]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13390 [i915#13398]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13398 [i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566 [i915#13688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13688 [i915#13691]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13691 [i915#13707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707 [i915#13748]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748 [i915#13749]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749 [i915#13781]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13781 [i915#13783]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13783 [i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958 [i915#14073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14073 [i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098 [i915#14118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14118 [i915#14123]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14123 [i915#14419]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14419 [i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544 [i915#14545]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14545 [i915#14600]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14600 [i915#14712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14712 [i915#14888]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14888 [i915#15073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073 [i915#15102]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102 [i915#15104]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15104 [i915#15106]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15106 [i915#15128]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15128 [i915#15131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15131 [i915#15132]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15132 [i915#15172]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15172 [i915#15243]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15243 [i915#15329]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15329 [i915#15330]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330 [i915#15436]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15436 [i915#15458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15458 [i915#15459]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15459 [i915#15492]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15492 [i915#15542]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15542 [i915#15582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15582 [i915#15643]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643 [i915#15672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15672 [i915#15678]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15678 [i915#15709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709 [i915#15725]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15725 [i915#15726]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15726 [i915#15733]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15733 [i915#15751]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15751 [i915#15778]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15778 [i915#15816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15816 [i915#15840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15840 [i915#15865]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15865 [i915#15867]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15867 [i915#15871]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15871 [i915#15989]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15989 [i915#15990]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15990 [i915#15991]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15991 [i915#16056]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16056 [i915#16079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16079 [i915#16081]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16081 [i915#16109]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16109 [i915#16112]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16112 [i915#16119]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16119 [i915#16182]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16182 [i915#16184]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16184 [i915#16348]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16348 [i915#16361]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16361 [i915#16386]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16386 [i915#16420]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16420 [i915#16464]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16464 [i915#16471]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16471 [i915#16479]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16479 [i915#16508]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16508 [i915#16518]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16518 [i915#16593]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16593 [i915#16599]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16599 [i915#16600]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16600 [i915#16644]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16644 [i915#16662]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16662 [i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769 [i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825 [i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527 [i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658 [i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280 [i915#284]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/284 [i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023 [i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116 [i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299 [i915#3323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3323 [i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638 [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708 [i915#3711]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3711 [i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742 [i915#3778]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3778 [i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804 [i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828 [i915#3955]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3955 [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083 [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213 [i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270 [i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349 [i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423 [i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525 [i915#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537 [i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812 [i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817 [i915#4818]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4818 [i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839 [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#4885]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4885 [i915#4958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4958 [i915#5030]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5030 [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#5723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5723 [i915#5956]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5956 [i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095 [i915#6113]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6113 [i915#6245]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6245 [i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301 [i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334 [i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335 [i915#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#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953 [i915#7016]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7016 [i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697 [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#7984]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7984 [i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228 [i915#8289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8289 [i915#8381]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381 [i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399 [i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411 [i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428 [i915#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516 [i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555 [i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623 [i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708 [i915#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#9041]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9041 [i915#9067]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067 [i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340 [i915#9433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9433 [i915#9531]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9531 [i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683 [i915#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#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_9015 -> IGTPW_15563 CI-20190529: 20190529 CI_DRM_18861: b521b0cb70bcb6e524b6c2ee6f86f5c6f0803405 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_15563: 15563 IGT_9015: c656c9ccd7e45834f4ca191dbf729e7ba4676f6b @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15563/index.html [-- Attachment #2: Type: text/html, Size: 209352 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2026-07-21 14:29 UTC | newest] Thread overview: 6+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2026-07-20 9:55 [PATCH i-g-t 1/2] tests/amdgpu/amd_deadlock: add gfx user-queue clean-hang reset test Jesse Zhang 2026-07-20 9:55 ` [PATCH i-g-t 2/2] tests/amdgpu/amd_deadlock: add gfx user-queue priv-fault " Jesse Zhang 2026-07-21 1:46 ` ✓ Xe.CI.BAT: success for series starting with [i-g-t,1/2] tests/amdgpu/amd_deadlock: add gfx user-queue clean-hang " Patchwork 2026-07-21 2:03 ` ✓ i915.CI.BAT: " Patchwork 2026-07-21 9:47 ` ✗ Xe.CI.FULL: failure " Patchwork 2026-07-21 14:29 ` ✗ i915.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