* [i-g-t] tests/intel/xe_exec_mix_modes: Add multi-queue LR spinner switch subtest
@ 2026-08-17 20:00 Jagmeet Randhawa
2026-08-17 22:55 ` ✓ Xe.CI.BAT: success for " Patchwork
` (4 more replies)
0 siblings, 5 replies; 7+ messages in thread
From: Jagmeet Randhawa @ 2026-08-17 20:00 UTC (permalink / raw)
To: igt-dev; +Cc: niranjana.vishwanathapura, Jagmeet Randhawa
Add exec-multi-queue-spinner-interrupted-lr, which runs preemptible
spinners on every queue in a multi-queue exec queue group in long
running mode, then submits a dma-fence job on the same engine to force
the group from FAULT into DMA_FENCE mode.
Each spinner is armed with a queue-switch semaphore
(multi_queue_switch_on_wait + xe_spin_preempt_wait) so it yields the
shared engine to its sibling once scheduled, instead of busy-looping
and starving the rest of the group. This lets every queue in the group
be genuinely resident when the interrupting job forces the mode
switch, exercising suspend/resume of the secondary queues rather than
just the primary.
The dma-fence and LR (preempt) multi-queue suspend/resume paths are
already covered by the userptr-invalidation tests; this adds the
missing FAULT-mode coverage.
Signed-off-by: Jagmeet Randhawa <jagmeet.randhawa@intel.com>
---
tests/intel/xe_exec_mix_modes.c | 111 ++++++++++++++++++++++++++++++++
1 file changed, 111 insertions(+)
diff --git a/tests/intel/xe_exec_mix_modes.c b/tests/intel/xe_exec_mix_modes.c
index 209825f58..d9ebb8283 100644
--- a/tests/intel/xe_exec_mix_modes.c
+++ b/tests/intel/xe_exec_mix_modes.c
@@ -27,6 +27,7 @@
#define FLAG_EXEC_MODE_LR (0x1 << 0)
#define FLAG_JOB_TYPE_SIMPLE (0x1 << 1)
+#define FLAG_MULTI_QUEUE (0x1 << 2)
#define NUM_INTERRUPTING_JOBS 1
#define USER_FENCE_VALUE 0xdeadbeefdeadbeefull
@@ -34,6 +35,7 @@
#define SPIN_DATA 1
#define EXEC_DATA 2
#define DATA_COUNT 3
+#define N_GROUP_QUEUES 2
struct data {
struct xe_spin spin;
@@ -221,6 +223,104 @@ run_job(int fd, struct drm_xe_engine_class_instance *hwe,
xe_vm_destroy(fd, vm);
}
+static void
+run_job_multi_queue(int fd, struct drm_xe_engine_class_instance *hwe)
+{
+ struct drm_xe_sync sync = {
+ .flags = DRM_XE_SYNC_FLAG_SIGNAL,
+ .type = DRM_XE_SYNC_TYPE_USER_FENCE,
+ .timeline_value = USER_FENCE_VALUE,
+ };
+ struct drm_xe_exec exec = {
+ .num_batch_buffer = 1,
+ .num_syncs = 1,
+ .syncs = to_user_pointer(&sync),
+ };
+ uint32_t exec_queues[N_GROUP_QUEUES];
+ struct xe_spin *spin[N_GROUP_QUEUES];
+ uint64_t addr[N_GROUP_QUEUES];
+ uint64_t base_addr = 0x1a0000;
+ int64_t fence_timeout = NSEC_PER_SEC;
+ int64_t timeout_short = 1;
+ uint64_t vm_sync = 0;
+ size_t bo_size, spin_size;
+ uint32_t vm, bo;
+ void *map;
+ int i;
+
+ igt_require(xe_has_multi_queue_engine(fd));
+
+ vm = xe_vm_create(fd, DRM_XE_VM_CREATE_FLAG_LR_MODE |
+ DRM_XE_VM_CREATE_FLAG_FAULT_MODE, 0);
+
+ /* exec_queues[0] is the primary, the rest join its group. */
+ for (i = 0; i < N_GROUP_QUEUES; i++) {
+ struct drm_xe_ext_set_property multi_queue = {
+ .base.name = DRM_XE_EXEC_QUEUE_EXTENSION_SET_PROPERTY,
+ .property = DRM_XE_EXEC_QUEUE_SET_PROPERTY_MULTI_GROUP,
+ };
+ uint64_t ext = to_user_pointer(&multi_queue);
+
+ multi_queue.value = i ? exec_queues[0] : DRM_XE_MULTI_GROUP_CREATE;
+ exec_queues[i] = xe_exec_queue_create(fd, vm, hwe, ext);
+ }
+
+ spin_size = xe_bb_size(fd, sizeof(struct xe_spin));
+ bo_size = spin_size * N_GROUP_QUEUES;
+ bo = xe_bo_create(fd, vm, bo_size, vram_if_possible(fd, hwe->gt_id),
+ DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM);
+ map = xe_bo_map(fd, bo, bo_size);
+ for (i = 0; i < N_GROUP_QUEUES; i++) {
+ spin[i] = (struct xe_spin *)((char *)map + i * spin_size);
+ addr[i] = base_addr + i * spin_size;
+ }
+
+ sync.addr = to_user_pointer(&vm_sync);
+ xe_vm_bind_async(fd, vm, 0, bo, 0, base_addr, bo_size, &sync, 1);
+ xe_wait_ufence(fd, &vm_sync, USER_FENCE_VALUE, 0, fence_timeout);
+ vm_sync = 0;
+
+ for (i = 0; i < N_GROUP_QUEUES; i++) {
+ /* Yield the shared engine at a switch point instead of busy-spinning. */
+ xe_spin_init_opts(spin[i], .addr = addr[i], .preempt = true,
+ .multi_queue_switch_on_wait = true);
+ xe_spin_preempt_wait(spin[i]);
+ sync.addr = addr[i] + (char *)&spin[i]->exec_sync - (char *)spin[i];
+ exec.exec_queue_id = exec_queues[i];
+ exec.address = addr[i];
+ xe_exec(fd, &exec);
+ xe_spin_wait_started(spin[i]);
+ }
+
+ /* Force the group from FAULT into DMA_FENCE mode. */
+ run_job(fd, hwe, EXEC_MODE_DMA_FENCE, SIMPLE_BATCH_STORE, false, NULL);
+
+ /* Spinners must have been suspended, not completed, during the switch. */
+ for (i = 0; i < N_GROUP_QUEUES; i++)
+ igt_assert_neq(0, __xe_wait_ufence(fd, &spin[i]->exec_sync,
+ USER_FENCE_VALUE, exec_queues[i],
+ &timeout_short));
+
+ for (i = 0; i < N_GROUP_QUEUES; i++) {
+ xe_spin_end(spin[i]);
+ xe_spin_preempt_nowait(spin[i]);
+ }
+
+ for (i = 0; i < N_GROUP_QUEUES; i++)
+ xe_wait_ufence(fd, &spin[i]->exec_sync, USER_FENCE_VALUE,
+ exec_queues[i], fence_timeout);
+
+ sync.addr = to_user_pointer(&vm_sync);
+ xe_vm_unbind_async(fd, vm, 0, 0, base_addr, bo_size, &sync, 1);
+ xe_wait_ufence(fd, &vm_sync, USER_FENCE_VALUE, 0, fence_timeout);
+
+ for (i = 0; i < N_GROUP_QUEUES; i++)
+ xe_exec_queue_destroy(fd, exec_queues[i]);
+ munmap(map, bo_size);
+ gem_close(fd, bo);
+ xe_vm_destroy(fd, vm);
+}
+
/**
* SUBTEST: exec-simple-batch-store-lr
* Description: Execute a simple batch store job in long running mode
@@ -235,6 +335,11 @@ run_job(int fd, struct drm_xe_engine_class_instance *hwe,
* SUBTEST: exec-spinner-interrupted-dma-fence
* Description: Spin in dma fence mode then get interrupted by a simple
* batch store job in long running mode
+ *
+ * SUBTEST: exec-multi-queue-spinner-interrupted-lr
+ * Description: Run preemptible spinners on a multi-queue exec queue group
+ * in long running mode, then get interrupted by a simple
+ * batch store job in dma fence mode
*/
static void
test_exec(int fd, struct drm_xe_engine_class_instance *hwe,
@@ -243,6 +348,11 @@ test_exec(int fd, struct drm_xe_engine_class_instance *hwe,
enum engine_execution_mode engine_execution_mode;
enum job_type job_type;
+ if (flags & FLAG_MULTI_QUEUE) {
+ run_job_multi_queue(fd, hwe);
+ return;
+ }
+
if (flags & FLAG_EXEC_MODE_LR)
engine_execution_mode = EXEC_MODE_LR;
else
@@ -267,6 +377,7 @@ int igt_main()
{ "simple-batch-store-dma-fence", FLAG_JOB_TYPE_SIMPLE },
{ "spinner-interrupted-lr", FLAG_EXEC_MODE_LR },
{ "spinner-interrupted-dma-fence", 0 },
+ { "multi-queue-spinner-interrupted-lr", FLAG_EXEC_MODE_LR | FLAG_MULTI_QUEUE },
{ NULL },
};
int fd;
--
2.43.0
^ permalink raw reply related [flat|nested] 7+ messages in thread* ✓ Xe.CI.BAT: success for tests/intel/xe_exec_mix_modes: Add multi-queue LR spinner switch subtest 2026-08-17 20:00 [i-g-t] tests/intel/xe_exec_mix_modes: Add multi-queue LR spinner switch subtest Jagmeet Randhawa @ 2026-08-17 22:55 ` Patchwork 2026-08-17 22:59 ` ✓ i915.CI.BAT: " Patchwork ` (3 subsequent siblings) 4 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2026-08-17 22:55 UTC (permalink / raw) To: Jagmeet Randhawa; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 5154 bytes --] == Series Details == Series: tests/intel/xe_exec_mix_modes: Add multi-queue LR spinner switch subtest URL : https://patchwork.freedesktop.org/series/172353/ State : success == Summary == CI Bug Log - changes from XEIGT_9059_BAT -> XEIGTPW_15692_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (12 -> 12) ------------------------------ Additional (1): bat-bmg-2 Missing (1): bat-nvls-1 Known issues ------------ Here are the changes found in XEIGTPW_15692_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@fbdev@write: - bat-bmg-2: NOTRUN -> [SKIP][1] ([Intel XE#2134]) +4 other tests skip [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/bat-bmg-2/igt@fbdev@write.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - bat-bmg-2: NOTRUN -> [SKIP][2] ([Intel XE#2233]) [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/bat-bmg-2/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_cursor_legacy@basic-flip-after-cursor-legacy: - bat-bmg-2: NOTRUN -> [SKIP][3] ([Intel XE#2489] / [Intel XE#3419]) +13 other tests skip [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/bat-bmg-2/igt@kms_cursor_legacy@basic-flip-after-cursor-legacy.html * igt@kms_flip@basic-flip-vs-modeset: - bat-bmg-2: NOTRUN -> [SKIP][4] ([Intel XE#2482]) +3 other tests skip [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/bat-bmg-2/igt@kms_flip@basic-flip-vs-modeset.html * igt@kms_frontbuffer_tracking@basic: - bat-bmg-2: NOTRUN -> [SKIP][5] ([Intel XE#2434] / [Intel XE#2548] / [Intel XE#6314]) [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/bat-bmg-2/igt@kms_frontbuffer_tracking@basic.html * igt@kms_psr@psr-sprite-plane-onoff: - bat-bmg-2: NOTRUN -> [SKIP][6] ([Intel XE#2234] / [Intel XE#2850]) +2 other tests skip [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/bat-bmg-2/igt@kms_psr@psr-sprite-plane-onoff.html * igt@xe_exec_multi_queue@priority: - bat-bmg-2: NOTRUN -> [SKIP][7] ([Intel XE#8364]) +13 other tests skip [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/bat-bmg-2/igt@xe_exec_multi_queue@priority.html * igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit: - bat-bmg-2: NOTRUN -> [SKIP][8] ([Intel XE#2229]) [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/bat-bmg-2/igt@xe_live_ktest@xe_bo@xe_ccs_migrate_kunit.html * igt@xe_pat@pat-index-xehpc: - bat-bmg-2: NOTRUN -> [SKIP][9] ([Intel XE#1420] / [Intel XE#7590]) [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/bat-bmg-2/igt@xe_pat@pat-index-xehpc.html * igt@xe_pat@pat-index-xelp: - bat-bmg-2: NOTRUN -> [SKIP][10] ([Intel XE#2245] / [Intel XE#7590]) [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/bat-bmg-2/igt@xe_pat@pat-index-xelp.html * igt@xe_pat@pat-index-xelpg: - bat-bmg-2: NOTRUN -> [SKIP][11] ([Intel XE#2236] / [Intel XE#7590]) [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/bat-bmg-2/igt@xe_pat@pat-index-xelpg.html [Intel XE#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420 [Intel XE#2134]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2134 [Intel XE#2229]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2229 [Intel XE#2233]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2233 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2236]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2236 [Intel XE#2245]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2245 [Intel XE#2434]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2434 [Intel XE#2482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2482 [Intel XE#2489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2489 [Intel XE#2548]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2548 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#3419]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3419 [Intel XE#6314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6314 [Intel XE#7590]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7590 [Intel XE#8364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8364 Build changes ------------- * IGT: IGT_9059 -> IGTPW_15692 * Linux: xe-5607-24a2127c5f2bce93dbb33cbbee84666272a5e716 -> xe-5608-96cd638dde5fef620ee7a158916da7c30c4aea0d IGTPW_15692: 5c2beb4cb3155a0a3cb3899210f700691bfa8bcf @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_9059: f5a4ff79434df36db1d6b13deb37c90a6602565e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-5607-24a2127c5f2bce93dbb33cbbee84666272a5e716: 24a2127c5f2bce93dbb33cbbee84666272a5e716 xe-5608-96cd638dde5fef620ee7a158916da7c30c4aea0d: 96cd638dde5fef620ee7a158916da7c30c4aea0d == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/index.html [-- Attachment #2: Type: text/html, Size: 6083 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* ✓ i915.CI.BAT: success for tests/intel/xe_exec_mix_modes: Add multi-queue LR spinner switch subtest 2026-08-17 20:00 [i-g-t] tests/intel/xe_exec_mix_modes: Add multi-queue LR spinner switch subtest Jagmeet Randhawa 2026-08-17 22:55 ` ✓ Xe.CI.BAT: success for " Patchwork @ 2026-08-17 22:59 ` Patchwork 2026-08-18 2:52 ` ✗ Xe.CI.FULL: failure " Patchwork ` (2 subsequent siblings) 4 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2026-08-17 22:59 UTC (permalink / raw) To: Jagmeet Randhawa; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 3073 bytes --] == Series Details == Series: tests/intel/xe_exec_mix_modes: Add multi-queue LR spinner switch subtest URL : https://patchwork.freedesktop.org/series/172353/ State : success == Summary == CI Bug Log - changes from IGT_9059 -> IGTPW_15692 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/index.html Participating hosts (40 -> 38) ------------------------------ Missing (2): bat-dg2-13 fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_15692 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_selftest@live@sanitycheck: - fi-kbl-7567u: [PASS][1] -> [DMESG-WARN][2] ([i915#13735]) +79 other tests dmesg-warn [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9059/fi-kbl-7567u/igt@i915_selftest@live@sanitycheck.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/fi-kbl-7567u/igt@i915_selftest@live@sanitycheck.html * igt@kms_busy@basic@flip: - fi-kbl-7567u: [PASS][3] -> [DMESG-WARN][4] ([i915#13735] / [i915#180]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9059/fi-kbl-7567u/igt@kms_busy@basic@flip.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/fi-kbl-7567u/igt@kms_busy@basic@flip.html * igt@kms_pm_rpm@basic-pci-d3-state: - fi-kbl-7567u: [PASS][5] -> [DMESG-WARN][6] ([i915#13735] / [i915#15673] / [i915#180]) +52 other tests dmesg-warn [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9059/fi-kbl-7567u/igt@kms_pm_rpm@basic-pci-d3-state.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/fi-kbl-7567u/igt@kms_pm_rpm@basic-pci-d3-state.html #### Possible fixes #### * igt@kms_pm_rpm@basic-rte: - bat-rpls-4: [DMESG-WARN][7] ([i915#13400]) -> [PASS][8] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9059/bat-rpls-4/igt@kms_pm_rpm@basic-rte.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/bat-rpls-4/igt@kms_pm_rpm@basic-rte.html [i915#13400]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13400 [i915#13735]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13735 [i915#15673]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15673 [i915#180]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/180 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_9059 -> IGTPW_15692 * Linux: CI_DRM_19006 -> CI_DRM_19008 CI-20190529: 20190529 CI_DRM_19006: b801f94c49ffdb0f65e37baf31d68570356d4983 @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_19008: 96cd638dde5fef620ee7a158916da7c30c4aea0d @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_15692: 5c2beb4cb3155a0a3cb3899210f700691bfa8bcf @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_9059: f5a4ff79434df36db1d6b13deb37c90a6602565e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/index.html [-- Attachment #2: Type: text/html, Size: 3985 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* ✗ Xe.CI.FULL: failure for tests/intel/xe_exec_mix_modes: Add multi-queue LR spinner switch subtest 2026-08-17 20:00 [i-g-t] tests/intel/xe_exec_mix_modes: Add multi-queue LR spinner switch subtest Jagmeet Randhawa 2026-08-17 22:55 ` ✓ Xe.CI.BAT: success for " Patchwork 2026-08-17 22:59 ` ✓ i915.CI.BAT: " Patchwork @ 2026-08-18 2:52 ` Patchwork 2026-08-18 13:44 ` ✗ i915.CI.Full: " Patchwork 2026-08-19 1:50 ` [i-g-t] " Niranjana Vishwanathapura 4 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2026-08-18 2:52 UTC (permalink / raw) To: Jagmeet Randhawa; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 52271 bytes --] == Series Details == Series: tests/intel/xe_exec_mix_modes: Add multi-queue LR spinner switch subtest URL : https://patchwork.freedesktop.org/series/172353/ State : failure == Summary == CI Bug Log - changes from XEIGT_9059_FULL -> XEIGTPW_15692_FULL ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_15692_FULL absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_15692_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_15692_FULL: ### IGT changes ### #### Possible regressions #### * {igt@xe_exec_mix_modes@exec-multi-queue-spinner-interrupted-lr} (NEW): - shard-lnl: NOTRUN -> [SKIP][1] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-lnl-4/igt@xe_exec_mix_modes@exec-multi-queue-spinner-interrupted-lr.html - shard-bmg: NOTRUN -> [SKIP][2] [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-bmg-9/igt@xe_exec_mix_modes@exec-multi-queue-spinner-interrupted-lr.html * igt@xe_survivability@runtime-survivability: - shard-bmg: NOTRUN -> [DMESG-WARN][3] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-bmg-6/igt@xe_survivability@runtime-survivability.html New tests --------- New tests have been introduced between XEIGT_9059_FULL and XEIGTPW_15692_FULL: ### New IGT tests (1) ### * igt@xe_exec_mix_modes@exec-multi-queue-spinner-interrupted-lr: - Statuses : 2 skip(s) - Exec time: [0.02, 0.04] s Known issues ------------ Here are the changes found in XEIGTPW_15692_FULL that come from known issues: ### IGT changes ### #### Issues hit #### * igt@core_hotunplug@hotunbind-rebind: - shard-bmg: [PASS][4] -> [ABORT][5] ([Intel XE#8007]) +2 other tests abort [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9059/shard-bmg-3/igt@core_hotunplug@hotunbind-rebind.html [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-bmg-8/igt@core_hotunplug@hotunbind-rebind.html - shard-lnl: [PASS][6] -> [ABORT][7] ([Intel XE#8007]) [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9059/shard-lnl-1/igt@core_hotunplug@hotunbind-rebind.html [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-lnl-5/igt@core_hotunplug@hotunbind-rebind.html * igt@kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-lnl: NOTRUN -> [SKIP][8] ([Intel XE#3157]) [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-lnl-4/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt@kms_big_fb@4-tiled-32bpp-rotate-90: - shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#2327]) +5 other tests skip [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-bmg-1/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html * igt@kms_big_fb@x-tiled-32bpp-rotate-270: - shard-lnl: NOTRUN -> [SKIP][10] ([Intel XE#1407]) +1 other test skip [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-lnl-1/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-addfb: - shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#2328] / [Intel XE#7367]) [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-bmg-6/igt@kms_big_fb@yf-tiled-addfb.html * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#607] / [Intel XE#7361]) +1 other test skip [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-bmg-10/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#1124]) +5 other tests skip [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-bmg-8/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html - shard-lnl: NOTRUN -> [SKIP][14] ([Intel XE#1124]) +2 other tests skip [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-lnl-5/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_bw@connected-linear-tiling-4-displays-target-1920x1080p: - shard-lnl: NOTRUN -> [SKIP][15] ([Intel XE#8365]) [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-lnl-4/igt@kms_bw@connected-linear-tiling-4-displays-target-1920x1080p.html - shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#7679]) +1 other test skip [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-bmg-1/igt@kms_bw@connected-linear-tiling-4-displays-target-1920x1080p.html * igt@kms_bw@linear-tiling-2-displays-target-2160x1440p: - shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#367]) [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-bmg-3/igt@kms_bw@linear-tiling-2-displays-target-2160x1440p.html * igt@kms_ccs@bad-aux-stride-yf-tiled-ccs: - shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#2887]) +11 other tests skip [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-bmg-4/igt@kms_ccs@bad-aux-stride-yf-tiled-ccs.html * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs: - shard-lnl: NOTRUN -> [SKIP][19] ([Intel XE#2887]) +4 other tests skip [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-lnl-7/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-a-edp-1: - shard-lnl: NOTRUN -> [SKIP][20] ([Intel XE#2669] / [Intel XE#3433] / [Intel XE#7389]) +3 other tests skip [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-lnl-5/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs@pipe-a-edp-1.html * igt@kms_cdclk@plane-scaling: - shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#2724] / [Intel XE#7449]) [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-bmg-1/igt@kms_cdclk@plane-scaling.html * igt@kms_chamelium_color@ctm-0-50: - shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#2325] / [Intel XE#7358]) [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-bmg-2/igt@kms_chamelium_color@ctm-0-50.html * igt@kms_chamelium_color_pipeline@plane-lut1d-ctm3x4: - shard-lnl: NOTRUN -> [SKIP][23] ([Intel XE#7358]) [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-lnl-4/igt@kms_chamelium_color_pipeline@plane-lut1d-ctm3x4.html * igt@kms_chamelium_color_pipeline@plane-lut1d-lut1d: - shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#7358]) +2 other tests skip [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-bmg-5/igt@kms_chamelium_color_pipeline@plane-lut1d-lut1d.html * igt@kms_chamelium_hpd@dp-hpd-storm: - shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#2252]) +3 other tests skip [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-bmg-1/igt@kms_chamelium_hpd@dp-hpd-storm.html - shard-lnl: NOTRUN -> [SKIP][26] ([Intel XE#373]) +1 other test skip [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-lnl-4/igt@kms_chamelium_hpd@dp-hpd-storm.html * igt@kms_content_protection@atomic-dpms-hdcp14@pipe-a-dp-2: - shard-bmg: NOTRUN -> [FAIL][27] ([Intel XE#3304] / [Intel XE#7374]) +1 other test fail [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-bmg-6/igt@kms_content_protection@atomic-dpms-hdcp14@pipe-a-dp-2.html * igt@kms_content_protection@atomic-dpms@pipe-a-dp-2: - shard-bmg: NOTRUN -> [FAIL][28] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) +1 other test fail [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-bmg-5/igt@kms_content_protection@atomic-dpms@pipe-a-dp-2.html * igt@kms_content_protection@dp-mst-lic-type-0-hdcp14: - shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#6974]) [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-bmg-10/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html * igt@kms_content_protection@uevent: - shard-lnl: NOTRUN -> [SKIP][30] ([Intel XE#7642]) +1 other test skip [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-lnl-7/igt@kms_content_protection@uevent.html * igt@kms_content_protection@uevent-hdcp14: - shard-bmg: NOTRUN -> [FAIL][31] ([Intel XE#6707] / [Intel XE#7439]) +1 other test fail [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-bmg-7/igt@kms_content_protection@uevent-hdcp14.html * igt@kms_cursor_crc@cursor-onscreen-512x170: - shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#2321] / [Intel XE#7355]) +1 other test skip [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-bmg-1/igt@kms_cursor_crc@cursor-onscreen-512x170.html * igt@kms_cursor_crc@cursor-sliding-32x10: - shard-lnl: NOTRUN -> [SKIP][33] ([Intel XE#1424]) [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-lnl-7/igt@kms_cursor_crc@cursor-sliding-32x10.html * igt@kms_cursor_crc@cursor-sliding-max-size: - shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#2320]) +1 other test skip [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-bmg-8/igt@kms_cursor_crc@cursor-sliding-max-size.html * igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size: - shard-lnl: NOTRUN -> [SKIP][35] ([Intel XE#309] / [Intel XE#7343]) +1 other test skip [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-lnl-7/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html * igt@kms_dirtyfb@psr-dirtyfb-ioctl: - shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#1508]) [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-bmg-8/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html * igt@kms_dp_linktrain_fallback@dp-fallback: - shard-lnl: NOTRUN -> [SKIP][37] ([Intel XE#4294] / [Intel XE#7477]) [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-lnl-4/igt@kms_dp_linktrain_fallback@dp-fallback.html * igt@kms_dsc@dsc-with-bpc-ultrajoiner: - shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#8265]) +1 other test skip [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-bmg-6/igt@kms_dsc@dsc-with-bpc-ultrajoiner.html * igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-out-visible-area: - shard-lnl: NOTRUN -> [SKIP][39] ([Intel XE#4422] / [Intel XE#7442]) [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-lnl-2/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-out-visible-area.html * igt@kms_feature_discovery@display-3x: - shard-lnl: NOTRUN -> [SKIP][40] ([Intel XE#703] / [Intel XE#7448]) [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-lnl-4/igt@kms_feature_discovery@display-3x.html - shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#2373] / [Intel XE#7448]) [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-bmg-1/igt@kms_feature_discovery@display-3x.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1: - shard-lnl: [PASS][42] -> [FAIL][43] ([Intel XE#301]) +1 other test fail [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9059/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-lnl-7/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling: - shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#7178] / [Intel XE#7351]) +3 other tests skip [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-bmg-1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling: - shard-lnl: NOTRUN -> [SKIP][45] ([Intel XE#7178] / [Intel XE#7349]) [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-lnl-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html - shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#7178] / [Intel XE#7349]) [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-bmg-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling: - shard-lnl: NOTRUN -> [SKIP][47] ([Intel XE#7178] / [Intel XE#7351]) [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-lnl-5/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html * igt@kms_frontbuffer_tracking@drrshdr-abgr161616f-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#7061]) +2 other tests skip [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-bmg-6/igt@kms_frontbuffer_tracking@drrshdr-abgr161616f-draw-mmap-wc.html - shard-lnl: NOTRUN -> [SKIP][49] ([Intel XE#7061]) [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-lnl-7/igt@kms_frontbuffer_tracking@drrshdr-abgr161616f-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-indfb-draw-render: - shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#4141]) +12 other tests skip [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-bmg-10/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-draw-blt: - shard-lnl: NOTRUN -> [SKIP][51] ([Intel XE#6312] / [Intel XE#651]) +1 other test skip [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-lnl-8/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt: - shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#2311]) +39 other tests skip [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcdrrshdr-1p-primscrn-spr-indfb-onoff: - shard-lnl: NOTRUN -> [SKIP][53] ([Intel XE#6312]) +5 other tests skip [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-lnl-8/igt@kms_frontbuffer_tracking@fbcdrrshdr-1p-primscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcdrrshdr-tiling-y: - shard-bmg: NOTRUN -> [SKIP][54] ([Intel XE#7399]) [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcdrrshdr-tiling-y.html * igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-cur-indfb-move: - shard-lnl: NOTRUN -> [SKIP][55] ([Intel XE#7865]) +9 other tests skip [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-lnl-3/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-lnl: NOTRUN -> [SKIP][56] ([Intel XE#656] / [Intel XE#7905]) +12 other tests skip [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-lnl-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-argb161616f-draw-blt: - shard-bmg: NOTRUN -> [SKIP][57] ([Intel XE#7061] / [Intel XE#7356]) +1 other test skip [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-bmg-10/igt@kms_frontbuffer_tracking@fbcpsr-argb161616f-draw-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt: - shard-bmg: NOTRUN -> [SKIP][58] ([Intel XE#2313]) +44 other tests skip [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-shrfb-plflip-blt: - shard-lnl: NOTRUN -> [SKIP][59] ([Intel XE#7905]) +8 other tests skip [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-lnl-2/igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-shrfb-plflip-blt.html * igt@kms_hdr@brightness-with-hdr: - shard-bmg: NOTRUN -> [SKIP][60] ([Intel XE#3544]) [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-bmg-10/igt@kms_hdr@brightness-with-hdr.html * igt@kms_hdr@static-toggle: - shard-lnl: NOTRUN -> [SKIP][61] ([Intel XE#1503]) [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-lnl-2/igt@kms_hdr@static-toggle.html * igt@kms_joiner@invalid-modeset-big-joiner: - shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#6901]) [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-bmg-7/igt@kms_joiner@invalid-modeset-big-joiner.html * igt@kms_mst@mst-suspend-read-crc: - shard-lnl: NOTRUN -> [SKIP][63] ([Intel XE#8348]) [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-lnl-7/igt@kms_mst@mst-suspend-read-crc.html - shard-bmg: NOTRUN -> [SKIP][64] ([Intel XE#8348]) [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-bmg-8/igt@kms_mst@mst-suspend-read-crc.html * igt@kms_panel_fitting@legacy: - shard-bmg: NOTRUN -> [SKIP][65] ([Intel XE#2486]) [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-bmg-7/igt@kms_panel_fitting@legacy.html * igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier: - shard-bmg: NOTRUN -> [SKIP][66] ([Intel XE#7283]) +2 other tests skip [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-bmg-3/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier.html * igt@kms_plane@pixel-format-y-tiled-modifier: - shard-lnl: NOTRUN -> [SKIP][67] ([Intel XE#7283]) [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-lnl-8/igt@kms_plane@pixel-format-y-tiled-modifier.html * igt@kms_plane_multiple@2x-tiling-y: - shard-bmg: NOTRUN -> [SKIP][68] ([Intel XE#5021] / [Intel XE#7377]) [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-bmg-7/igt@kms_plane_multiple@2x-tiling-y.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5: - shard-bmg: NOTRUN -> [SKIP][69] ([Intel XE#2763] / [Intel XE#6886]) +9 other tests skip [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-bmg-5/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-c: - shard-lnl: NOTRUN -> [SKIP][70] ([Intel XE#2763] / [Intel XE#6886]) +3 other tests skip [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-lnl-5/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-c.html * igt@kms_pm_backlight@bad-brightness: - shard-bmg: NOTRUN -> [SKIP][71] ([Intel XE#7376] / [Intel XE#7760] / [Intel XE#870]) [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-bmg-8/igt@kms_pm_backlight@bad-brightness.html * igt@kms_pm_dc@dc3co-framedrop-check@pr-xrgb8888: - shard-bmg: NOTRUN -> [SKIP][72] ([Intel XE#8395] / [Intel XE#8396]) +1 other test skip [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-bmg-8/igt@kms_pm_dc@dc3co-framedrop-check@pr-xrgb8888.html * igt@kms_pm_dc@dc3co-framedrop-check@psr2-yuv420: - shard-bmg: NOTRUN -> [SKIP][73] ([Intel XE#8396]) +1 other test skip [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-bmg-8/igt@kms_pm_dc@dc3co-framedrop-check@psr2-yuv420.html * igt@kms_pm_dc@deep-pkgc: - shard-lnl: [PASS][74] -> [FAIL][75] ([Intel XE#2029] / [Intel XE#7395]) [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9059/shard-lnl-3/igt@kms_pm_dc@deep-pkgc.html [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-lnl-6/igt@kms_pm_dc@deep-pkgc.html - shard-bmg: NOTRUN -> [SKIP][76] ([Intel XE#2505] / [Intel XE#7447]) [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-bmg-7/igt@kms_pm_dc@deep-pkgc.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area: - shard-lnl: NOTRUN -> [SKIP][77] ([Intel XE#2893] / [Intel XE#7304]) [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-lnl-7/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf: - shard-lnl: NOTRUN -> [SKIP][78] ([Intel XE#2893] / [Intel XE#4608] / [Intel XE#7304]) [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-lnl-5/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf@pipe-a-edp-1: - shard-lnl: NOTRUN -> [SKIP][79] ([Intel XE#4608]) [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-lnl-5/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf@pipe-a-edp-1.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf@pipe-b-edp-1: - shard-lnl: NOTRUN -> [SKIP][80] ([Intel XE#4608] / [Intel XE#7304]) [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-lnl-5/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf@pipe-b-edp-1.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf: - shard-bmg: NOTRUN -> [SKIP][81] ([Intel XE#1489]) +6 other tests skip [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-bmg-8/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf.html * igt@kms_psr2_su@page_flip-nv12: - shard-bmg: NOTRUN -> [SKIP][82] ([Intel XE#2387] / [Intel XE#7429]) [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-bmg-1/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr@fbc-pr-basic: - shard-bmg: NOTRUN -> [SKIP][83] ([Intel XE#2234] / [Intel XE#2850]) +8 other tests skip [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-bmg-4/igt@kms_psr@fbc-pr-basic.html * igt@kms_psr@fbc-pr-no-drrs: - shard-lnl: NOTRUN -> [SKIP][84] ([Intel XE#1406]) +1 other test skip [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-lnl-4/igt@kms_psr@fbc-pr-no-drrs.html * igt@kms_psr@fbc-psr2-sprite-plane-onoff: - shard-lnl: NOTRUN -> [SKIP][85] ([Intel XE#1406] / [Intel XE#7345]) [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-lnl-4/igt@kms_psr@fbc-psr2-sprite-plane-onoff.html * igt@kms_psr@fbc-psr2-sprite-plane-onoff@edp-1: - shard-lnl: NOTRUN -> [SKIP][86] ([Intel XE#1406] / [Intel XE#4609] / [Intel XE#7345]) [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-lnl-4/igt@kms_psr@fbc-psr2-sprite-plane-onoff@edp-1.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-bmg: NOTRUN -> [SKIP][87] ([Intel XE#7795]) [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-bmg-3/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_rotation_crc@bad-tiling: - shard-bmg: NOTRUN -> [SKIP][88] ([Intel XE#3904] / [Intel XE#7342]) [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-bmg-6/igt@kms_rotation_crc@bad-tiling.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-180: - shard-bmg: NOTRUN -> [SKIP][89] ([Intel XE#2330] / [Intel XE#5813]) [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-bmg-3/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html * igt@kms_scaling_modes@scaling-mode-full: - shard-bmg: NOTRUN -> [SKIP][90] ([Intel XE#2413]) [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-bmg-3/igt@kms_scaling_modes@scaling-mode-full.html * igt@kms_sharpness_filter@invalid-plane-with-filter: - shard-bmg: NOTRUN -> [SKIP][91] ([Intel XE#6503]) [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-bmg-7/igt@kms_sharpness_filter@invalid-plane-with-filter.html * igt@xe_evict@evict-large-external: - shard-lnl: NOTRUN -> [SKIP][92] ([Intel XE#6540] / [Intel XE#688]) +1 other test skip [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-lnl-1/igt@xe_evict@evict-large-external.html * igt@xe_evict@evict-mixed-many-threads-small: - shard-bmg: [PASS][93] -> [INCOMPLETE][94] ([Intel XE#6321] / [Intel XE#8355]) [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9059/shard-bmg-6/igt@xe_evict@evict-mixed-many-threads-small.html [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-bmg-9/igt@xe_evict@evict-mixed-many-threads-small.html * igt@xe_evict@evict-threads-small-multi-queue: - shard-bmg: NOTRUN -> [SKIP][95] ([Intel XE#8370]) [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-bmg-2/igt@xe_evict@evict-threads-small-multi-queue.html * igt@xe_exec_balancer@virtual-all-active: - shard-lnl: NOTRUN -> [SKIP][96] ([Intel XE#7482]) +4 other tests skip [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-lnl-1/igt@xe_exec_balancer@virtual-all-active.html * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate-race: - shard-lnl: NOTRUN -> [SKIP][97] ([Intel XE#1392]) +2 other tests skip [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-lnl-6/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr-invalidate-race.html * igt@xe_exec_basic@multigpu-once-basic-defer-bind: - shard-bmg: NOTRUN -> [SKIP][98] ([Intel XE#2322] / [Intel XE#7372]) +4 other tests skip [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-bmg-7/igt@xe_exec_basic@multigpu-once-basic-defer-bind.html * igt@xe_exec_fault_mode@many-execqueues-multi-queue-invalid-fault: - shard-bmg: NOTRUN -> [SKIP][99] ([Intel XE#8374]) +6 other tests skip [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-bmg-7/igt@xe_exec_fault_mode@many-execqueues-multi-queue-invalid-fault.html * igt@xe_exec_fault_mode@twice-multi-queue-userptr-invalidate-race: - shard-lnl: NOTRUN -> [SKIP][100] ([Intel XE#8374]) +3 other tests skip [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-lnl-5/igt@xe_exec_fault_mode@twice-multi-queue-userptr-invalidate-race.html * igt@xe_exec_multi_queue@many-execs-preempt-mode-userptr: - shard-lnl: NOTRUN -> [SKIP][101] ([Intel XE#8364]) +5 other tests skip [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-lnl-7/igt@xe_exec_multi_queue@many-execs-preempt-mode-userptr.html * igt@xe_exec_multi_queue@one-queue-preempt-mode-close-fd-smem: - shard-bmg: NOTRUN -> [SKIP][102] ([Intel XE#8364]) +19 other tests skip [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-bmg-10/igt@xe_exec_multi_queue@one-queue-preempt-mode-close-fd-smem.html * igt@xe_exec_reset@multi-queue-cat-error-on-secondary: - shard-bmg: NOTRUN -> [SKIP][103] ([Intel XE#8369]) +1 other test skip [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-bmg-6/igt@xe_exec_reset@multi-queue-cat-error-on-secondary.html * igt@xe_exec_reset@multi-queue-long-spin-reuse-many-queue-switch: - shard-lnl: NOTRUN -> [SKIP][104] ([Intel XE#8369]) [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-lnl-7/igt@xe_exec_reset@multi-queue-long-spin-reuse-many-queue-switch.html * igt@xe_exec_system_allocator@many-stride-new-prefetch: - shard-bmg: NOTRUN -> [INCOMPLETE][105] ([Intel XE#7098] / [Intel XE#8159]) [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-bmg-8/igt@xe_exec_system_allocator@many-stride-new-prefetch.html * igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-wt-single-vma: - shard-lnl: NOTRUN -> [SKIP][106] ([Intel XE#6196]) [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-lnl-6/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-wt-single-vma.html * igt@xe_exec_threads@threads-multi-queue-fd-userptr-invalidate-race: - shard-bmg: NOTRUN -> [SKIP][107] ([Intel XE#8378]) +5 other tests skip [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-bmg-8/igt@xe_exec_threads@threads-multi-queue-fd-userptr-invalidate-race.html * igt@xe_exec_threads@threads-multi-queue-shared-vm-userptr: - shard-lnl: NOTRUN -> [SKIP][108] ([Intel XE#8378]) +2 other tests skip [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-lnl-5/igt@xe_exec_threads@threads-multi-queue-shared-vm-userptr.html * igt@xe_madvise@atomic-device: - shard-lnl: NOTRUN -> [SKIP][109] ([Intel XE#7980]) [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-lnl-8/igt@xe_madvise@atomic-device.html * igt@xe_mmap@vram: - shard-lnl: NOTRUN -> [SKIP][110] ([Intel XE#1416]) [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-lnl-7/igt@xe_mmap@vram.html * igt@xe_module_load@load: - shard-bmg: ([PASS][111], [PASS][112], [PASS][113], [PASS][114], [PASS][115], [PASS][116], [PASS][117], [PASS][118], [PASS][119], [PASS][120], [PASS][121], [PASS][122], [PASS][123], [PASS][124], [PASS][125], [PASS][126], [PASS][127], [PASS][128], [PASS][129], [PASS][130], [PASS][131], [PASS][132], [PASS][133], [PASS][134], [PASS][135]) -> ([PASS][136], [PASS][137], [PASS][138], [PASS][139], [PASS][140], [PASS][141], [PASS][142], [PASS][143], [PASS][144], [PASS][145], [PASS][146], [PASS][147], [PASS][148], [PASS][149], [PASS][150], [SKIP][151], [PASS][152], [PASS][153], [PASS][154], [PASS][155], [PASS][156], [PASS][157], [PASS][158], [PASS][159], [PASS][160], [PASS][161]) ([Intel XE#2457] / [Intel XE#7405]) [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9059/shard-bmg-2/igt@xe_module_load@load.html [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9059/shard-bmg-8/igt@xe_module_load@load.html [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9059/shard-bmg-8/igt@xe_module_load@load.html [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9059/shard-bmg-2/igt@xe_module_load@load.html [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9059/shard-bmg-1/igt@xe_module_load@load.html [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9059/shard-bmg-1/igt@xe_module_load@load.html [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9059/shard-bmg-10/igt@xe_module_load@load.html [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9059/shard-bmg-10/igt@xe_module_load@load.html [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9059/shard-bmg-10/igt@xe_module_load@load.html [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9059/shard-bmg-9/igt@xe_module_load@load.html [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9059/shard-bmg-9/igt@xe_module_load@load.html [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9059/shard-bmg-7/igt@xe_module_load@load.html [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9059/shard-bmg-5/igt@xe_module_load@load.html [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9059/shard-bmg-7/igt@xe_module_load@load.html [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9059/shard-bmg-5/igt@xe_module_load@load.html [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9059/shard-bmg-4/igt@xe_module_load@load.html [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9059/shard-bmg-7/igt@xe_module_load@load.html [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9059/shard-bmg-9/igt@xe_module_load@load.html [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9059/shard-bmg-6/igt@xe_module_load@load.html [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9059/shard-bmg-6/igt@xe_module_load@load.html [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9059/shard-bmg-6/igt@xe_module_load@load.html [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9059/shard-bmg-3/igt@xe_module_load@load.html [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9059/shard-bmg-4/igt@xe_module_load@load.html [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9059/shard-bmg-3/igt@xe_module_load@load.html [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9059/shard-bmg-3/igt@xe_module_load@load.html [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-bmg-2/igt@xe_module_load@load.html [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-bmg-2/igt@xe_module_load@load.html [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-bmg-8/igt@xe_module_load@load.html [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-bmg-8/igt@xe_module_load@load.html [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-bmg-4/igt@xe_module_load@load.html [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-bmg-6/igt@xe_module_load@load.html [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-bmg-10/igt@xe_module_load@load.html [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-bmg-10/igt@xe_module_load@load.html [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-bmg-1/igt@xe_module_load@load.html [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-bmg-1/igt@xe_module_load@load.html [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-bmg-6/igt@xe_module_load@load.html [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-bmg-9/igt@xe_module_load@load.html [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-bmg-3/igt@xe_module_load@load.html [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-bmg-3/igt@xe_module_load@load.html [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-bmg-9/igt@xe_module_load@load.html [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-bmg-8/igt@xe_module_load@load.html [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-bmg-7/igt@xe_module_load@load.html [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-bmg-7/igt@xe_module_load@load.html [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-bmg-5/igt@xe_module_load@load.html [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-bmg-2/igt@xe_module_load@load.html [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-bmg-5/igt@xe_module_load@load.html [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-bmg-8/igt@xe_module_load@load.html [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-bmg-10/igt@xe_module_load@load.html [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-bmg-4/igt@xe_module_load@load.html [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-bmg-1/igt@xe_module_load@load.html [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-bmg-7/igt@xe_module_load@load.html * igt@xe_page_reclaim@binds-null-vma: - shard-bmg: NOTRUN -> [SKIP][162] ([Intel XE#7793]) [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-bmg-6/igt@xe_page_reclaim@binds-null-vma.html * igt@xe_pm@d3hot-mmap-vram: - shard-lnl: NOTRUN -> [SKIP][163] ([Intel XE#1948]) [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-lnl-2/igt@xe_pm@d3hot-mmap-vram.html * igt@xe_pm@s2idle-d3cold-basic-exec: - shard-bmg: NOTRUN -> [SKIP][164] ([Intel XE#2284] / [Intel XE#7370]) [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-bmg-3/igt@xe_pm@s2idle-d3cold-basic-exec.html * igt@xe_pm@s3-basic-exec: - shard-lnl: NOTRUN -> [SKIP][165] ([Intel XE#584] / [Intel XE#7369]) [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-lnl-1/igt@xe_pm@s3-basic-exec.html * igt@xe_pxp@pxp-stale-bo-exec-post-rpm: - shard-bmg: NOTRUN -> [SKIP][166] ([Intel XE#4733] / [Intel XE#7417]) +1 other test skip [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-bmg-9/igt@xe_pxp@pxp-stale-bo-exec-post-rpm.html * igt@xe_query@multigpu-query-invalid-extension: - shard-bmg: NOTRUN -> [SKIP][167] ([Intel XE#944]) +2 other tests skip [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-bmg-9/igt@xe_query@multigpu-query-invalid-extension.html * igt@xe_sriov_flr@flr-twice: - shard-bmg: [PASS][168] -> [FAIL][169] ([Intel XE#7992]) +2 other tests fail [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9059/shard-bmg-10/igt@xe_sriov_flr@flr-twice.html [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-bmg-7/igt@xe_sriov_flr@flr-twice.html * igt@xe_sriov_flr@flr-vfs-parallel: - shard-bmg: [PASS][170] -> [FAIL][171] ([Intel XE#6569]) [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9059/shard-bmg-1/igt@xe_sriov_flr@flr-vfs-parallel.html [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-bmg-1/igt@xe_sriov_flr@flr-vfs-parallel.html * igt@xe_survivability@runtime-survivability: - shard-lnl: NOTRUN -> [SKIP][172] ([Intel XE#8415]) [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-lnl-7/igt@xe_survivability@runtime-survivability.html #### Possible fixes #### * igt@kms_async_flips@alternate-sync-async-flip-atomic: - shard-bmg: [FAIL][173] ([Intel XE#3718] / [Intel XE#6078]) -> [PASS][174] [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9059/shard-bmg-2/igt@kms_async_flips@alternate-sync-async-flip-atomic.html [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-bmg-6/igt@kms_async_flips@alternate-sync-async-flip-atomic.html * igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-c-dp-2: - shard-bmg: [FAIL][175] ([Intel XE#6078]) -> [PASS][176] [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9059/shard-bmg-2/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-c-dp-2.html [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-bmg-6/igt@kms_async_flips@alternate-sync-async-flip-atomic@pipe-c-dp-2.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic: - shard-bmg: [FAIL][177] ([Intel XE#7571]) -> [PASS][178] [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9059/shard-bmg-3/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-bmg-2/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html * igt@kms_hdmi_inject@inject-audio: - shard-bmg: [SKIP][179] ([Intel XE#7308]) -> [PASS][180] [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9059/shard-bmg-7/igt@kms_hdmi_inject@inject-audio.html [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-bmg-8/igt@kms_hdmi_inject@inject-audio.html * igt@xe_exec_fault_mode@atomic-many: - shard-bmg: [FAIL][181] ([Intel XE#8578]) -> [PASS][182] [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9059/shard-bmg-6/igt@xe_exec_fault_mode@atomic-many.html [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-bmg-2/igt@xe_exec_fault_mode@atomic-many.html * igt@xe_module_load@reload-no-display: - shard-bmg: [ABORT][183] ([Intel XE#8007]) -> [PASS][184] [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9059/shard-bmg-5/igt@xe_module_load@reload-no-display.html [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-bmg-10/igt@xe_module_load@reload-no-display.html * igt@xe_pmu@engine-activity-accuracy-50: - shard-bmg: [FAIL][185] ([Intel XE#8555]) -> [PASS][186] +3 other tests pass [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9059/shard-bmg-1/igt@xe_pmu@engine-activity-accuracy-50.html [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-bmg-7/igt@xe_pmu@engine-activity-accuracy-50.html #### Warnings #### * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions: - shard-lnl: [SKIP][187] ([Intel XE#309] / [Intel XE#7343]) -> [SKIP][188] ([Intel XE#309] / [Intel XE#7343] / [Intel XE#7935]) [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9059/shard-lnl-6/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/shard-lnl-8/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [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#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392 [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406 [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407 [Intel XE#1416]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1416 [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503 [Intel XE#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508 [Intel XE#1948]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1948 [Intel XE#2029]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2029 [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#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330 [Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373 [Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387 [Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413 [Intel XE#2457]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2457 [Intel XE#2486]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2486 [Intel XE#2505]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2505 [Intel XE#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669 [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#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309 [Intel XE#3157]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3157 [Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304 [Intel XE#3433]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3433 [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#3718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3718 [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373 [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904 [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141 [Intel XE#4294]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4294 [Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422 [Intel XE#4608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4608 [Intel XE#4609]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4609 [Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733 [Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021 [Intel XE#5813]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5813 [Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584 [Intel XE#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607 [Intel XE#6078]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6078 [Intel XE#6196]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6196 [Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312 [Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321 [Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503 [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651 [Intel XE#6540]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6540 [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656 [Intel XE#6569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6569 [Intel XE#6707]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6707 [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#6886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886 [Intel XE#6901]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6901 [Intel XE#6974]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6974 [Intel XE#703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/703 [Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061 [Intel XE#7098]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7098 [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#7304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7304 [Intel XE#7308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7308 [Intel XE#7342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7342 [Intel XE#7343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7343 [Intel XE#7345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7345 [Intel XE#7349]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7349 [Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351 [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#7361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7361 [Intel XE#7367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7367 [Intel XE#7369]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7369 [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#7376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7376 [Intel XE#7377]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7377 [Intel XE#7389]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7389 [Intel XE#7395]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7395 [Intel XE#7399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7399 [Intel XE#7405]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7405 [Intel XE#7417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7417 [Intel XE#7429]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7429 [Intel XE#7439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7439 [Intel XE#7442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7442 [Intel XE#7447]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7447 [Intel XE#7448]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7448 [Intel XE#7449]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7449 [Intel XE#7477]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7477 [Intel XE#7482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7482 [Intel XE#7571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7571 [Intel XE#7642]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7642 [Intel XE#7679]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7679 [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#7795]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7795 [Intel XE#7865]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7865 [Intel XE#7905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7905 [Intel XE#7935]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7935 [Intel XE#7980]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7980 [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#8159]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8159 [Intel XE#8265]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8265 [Intel XE#8348]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8348 [Intel XE#8355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8355 [Intel XE#8364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8364 [Intel XE#8365]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8365 [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#8395]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8395 [Intel XE#8396]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8396 [Intel XE#8415]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8415 [Intel XE#8555]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8555 [Intel XE#8578]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8578 [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_9059 -> IGTPW_15692 * Linux: xe-5607-24a2127c5f2bce93dbb33cbbee84666272a5e716 -> xe-5608-96cd638dde5fef620ee7a158916da7c30c4aea0d IGTPW_15692: 5c2beb4cb3155a0a3cb3899210f700691bfa8bcf @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_9059: f5a4ff79434df36db1d6b13deb37c90a6602565e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-5607-24a2127c5f2bce93dbb33cbbee84666272a5e716: 24a2127c5f2bce93dbb33cbbee84666272a5e716 xe-5608-96cd638dde5fef620ee7a158916da7c30c4aea0d: 96cd638dde5fef620ee7a158916da7c30c4aea0d == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15692/index.html [-- Attachment #2: Type: text/html, Size: 58581 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* ✗ i915.CI.Full: failure for tests/intel/xe_exec_mix_modes: Add multi-queue LR spinner switch subtest 2026-08-17 20:00 [i-g-t] tests/intel/xe_exec_mix_modes: Add multi-queue LR spinner switch subtest Jagmeet Randhawa ` (2 preceding siblings ...) 2026-08-18 2:52 ` ✗ Xe.CI.FULL: failure " Patchwork @ 2026-08-18 13:44 ` Patchwork 2026-08-19 1:50 ` [i-g-t] " Niranjana Vishwanathapura 4 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2026-08-18 13:44 UTC (permalink / raw) To: Jagmeet Randhawa; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 125572 bytes --] == Series Details == Series: tests/intel/xe_exec_mix_modes: Add multi-queue LR spinner switch subtest URL : https://patchwork.freedesktop.org/series/172353/ State : failure == Summary == CI Bug Log - changes from CI_DRM_19008_full -> IGTPW_15692_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_15692_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_15692_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_15692/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_15692_full: ### IGT changes ### #### Possible regressions #### * igt@kms_flip@flip-vs-expired-vblank-interruptible: - shard-rkl: NOTRUN -> [ABORT][1] +1 other test abort [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-5/igt@kms_flip@flip-vs-expired-vblank-interruptible.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a1: - shard-rkl: NOTRUN -> [DMESG-WARN][2] [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-5/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a1.html * igt@perf@blocking@1-vcs1: - shard-mtlp: NOTRUN -> [FAIL][3] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-mtlp-2/igt@perf@blocking@1-vcs1.html New tests --------- New tests have been introduced between CI_DRM_19008_full and IGTPW_15692_full: ### New IGT tests (16) ### * igt@kms_flip@basic: - Statuses : - Exec time: [None] s * igt@kms_flip@bo-write-verify-threaded-none: - Statuses : - Exec time: [None] s * igt@kms_flip@crc-primary-rotation-180-yf-tiled-ccs: - Statuses : - Exec time: [None] s * igt@kms_flip@dma-buf-fence-chain: - Statuses : - Exec time: [None] s * igt@kms_flip@fbcpsr-1p-offscreen-pri-shrfb-draw-mmap-cpu: - Statuses : - Exec time: [None] s * igt@kms_flip@fbcpsr-1p-primscrn-spr-indfb-draw-render: - Statuses : - Exec time: [None] s * igt@kms_flip@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling: - Statuses : - Exec time: [None] s * igt@kms_flip@hdr-2p-primscrn-indfb-pgflip-blt: - Statuses : - Exec time: [None] s * igt@kms_flip@hog: - Statuses : - Exec time: [None] s * igt@kms_flip@invalid-signal-zero-handles: - Statuses : - Exec time: [None] s * igt@kms_flip@missing-ccs-buffer-4-tiled-mtl-rc-ccs: - Statuses : - Exec time: [None] s * igt@kms_flip@pixel-format-4-tiled-dg2-mc-ccs-modifier: - Statuses : - Exec time: [None] s * igt@kms_flip@psrhdr-1p-offscreen-pri-indfb-draw-blt: - Statuses : - Exec time: [None] s * igt@kms_flip@submit-late-slice: - Statuses : - Exec time: [None] s * igt@kms_flip@test-time-stamp: - Statuses : - Exec time: [None] s * igt@kms_flip@unaligned-write: - Statuses : - Exec time: [None] s Known issues ------------ Here are the changes found in IGTPW_15692_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]) +1 other test skip [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-5/igt@api_intel_bb@blit-reloc-purge-cache.html * igt@device_reset@cold-reset-bound: - shard-dg2: NOTRUN -> [SKIP][5] ([i915#11078]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-dg2-1/igt@device_reset@cold-reset-bound.html * igt@device_reset@unbind-cold-reset-rebind: - shard-rkl: NOTRUN -> [SKIP][6] ([i915#11078]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-7/igt@device_reset@unbind-cold-reset-rebind.html * igt@gem_ccs@suspend-resume: - shard-tglu-1: NOTRUN -> [SKIP][7] ([i915#9323]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-tglu-1/igt@gem_ccs@suspend-resume.html * igt@gem_create@create-ext-cpu-access-big: - shard-tglu: NOTRUN -> [SKIP][8] ([i915#6335]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-tglu-9/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_ctx_isolation@preservation-s3@rcs0: - shard-glk: NOTRUN -> [INCOMPLETE][9] ([i915#13356] / [i915#16466]) +1 other test incomplete [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-glk9/igt@gem_ctx_isolation@preservation-s3@rcs0.html * igt@gem_ctx_persistence@hang: - shard-dg1: NOTRUN -> [SKIP][10] ([i915#8555]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-dg1-17/igt@gem_ctx_persistence@hang.html * igt@gem_ctx_persistence@legacy-engines-cleanup: - shard-snb: NOTRUN -> [SKIP][11] ([i915#1099]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-snb4/igt@gem_ctx_persistence@legacy-engines-cleanup.html * igt@gem_ctx_shared@q-smoketest-all: - shard-snb: NOTRUN -> [SKIP][12] +39 other tests skip [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-snb6/igt@gem_ctx_shared@q-smoketest-all.html * igt@gem_ctx_sseu@engines: - shard-tglu-1: NOTRUN -> [SKIP][13] ([i915#280]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-tglu-1/igt@gem_ctx_sseu@engines.html * igt@gem_exec_balancer@parallel: - shard-rkl: NOTRUN -> [SKIP][14] ([i915#4525]) +1 other test skip [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-4/igt@gem_exec_balancer@parallel.html * igt@gem_exec_big@single: - shard-tglu: [PASS][15] -> [FAIL][16] ([i915#15944]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19008/shard-tglu-10/igt@gem_exec_big@single.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-tglu-2/igt@gem_exec_big@single.html * igt@gem_exec_flush@basic-wb-prw-default: - shard-dg1: NOTRUN -> [SKIP][17] ([i915#3539] / [i915#4852]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-dg1-14/igt@gem_exec_flush@basic-wb-prw-default.html * igt@gem_exec_reloc@basic-wc-cpu-noreloc: - shard-dg1: NOTRUN -> [SKIP][18] ([i915#3281]) +2 other tests skip [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-dg1-15/igt@gem_exec_reloc@basic-wc-cpu-noreloc.html * igt@gem_exec_reloc@basic-write-read-noreloc: - shard-rkl: NOTRUN -> [SKIP][19] ([i915#3281]) +4 other tests skip [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-2/igt@gem_exec_reloc@basic-write-read-noreloc.html * igt@gem_exec_reloc@basic-write-wc-active: - shard-dg2: NOTRUN -> [SKIP][20] ([i915#3281]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-dg2-4/igt@gem_exec_reloc@basic-write-wc-active.html * igt@gem_exec_suspend@basic-s0: - shard-dg2: [PASS][21] -> [INCOMPLETE][22] ([i915#13356]) +1 other test incomplete [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19008/shard-dg2-1/igt@gem_exec_suspend@basic-s0.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-dg2-3/igt@gem_exec_suspend@basic-s0.html * igt@gem_lmem_evict@dontneed-evict-race: - shard-rkl: NOTRUN -> [SKIP][23] ([i915#4613] / [i915#7582]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-7/igt@gem_lmem_evict@dontneed-evict-race.html - shard-tglu: NOTRUN -> [SKIP][24] ([i915#4613] / [i915#7582]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-tglu-3/igt@gem_lmem_evict@dontneed-evict-race.html - shard-mtlp: NOTRUN -> [SKIP][25] ([i915#4613]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-mtlp-1/igt@gem_lmem_evict@dontneed-evict-race.html * igt@gem_lmem_swapping@heavy-verify-multi-ccs: - shard-rkl: NOTRUN -> [SKIP][26] ([i915#14544] / [i915#4613]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-6/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html * igt@gem_lmem_swapping@random-engines: - shard-rkl: NOTRUN -> [SKIP][27] ([i915#4613]) +1 other test skip [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-5/igt@gem_lmem_swapping@random-engines.html * igt@gem_lmem_swapping@verify-ccs: - shard-glk: NOTRUN -> [SKIP][28] ([i915#4613]) +4 other tests skip [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-glk1/igt@gem_lmem_swapping@verify-ccs.html * igt@gem_madvise@dontneed-before-exec: - shard-mtlp: NOTRUN -> [SKIP][29] ([i915#3282]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-mtlp-7/igt@gem_madvise@dontneed-before-exec.html - shard-dg2: NOTRUN -> [SKIP][30] ([i915#3282]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-dg2-4/igt@gem_madvise@dontneed-before-exec.html * igt@gem_mmap_gtt@cpuset-medium-copy-xy: - shard-dg2: NOTRUN -> [SKIP][31] ([i915#4077]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-dg2-1/igt@gem_mmap_gtt@cpuset-medium-copy-xy.html - shard-dg1: NOTRUN -> [SKIP][32] ([i915#4077]) +1 other test skip [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-dg1-15/igt@gem_mmap_gtt@cpuset-medium-copy-xy.html - shard-mtlp: NOTRUN -> [SKIP][33] ([i915#4077]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-mtlp-4/igt@gem_mmap_gtt@cpuset-medium-copy-xy.html * igt@gem_mmap_wc@write-read: - shard-dg1: NOTRUN -> [SKIP][34] ([i915#4083]) +2 other tests skip [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-dg1-19/igt@gem_mmap_wc@write-read.html * igt@gem_partial_pwrite_pread@write-snoop: - shard-dg1: NOTRUN -> [SKIP][35] ([i915#3282]) +1 other test skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-dg1-16/igt@gem_partial_pwrite_pread@write-snoop.html * igt@gem_partial_pwrite_pread@writes-after-reads-display: - shard-rkl: NOTRUN -> [SKIP][36] ([i915#3282]) +5 other tests skip [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-5/igt@gem_partial_pwrite_pread@writes-after-reads-display.html * igt@gem_pread@exhaustion: - shard-glk: NOTRUN -> [WARN][37] ([i915#2658]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-glk1/igt@gem_pread@exhaustion.html * igt@gem_pwrite@basic-exhaustion: - shard-tglu-1: NOTRUN -> [WARN][38] ([i915#2658]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-tglu-1/igt@gem_pwrite@basic-exhaustion.html * igt@gem_pxp@regular-baseline-src-copy-readible: - shard-rkl: [PASS][39] -> [SKIP][40] ([i915#4270]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19008/shard-rkl-6/igt@gem_pxp@regular-baseline-src-copy-readible.html [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-8/igt@gem_pxp@regular-baseline-src-copy-readible.html * igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs: - shard-glk: NOTRUN -> [SKIP][41] +414 other tests skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-glk2/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs.html * igt@gem_render_tiled_blits@basic: - shard-dg2: NOTRUN -> [SKIP][42] ([i915#4079]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-dg2-8/igt@gem_render_tiled_blits@basic.html * igt@gem_softpin@evict-snoop: - shard-dg1: NOTRUN -> [SKIP][43] ([i915#4885]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-dg1-16/igt@gem_softpin@evict-snoop.html * igt@gem_tiled_pread_basic@basic: - shard-rkl: NOTRUN -> [SKIP][44] ([i915#15656]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-4/igt@gem_tiled_pread_basic@basic.html * igt@gem_userptr_blits@coherency-unsync: - shard-tglu: NOTRUN -> [SKIP][45] ([i915#3297]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-tglu-4/igt@gem_userptr_blits@coherency-unsync.html * igt@gem_userptr_blits@readonly-pwrite-unsync: - shard-dg1: NOTRUN -> [SKIP][46] ([i915#3297]) +1 other test skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-dg1-19/igt@gem_userptr_blits@readonly-pwrite-unsync.html * igt@gem_userptr_blits@readonly-unsync: - shard-rkl: NOTRUN -> [SKIP][47] ([i915#3297]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-7/igt@gem_userptr_blits@readonly-unsync.html * igt@gem_userptr_blits@unsync-unmap: - shard-tglu-1: NOTRUN -> [SKIP][48] ([i915#3297]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-tglu-1/igt@gem_userptr_blits@unsync-unmap.html * igt@gem_userptr_blits@unsync-unmap-cycles: - shard-dg2: NOTRUN -> [SKIP][49] ([i915#3297]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-dg2-1/igt@gem_userptr_blits@unsync-unmap-cycles.html * igt@gem_workarounds@suspend-resume: - shard-glk10: NOTRUN -> [INCOMPLETE][50] ([i915#13356] / [i915#14586]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-glk10/igt@gem_workarounds@suspend-resume.html * igt@gen9_exec_parse@batch-without-end: - shard-tglu-1: NOTRUN -> [SKIP][51] ([i915#2527] / [i915#2856]) +1 other test skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-tglu-1/igt@gen9_exec_parse@batch-without-end.html * igt@gen9_exec_parse@bb-oversize: - shard-tglu: NOTRUN -> [SKIP][52] ([i915#2527] / [i915#2856]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-tglu-10/igt@gen9_exec_parse@bb-oversize.html * igt@gen9_exec_parse@bb-start-cmd: - shard-dg1: NOTRUN -> [SKIP][53] ([i915#2527]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-dg1-15/igt@gen9_exec_parse@bb-start-cmd.html * igt@gen9_exec_parse@bb-start-param: - shard-rkl: NOTRUN -> [SKIP][54] ([i915#2527]) +1 other test skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-7/igt@gen9_exec_parse@bb-start-param.html * igt@i915_drm_fdinfo@most-busy-idle-check-all@rcs0: - shard-dg1: NOTRUN -> [SKIP][55] ([i915#14073]) +5 other tests skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-dg1-12/igt@i915_drm_fdinfo@most-busy-idle-check-all@rcs0.html * igt@i915_module_load@fault-injection: - shard-dg1: NOTRUN -> [ABORT][56] ([i915#11814] / [i915#15481]) +1 other test abort [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-dg1-18/igt@i915_module_load@fault-injection.html * igt@i915_module_load@fault-injection@i915_driver_mmio_probe: - shard-dg1: NOTRUN -> [INCOMPLETE][57] ([i915#15481]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-dg1-18/igt@i915_module_load@fault-injection@i915_driver_mmio_probe.html * igt@i915_module_load@fault-injection@intel_connector_register: - shard-glk: NOTRUN -> [ABORT][58] ([i915#15342]) +1 other test abort [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-glk3/igt@i915_module_load@fault-injection@intel_connector_register.html * igt@i915_pm_freq_mult@media-freq@gt0: - shard-rkl: NOTRUN -> [SKIP][59] ([i915#6590]) +1 other test skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-5/igt@i915_pm_freq_mult@media-freq@gt0.html * igt@i915_pm_rc6_residency@rc6-idle: - shard-rkl: NOTRUN -> [SKIP][60] ([i915#14498]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-4/igt@i915_pm_rc6_residency@rc6-idle.html * igt@i915_pm_rpm@system-suspend: - shard-glk11: NOTRUN -> [INCOMPLETE][61] ([i915#13356]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-glk11/igt@i915_pm_rpm@system-suspend.html * igt@i915_pm_rpm@system-suspend-devices: - shard-rkl: [PASS][62] -> [ABORT][63] ([i915#15060]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19008/shard-rkl-5/igt@i915_pm_rpm@system-suspend-devices.html [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-1/igt@i915_pm_rpm@system-suspend-devices.html * igt@i915_pm_rpm@system-suspend-execbuf: - shard-glk11: NOTRUN -> [INCOMPLETE][64] ([i915#13356] / [i915#15172]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-glk11/igt@i915_pm_rpm@system-suspend-execbuf.html - shard-rkl: [PASS][65] -> [INCOMPLETE][66] ([i915#13356]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19008/shard-rkl-4/igt@i915_pm_rpm@system-suspend-execbuf.html [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-3/igt@i915_pm_rpm@system-suspend-execbuf.html * igt@i915_suspend@basic-s3-without-i915: - shard-tglu: NOTRUN -> [INCOMPLETE][67] ([i915#4817] / [i915#7443]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-tglu-2/igt@i915_suspend@basic-s3-without-i915.html * igt@i915_suspend@forcewake: - shard-glk: NOTRUN -> [INCOMPLETE][68] ([i915#16182] / [i915#4817]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-glk6/igt@i915_suspend@forcewake.html * igt@i915_suspend@sysfs-reader: - shard-rkl: [PASS][69] -> [INCOMPLETE][70] ([i915#4817]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19008/shard-rkl-4/igt@i915_suspend@sysfs-reader.html [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-6/igt@i915_suspend@sysfs-reader.html * igt@kms_addfb_basic@basic-x-tiled-legacy: - shard-dg2: NOTRUN -> [SKIP][71] ([i915#4212]) +1 other test skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-dg2-3/igt@kms_addfb_basic@basic-x-tiled-legacy.html - shard-dg1: NOTRUN -> [SKIP][72] ([i915#4212]) +1 other test skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-dg1-17/igt@kms_addfb_basic@basic-x-tiled-legacy.html - shard-mtlp: NOTRUN -> [SKIP][73] ([i915#4212]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-mtlp-4/igt@kms_addfb_basic@basic-x-tiled-legacy.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-glk: NOTRUN -> [SKIP][74] ([i915#1769]) +1 other test skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-glk6/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-rkl: NOTRUN -> [SKIP][75] ([i915#1769] / [i915#3555]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-3/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1: - shard-mtlp: [PASS][76] -> [FAIL][77] ([i915#5956]) +1 other test fail [76]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19008/shard-mtlp-7/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1.html [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-mtlp-8/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1.html * igt@kms_big_fb@4-tiled-16bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][78] ([i915#4538] / [i915#5286]) +1 other test skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-dg1-17/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html * igt@kms_big_fb@4-tiled-64bpp-rotate-0: - shard-tglu: NOTRUN -> [SKIP][79] ([i915#5286]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-tglu-3/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html * igt@kms_big_fb@4-tiled-8bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][80] ([i915#14544] / [i915#5286]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-6/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-rkl: NOTRUN -> [SKIP][81] ([i915#5286]) +2 other tests skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-2/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html - shard-tglu-1: NOTRUN -> [SKIP][82] ([i915#5286]) +3 other tests skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-tglu-1/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@linear-64bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][83] ([i915#3638]) +1 other test skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-dg1-17/igt@kms_big_fb@linear-64bpp-rotate-90.html * igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip: - shard-rkl: NOTRUN -> [SKIP][84] ([i915#3828]) +1 other test skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-7/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-mtlp: [PASS][85] -> [FAIL][86] ([i915#15733] / [i915#5138]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19008/shard-mtlp-8/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip.html [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-mtlp-3/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@y-tiled-32bpp-rotate-180: - shard-dg2: NOTRUN -> [SKIP][87] ([i915#4538] / [i915#5190]) +3 other tests skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-dg2-7/igt@kms_big_fb@y-tiled-32bpp-rotate-180.html * igt@kms_big_fb@y-tiled-addfb-size-overflow: - shard-dg2: NOTRUN -> [SKIP][88] ([i915#5190]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-dg2-5/igt@kms_big_fb@y-tiled-addfb-size-overflow.html - shard-mtlp: NOTRUN -> [SKIP][89] ([i915#6187]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-mtlp-7/igt@kms_big_fb@y-tiled-addfb-size-overflow.html * igt@kms_big_fb@yf-tiled-8bpp-rotate-270: - shard-mtlp: NOTRUN -> [SKIP][90] +2 other tests skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-mtlp-1/igt@kms_big_fb@yf-tiled-8bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-dg1: NOTRUN -> [SKIP][91] ([i915#4538]) +1 other test skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-dg1-12/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_ccs@bad-aux-stride-y-tiled-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][92] ([i915#10307] / [i915#10434] / [i915#6095]) +3 other tests skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-dg2-4/igt@kms_ccs@bad-aux-stride-y-tiled-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@bad-pixel-format-yf-tiled-ccs@pipe-c-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][93] ([i915#10307] / [i915#6095]) +101 other tests skip [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-dg2-4/igt@kms_ccs@bad-pixel-format-yf-tiled-ccs@pipe-c-hdmi-a-1.html * igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-2: - shard-glk10: NOTRUN -> [SKIP][94] +119 other tests skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-glk10/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc@pipe-b-hdmi-a-2.html * igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][95] ([i915#6095]) +77 other tests skip [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-8/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-mc-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@crc-primary-basic-y-tiled-ccs: - shard-tglu-1: NOTRUN -> [SKIP][96] ([i915#6095]) +34 other tests skip [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-tglu-1/igt@kms_ccs@crc-primary-basic-y-tiled-ccs.html * igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc: - shard-glk11: NOTRUN -> [SKIP][97] +89 other tests skip [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-glk11/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-c-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][98] ([i915#6095]) +12 other tests skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-dg2-8/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-c-hdmi-a-3.html * igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][99] ([i915#14544] / [i915#6095]) +1 other test skip [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-6/igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-c-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][100] ([i915#14098] / [i915#14544] / [i915#6095]) +1 other test skip [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-6/igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-c-hdmi-a-2.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][101] ([i915#14098] / [i915#6095]) +48 other tests skip [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-3/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-2.html * igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs: - shard-tglu: NOTRUN -> [SKIP][102] ([i915#6095]) +19 other tests skip [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-tglu-5/igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs.html - shard-mtlp: NOTRUN -> [SKIP][103] ([i915#6095]) +4 other tests skip [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-mtlp-8/igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-a-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][104] ([i915#6095]) +209 other tests skip [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-dg1-12/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-a-hdmi-a-3.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-tglu-1: NOTRUN -> [SKIP][105] ([i915#3742]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-tglu-1/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_cdclk@plane-scaling: - shard-rkl: NOTRUN -> [SKIP][106] ([i915#3742]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-8/igt@kms_cdclk@plane-scaling.html * igt@kms_chamelium_audio@hdmi-audio-after-suspend: - shard-tglu-1: NOTRUN -> [SKIP][107] ([i915#11151]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-tglu-1/igt@kms_chamelium_audio@hdmi-audio-after-suspend.html * igt@kms_chamelium_color@ctm-max: - shard-dg2: NOTRUN -> [SKIP][108] +1 other test skip [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-dg2-5/igt@kms_chamelium_color@ctm-max.html * igt@kms_chamelium_color_pipeline@plane-ctm3x4: - shard-dg2: NOTRUN -> [SKIP][109] ([i915#16471]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-dg2-4/igt@kms_chamelium_color_pipeline@plane-ctm3x4.html * igt@kms_chamelium_color_pipeline@plane-lut1d: - shard-tglu-1: NOTRUN -> [SKIP][110] ([i915#16471]) +1 other test skip [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-tglu-1/igt@kms_chamelium_color_pipeline@plane-lut1d.html * igt@kms_chamelium_color_pipeline@plane-lut1d-pre-ctm3x4: - shard-dg1: NOTRUN -> [SKIP][111] ([i915#16471]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-dg1-17/igt@kms_chamelium_color_pipeline@plane-lut1d-pre-ctm3x4.html * igt@kms_chamelium_frames@dp-crc-fast: - shard-tglu-1: NOTRUN -> [SKIP][112] ([i915#11151] / [i915#7828]) +1 other test skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-tglu-1/igt@kms_chamelium_frames@dp-crc-fast.html * igt@kms_chamelium_frames@dp-crc-single: - shard-tglu: NOTRUN -> [SKIP][113] ([i915#11151] / [i915#7828]) +2 other tests skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-tglu-7/igt@kms_chamelium_frames@dp-crc-single.html * igt@kms_chamelium_hpd@common-hpd-after-suspend: - shard-dg2: NOTRUN -> [SKIP][114] ([i915#11151] / [i915#7828]) +2 other tests skip [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-dg2-1/igt@kms_chamelium_hpd@common-hpd-after-suspend.html - shard-rkl: NOTRUN -> [SKIP][115] ([i915#11151] / [i915#7828]) +5 other tests skip [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-4/igt@kms_chamelium_hpd@common-hpd-after-suspend.html - shard-dg1: NOTRUN -> [SKIP][116] ([i915#11151] / [i915#7828]) +3 other tests skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-dg1-14/igt@kms_chamelium_hpd@common-hpd-after-suspend.html - shard-mtlp: NOTRUN -> [SKIP][117] ([i915#11151] / [i915#7828]) +1 other test skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-mtlp-1/igt@kms_chamelium_hpd@common-hpd-after-suspend.html * igt@kms_content_protection@atomic: - shard-rkl: NOTRUN -> [SKIP][118] ([i915#15865]) +1 other test skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-8/igt@kms_content_protection@atomic.html * igt@kms_content_protection@atomic-dpms: - shard-dg2: NOTRUN -> [SKIP][119] ([i915#15865]) +1 other test skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-dg2-5/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@atomic-hdcp14: - shard-tglu-1: NOTRUN -> [SKIP][120] ([i915#15865]) +1 other test skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-tglu-1/igt@kms_content_protection@atomic-hdcp14.html * igt@kms_content_protection@dp-mst-type-0-suspend-resume: - shard-rkl: NOTRUN -> [SKIP][121] ([i915#14544] / [i915#15330]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-6/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html * igt@kms_content_protection@uevent: - shard-dg1: NOTRUN -> [SKIP][122] ([i915#15865]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-dg1-18/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-tglu: NOTRUN -> [SKIP][123] ([i915#13049]) +1 other test skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-tglu-7/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_crc@cursor-onscreen-64x21: - shard-rkl: [PASS][124] -> [FAIL][125] ([i915#13566]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19008/shard-rkl-4/igt@kms_cursor_crc@cursor-onscreen-64x21.html [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-8/igt@kms_cursor_crc@cursor-onscreen-64x21.html * igt@kms_cursor_crc@cursor-random-32x10: - shard-dg2: NOTRUN -> [SKIP][126] ([i915#3555]) +1 other test skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-dg2-8/igt@kms_cursor_crc@cursor-random-32x10.html - shard-dg1: NOTRUN -> [SKIP][127] ([i915#3555]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-dg1-16/igt@kms_cursor_crc@cursor-random-32x10.html - shard-tglu: NOTRUN -> [SKIP][128] ([i915#3555]) +2 other tests skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-tglu-3/igt@kms_cursor_crc@cursor-random-32x10.html - shard-mtlp: NOTRUN -> [SKIP][129] ([i915#3555] / [i915#8814]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-mtlp-1/igt@kms_cursor_crc@cursor-random-32x10.html * igt@kms_cursor_crc@cursor-random-32x32: - shard-tglu-1: NOTRUN -> [SKIP][130] ([i915#3555]) +1 other test skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-tglu-1/igt@kms_cursor_crc@cursor-random-32x32.html * igt@kms_cursor_crc@cursor-random-512x512: - shard-dg2: NOTRUN -> [SKIP][131] ([i915#13049]) +1 other test skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-dg2-4/igt@kms_cursor_crc@cursor-random-512x512.html * igt@kms_cursor_crc@cursor-rapid-movement-512x170: - shard-dg1: NOTRUN -> [SKIP][132] ([i915#13049]) [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-dg1-17/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html - shard-mtlp: NOTRUN -> [SKIP][133] ([i915#13049]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-mtlp-8/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html * igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [FAIL][134] ([i915#13566]) +2 other tests fail [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-2/igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1.html * igt@kms_cursor_crc@cursor-sliding-32x10: - shard-rkl: NOTRUN -> [SKIP][135] ([i915#3555]) +4 other tests skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-8/igt@kms_cursor_crc@cursor-sliding-32x10.html * igt@kms_cursor_crc@cursor-sliding-32x32: - shard-rkl: NOTRUN -> [SKIP][136] ([i915#14544] / [i915#3555]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-6/igt@kms_cursor_crc@cursor-sliding-32x32.html * igt@kms_cursor_crc@cursor-sliding-512x512: - shard-tglu-1: NOTRUN -> [SKIP][137] ([i915#13049]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-tglu-1/igt@kms_cursor_crc@cursor-sliding-512x512.html * igt@kms_cursor_crc@cursor-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][138] ([i915#12358] / [i915#14152] / [i915#7882]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-glk1/igt@kms_cursor_crc@cursor-suspend.html - shard-rkl: [PASS][139] -> [ABORT][140] ([i915#15132]) +1 other test abort [139]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19008/shard-rkl-7/igt@kms_cursor_crc@cursor-suspend.html [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-1/igt@kms_cursor_crc@cursor-suspend.html * igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [INCOMPLETE][141] ([i915#12358] / [i915#14152]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-glk1/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-tglu-1: NOTRUN -> [SKIP][142] ([i915#4103]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-tglu-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-glk: NOTRUN -> [FAIL][143] ([i915#15768]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-glk9/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-dg1: NOTRUN -> [SKIP][144] ([i915#4103]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-dg1-15/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-dg2: NOTRUN -> [SKIP][145] ([i915#4103]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-dg2-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html - shard-rkl: NOTRUN -> [SKIP][146] ([i915#4103]) +1 other test skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-4/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt@kms_display_modes@extended-mode-basic: - shard-dg2: NOTRUN -> [SKIP][147] ([i915#13691]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-dg2-5/igt@kms_display_modes@extended-mode-basic.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc: - shard-tglu-1: NOTRUN -> [SKIP][148] ([i915#1769] / [i915#3555] / [i915#3804]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/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-rkl: NOTRUN -> [SKIP][149] ([i915#3804]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-2/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html - shard-tglu-1: NOTRUN -> [SKIP][150] ([i915#3804]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-tglu-1/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html * igt@kms_dp_aux_dev@basic: - shard-tglu: NOTRUN -> [SKIP][151] ([i915#1257]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-tglu-4/igt@kms_dp_aux_dev@basic.html * igt@kms_dsc@dsc-basic-ultrajoiner: - shard-rkl: NOTRUN -> [SKIP][152] ([i915#16361]) +2 other tests skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-5/igt@kms_dsc@dsc-basic-ultrajoiner.html * igt@kms_dsc@dsc-fractional-bpp-bigjoiner: - shard-dg1: NOTRUN -> [SKIP][153] ([i915#16361]) +1 other test skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-dg1-12/igt@kms_dsc@dsc-fractional-bpp-bigjoiner.html * igt@kms_dsc@dsc-with-bpc-bigjoiner: - shard-tglu-1: NOTRUN -> [SKIP][154] ([i915#16361]) +1 other test skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-tglu-1/igt@kms_dsc@dsc-with-bpc-bigjoiner.html * igt@kms_dsc@dsc-with-formats-bigjoiner: - shard-tglu: NOTRUN -> [SKIP][155] ([i915#16361]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-tglu-7/igt@kms_dsc@dsc-with-formats-bigjoiner.html * igt@kms_dsc@dsc-with-output-formats-ultrajoiner: - shard-dg2: NOTRUN -> [SKIP][156] ([i915#16361]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-dg2-5/igt@kms_dsc@dsc-with-output-formats-ultrajoiner.html * igt@kms_fbcon_fbt@psr: - shard-dg2: NOTRUN -> [SKIP][157] ([i915#16680]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-dg2-6/igt@kms_fbcon_fbt@psr.html * igt@kms_fbcon_fbt@psr-suspend: - shard-tglu-1: NOTRUN -> [SKIP][158] ([i915#16680]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-tglu-1/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_feature_discovery@chamelium: - shard-tglu: NOTRUN -> [SKIP][159] ([i915#2065]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-tglu-4/igt@kms_feature_discovery@chamelium.html * igt@kms_feature_discovery@psr1: - shard-dg1: NOTRUN -> [SKIP][160] ([i915#658]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-dg1-14/igt@kms_feature_discovery@psr1.html * igt@kms_flip@2x-dpms-vs-vblank-race: - shard-dg2: NOTRUN -> [SKIP][161] ([i915#9934]) +3 other tests skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-dg2-5/igt@kms_flip@2x-dpms-vs-vblank-race.html * igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible: - shard-rkl: NOTRUN -> [SKIP][162] ([i915#9934]) +1 other test skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-5/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html - shard-tglu: NOTRUN -> [SKIP][163] ([i915#3637] / [i915#9934]) +1 other test skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-tglu-2/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html - shard-mtlp: NOTRUN -> [SKIP][164] ([i915#3637] / [i915#9934]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-mtlp-5/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset-interruptible.html * igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible: - shard-tglu: NOTRUN -> [SKIP][165] ([i915#9934]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-tglu-5/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html * igt@kms_flip@2x-flip-vs-expired-vblank@ab-vga1-hdmi-a1: - shard-snb: [PASS][166] -> [FAIL][167] ([i915#13027]) +1 other test fail [166]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19008/shard-snb7/igt@kms_flip@2x-flip-vs-expired-vblank@ab-vga1-hdmi-a1.html [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-snb7/igt@kms_flip@2x-flip-vs-expired-vblank@ab-vga1-hdmi-a1.html * igt@kms_flip@2x-flip-vs-rmfb: - shard-tglu-1: NOTRUN -> [SKIP][168] ([i915#3637] / [i915#9934]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-tglu-1/igt@kms_flip@2x-flip-vs-rmfb.html * igt@kms_flip@2x-plain-flip: - shard-dg1: NOTRUN -> [SKIP][169] ([i915#9934]) +1 other test skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-dg1-17/igt@kms_flip@2x-plain-flip.html * igt@kms_flip@dpms-vs-vblank-race-interruptible: - shard-snb: [PASS][170] -> [FAIL][171] ([i915#10826]) +1 other test fail [170]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19008/shard-snb4/igt@kms_flip@dpms-vs-vblank-race-interruptible.html [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-snb5/igt@kms_flip@dpms-vs-vblank-race-interruptible.html * igt@kms_flip@flip-vs-suspend: - shard-rkl: [PASS][172] -> [INCOMPLETE][173] ([i915#16276] / [i915#6113]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19008/shard-rkl-5/igt@kms_flip@flip-vs-suspend.html [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-3/igt@kms_flip@flip-vs-suspend.html - shard-glk: NOTRUN -> [INCOMPLETE][174] ([i915#12314] / [i915#12745] / [i915#4839]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-glk8/igt@kms_flip@flip-vs-suspend.html * igt@kms_flip@flip-vs-suspend@a-hdmi-a1: - shard-glk: NOTRUN -> [INCOMPLETE][175] ([i915#12314] / [i915#12745]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-glk8/igt@kms_flip@flip-vs-suspend@a-hdmi-a1.html * igt@kms_flip@flip-vs-suspend@a-hdmi-a2: - shard-rkl: NOTRUN -> [INCOMPLETE][176] ([i915#16276] / [i915#6113]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-3/igt@kms_flip@flip-vs-suspend@a-hdmi-a2.html * igt@kms_flip@plain-flip-fb-recreate-interruptible@b-hdmi-a1: - shard-snb: [PASS][177] -> [FAIL][178] ([i915#14600]) +1 other test fail [177]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19008/shard-snb1/igt@kms_flip@plain-flip-fb-recreate-interruptible@b-hdmi-a1.html [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-snb6/igt@kms_flip@plain-flip-fb-recreate-interruptible@b-hdmi-a1.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-tglu-1: NOTRUN -> [SKIP][179] ([i915#15643]) +3 other tests skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling: - shard-dg2: NOTRUN -> [SKIP][180] ([i915#15643]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-dg2-5/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling: - shard-tglu: NOTRUN -> [SKIP][181] ([i915#15643]) +1 other test skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-tglu-9/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling: - shard-rkl: NOTRUN -> [SKIP][182] ([i915#15643]) +2 other tests skip [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-5/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-dg1: NOTRUN -> [SKIP][183] ([i915#15643]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-dg1-15/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling: - shard-dg2: NOTRUN -> [SKIP][184] ([i915#15643] / [i915#5190]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-dg2-8/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilercccs-downscaling.html * igt@kms_force_connector_basic@force-connector-state: - shard-mtlp: [PASS][185] -> [SKIP][186] ([i915#15672]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19008/shard-mtlp-3/igt@kms_force_connector_basic@force-connector-state.html [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-mtlp-1/igt@kms_force_connector_basic@force-connector-state.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][187] ([i915#15990] / [i915#8708]) +3 other tests skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-dg1-12/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-indfb-fliptrack-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][188] ([i915#15990] / [i915#8708]) +1 other test skip [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbc-2p-indfb-fliptrack-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu: - shard-tglu-1: NOTRUN -> [SKIP][189] +60 other tests skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-tglu-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-cur-indfb-onoff: - shard-rkl: NOTRUN -> [SKIP][190] ([i915#15989]) +16 other tests skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-5/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-pri-indfb-draw-pwrite: - shard-tglu: NOTRUN -> [SKIP][191] ([i915#15989]) +9 other tests skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-tglu-10/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-pri-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-spr-indfb-draw-pwrite: - shard-mtlp: NOTRUN -> [SKIP][192] ([i915#15991]) +4 other tests skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-mtlp-1/igt@kms_frontbuffer_tracking@fbchdr-2p-primscrn-spr-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-rkl: NOTRUN -> [SKIP][193] ([i915#14544]) +9 other tests skip [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-6/igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-spr-indfb-draw-mmap-wc.html - shard-dg2: NOTRUN -> [SKIP][194] ([i915#15990]) +1 other test skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-dg2-1/igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbchdr-indfb-scaledprimary: - shard-dg1: NOTRUN -> [SKIP][195] ([i915#15989]) +7 other tests skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-dg1-12/igt@kms_frontbuffer_tracking@fbchdr-indfb-scaledprimary.html - shard-mtlp: NOTRUN -> [SKIP][196] ([i915#15989]) +4 other tests skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbchdr-indfb-scaledprimary.html * igt@kms_frontbuffer_tracking@fbchdr-tiling-y: - shard-rkl: [PASS][197] -> [SKIP][198] ([i915#15989]) +6 other tests skip [197]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19008/shard-rkl-6/igt@kms_frontbuffer_tracking@fbchdr-tiling-y.html [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-8/igt@kms_frontbuffer_tracking@fbchdr-tiling-y.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][199] ([i915#15990] / [i915#8708]) +5 other tests skip [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt: - shard-dg2: NOTRUN -> [SKIP][200] ([i915#15991] / [i915#5354]) +9 other tests skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-render: - shard-dg1: NOTRUN -> [SKIP][201] +20 other tests skip [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-offscreen-pri-indfb-draw-mmap-cpu: - shard-rkl: NOTRUN -> [SKIP][202] ([i915#14544] / [i915#15102]) +3 other tests skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-offscreen-pri-indfb-draw-mmap-cpu.html - shard-dg1: NOTRUN -> [SKIP][203] ([i915#15102]) +15 other tests skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-offscreen-pri-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-offscreen-pri-indfb-draw-render: - shard-tglu: NOTRUN -> [SKIP][204] ([i915#15102]) +17 other tests skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-tglu-10/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-offscreen-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@hdr-1p-primscrn-pri-shrfb-draw-mmap-wc: - shard-tglu-1: NOTRUN -> [SKIP][205] ([i915#15989]) +9 other tests skip [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-tglu-1/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@hdr-1p-primscrn-spr-indfb-move: - shard-dg2: NOTRUN -> [SKIP][206] ([i915#15989]) +4 other tests skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-dg2-8/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-spr-indfb-move.html * igt@kms_frontbuffer_tracking@hdr-2p-primscrn-spr-indfb-onoff: - shard-dg2: NOTRUN -> [SKIP][207] ([i915#15991]) +10 other tests skip [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-dg2-6/igt@kms_frontbuffer_tracking@hdr-2p-primscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@hdr-rgb101010-draw-render: - shard-glk: [PASS][208] -> [SKIP][209] [208]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19008/shard-glk8/igt@kms_frontbuffer_tracking@hdr-rgb101010-draw-render.html [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-glk5/igt@kms_frontbuffer_tracking@hdr-rgb101010-draw-render.html * igt@kms_frontbuffer_tracking@pipe-fbc-rte: - shard-rkl: NOTRUN -> [SKIP][210] ([i915#9766]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-7/igt@kms_frontbuffer_tracking@pipe-fbc-rte.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][211] ([i915#15102]) +10 other tests skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][212] ([i915#1825]) +4 other tests skip [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-8/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-blt: - shard-mtlp: NOTRUN -> [SKIP][213] ([i915#15991] / [i915#1825]) +1 other test skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-mtlp-8/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc: - shard-tglu: NOTRUN -> [SKIP][214] +52 other tests skip [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-tglu-10/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary: - shard-rkl: NOTRUN -> [SKIP][215] ([i915#15102]) +28 other tests skip [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html * igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-cur-indfb-draw-mmap-wc: - shard-tglu-1: NOTRUN -> [SKIP][216] ([i915#15102]) +28 other tests skip [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-tglu-1/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][217] ([i915#15990]) +7 other tests skip [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-dg1-17/igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-cur-indfb-move: - shard-rkl: NOTRUN -> [SKIP][218] +67 other tests skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-7/igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-cur-indfb-move.html * igt@kms_hdmi_inject@inject-4k: - shard-mtlp: [PASS][219] -> [SKIP][220] ([i915#15725]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19008/shard-mtlp-3/igt@kms_hdmi_inject@inject-4k.html [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-mtlp-1/igt@kms_hdmi_inject@inject-4k.html * igt@kms_hdr@bpc-switch: - shard-rkl: [PASS][221] -> [SKIP][222] ([i915#16644] / [i915#3555] / [i915#8228]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19008/shard-rkl-6/igt@kms_hdr@bpc-switch.html [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-4/igt@kms_hdr@bpc-switch.html * igt@kms_hdr@bpc-switch-dpms: - shard-tglu: NOTRUN -> [SKIP][223] ([i915#3555] / [i915#8228]) +1 other test skip [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-tglu-10/igt@kms_hdr@bpc-switch-dpms.html * igt@kms_hdr@bpc-switch-suspend: - shard-tglu-1: NOTRUN -> [SKIP][224] ([i915#3555] / [i915#8228]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-tglu-1/igt@kms_hdr@bpc-switch-suspend.html * igt@kms_hdr@invalid-metadata-sizes: - shard-rkl: NOTRUN -> [SKIP][225] ([i915#16644] / [i915#3555] / [i915#8228]) +1 other test skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-8/igt@kms_hdr@invalid-metadata-sizes.html * igt@kms_hdr@static-toggle-dpms: - shard-dg1: NOTRUN -> [SKIP][226] ([i915#3555] / [i915#8228]) [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-dg1-14/igt@kms_hdr@static-toggle-dpms.html * igt@kms_hdr@static-toggle-suspend: - shard-dg2: NOTRUN -> [SKIP][227] ([i915#16518] / [i915#3555] / [i915#8228]) [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-dg2-1/igt@kms_hdr@static-toggle-suspend.html * igt@kms_joiner@basic-ultra-joiner: - shard-tglu: NOTRUN -> [SKIP][228] ([i915#15458]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-tglu-2/igt@kms_joiner@basic-ultra-joiner.html * igt@kms_joiner@invalid-modeset-force-big-joiner: - shard-rkl: NOTRUN -> [SKIP][229] ([i915#15459]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-2/igt@kms_joiner@invalid-modeset-force-big-joiner.html - shard-tglu-1: NOTRUN -> [SKIP][230] ([i915#15459]) [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-tglu-1/igt@kms_joiner@invalid-modeset-force-big-joiner.html * igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner: - shard-rkl: NOTRUN -> [SKIP][231] ([i915#14544] / [i915#15638] / [i915#15722]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-6/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-tglu-1: NOTRUN -> [SKIP][232] ([i915#15815]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-tglu-1/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_pipe_crc_basic@suspend-read-crc: - shard-glk10: NOTRUN -> [INCOMPLETE][233] ([i915#12756] / [i915#13409] / [i915#13476]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-glk10/igt@kms_pipe_crc_basic@suspend-read-crc.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-2: - shard-glk10: NOTRUN -> [INCOMPLETE][234] ([i915#13409] / [i915#13476]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-glk10/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-2.html * igt@kms_pipe_stress@stress-xrgb8888-ytiled: - shard-dg2: NOTRUN -> [SKIP][235] ([i915#13705]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-dg2-8/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html * igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier: - shard-rkl: NOTRUN -> [SKIP][236] ([i915#15709]) +1 other test skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-5/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier.html * igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier-source-clamping: - shard-tglu: NOTRUN -> [SKIP][237] ([i915#15709]) +1 other test skip [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/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-mtl-rc-ccs-cc-modifier: - shard-tglu-1: NOTRUN -> [SKIP][238] ([i915#15709]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-tglu-1/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier.html * igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier@pipe-b-plane-7: - shard-dg1: NOTRUN -> [SKIP][239] ([i915#16386]) +1 other test skip [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-dg1-19/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier@pipe-b-plane-7.html * igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a: - shard-rkl: NOTRUN -> [INCOMPLETE][240] ([i915#14412]) +1 other test incomplete [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-6/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html * igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b: - shard-glk: NOTRUN -> [INCOMPLETE][241] ([i915#13026]) +1 other test incomplete [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-glk4/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b.html * igt@kms_plane_alpha_blend@alpha-transparent-fb: - shard-glk11: NOTRUN -> [FAIL][242] ([i915#10647] / [i915#12177]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-glk11/igt@kms_plane_alpha_blend@alpha-transparent-fb.html * igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1: - shard-glk11: NOTRUN -> [FAIL][243] ([i915#10647]) +1 other test fail [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-glk11/igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1.html * igt@kms_plane_multiple@2x-tiling-4: - shard-tglu-1: NOTRUN -> [SKIP][244] ([i915#13958]) [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-tglu-1/igt@kms_plane_multiple@2x-tiling-4.html * igt@kms_plane_multiple@2x-tiling-none: - shard-tglu: NOTRUN -> [SKIP][245] ([i915#13958]) [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-tglu-2/igt@kms_plane_multiple@2x-tiling-none.html * igt@kms_plane_multiple@2x-tiling-yf: - shard-dg2: NOTRUN -> [SKIP][246] ([i915#13958]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-dg2-5/igt@kms_plane_multiple@2x-tiling-yf.html - shard-rkl: NOTRUN -> [SKIP][247] ([i915#13958]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-7/igt@kms_plane_multiple@2x-tiling-yf.html * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-c: - shard-rkl: NOTRUN -> [SKIP][248] ([i915#15329]) +3 other tests skip [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-2/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-c.html * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d: - shard-tglu-1: NOTRUN -> [SKIP][249] ([i915#15329]) +4 other tests skip [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-tglu-1/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d.html * igt@kms_plane_scaling@planes-downscale-factor-0-5: - shard-mtlp: NOTRUN -> [SKIP][250] ([i915#15329] / [i915#6953]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/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][251] ([i915#15329]) +3 other tests skip [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-mtlp-8/igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-a.html * igt@kms_pm_backlight@basic-brightness: - shard-tglu: NOTRUN -> [SKIP][252] ([i915#12343] / [i915#9812]) [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-tglu-3/igt@kms_pm_backlight@basic-brightness.html * igt@kms_pm_dc@dc5-pageflip-negative: - shard-rkl: NOTRUN -> [SKIP][253] ([i915#9685]) [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-4/igt@kms_pm_dc@dc5-pageflip-negative.html * igt@kms_pm_dc@dc5-psr: - shard-dg1: NOTRUN -> [SKIP][254] ([i915#15948]) [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-dg1-14/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_dc@dc9-dpms: - shard-tglu: NOTRUN -> [SKIP][255] ([i915#15128]) [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-tglu-6/igt@kms_pm_dc@dc9-dpms.html * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-dg2: [PASS][256] -> [SKIP][257] ([i915#15073]) +1 other test skip [256]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19008/shard-dg2-8/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-dg2-4/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html - shard-rkl: [PASS][258] -> [SKIP][259] ([i915#15073]) +1 other test skip [258]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19008/shard-rkl-6/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-2/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html - shard-tglu-1: NOTRUN -> [SKIP][260] ([i915#15073]) +1 other test skip [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-tglu-1/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html - shard-dg1: NOTRUN -> [SKIP][261] ([i915#15073]) [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-dg1-14/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@kms_pm_rpm@system-suspend-modeset: - shard-rkl: [PASS][262] -> [INCOMPLETE][263] ([i915#14419]) [262]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19008/shard-rkl-7/igt@kms_pm_rpm@system-suspend-modeset.html [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-6/igt@kms_pm_rpm@system-suspend-modeset.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf: - shard-glk: NOTRUN -> [SKIP][264] ([i915#11520]) +8 other tests skip [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-glk5/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area: - shard-rkl: NOTRUN -> [SKIP][265] ([i915#11520]) +4 other tests skip [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-4/igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area: - shard-tglu: NOTRUN -> [SKIP][266] ([i915#11520]) +2 other tests skip [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-tglu-9/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@pr-plane-move-sf-dmg-area: - shard-glk11: NOTRUN -> [SKIP][267] ([i915#11520]) +2 other tests skip [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-glk11/igt@kms_psr2_sf@pr-plane-move-sf-dmg-area.html * igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area-big-fb: - shard-rkl: NOTRUN -> [SKIP][268] ([i915#11520] / [i915#14544]) +1 other test skip [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-6/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area-big-fb.html - shard-snb: NOTRUN -> [SKIP][269] ([i915#11520]) [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-snb1/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area-big-fb.html - shard-mtlp: NOTRUN -> [SKIP][270] ([i915#12316]) [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-mtlp-6/igt@kms_psr2_sf@pr-primary-plane-update-sf-dmg-area-big-fb.html * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-sf: - shard-glk10: NOTRUN -> [SKIP][271] ([i915#11520]) +2 other tests skip [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-glk10/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf: - shard-tglu-1: NOTRUN -> [SKIP][272] ([i915#11520]) +4 other tests skip [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-tglu-1/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html * igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf: - shard-dg1: NOTRUN -> [SKIP][273] ([i915#11520]) +2 other tests skip [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-dg1-13/igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html * igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area: - shard-dg2: NOTRUN -> [SKIP][274] ([i915#11520]) +3 other tests skip [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-dg2-4/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html * igt@kms_psr@fbc-psr-sprite-plane-onoff: - shard-mtlp: NOTRUN -> [SKIP][275] ([i915#9688]) +4 other tests skip [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-mtlp-5/igt@kms_psr@fbc-psr-sprite-plane-onoff.html * igt@kms_psr@fbc-psr2-primary-mmap-gtt: - shard-tglu: NOTRUN -> [SKIP][276] ([i915#9732]) +9 other tests skip [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-tglu-8/igt@kms_psr@fbc-psr2-primary-mmap-gtt.html * igt@kms_psr@psr-cursor-plane-move: - shard-tglu-1: NOTRUN -> [SKIP][277] ([i915#9732]) +11 other tests skip [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-tglu-1/igt@kms_psr@psr-cursor-plane-move.html * igt@kms_psr@psr-primary-mmap-cpu: - shard-rkl: NOTRUN -> [SKIP][278] ([i915#1072] / [i915#14544] / [i915#9732]) [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-6/igt@kms_psr@psr-primary-mmap-cpu.html * igt@kms_psr@psr-sprite-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][279] ([i915#1072] / [i915#9732]) +5 other tests skip [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-dg2-6/igt@kms_psr@psr-sprite-mmap-gtt.html * igt@kms_psr@psr-sprite-mmap-gtt@edp-1: - shard-mtlp: NOTRUN -> [SKIP][280] ([i915#4077] / [i915#9688]) +1 other test skip [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-mtlp-2/igt@kms_psr@psr-sprite-mmap-gtt@edp-1.html * igt@kms_psr@psr-suspend: - shard-rkl: NOTRUN -> [SKIP][281] ([i915#1072] / [i915#9732]) +10 other tests skip [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-5/igt@kms_psr@psr-suspend.html * igt@kms_psr@psr2-basic: - shard-dg1: NOTRUN -> [SKIP][282] ([i915#1072] / [i915#9732]) +6 other tests skip [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-dg1-17/igt@kms_psr@psr2-basic.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-rkl: NOTRUN -> [SKIP][283] ([i915#5289]) +2 other tests skip [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_selftest@drm_framebuffer: - shard-glk: NOTRUN -> [ABORT][284] ([i915#13179]) +1 other test abort [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-glk4/igt@kms_selftest@drm_framebuffer.html * igt@kms_vrr@seamless-rr-switch-virtual: - shard-dg2: NOTRUN -> [SKIP][285] ([i915#9906]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-dg2-4/igt@kms_vrr@seamless-rr-switch-virtual.html * igt@perf@blocking: - shard-mtlp: [PASS][286] -> [FAIL][287] ([i915#10538]) +1 other test fail [286]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19008/shard-mtlp-3/igt@perf@blocking.html [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-mtlp-2/igt@perf@blocking.html * igt@perf_pmu@busy-double-start@vecs1: - shard-dg2: [PASS][288] -> [FAIL][289] ([i915#4349]) +4 other tests fail [288]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19008/shard-dg2-6/igt@perf_pmu@busy-double-start@vecs1.html [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-dg2-7/igt@perf_pmu@busy-double-start@vecs1.html * igt@perf_pmu@module-unload: - shard-tglu: NOTRUN -> [ABORT][290] ([i915#15778]) [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-tglu-7/igt@perf_pmu@module-unload.html * igt@prime_vgem@basic-write: - shard-dg2: NOTRUN -> [SKIP][291] ([i915#3291] / [i915#3708]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-dg2-8/igt@prime_vgem@basic-write.html - shard-rkl: NOTRUN -> [SKIP][292] ([i915#3291] / [i915#3708]) [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-4/igt@prime_vgem@basic-write.html - shard-dg1: NOTRUN -> [SKIP][293] ([i915#3708]) [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-dg1-13/igt@prime_vgem@basic-write.html - shard-mtlp: NOTRUN -> [SKIP][294] ([i915#10216] / [i915#3708]) [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-mtlp-5/igt@prime_vgem@basic-write.html #### Possible fixes #### * igt@gem_exec_big@single: - shard-rkl: [FAIL][295] ([i915#16604]) -> [PASS][296] [295]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19008/shard-rkl-2/igt@gem_exec_big@single.html [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-7/igt@gem_exec_big@single.html * igt@gem_exec_suspend@basic-s3: - shard-rkl: [INCOMPLETE][297] ([i915#13356]) -> [PASS][298] +1 other test pass [297]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19008/shard-rkl-3/igt@gem_exec_suspend@basic-s3.html [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-8/igt@gem_exec_suspend@basic-s3.html * igt@i915_module_load@resize-bar: - shard-dg2: [DMESG-WARN][299] ([i915#14545]) -> [PASS][300] [299]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19008/shard-dg2-8/igt@i915_module_load@resize-bar.html [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-dg2-3/igt@i915_module_load@resize-bar.html * igt@i915_pm_freq_api@freq-suspend@gt0: - shard-dg2: [INCOMPLETE][301] ([i915#13356] / [i915#13820]) -> [PASS][302] +1 other test pass [301]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19008/shard-dg2-7/igt@i915_pm_freq_api@freq-suspend@gt0.html [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-dg2-7/igt@i915_pm_freq_api@freq-suspend@gt0.html * igt@i915_pm_rps@reset: - shard-mtlp: [FAIL][303] ([i915#15365]) -> [PASS][304] [303]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19008/shard-mtlp-2/igt@i915_pm_rps@reset.html [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-mtlp-6/igt@i915_pm_rps@reset.html * igt@i915_suspend@debugfs-reader: - shard-rkl: [INCOMPLETE][305] ([i915#4817]) -> [PASS][306] [305]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19008/shard-rkl-6/igt@i915_suspend@debugfs-reader.html [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-3/igt@i915_suspend@debugfs-reader.html * igt@i915_suspend@sysfs-reader: - shard-glk: [INCOMPLETE][307] ([i915#16182] / [i915#4817]) -> [PASS][308] [307]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19008/shard-glk8/igt@i915_suspend@sysfs-reader.html [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-glk2/igt@i915_suspend@sysfs-reader.html * igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1: - shard-tglu: [FAIL][309] ([i915#15662]) -> [PASS][310] +1 other test pass [309]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19008/shard-tglu-3/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-tglu-5/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html * igt@kms_color@deep-color: - shard-rkl: [SKIP][311] ([i915#12655] / [i915#3555]) -> [PASS][312] [311]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19008/shard-rkl-4/igt@kms_color@deep-color.html [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-6/igt@kms_color@deep-color.html * igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1: - shard-tglu: [FAIL][313] ([i915#13566]) -> [PASS][314] +1 other test pass [313]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19008/shard-tglu-3/igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1.html [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-tglu-6/igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1.html * igt@kms_cursor_legacy@flip-vs-cursor-crc-atomic: - shard-dg1: [FAIL][315] ([i915#15999]) -> [PASS][316] +1 other test pass [315]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19008/shard-dg1-13/igt@kms_cursor_legacy@flip-vs-cursor-crc-atomic.html [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-dg1-14/igt@kms_cursor_legacy@flip-vs-cursor-crc-atomic.html * igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-spr-indfb-move: - shard-glk: [SKIP][317] -> [PASS][318] +6 other tests pass [317]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19008/shard-glk3/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-spr-indfb-move.html [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-glk8/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-spr-indfb-move.html * igt@kms_frontbuffer_tracking@hdr-1p-primscrn-cur-indfb-draw-blt: - shard-rkl: [SKIP][319] ([i915#15989]) -> [PASS][320] +3 other tests pass [319]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19008/shard-rkl-2/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-cur-indfb-draw-blt.html [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-6/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-cur-indfb-draw-blt.html * igt@kms_hdr@static-toggle-dpms: - shard-rkl: [SKIP][321] ([i915#16644] / [i915#3555] / [i915#8228]) -> [PASS][322] [321]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19008/shard-rkl-2/igt@kms_hdr@static-toggle-dpms.html [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-6/igt@kms_hdr@static-toggle-dpms.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-dg2: [SKIP][323] ([i915#15073]) -> [PASS][324] +2 other tests pass [323]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19008/shard-dg2-4/igt@kms_pm_rpm@modeset-non-lpsp.html [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-dg2-3/igt@kms_pm_rpm@modeset-non-lpsp.html - shard-dg1: [SKIP][325] ([i915#15073]) -> [PASS][326] [325]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19008/shard-dg1-15/igt@kms_pm_rpm@modeset-non-lpsp.html [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-dg1-17/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_pm_rpm@system-suspend-idle: - shard-dg2: [INCOMPLETE][327] ([i915#14419]) -> [PASS][328] [327]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19008/shard-dg2-3/igt@kms_pm_rpm@system-suspend-idle.html [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-dg2-3/igt@kms_pm_rpm@system-suspend-idle.html * igt@perf@polling: - shard-mtlp: [FAIL][329] ([i915#10538]) -> [PASS][330] [329]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19008/shard-mtlp-6/igt@perf@polling.html [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-mtlp-1/igt@perf@polling.html * igt@perf_pmu@busy-idle@bcs0: - shard-mtlp: [FAIL][331] ([i915#4349]) -> [PASS][332] +1 other test pass [331]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19008/shard-mtlp-1/igt@perf_pmu@busy-idle@bcs0.html [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-mtlp-6/igt@perf_pmu@busy-idle@bcs0.html #### Warnings #### * igt@api_intel_bb@blit-reloc-keep-cache: - shard-rkl: [SKIP][333] ([i915#14544] / [i915#8411]) -> [SKIP][334] ([i915#8411]) [333]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19008/shard-rkl-6/igt@api_intel_bb@blit-reloc-keep-cache.html [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-4/igt@api_intel_bb@blit-reloc-keep-cache.html * igt@api_intel_bb@crc32: - shard-rkl: [SKIP][335] ([i915#6230]) -> [SKIP][336] ([i915#14544] / [i915#6230]) [335]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19008/shard-rkl-2/igt@api_intel_bb@crc32.html [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-6/igt@api_intel_bb@crc32.html * igt@gem_ccs@ctrl-surf-copy-new-ctx: - shard-rkl: [SKIP][337] ([i915#14544] / [i915#9323]) -> [SKIP][338] ([i915#9323]) [337]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19008/shard-rkl-6/igt@gem_ccs@ctrl-surf-copy-new-ctx.html [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-4/igt@gem_ccs@ctrl-surf-copy-new-ctx.html * igt@gem_ccs@large-ctrl-surf-copy: - shard-rkl: [SKIP][339] ([i915#13008] / [i915#14544]) -> [SKIP][340] ([i915#13008]) [339]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19008/shard-rkl-6/igt@gem_ccs@large-ctrl-surf-copy.html [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-4/igt@gem_ccs@large-ctrl-surf-copy.html * igt@gem_exec_reloc@basic-gtt-cpu: - shard-rkl: [SKIP][341] ([i915#14544] / [i915#3281]) -> [SKIP][342] ([i915#3281]) +2 other tests skip [341]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19008/shard-rkl-6/igt@gem_exec_reloc@basic-gtt-cpu.html [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-3/igt@gem_exec_reloc@basic-gtt-cpu.html * igt@gem_exec_reloc@basic-wc: - shard-rkl: [SKIP][343] ([i915#3281]) -> [SKIP][344] ([i915#14544] / [i915#3281]) [343]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19008/shard-rkl-4/igt@gem_exec_reloc@basic-wc.html [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-6/igt@gem_exec_reloc@basic-wc.html * igt@gem_huc_copy@huc-copy: - shard-rkl: [SKIP][345] ([i915#14544] / [i915#2190]) -> [SKIP][346] ([i915#2190]) [345]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19008/shard-rkl-6/igt@gem_huc_copy@huc-copy.html [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-8/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@heavy-multi: - shard-rkl: [SKIP][347] ([i915#4613]) -> [SKIP][348] ([i915#14544] / [i915#4613]) [347]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19008/shard-rkl-5/igt@gem_lmem_swapping@heavy-multi.html [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-6/igt@gem_lmem_swapping@heavy-multi.html * igt@gem_partial_pwrite_pread@reads-uncached: - shard-rkl: [SKIP][349] ([i915#14544] / [i915#3282]) -> [SKIP][350] ([i915#3282]) +3 other tests skip [349]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19008/shard-rkl-6/igt@gem_partial_pwrite_pread@reads-uncached.html [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-7/igt@gem_partial_pwrite_pread@reads-uncached.html * igt@gem_partial_pwrite_pread@writes-after-reads: - shard-rkl: [SKIP][351] ([i915#3282]) -> [SKIP][352] ([i915#14544] / [i915#3282]) [351]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19008/shard-rkl-2/igt@gem_partial_pwrite_pread@writes-after-reads.html [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-6/igt@gem_partial_pwrite_pread@writes-after-reads.html * igt@gem_userptr_blits@dmabuf-unsync: - shard-rkl: [SKIP][353] ([i915#3297]) -> [SKIP][354] ([i915#14544] / [i915#3297]) [353]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19008/shard-rkl-4/igt@gem_userptr_blits@dmabuf-unsync.html [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-6/igt@gem_userptr_blits@dmabuf-unsync.html * igt@gem_userptr_blits@forbidden-operations: - shard-rkl: [SKIP][355] ([i915#14544] / [i915#3282] / [i915#3297]) -> [SKIP][356] ([i915#3282] / [i915#3297]) [355]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19008/shard-rkl-6/igt@gem_userptr_blits@forbidden-operations.html [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-1/igt@gem_userptr_blits@forbidden-operations.html * igt@gen9_exec_parse@bb-large: - shard-rkl: [SKIP][357] ([i915#2527]) -> [SKIP][358] ([i915#14544] / [i915#2527]) [357]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19008/shard-rkl-4/igt@gen9_exec_parse@bb-large.html [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-6/igt@gen9_exec_parse@bb-large.html * igt@gen9_exec_parse@shadow-peek: - shard-rkl: [SKIP][359] ([i915#14544] / [i915#2527]) -> [SKIP][360] ([i915#2527]) +3 other tests skip [359]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19008/shard-rkl-6/igt@gen9_exec_parse@shadow-peek.html [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-7/igt@gen9_exec_parse@shadow-peek.html * igt@i915_pm_freq_api@freq-basic-api: - shard-rkl: [SKIP][361] ([i915#8399]) -> [SKIP][362] ([i915#14544] / [i915#8399]) [361]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19008/shard-rkl-7/igt@i915_pm_freq_api@freq-basic-api.html [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-6/igt@i915_pm_freq_api@freq-basic-api.html * igt@i915_pm_freq_api@freq-suspend: - shard-rkl: [SKIP][363] ([i915#14544] / [i915#8399]) -> [SKIP][364] ([i915#8399]) [363]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19008/shard-rkl-6/igt@i915_pm_freq_api@freq-suspend.html [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-7/igt@i915_pm_freq_api@freq-suspend.html * igt@i915_pm_rc6_residency@media-rc6-accuracy: - shard-rkl: [SKIP][365] ([i915#14544] / [i915#16080] / [i915#16166]) -> [SKIP][366] ([i915#16080] / [i915#16166]) [365]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19008/shard-rkl-6/igt@i915_pm_rc6_residency@media-rc6-accuracy.html [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-3/igt@i915_pm_rc6_residency@media-rc6-accuracy.html * igt@i915_power@sanity: - shard-rkl: [SKIP][367] ([i915#7984]) -> [SKIP][368] ([i915#14544] / [i915#7984]) [367]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19008/shard-rkl-5/igt@i915_power@sanity.html [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-6/igt@i915_power@sanity.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-rkl: [SKIP][369] ([i915#9531]) -> [SKIP][370] ([i915#14544] / [i915#9531]) [369]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19008/shard-rkl-3/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-6/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_big_fb@4-tiled-16bpp-rotate-90: - shard-rkl: [SKIP][371] ([i915#5286]) -> [SKIP][372] ([i915#14544] / [i915#5286]) +2 other tests skip [371]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19008/shard-rkl-2/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-6/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html * igt@kms_big_fb@4-tiled-32bpp-rotate-180: - shard-rkl: [SKIP][373] ([i915#14544] / [i915#5286]) -> [SKIP][374] ([i915#5286]) [373]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19008/shard-rkl-6/igt@kms_big_fb@4-tiled-32bpp-rotate-180.html [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-3/igt@kms_big_fb@4-tiled-32bpp-rotate-180.html * igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip: - shard-rkl: [SKIP][375] ([i915#3828]) -> [SKIP][376] ([i915#14544] / [i915#3828]) [375]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19008/shard-rkl-8/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip.html [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-6/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@y-tiled-64bpp-rotate-270: - shard-rkl: [SKIP][377] ([i915#14544] / [i915#3638]) -> [SKIP][378] ([i915#3638]) +1 other test skip [377]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19008/shard-rkl-6/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-7/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc: - shard-rkl: [SKIP][379] ([i915#14098] / [i915#14544] / [i915#6095]) -> [SKIP][380] ([i915#14098] / [i915#6095]) +8 other tests skip [379]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19008/shard-rkl-6/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc.html [380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-5/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs: - shard-rkl: [SKIP][381] ([i915#14098] / [i915#6095]) -> [SKIP][382] ([i915#14098] / [i915#14544] / [i915#6095]) +3 other tests skip [381]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19008/shard-rkl-3/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs.html [382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-6/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2: - shard-rkl: [SKIP][383] ([i915#6095]) -> [SKIP][384] ([i915#14544] / [i915#6095]) +3 other tests skip [383]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19008/shard-rkl-3/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html [384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-6/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs: - shard-rkl: [SKIP][385] ([i915#12313]) -> [SKIP][386] ([i915#12313] / [i915#14544]) +1 other test skip [385]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19008/shard-rkl-3/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html [386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-6/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs: - shard-rkl: [SKIP][387] ([i915#12313] / [i915#14544]) -> [SKIP][388] ([i915#12313]) [387]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19008/shard-rkl-6/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html [388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-4/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-2: - shard-rkl: [SKIP][389] ([i915#14544] / [i915#6095]) -> [SKIP][390] ([i915#6095]) +3 other tests skip [389]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19008/shard-rkl-6/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-2.html [390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-4/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-2.html * igt@kms_chamelium_color_pipeline@plane-lut1d-ctm3x4-lut1d: - shard-rkl: [SKIP][391] ([i915#16471]) -> [SKIP][392] ([i915#14544] / [i915#16471]) +1 other test skip [391]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19008/shard-rkl-8/igt@kms_chamelium_color_pipeline@plane-lut1d-ctm3x4-lut1d.html [392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-6/igt@kms_chamelium_color_pipeline@plane-lut1d-ctm3x4-lut1d.html * igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe: - shard-rkl: [SKIP][393] ([i915#11151] / [i915#7828]) -> [SKIP][394] ([i915#11151] / [i915#14544] / [i915#7828]) +1 other test skip [393]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19008/shard-rkl-1/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html [394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-6/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html * igt@kms_chamelium_hpd@vga-hpd-fast: - shard-rkl: [SKIP][395] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][396] ([i915#11151] / [i915#7828]) +4 other tests skip [395]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19008/shard-rkl-6/igt@kms_chamelium_hpd@vga-hpd-fast.html [396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-4/igt@kms_chamelium_hpd@vga-hpd-fast.html * igt@kms_content_protection@srm: - shard-rkl: [SKIP][397] ([i915#15865]) -> [SKIP][398] ([i915#14544] / [i915#15865]) [397]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19008/shard-rkl-5/igt@kms_content_protection@srm.html [398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-6/igt@kms_content_protection@srm.html * igt@kms_content_protection@uevent-hdcp14: - shard-rkl: [SKIP][399] ([i915#14544] / [i915#15865]) -> [SKIP][400] ([i915#15865]) [399]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19008/shard-rkl-6/igt@kms_content_protection@uevent-hdcp14.html [400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-8/igt@kms_content_protection@uevent-hdcp14.html * igt@kms_cursor_crc@cursor-offscreen-32x10: - shard-rkl: [SKIP][401] ([i915#14544] / [i915#3555]) -> [SKIP][402] ([i915#3555]) +1 other test skip [401]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19008/shard-rkl-6/igt@kms_cursor_crc@cursor-offscreen-32x10.html [402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-2/igt@kms_cursor_crc@cursor-offscreen-32x10.html * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-rkl: [SKIP][403] ([i915#9067]) -> [SKIP][404] ([i915#14544] / [i915#9067]) [403]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19008/shard-rkl-2/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html [404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-6/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt@kms_display_modes@extended-mode-basic: - shard-rkl: [SKIP][405] ([i915#13691] / [i915#14544]) -> [SKIP][406] ([i915#13691]) [405]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19008/shard-rkl-6/igt@kms_display_modes@extended-mode-basic.html [406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-8/igt@kms_display_modes@extended-mode-basic.html * igt@kms_dsc@dsc-fractional-bpp-with-bpc: - shard-rkl: [SKIP][407] ([i915#16361]) -> [SKIP][408] ([i915#14544] / [i915#16361]) [407]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19008/shard-rkl-4/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html [408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-6/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html * igt@kms_dsc@dsc-with-output-formats-with-bpc-ultrajoiner: - shard-rkl: [SKIP][409] ([i915#14544] / [i915#16361]) -> [SKIP][410] ([i915#16361]) +1 other test skip [409]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19008/shard-rkl-6/igt@kms_dsc@dsc-with-output-formats-with-bpc-ultrajoiner.html [410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-7/igt@kms_dsc@dsc-with-output-formats-with-bpc-ultrajoiner.html * igt@kms_feature_discovery@display-4x: - shard-rkl: [SKIP][411] ([i915#14544] / [i915#16081]) -> [SKIP][412] ([i915#16081]) [411]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19008/shard-rkl-6/igt@kms_feature_discovery@display-4x.html [412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-4/igt@kms_feature_discovery@display-4x.html * igt@kms_feature_discovery@dp-mst: - shard-rkl: [SKIP][413] ([i915#14544] / [i915#16599]) -> [SKIP][414] ([i915#16599]) [413]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19008/shard-rkl-6/igt@kms_feature_discovery@dp-mst.html [414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-8/igt@kms_feature_discovery@dp-mst.html * igt@kms_feature_discovery@psr1: - shard-rkl: [SKIP][415] ([i915#658]) -> [SKIP][416] ([i915#14544] / [i915#658]) [415]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19008/shard-rkl-2/igt@kms_feature_discovery@psr1.html [416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-6/igt@kms_feature_discovery@psr1.html * igt@kms_feature_discovery@vrr: - shard-rkl: [SKIP][417] ([i915#16600]) -> [SKIP][418] ([i915#14544] / [i915#16600]) [417]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19008/shard-rkl-8/igt@kms_feature_discovery@vrr.html [418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-6/igt@kms_feature_discovery@vrr.html * igt@kms_flip@2x-flip-vs-absolute-wf_vblank: - shard-dg1: [SKIP][419] ([i915#9934]) -> [SKIP][420] ([i915#4423] / [i915#9934]) [419]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19008/shard-dg1-19/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html [420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-dg1-18/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html * igt@kms_flip@2x-flip-vs-fences: - shard-rkl: [SKIP][421] ([i915#14544] / [i915#9934]) -> [SKIP][422] ([i915#9934]) [421]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19008/shard-rkl-6/igt@kms_flip@2x-flip-vs-fences.html [422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-7/igt@kms_flip@2x-flip-vs-fences.html * igt@kms_flip@2x-plain-flip-ts-check-interruptible: - shard-rkl: [SKIP][423] ([i915#9934]) -> [SKIP][424] ([i915#14544] / [i915#9934]) +1 other test skip [423]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19008/shard-rkl-5/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html [424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-6/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling: - shard-rkl: [SKIP][425] ([i915#15643]) -> [SKIP][426] ([i915#14544] / [i915#15643]) [425]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19008/shard-rkl-8/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling.html [426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-gtt: - shard-rkl: [SKIP][427] ([i915#1825]) -> [SKIP][428] ([i915#14544] / [i915#1825]) +1 other test skip [427]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19008/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-gtt.html [428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-tiling-4: - shard-rkl: [SKIP][429] ([i915#14544] / [i915#5439]) -> [SKIP][430] ([i915#5439]) [429]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19008/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-tiling-4.html [430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-8/igt@kms_frontbuffer_tracking@fbc-tiling-4.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-spr-indfb-draw-blt: - shard-rkl: [SKIP][431] ([i915#15102]) -> [SKIP][432] ([i915#14544] / [i915#15102]) +11 other tests skip [431]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19008/shard-rkl-8/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-spr-indfb-draw-blt.html [432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@hdr-suspend: - shard-rkl: [SKIP][433] ([i915#15989]) -> [INCOMPLETE][434] ([i915#16056]) [433]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19008/shard-rkl-7/igt@kms_frontbuffer_tracking@hdr-suspend.html [434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-6/igt@kms_frontbuffer_tracking@hdr-suspend.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-pgflip-blt: - shard-rkl: [SKIP][435] ([i915#14544] / [i915#15102]) -> [SKIP][436] ([i915#15102]) +13 other tests skip [435]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19008/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-pgflip-blt.html [436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt: - shard-rkl: [SKIP][437] ([i915#14544]) -> [SKIP][438] +31 other tests skip [437]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19008/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html [438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-8/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-cur-indfb-draw-mmap-wc: - shard-rkl: [SKIP][439] -> [SKIP][440] ([i915#14544]) +25 other tests skip [439]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19008/shard-rkl-2/igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-cur-indfb-draw-mmap-wc.html [440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-6/igt@kms_frontbuffer_tracking@psrhdr-2p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_hdr@brightness-with-hdr: - shard-tglu: [SKIP][441] ([i915#12713]) -> [SKIP][442] ([i915#1187] / [i915#12713]) [441]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19008/shard-tglu-9/igt@kms_hdr@brightness-with-hdr.html [442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-tglu-2/igt@kms_hdr@brightness-with-hdr.html * igt@kms_hdr@invalid-hdr: - shard-rkl: [SKIP][443] ([i915#16644] / [i915#3555] / [i915#8228]) -> [SKIP][444] ([i915#14544] / [i915#16644] / [i915#3555] / [i915#8228]) [443]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19008/shard-rkl-8/igt@kms_hdr@invalid-hdr.html [444]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-6/igt@kms_hdr@invalid-hdr.html * igt@kms_hdr@static-toggle-suspend: - shard-rkl: [INCOMPLETE][445] ([i915#15436]) -> [SKIP][446] ([i915#16644] / [i915#3555] / [i915#8228]) [445]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19008/shard-rkl-6/igt@kms_hdr@static-toggle-suspend.html [446]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-4/igt@kms_hdr@static-toggle-suspend.html * igt@kms_joiner@invalid-modeset-force-ultra-joiner: - shard-rkl: [SKIP][447] ([i915#15458]) -> [SKIP][448] ([i915#14544] / [i915#15458]) [447]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19008/shard-rkl-7/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html [448]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-6/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html * igt@kms_mst@mst-suspend-read-crc: - shard-rkl: [SKIP][449] ([i915#14544] / [i915#16451]) -> [SKIP][450] ([i915#16451]) [449]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19008/shard-rkl-6/igt@kms_mst@mst-suspend-read-crc.html [450]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-5/igt@kms_mst@mst-suspend-read-crc.html * igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping: - shard-rkl: [SKIP][451] ([i915#14544] / [i915#15709]) -> [SKIP][452] ([i915#15709]) [451]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19008/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping.html [452]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-4/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping.html * igt@kms_plane_multiple@2x-tiling-y: - shard-rkl: [SKIP][453] ([i915#13958]) -> [SKIP][454] ([i915#13958] / [i915#14544]) [453]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19008/shard-rkl-4/igt@kms_plane_multiple@2x-tiling-y.html [454]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-6/igt@kms_plane_multiple@2x-tiling-y.html * igt@kms_plane_multiple@tiling-yf: - shard-rkl: [SKIP][455] ([i915#14259] / [i915#14544]) -> [SKIP][456] ([i915#14259]) [455]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19008/shard-rkl-6/igt@kms_plane_multiple@tiling-yf.html [456]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-7/igt@kms_plane_multiple@tiling-yf.html * igt@kms_pm_dc@dc6-dpms: - shard-tglu: [SKIP][457] ([i915#15128]) -> [FAIL][458] ([i915#16479]) [457]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19008/shard-tglu-6/igt@kms_pm_dc@dc6-dpms.html [458]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-tglu-7/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_lpsp@kms-lpsp: - shard-dg1: [SKIP][459] ([i915#3828]) -> [SKIP][460] ([i915#9340]) [459]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19008/shard-dg1-15/igt@kms_pm_lpsp@kms-lpsp.html [460]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-dg1-13/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_rpm@dpms-lpsp: - shard-rkl: [SKIP][461] ([i915#15073]) -> [SKIP][462] ([i915#14544] / [i915#15073]) [461]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19008/shard-rkl-4/igt@kms_pm_rpm@dpms-lpsp.html [462]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-6/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@modeset-lpsp: - shard-rkl: [SKIP][463] ([i915#14544] / [i915#15073]) -> [SKIP][464] ([i915#15073]) [463]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19008/shard-rkl-6/igt@kms_pm_rpm@modeset-lpsp.html [464]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-7/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf: - shard-rkl: [SKIP][465] ([i915#11520]) -> [SKIP][466] ([i915#11520] / [i915#14544]) [465]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19008/shard-rkl-3/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html [466]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-6/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-sf.html * igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area: - shard-rkl: [SKIP][467] ([i915#11520] / [i915#14544]) -> [SKIP][468] ([i915#11520]) +3 other tests skip [467]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19008/shard-rkl-6/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html [468]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-2/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html * igt@kms_psr@fbc-psr-primary-blt: - shard-rkl: [SKIP][469] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][470] ([i915#1072] / [i915#9732]) +8 other tests skip [469]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19008/shard-rkl-6/igt@kms_psr@fbc-psr-primary-blt.html [470]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-7/igt@kms_psr@fbc-psr-primary-blt.html * igt@kms_psr@psr2-cursor-plane-move: - shard-rkl: [SKIP][471] ([i915#1072] / [i915#9732]) -> [SKIP][472] ([i915#1072] / [i915#14544] / [i915#9732]) +7 other tests skip [471]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19008/shard-rkl-1/igt@kms_psr@psr2-cursor-plane-move.html [472]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-6/igt@kms_psr@psr2-cursor-plane-move.html * igt@kms_rotation_crc@primary-4-tiled-reflect-x-0: - shard-rkl: [SKIP][473] ([i915#14544] / [i915#5289]) -> [SKIP][474] ([i915#5289]) [473]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19008/shard-rkl-6/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html [474]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-8/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html * igt@kms_setmode@invalid-clone-single-crtc: - shard-rkl: [SKIP][475] ([i915#3555]) -> [SKIP][476] ([i915#14544] / [i915#3555]) [475]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19008/shard-rkl-4/igt@kms_setmode@invalid-clone-single-crtc.html [476]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-6/igt@kms_setmode@invalid-clone-single-crtc.html * igt@kms_vrr@flip-suspend: - shard-rkl: [SKIP][477] ([i915#14544] / [i915#15243] / [i915#3555]) -> [SKIP][478] ([i915#15243] / [i915#3555]) [477]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19008/shard-rkl-6/igt@kms_vrr@flip-suspend.html [478]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-8/igt@kms_vrr@flip-suspend.html * igt@kms_vrr@seamless-rr-switch-virtual: - shard-rkl: [SKIP][479] ([i915#9906]) -> [SKIP][480] ([i915#14544] / [i915#9906]) [479]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19008/shard-rkl-2/igt@kms_vrr@seamless-rr-switch-virtual.html [480]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-6/igt@kms_vrr@seamless-rr-switch-virtual.html * igt@perf@gen8-unprivileged-single-ctx-counters: - shard-rkl: [SKIP][481] ([i915#14544] / [i915#2436]) -> [SKIP][482] ([i915#2436]) [481]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19008/shard-rkl-6/igt@perf@gen8-unprivileged-single-ctx-counters.html [482]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-7/igt@perf@gen8-unprivileged-single-ctx-counters.html * igt@perf_pmu@module-unload: - shard-dg2: [ABORT][483] ([i915#13029] / [i915#15778]) -> [ABORT][484] ([i915#15778]) [483]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19008/shard-dg2-1/igt@perf_pmu@module-unload.html [484]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-dg2-4/igt@perf_pmu@module-unload.html - shard-dg1: [ABORT][485] ([i915#13029] / [i915#15778]) -> [ABORT][486] ([i915#15778]) [485]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19008/shard-dg1-12/igt@perf_pmu@module-unload.html [486]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-dg1-12/igt@perf_pmu@module-unload.html * igt@prime_udl@share-import-addfb: - shard-rkl: [SKIP][487] ([i915#14544] / [i915#16420]) -> [SKIP][488] ([i915#16420]) [487]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19008/shard-rkl-6/igt@prime_udl@share-import-addfb.html [488]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-3/igt@prime_udl@share-import-addfb.html * igt@prime_vgem@basic-fence-read: - shard-rkl: [SKIP][489] ([i915#3291] / [i915#3708]) -> [SKIP][490] ([i915#14544] / [i915#3291] / [i915#3708]) [489]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19008/shard-rkl-5/igt@prime_vgem@basic-fence-read.html [490]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-6/igt@prime_vgem@basic-fence-read.html * igt@prime_vgem@coherency-gtt: - shard-rkl: [SKIP][491] ([i915#3708]) -> [SKIP][492] ([i915#14544] / [i915#3708]) [491]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19008/shard-rkl-1/igt@prime_vgem@coherency-gtt.html [492]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/shard-rkl-6/igt@prime_vgem@coherency-gtt.html [i915#10216]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10216 [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307 [i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434 [i915#10538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10538 [i915#10647]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647 [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#10826]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10826 [i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099 [i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078 [i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151 [i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520 [i915#11814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11814 [i915#1187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1187 [i915#12177]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12177 [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#12358]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12358 [i915#1257]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257 [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#12756]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12756 [i915#13008]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13008 [i915#13026]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13026 [i915#13027]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13027 [i915#13029]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13029 [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#13409]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13409 [i915#13476]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13476 [i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566 [i915#13691]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13691 [i915#13705]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13705 [i915#13820]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13820 [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#14152]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14152 [i915#14259]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259 [i915#14412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14412 [i915#14419]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14419 [i915#14498]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14498 [i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544 [i915#14545]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14545 [i915#14586]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14586 [i915#14600]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14600 [i915#15060]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15060 [i915#15073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073 [i915#15102]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102 [i915#15128]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15128 [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#15342]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15342 [i915#15365]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15365 [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#15481]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15481 [i915#15638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15638 [i915#15643]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643 [i915#15656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15656 [i915#15662]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15662 [i915#15672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15672 [i915#15709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709 [i915#15722]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15722 [i915#15725]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15725 [i915#15733]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15733 [i915#15768]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15768 [i915#15778]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15778 [i915#15815]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15815 [i915#15865]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15865 [i915#15944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15944 [i915#15948]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15948 [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#15999]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15999 [i915#16056]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16056 [i915#16080]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16080 [i915#16081]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16081 [i915#16166]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16166 [i915#16182]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16182 [i915#16276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16276 [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#16451]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16451 [i915#16466]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16466 [i915#16471]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16471 [i915#16479]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16479 [i915#16518]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16518 [i915#16599]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16599 [i915#16600]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16600 [i915#16604]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16604 [i915#16644]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16644 [i915#16680]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16680 [i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769 [i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825 [i915#2065]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2065 [i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190 [i915#2436]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2436 [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#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856 [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#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#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742 [i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804 [i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828 [i915#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#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#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817 [i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839 [i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852 [i915#4885]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4885 [i915#5138]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5138 [i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190 [i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289 [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354 [i915#5439]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439 [i915#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#6187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6187 [i915#6230]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6230 [i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335 [i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658 [i915#6590]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6590 [i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953 [i915#7443]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7443 [i915#7582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7582 [i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828 [i915#7882]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7882 [i915#7984]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7984 [i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228 [i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399 [i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411 [i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555 [i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708 [i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814 [i915#9067]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067 [i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323 [i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340 [i915#9531]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9531 [i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685 [i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688 [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 [i915#9766]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9766 [i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812 [i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906 [i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_9059 -> IGTPW_15692 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_19008: 96cd638dde5fef620ee7a158916da7c30c4aea0d @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_15692: 5c2beb4cb3155a0a3cb3899210f700691bfa8bcf @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_9059: f5a4ff79434df36db1d6b13deb37c90a6602565e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15692/index.html [-- Attachment #2: Type: text/html, Size: 167428 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [i-g-t] tests/intel/xe_exec_mix_modes: Add multi-queue LR spinner switch subtest 2026-08-17 20:00 [i-g-t] tests/intel/xe_exec_mix_modes: Add multi-queue LR spinner switch subtest Jagmeet Randhawa ` (3 preceding siblings ...) 2026-08-18 13:44 ` ✗ i915.CI.Full: " Patchwork @ 2026-08-19 1:50 ` Niranjana Vishwanathapura 2026-08-19 19:37 ` Randhawa, Jagmeet 4 siblings, 1 reply; 7+ messages in thread From: Niranjana Vishwanathapura @ 2026-08-19 1:50 UTC (permalink / raw) To: Jagmeet Randhawa; +Cc: igt-dev On Mon, Aug 17, 2026 at 08:00:28PM +0000, Jagmeet Randhawa wrote: >Add exec-multi-queue-spinner-interrupted-lr, which runs preemptible >spinners on every queue in a multi-queue exec queue group in long >running mode, then submits a dma-fence job on the same engine to force >the group from FAULT into DMA_FENCE mode. > >Each spinner is armed with a queue-switch semaphore >(multi_queue_switch_on_wait + xe_spin_preempt_wait) so it yields the >shared engine to its sibling once scheduled, instead of busy-looping >and starving the rest of the group. This lets every queue in the group >be genuinely resident when the interrupting job forces the mode >switch, exercising suspend/resume of the secondary queues rather than >just the primary. > >The dma-fence and LR (preempt) multi-queue suspend/resume paths are >already covered by the userptr-invalidation tests; this adds the >missing FAULT-mode coverage. > >Signed-off-by: Jagmeet Randhawa <jagmeet.randhawa@intel.com> >--- > tests/intel/xe_exec_mix_modes.c | 111 ++++++++++++++++++++++++++++++++ > 1 file changed, 111 insertions(+) > >diff --git a/tests/intel/xe_exec_mix_modes.c b/tests/intel/xe_exec_mix_modes.c >index 209825f58..d9ebb8283 100644 >--- a/tests/intel/xe_exec_mix_modes.c >+++ b/tests/intel/xe_exec_mix_modes.c >@@ -27,6 +27,7 @@ > > #define FLAG_EXEC_MODE_LR (0x1 << 0) > #define FLAG_JOB_TYPE_SIMPLE (0x1 << 1) >+#define FLAG_MULTI_QUEUE (0x1 << 2) > > #define NUM_INTERRUPTING_JOBS 1 > #define USER_FENCE_VALUE 0xdeadbeefdeadbeefull >@@ -34,6 +35,7 @@ > #define SPIN_DATA 1 > #define EXEC_DATA 2 > #define DATA_COUNT 3 >+#define N_GROUP_QUEUES 2 > > struct data { > struct xe_spin spin; >@@ -221,6 +223,104 @@ run_job(int fd, struct drm_xe_engine_class_instance *hwe, > xe_vm_destroy(fd, vm); > } > >+static void >+run_job_multi_queue(int fd, struct drm_xe_engine_class_instance *hwe) >+{ >+ struct drm_xe_sync sync = { >+ .flags = DRM_XE_SYNC_FLAG_SIGNAL, >+ .type = DRM_XE_SYNC_TYPE_USER_FENCE, >+ .timeline_value = USER_FENCE_VALUE, >+ }; >+ struct drm_xe_exec exec = { >+ .num_batch_buffer = 1, >+ .num_syncs = 1, >+ .syncs = to_user_pointer(&sync), >+ }; >+ uint32_t exec_queues[N_GROUP_QUEUES]; >+ struct xe_spin *spin[N_GROUP_QUEUES]; >+ uint64_t addr[N_GROUP_QUEUES]; >+ uint64_t base_addr = 0x1a0000; >+ int64_t fence_timeout = NSEC_PER_SEC; >+ int64_t timeout_short = 1; >+ uint64_t vm_sync = 0; >+ size_t bo_size, spin_size; >+ uint32_t vm, bo; >+ void *map; >+ int i; >+ >+ igt_require(xe_has_multi_queue_engine(fd)); >+ >+ vm = xe_vm_create(fd, DRM_XE_VM_CREATE_FLAG_LR_MODE | >+ DRM_XE_VM_CREATE_FLAG_FAULT_MODE, 0); >+ >+ /* exec_queues[0] is the primary, the rest join its group. */ >+ for (i = 0; i < N_GROUP_QUEUES; i++) { >+ struct drm_xe_ext_set_property multi_queue = { >+ .base.name = DRM_XE_EXEC_QUEUE_EXTENSION_SET_PROPERTY, >+ .property = DRM_XE_EXEC_QUEUE_SET_PROPERTY_MULTI_GROUP, >+ }; >+ uint64_t ext = to_user_pointer(&multi_queue); >+ >+ multi_queue.value = i ? exec_queues[0] : DRM_XE_MULTI_GROUP_CREATE; >+ exec_queues[i] = xe_exec_queue_create(fd, vm, hwe, ext); >+ } >+ >+ spin_size = xe_bb_size(fd, sizeof(struct xe_spin)); >+ bo_size = spin_size * N_GROUP_QUEUES; >+ bo = xe_bo_create(fd, vm, bo_size, vram_if_possible(fd, hwe->gt_id), >+ DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM); >+ map = xe_bo_map(fd, bo, bo_size); >+ for (i = 0; i < N_GROUP_QUEUES; i++) { >+ spin[i] = (struct xe_spin *)((char *)map + i * spin_size); >+ addr[i] = base_addr + i * spin_size; >+ } >+ >+ sync.addr = to_user_pointer(&vm_sync); >+ xe_vm_bind_async(fd, vm, 0, bo, 0, base_addr, bo_size, &sync, 1); >+ xe_wait_ufence(fd, &vm_sync, USER_FENCE_VALUE, 0, fence_timeout); >+ vm_sync = 0; >+ >+ for (i = 0; i < N_GROUP_QUEUES; i++) { >+ /* Yield the shared engine at a switch point instead of busy-spinning. */ >+ xe_spin_init_opts(spin[i], .addr = addr[i], .preempt = true, >+ .multi_queue_switch_on_wait = true); I think here 'multi_queue_switch = true' is enough probably (as we have 'preempt = true') instead of 'multi_queue_switch_on_wait = true'. With that, we also don't need the xe_spin_preempt_wait/nowait() calls below as well. Can you check? >+ xe_spin_preempt_wait(spin[i]); >+ sync.addr = addr[i] + (char *)&spin[i]->exec_sync - (char *)spin[i]; >+ exec.exec_queue_id = exec_queues[i]; >+ exec.address = addr[i]; >+ xe_exec(fd, &exec); >+ xe_spin_wait_started(spin[i]); >+ } >+ >+ /* Force the group from FAULT into DMA_FENCE mode. */ >+ run_job(fd, hwe, EXEC_MODE_DMA_FENCE, SIMPLE_BATCH_STORE, false, NULL); >+ >+ /* Spinners must have been suspended, not completed, during the switch. */ >+ for (i = 0; i < N_GROUP_QUEUES; i++) >+ igt_assert_neq(0, __xe_wait_ufence(fd, &spin[i]->exec_sync, >+ USER_FENCE_VALUE, exec_queues[i], >+ &timeout_short)); >+ This check doesn't mean much as we are ending the spinner below. ie., job is known to be not complete as we have not ended the spinner. But I see you want to keep it similar to other existing tests. Perhaps we can remove it as are sure that spinner job won't be complete unless we end it. >+ for (i = 0; i < N_GROUP_QUEUES; i++) { >+ xe_spin_end(spin[i]); >+ xe_spin_preempt_nowait(spin[i]); >+ } >+ >+ for (i = 0; i < N_GROUP_QUEUES; i++) >+ xe_wait_ufence(fd, &spin[i]->exec_sync, USER_FENCE_VALUE, >+ exec_queues[i], fence_timeout); >+ >+ sync.addr = to_user_pointer(&vm_sync); >+ xe_vm_unbind_async(fd, vm, 0, 0, base_addr, bo_size, &sync, 1); >+ xe_wait_ufence(fd, &vm_sync, USER_FENCE_VALUE, 0, fence_timeout); >+ >+ for (i = 0; i < N_GROUP_QUEUES; i++) >+ xe_exec_queue_destroy(fd, exec_queues[i]); >+ munmap(map, bo_size); >+ gem_close(fd, bo); >+ xe_vm_destroy(fd, vm); >+} >+ > /** > * SUBTEST: exec-simple-batch-store-lr > * Description: Execute a simple batch store job in long running mode >@@ -235,6 +335,11 @@ run_job(int fd, struct drm_xe_engine_class_instance *hwe, > * SUBTEST: exec-spinner-interrupted-dma-fence > * Description: Spin in dma fence mode then get interrupted by a simple > * batch store job in long running mode >+ * >+ * SUBTEST: exec-multi-queue-spinner-interrupted-lr >+ * Description: Run preemptible spinners on a multi-queue exec queue group >+ * in long running mode, then get interrupted by a simple >+ * batch store job in dma fence mode > */ > static void > test_exec(int fd, struct drm_xe_engine_class_instance *hwe, >@@ -243,6 +348,11 @@ test_exec(int fd, struct drm_xe_engine_class_instance *hwe, > enum engine_execution_mode engine_execution_mode; > enum job_type job_type; > >+ if (flags & FLAG_MULTI_QUEUE) { >+ run_job_multi_queue(fd, hwe); >+ return; >+ } >+ Actually, we should call igt_require(xe_engine_class_supports_multi_queue(fd, hwe->engine_class)); here instead of calling 'igt_require(xe_has_multi_queue_engine(fd));' in run_job_multi_queue. Earlier in the call chain we do it, it is better. Also, add an assert here that FLAG_EXEC_MODE_LR is set as that is the only test MULTI_QUEUE case supports currently. Niranjana > if (flags & FLAG_EXEC_MODE_LR) > engine_execution_mode = EXEC_MODE_LR; > else >@@ -267,6 +377,7 @@ int igt_main() > { "simple-batch-store-dma-fence", FLAG_JOB_TYPE_SIMPLE }, > { "spinner-interrupted-lr", FLAG_EXEC_MODE_LR }, > { "spinner-interrupted-dma-fence", 0 }, >+ { "multi-queue-spinner-interrupted-lr", FLAG_EXEC_MODE_LR | FLAG_MULTI_QUEUE }, > { NULL }, > }; > int fd; >-- >2.43.0 > ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [i-g-t] tests/intel/xe_exec_mix_modes: Add multi-queue LR spinner switch subtest 2026-08-19 1:50 ` [i-g-t] " Niranjana Vishwanathapura @ 2026-08-19 19:37 ` Randhawa, Jagmeet 0 siblings, 0 replies; 7+ messages in thread From: Randhawa, Jagmeet @ 2026-08-19 19:37 UTC (permalink / raw) To: Niranjana Vishwanathapura; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 9884 bytes --] On 8/18/2026 6:50 PM, Niranjana Vishwanathapura wrote: > On Mon, Aug 17, 2026 at 08:00:28PM +0000, Jagmeet Randhawa wrote: >> Add exec-multi-queue-spinner-interrupted-lr, which runs preemptible >> spinners on every queue in a multi-queue exec queue group in long >> running mode, then submits a dma-fence job on the same engine to force >> the group from FAULT into DMA_FENCE mode. >> >> Each spinner is armed with a queue-switch semaphore >> (multi_queue_switch_on_wait + xe_spin_preempt_wait) so it yields the >> shared engine to its sibling once scheduled, instead of busy-looping >> and starving the rest of the group. This lets every queue in the group >> be genuinely resident when the interrupting job forces the mode >> switch, exercising suspend/resume of the secondary queues rather than >> just the primary. >> >> The dma-fence and LR (preempt) multi-queue suspend/resume paths are >> already covered by the userptr-invalidation tests; this adds the >> missing FAULT-mode coverage. >> >> Signed-off-by: Jagmeet Randhawa <jagmeet.randhawa@intel.com> >> --- >> tests/intel/xe_exec_mix_modes.c | 111 ++++++++++++++++++++++++++++++++ >> 1 file changed, 111 insertions(+) >> >> diff --git a/tests/intel/xe_exec_mix_modes.c >> b/tests/intel/xe_exec_mix_modes.c >> index 209825f58..d9ebb8283 100644 >> --- a/tests/intel/xe_exec_mix_modes.c >> +++ b/tests/intel/xe_exec_mix_modes.c >> @@ -27,6 +27,7 @@ >> >> #define FLAG_EXEC_MODE_LR (0x1 << 0) >> #define FLAG_JOB_TYPE_SIMPLE (0x1 << 1) >> +#define FLAG_MULTI_QUEUE (0x1 << 2) >> >> #define NUM_INTERRUPTING_JOBS 1 >> #define USER_FENCE_VALUE 0xdeadbeefdeadbeefull >> @@ -34,6 +35,7 @@ >> #define SPIN_DATA 1 >> #define EXEC_DATA 2 >> #define DATA_COUNT 3 >> +#define N_GROUP_QUEUES 2 >> >> struct data { >> struct xe_spin spin; >> @@ -221,6 +223,104 @@ run_job(int fd, struct >> drm_xe_engine_class_instance *hwe, >> xe_vm_destroy(fd, vm); >> } >> >> +static void >> +run_job_multi_queue(int fd, struct drm_xe_engine_class_instance *hwe) >> +{ >> + struct drm_xe_sync sync = { >> + .flags = DRM_XE_SYNC_FLAG_SIGNAL, >> + .type = DRM_XE_SYNC_TYPE_USER_FENCE, >> + .timeline_value = USER_FENCE_VALUE, >> + }; >> + struct drm_xe_exec exec = { >> + .num_batch_buffer = 1, >> + .num_syncs = 1, >> + .syncs = to_user_pointer(&sync), >> + }; >> + uint32_t exec_queues[N_GROUP_QUEUES]; >> + struct xe_spin *spin[N_GROUP_QUEUES]; >> + uint64_t addr[N_GROUP_QUEUES]; >> + uint64_t base_addr = 0x1a0000; >> + int64_t fence_timeout = NSEC_PER_SEC; >> + int64_t timeout_short = 1; >> + uint64_t vm_sync = 0; >> + size_t bo_size, spin_size; >> + uint32_t vm, bo; >> + void *map; >> + int i; >> + >> + igt_require(xe_has_multi_queue_engine(fd)); >> + >> + vm = xe_vm_create(fd, DRM_XE_VM_CREATE_FLAG_LR_MODE | >> + DRM_XE_VM_CREATE_FLAG_FAULT_MODE, 0); >> + >> + /* exec_queues[0] is the primary, the rest join its group. */ >> + for (i = 0; i < N_GROUP_QUEUES; i++) { >> + struct drm_xe_ext_set_property multi_queue = { >> + .base.name = DRM_XE_EXEC_QUEUE_EXTENSION_SET_PROPERTY, >> + .property = DRM_XE_EXEC_QUEUE_SET_PROPERTY_MULTI_GROUP, >> + }; >> + uint64_t ext = to_user_pointer(&multi_queue); >> + >> + multi_queue.value = i ? exec_queues[0] : >> DRM_XE_MULTI_GROUP_CREATE; >> + exec_queues[i] = xe_exec_queue_create(fd, vm, hwe, ext); >> + } >> + >> + spin_size = xe_bb_size(fd, sizeof(struct xe_spin)); >> + bo_size = spin_size * N_GROUP_QUEUES; >> + bo = xe_bo_create(fd, vm, bo_size, vram_if_possible(fd, >> hwe->gt_id), >> + DRM_XE_GEM_CREATE_FLAG_NEEDS_VISIBLE_VRAM); >> + map = xe_bo_map(fd, bo, bo_size); >> + for (i = 0; i < N_GROUP_QUEUES; i++) { >> + spin[i] = (struct xe_spin *)((char *)map + i * spin_size); >> + addr[i] = base_addr + i * spin_size; >> + } >> + >> + sync.addr = to_user_pointer(&vm_sync); >> + xe_vm_bind_async(fd, vm, 0, bo, 0, base_addr, bo_size, &sync, 1); >> + xe_wait_ufence(fd, &vm_sync, USER_FENCE_VALUE, 0, fence_timeout); >> + vm_sync = 0; >> + >> + for (i = 0; i < N_GROUP_QUEUES; i++) { >> + /* Yield the shared engine at a switch point instead of >> busy-spinning. */ >> + xe_spin_init_opts(spin[i], .addr = addr[i], .preempt = true, >> + .multi_queue_switch_on_wait = true); > > I think here 'multi_queue_switch = true' is enough probably (as we > have 'preempt = true') > instead of 'multi_queue_switch_on_wait = true'. With that, we also > don't need the > xe_spin_preempt_wait/nowait() calls below as well. Can you check? You're right. Switched to .multi_queue_switch = true, since it's an unconditional switch point, each spinner yields to its sibling on its own, so the xe_spin_preempt_wait()/xe_spin_preempt_nowait() calls are no longer needed and are removed. Verified on hardware (NVL-P): the subtest passes. Done in v2. > >> + xe_spin_preempt_wait(spin[i]); >> + sync.addr = addr[i] + (char *)&spin[i]->exec_sync - (char >> *)spin[i]; >> + exec.exec_queue_id = exec_queues[i]; >> + exec.address = addr[i]; >> + xe_exec(fd, &exec); >> + xe_spin_wait_started(spin[i]); >> + } >> + >> + /* Force the group from FAULT into DMA_FENCE mode. */ >> + run_job(fd, hwe, EXEC_MODE_DMA_FENCE, SIMPLE_BATCH_STORE, false, >> NULL); >> + >> + /* Spinners must have been suspended, not completed, during the >> switch. */ >> + for (i = 0; i < N_GROUP_QUEUES; i++) >> + igt_assert_neq(0, __xe_wait_ufence(fd, &spin[i]->exec_sync, >> + USER_FENCE_VALUE, exec_queues[i], >> + &timeout_short)); >> + > > This check doesn't mean much as we are ending the spinner below. ie., > job is known > to be not complete as we have not ended the spinner. But I see you > want to keep it > similar to other existing tests. Perhaps we can remove it as are sure > that spinner > job won't be complete unless we end it. |Agreed, it doesn't add value since the spinner can't complete until we end it. Removed the check (and the now-unused timeout_short) in v2.| > >> + for (i = 0; i < N_GROUP_QUEUES; i++) { >> + xe_spin_end(spin[i]); >> + xe_spin_preempt_nowait(spin[i]); >> + } >> + >> + for (i = 0; i < N_GROUP_QUEUES; i++) >> + xe_wait_ufence(fd, &spin[i]->exec_sync, USER_FENCE_VALUE, >> + exec_queues[i], fence_timeout); >> + >> + sync.addr = to_user_pointer(&vm_sync); >> + xe_vm_unbind_async(fd, vm, 0, 0, base_addr, bo_size, &sync, 1); >> + xe_wait_ufence(fd, &vm_sync, USER_FENCE_VALUE, 0, fence_timeout); >> + >> + for (i = 0; i < N_GROUP_QUEUES; i++) >> + xe_exec_queue_destroy(fd, exec_queues[i]); >> + munmap(map, bo_size); >> + gem_close(fd, bo); >> + xe_vm_destroy(fd, vm); >> +} >> + >> /** >> * SUBTEST: exec-simple-batch-store-lr >> * Description: Execute a simple batch store job in long running mode >> @@ -235,6 +335,11 @@ run_job(int fd, struct >> drm_xe_engine_class_instance *hwe, >> * SUBTEST: exec-spinner-interrupted-dma-fence >> * Description: Spin in dma fence mode then get interrupted by a simple >> * batch store job in long running mode >> + * >> + * SUBTEST: exec-multi-queue-spinner-interrupted-lr >> + * Description: Run preemptible spinners on a multi-queue exec queue >> group >> + * in long running mode, then get interrupted by a simple >> + * batch store job in dma fence mode >> */ >> static void >> test_exec(int fd, struct drm_xe_engine_class_instance *hwe, >> @@ -243,6 +348,11 @@ test_exec(int fd, struct >> drm_xe_engine_class_instance *hwe, >> enum engine_execution_mode engine_execution_mode; >> enum job_type job_type; >> >> + if (flags & FLAG_MULTI_QUEUE) { >> + run_job_multi_queue(fd, hwe); >> + return; >> + } >> + > > Actually, we should call > igt_require(xe_engine_class_supports_multi_queue(fd, hwe->engine_class)); > here instead of calling 'igt_require(xe_has_multi_queue_engine(fd));' in > run_job_multi_queue. Earlier in the call chain we do it, it is better. > > Also, add an assert here that FLAG_EXEC_MODE_LR is set as that is the > only test MULTI_QUEUE case supports currently. > > Niranjana Done. Moved the capability check into test_exec() using xe_engine_class_supports_multi_queue(fd, hwe->engine_class) (dropped the xe_has_multi_queue_engine() call in run_job_multi_queue), and added igt_assert(flags & FLAG_EXEC_MODE_LR) in v2. Thanks for the review, all three addressed in v2, will send it up shortly. Jagmeet > >> if (flags & FLAG_EXEC_MODE_LR) >> engine_execution_mode = EXEC_MODE_LR; >> else >> @@ -267,6 +377,7 @@ int igt_main() >> { "simple-batch-store-dma-fence", FLAG_JOB_TYPE_SIMPLE }, >> { "spinner-interrupted-lr", FLAG_EXEC_MODE_LR }, >> { "spinner-interrupted-dma-fence", 0 }, >> + { "multi-queue-spinner-interrupted-lr", FLAG_EXEC_MODE_LR | >> FLAG_MULTI_QUEUE }, >> { NULL }, >> }; >> int fd; >> -- >> 2.43.0 >> [-- Attachment #2: Type: text/html, Size: 17320 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2026-08-19 19:38 UTC | newest] Thread overview: 7+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2026-08-17 20:00 [i-g-t] tests/intel/xe_exec_mix_modes: Add multi-queue LR spinner switch subtest Jagmeet Randhawa 2026-08-17 22:55 ` ✓ Xe.CI.BAT: success for " Patchwork 2026-08-17 22:59 ` ✓ i915.CI.BAT: " Patchwork 2026-08-18 2:52 ` ✗ Xe.CI.FULL: failure " Patchwork 2026-08-18 13:44 ` ✗ i915.CI.Full: " Patchwork 2026-08-19 1:50 ` [i-g-t] " Niranjana Vishwanathapura 2026-08-19 19:37 ` Randhawa, Jagmeet
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox