* [PATCH i-g-t] lib/amdgpu: implement selective sync skipping for error injection tests
@ 2026-01-06 6:18 Jesse.Zhang
2026-01-06 7:42 ` ✓ Xe.CI.BAT: success for " Patchwork
` (3 more replies)
0 siblings, 4 replies; 5+ messages in thread
From: Jesse.Zhang @ 2026-01-06 6:18 UTC (permalink / raw)
To: igt-dev
Cc: Vitaly Prosyak, Alex Deucher, Christian Koenig, Jesse.Zhang,
Jesse Zhang
Refactor user queue submission to handle error injection cases where
GPU commands are intentionally invalid and would cause syncobj waits
to hang indefinitely.
Key changes:
1. Introduce `enum uq_submission_mode` with two modes:
- UQ_SUBMIT_NORMAL: Full synchronization (default)
- UQ_SUBMIT_NO_SYNC: Skip sync for error injection
2. Add helper functions:
- `wait_for_packet_consumption()`: Busy-waits with timeout for GPU
to process commands without synchronization
- `create_sync_signal()`: Extracts signal creation and wait logic
for normal submissions
3. Update `user_queue_submit()` to switch between modes:
- NO_SYNC mode: Waits for command consumption via rptr/wptr polling
- NORMAL mode: Creates sync signal and waits for completion
4. Modify `bad_access_helper()` to use UQ_SUBMIT_NO_SYNC mode for
error injection tests, replacing the hardcoded timeout value
Benefits:
- Prevents permanent hangs when submitting invalid commands in tests
- Maintains full synchronization for normal operation
- Provides timeout protection for error injection cases
- Improves code organization with clear separation of concerns
- Enables future expansion of submission modes
The fix specifically addresses deadlock test scenarios where invalid
GPU commands would cause `amdgpu_cs_syncobj_wait()` to block forever,
preventing proper resource cleanup in `user_queue_destroy()`.
Signed-off-by: Jesse Zhang <jesse.zhang@amd.com>
---
lib/amdgpu/amd_deadlock_helpers.c | 2 +-
lib/amdgpu/amd_ip_blocks.c | 67 ++++++++++++++++++++++++-------
lib/amdgpu/amd_ip_blocks.h | 7 ++++
3 files changed, 60 insertions(+), 16 deletions(-)
diff --git a/lib/amdgpu/amd_deadlock_helpers.c b/lib/amdgpu/amd_deadlock_helpers.c
index 5efb5e73d..c951450ce 100644
--- a/lib/amdgpu/amd_deadlock_helpers.c
+++ b/lib/amdgpu/amd_deadlock_helpers.c
@@ -347,7 +347,7 @@ bad_access_helper(amdgpu_device_handle device_handle, unsigned int cmd_error,
ring_context->res_cnt = 1;
ring_context->ring_id = 0;
ring_context->user_queue = user_queue;
- ring_context->time_out = 0x7ffff;
+ ring_context->submit_mode = UQ_SUBMIT_NO_SYNC;
igt_assert(ring_context->pm4);
r = amdgpu_bo_alloc_and_map_sync(device_handle,
ring_context->write_length * sizeof(uint32_t),
diff --git a/lib/amdgpu/amd_ip_blocks.c b/lib/amdgpu/amd_ip_blocks.c
index 73bdace5a..a6841e539 100644
--- a/lib/amdgpu/amd_ip_blocks.c
+++ b/lib/amdgpu/amd_ip_blocks.c
@@ -582,6 +582,47 @@ int amdgpu_timeline_syncobj_wait(amdgpu_device_handle device_handle,
return r;
}
+static
+int wait_for_packet_consumption(struct amdgpu_ring_context *ring_context)
+{
+ uint64_t timeout = get_current_time_ms() + 1000;
+
+ while (*ring_context->rptr_cpu == *ring_context->wptr_cpu) {
+ if (get_current_time_ms() > timeout) {
+ igt_warn("Timeout waiting for bad packet consumption\n");
+ return -ETIMEDOUT;
+ }
+ usleep(100);
+ }
+ return 0;
+}
+
+static
+int create_sync_signal(amdgpu_device_handle device,
+ struct amdgpu_ring_context *ring_context,
+ uint64_t timeout)
+{
+ uint32_t syncarray[1];
+ struct drm_amdgpu_userq_signal signal_data;
+ int r;
+
+ syncarray[0] = ring_context->timeline_syncobj_handle;
+ signal_data.queue_id = ring_context->queue_id;
+ signal_data.syncobj_handles = (uintptr_t)syncarray;
+ signal_data.num_syncobj_handles = 1;
+ signal_data.bo_read_handles = 0;
+ signal_data.bo_write_handles = 0;
+ signal_data.num_bo_read_handles = 0;
+ signal_data.num_bo_write_handles = 0;
+
+ r = amdgpu_userq_signal(device, &signal_data);
+ if (r)
+ return r;
+
+ return amdgpu_cs_syncobj_wait(device, &ring_context->timeline_syncobj_handle,
+ 1, timeout, DRM_SYNCOBJ_WAIT_FLAGS_WAIT_ALL, NULL);
+}
+
static int
user_queue_submit(amdgpu_device_handle device, struct amdgpu_ring_context *ring_context,
unsigned int ip_type, uint64_t mc_address)
@@ -640,21 +681,17 @@ user_queue_submit(amdgpu_device_handle device, struct amdgpu_ring_context *ring_
#endif
ring_context->doorbell_cpu[DOORBELL_INDEX] = *ring_context->wptr_cpu;
- /* Add a fence packet for signal */
- syncarray[0] = ring_context->timeline_syncobj_handle;
- signal_data.queue_id = ring_context->queue_id;
- signal_data.syncobj_handles = (uintptr_t)syncarray;
- signal_data.num_syncobj_handles = 1;
- signal_data.bo_read_handles = 0;
- signal_data.bo_write_handles = 0;
- signal_data.num_bo_read_handles = 0;
- signal_data.num_bo_write_handles = 0;
-
- r = amdgpu_userq_signal(device, &signal_data);
- igt_assert_eq(r, 0);
-
- r = amdgpu_cs_syncobj_wait(device, &ring_context->timeline_syncobj_handle, 1, timeout,
- DRM_SYNCOBJ_WAIT_FLAGS_WAIT_ALL, NULL);
+ switch (ring_context->submit_mode) {
+ case UQ_SUBMIT_NO_SYNC:
+ /* Error injection: wait for packet ack without sync */
+ r = wait_for_packet_ack(ring_context);
+ break;
+ case UQ_SUBMIT_NORMAL:
+ default:
+ /* Standard submission with full synchronization */
+ r = create_sync_signal(device, ring_context, timeout);
+ break;
+ }
return r;
}
diff --git a/lib/amdgpu/amd_ip_blocks.h b/lib/amdgpu/amd_ip_blocks.h
index 51f492da2..8fd9fde9a 100644
--- a/lib/amdgpu/amd_ip_blocks.h
+++ b/lib/amdgpu/amd_ip_blocks.h
@@ -194,6 +194,12 @@ struct amdgpu_userq_bo {
void *ptr;
};
+/* Submission modes for user queues */
+enum uq_submission_mode {
+ UQ_SUBMIT_NORMAL, /* Full synchronization */
+ UQ_SUBMIT_NO_SYNC, /* Skip sync for error injection */
+};
+
#define for_each_test(t, T) for(typeof(*T) *t = T; t->name; t++)
/* set during execution */
@@ -272,6 +278,7 @@ struct amdgpu_ring_context {
uint64_t point;
bool user_queue;
uint64_t time_out;
+ enum uq_submission_mode submit_mode;
struct drm_amdgpu_info_uq_fw_areas info;
};
--
2.49.0
^ permalink raw reply related [flat|nested] 5+ messages in thread
* ✓ Xe.CI.BAT: success for lib/amdgpu: implement selective sync skipping for error injection tests
2026-01-06 6:18 [PATCH i-g-t] lib/amdgpu: implement selective sync skipping for error injection tests Jesse.Zhang
@ 2026-01-06 7:42 ` Patchwork
2026-01-06 8:22 ` ✓ i915.CI.BAT: " Patchwork
` (2 subsequent siblings)
3 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2026-01-06 7:42 UTC (permalink / raw)
To: Jesse.Zhang; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 1916 bytes --]
== Series Details ==
Series: lib/amdgpu: implement selective sync skipping for error injection tests
URL : https://patchwork.freedesktop.org/series/159680/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8685_BAT -> XEIGTPW_14296_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (12 -> 12)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in XEIGTPW_14296_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@xe_waitfence@abstime:
- bat-dg2-oem2: [PASS][1] -> [TIMEOUT][2] ([Intel XE#6506])
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8685/bat-dg2-oem2/igt@xe_waitfence@abstime.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/bat-dg2-oem2/igt@xe_waitfence@abstime.html
#### Possible fixes ####
* igt@xe_waitfence@reltime:
- bat-dg2-oem2: [FAIL][3] ([Intel XE#6520]) -> [PASS][4]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8685/bat-dg2-oem2/igt@xe_waitfence@reltime.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/bat-dg2-oem2/igt@xe_waitfence@reltime.html
[Intel XE#6506]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6506
[Intel XE#6520]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6520
Build changes
-------------
* IGT: IGT_8685 -> IGTPW_14296
* Linux: xe-4332-9081abc2c80b75a0c38ba2880f867904acd13a04 -> xe-4333-b3845fe8af5ec5c1d4b26e40ac6b4c7370e5fa35
IGTPW_14296: 14296
IGT_8685: 8685
xe-4332-9081abc2c80b75a0c38ba2880f867904acd13a04: 9081abc2c80b75a0c38ba2880f867904acd13a04
xe-4333-b3845fe8af5ec5c1d4b26e40ac6b4c7370e5fa35: b3845fe8af5ec5c1d4b26e40ac6b4c7370e5fa35
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/index.html
[-- Attachment #2: Type: text/html, Size: 2514 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* ✓ i915.CI.BAT: success for lib/amdgpu: implement selective sync skipping for error injection tests
2026-01-06 6:18 [PATCH i-g-t] lib/amdgpu: implement selective sync skipping for error injection tests Jesse.Zhang
2026-01-06 7:42 ` ✓ Xe.CI.BAT: success for " Patchwork
@ 2026-01-06 8:22 ` Patchwork
2026-01-06 11:11 ` ✗ Xe.CI.Full: failure " Patchwork
2026-01-06 12:20 ` ✓ i915.CI.Full: success " Patchwork
3 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2026-01-06 8:22 UTC (permalink / raw)
To: Jesse.Zhang; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 4695 bytes --]
== Series Details ==
Series: lib/amdgpu: implement selective sync skipping for error injection tests
URL : https://patchwork.freedesktop.org/series/159680/
State : success
== Summary ==
CI Bug Log - changes from IGT_8685 -> IGTPW_14296
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/index.html
Participating hosts (44 -> 42)
------------------------------
Missing (2): bat-dg2-13 fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_14296 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@dmabuf@all-tests@dma_fence_chain:
- bat-twl-1: NOTRUN -> [SKIP][1] ([i915#15249])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/bat-twl-1/igt@dmabuf@all-tests@dma_fence_chain.html
* igt@i915_selftest@live@workarounds:
- bat-arls-5: [PASS][2] -> [DMESG-FAIL][3] ([i915#12061]) +1 other test dmesg-fail
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8685/bat-arls-5/igt@i915_selftest@live@workarounds.html
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/bat-arls-5/igt@i915_selftest@live@workarounds.html
- bat-dg2-11: [PASS][4] -> [DMESG-FAIL][5] ([i915#12061]) +1 other test dmesg-fail
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8685/bat-dg2-11/igt@i915_selftest@live@workarounds.html
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/bat-dg2-11/igt@i915_selftest@live@workarounds.html
- bat-arls-6: [PASS][6] -> [DMESG-FAIL][7] ([i915#12061]) +1 other test dmesg-fail
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8685/bat-arls-6/igt@i915_selftest@live@workarounds.html
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/bat-arls-6/igt@i915_selftest@live@workarounds.html
#### Possible fixes ####
* igt@i915_selftest@live:
- bat-dg2-8: [DMESG-FAIL][8] ([i915#12061]) -> [PASS][9] +1 other test pass
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8685/bat-dg2-8/igt@i915_selftest@live.html
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/bat-dg2-8/igt@i915_selftest@live.html
- bat-jsl-1: [DMESG-FAIL][10] ([i915#15394]) -> [PASS][11] +1 other test pass
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8685/bat-jsl-1/igt@i915_selftest@live.html
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/bat-jsl-1/igt@i915_selftest@live.html
- bat-twl-1: [ABORT][12] ([i915#15517]) -> [PASS][13] +1 other test pass
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8685/bat-twl-1/igt@i915_selftest@live.html
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/bat-twl-1/igt@i915_selftest@live.html
* igt@i915_selftest@live@workarounds:
- bat-mtlp-9: [DMESG-FAIL][14] ([i915#12061]) -> [PASS][15] +1 other test pass
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8685/bat-mtlp-9/igt@i915_selftest@live@workarounds.html
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/bat-mtlp-9/igt@i915_selftest@live@workarounds.html
#### Warnings ####
* igt@i915_selftest@live:
- bat-atsm-1: [DMESG-FAIL][16] ([i915#12061] / [i915#14204]) -> [DMESG-FAIL][17] ([i915#12061] / [i915#13929])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8685/bat-atsm-1/igt@i915_selftest@live.html
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/bat-atsm-1/igt@i915_selftest@live.html
* igt@i915_selftest@live@mman:
- bat-atsm-1: [DMESG-FAIL][18] ([i915#14204]) -> [DMESG-FAIL][19] ([i915#13929])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8685/bat-atsm-1/igt@i915_selftest@live@mman.html
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/bat-atsm-1/igt@i915_selftest@live@mman.html
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#13929]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13929
[i915#14204]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14204
[i915#15249]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15249
[i915#15394]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15394
[i915#15517]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15517
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8685 -> IGTPW_14296
CI-20190529: 20190529
CI_DRM_17770: b3845fe8af5ec5c1d4b26e40ac6b4c7370e5fa35 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_14296: 14296
IGT_8685: 8685
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/index.html
[-- Attachment #2: Type: text/html, Size: 6045 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* ✗ Xe.CI.Full: failure for lib/amdgpu: implement selective sync skipping for error injection tests
2026-01-06 6:18 [PATCH i-g-t] lib/amdgpu: implement selective sync skipping for error injection tests Jesse.Zhang
2026-01-06 7:42 ` ✓ Xe.CI.BAT: success for " Patchwork
2026-01-06 8:22 ` ✓ i915.CI.BAT: " Patchwork
@ 2026-01-06 11:11 ` Patchwork
2026-01-06 12:20 ` ✓ i915.CI.Full: success " Patchwork
3 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2026-01-06 11:11 UTC (permalink / raw)
To: Jesse.Zhang; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 52221 bytes --]
== Series Details ==
Series: lib/amdgpu: implement selective sync skipping for error injection tests
URL : https://patchwork.freedesktop.org/series/159680/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8685_FULL -> XEIGTPW_14296_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_14296_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_14296_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_14296_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@xe_exec_system_allocator@many-large-execqueues-new-race:
- shard-bmg: [PASS][1] -> [DMESG-FAIL][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8685/shard-bmg-1/igt@xe_exec_system_allocator@many-large-execqueues-new-race.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-bmg-2/igt@xe_exec_system_allocator@many-large-execqueues-new-race.html
Known issues
------------
Here are the changes found in XEIGTPW_14296_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
- shard-lnl: NOTRUN -> [SKIP][3] ([Intel XE#3157])
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-lnl-1/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
* igt@kms_async_flips@async-flip-with-page-flip-events-linear:
- shard-lnl: [PASS][4] -> [FAIL][5] ([Intel XE#5993]) +3 other tests fail
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8685/shard-lnl-7/igt@kms_async_flips@async-flip-with-page-flip-events-linear.html
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-lnl-3/igt@kms_async_flips@async-flip-with-page-flip-events-linear.html
* igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1:
- shard-lnl: [PASS][6] -> [FAIL][7] ([Intel XE#6054]) +3 other tests fail
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8685/shard-lnl-1/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1.html
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-lnl-7/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#2327]) +7 other tests skip
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-bmg-1/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-lnl: NOTRUN -> [SKIP][9] ([Intel XE#3658])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-lnl-5/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@linear-64bpp-rotate-90:
- shard-lnl: NOTRUN -> [SKIP][10] ([Intel XE#1407]) +1 other test skip
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-lnl-3/igt@kms_big_fb@linear-64bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-270:
- shard-lnl: NOTRUN -> [SKIP][11] ([Intel XE#1124]) +2 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-lnl-7/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#1124]) +13 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-bmg-7/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p:
- shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#2314] / [Intel XE#2894]) +2 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-bmg-7/igt@kms_bw@connected-linear-tiling-3-displays-1920x1080p.html
* igt@kms_bw@linear-tiling-4-displays-1920x1080p:
- shard-lnl: NOTRUN -> [SKIP][14] ([Intel XE#1512]) +1 other test skip
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-lnl-8/igt@kms_bw@linear-tiling-4-displays-1920x1080p.html
* igt@kms_bw@linear-tiling-4-displays-3840x2160p:
- shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#367]) +4 other tests skip
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-bmg-7/igt@kms_bw@linear-tiling-4-displays-3840x2160p.html
* igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs:
- shard-lnl: NOTRUN -> [SKIP][16] ([Intel XE#2887]) +3 other tests skip
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-lnl-4/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-d-hdmi-a-3:
- shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#2652] / [Intel XE#787]) +17 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-bmg-1/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs@pipe-d-hdmi-a-3.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc:
- shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#3432]) +1 other test skip
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-bmg-10/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc:
- shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#2887]) +24 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-bmg-7/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_cdclk@plane-scaling:
- shard-lnl: NOTRUN -> [SKIP][20] ([Intel XE#4416]) +3 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-lnl-3/igt@kms_cdclk@plane-scaling.html
- shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#2724])
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-bmg-1/igt@kms_cdclk@plane-scaling.html
* igt@kms_chamelium_color@ctm-0-25:
- shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#2325]) +4 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-bmg-7/igt@kms_chamelium_color@ctm-0-25.html
* igt@kms_chamelium_color@ctm-red-to-blue:
- shard-lnl: NOTRUN -> [SKIP][23] ([Intel XE#306])
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-lnl-5/igt@kms_chamelium_color@ctm-red-to-blue.html
* igt@kms_chamelium_frames@hdmi-aspect-ratio:
- shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#2252]) +15 other tests skip
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-bmg-2/igt@kms_chamelium_frames@hdmi-aspect-ratio.html
* igt@kms_chamelium_hpd@vga-hpd-for-each-pipe:
- shard-lnl: NOTRUN -> [SKIP][25] ([Intel XE#373]) +1 other test skip
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-lnl-8/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html
* igt@kms_chamelium_sharpness_filter@filter-basic:
- shard-lnl: NOTRUN -> [SKIP][26] ([Intel XE#6507])
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-lnl-2/igt@kms_chamelium_sharpness_filter@filter-basic.html
* igt@kms_content_protection@atomic:
- shard-bmg: NOTRUN -> [FAIL][27] ([Intel XE#1178]) +3 other tests fail
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-bmg-2/igt@kms_content_protection@atomic.html
* igt@kms_content_protection@type1:
- shard-lnl: NOTRUN -> [SKIP][28] ([Intel XE#3278])
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-lnl-7/igt@kms_content_protection@type1.html
* igt@kms_cursor_crc@cursor-offscreen-128x42:
- shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#2320]) +4 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-bmg-7/igt@kms_cursor_crc@cursor-offscreen-128x42.html
* igt@kms_cursor_crc@cursor-rapid-movement-128x42:
- shard-lnl: NOTRUN -> [SKIP][30] ([Intel XE#1424]) +2 other tests skip
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-lnl-1/igt@kms_cursor_crc@cursor-rapid-movement-128x42.html
* igt@kms_cursor_crc@cursor-sliding-256x256:
- shard-bmg: NOTRUN -> [FAIL][31] ([Intel XE#6747]) +1 other test fail
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-bmg-2/igt@kms_cursor_crc@cursor-sliding-256x256.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#2321]) +2 other tests skip
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-bmg-9/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
- shard-lnl: NOTRUN -> [SKIP][33] ([Intel XE#309]) +2 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-lnl-7/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
* igt@kms_dirtyfb@fbc-dirtyfb-ioctl:
- shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#4210])
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-bmg-10/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#1508]) +1 other test skip
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-bmg-7/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_dp_link_training@uhbr-sst:
- shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#4354])
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-bmg-9/igt@kms_dp_link_training@uhbr-sst.html
* igt@kms_dsc@dsc-basic:
- shard-lnl: NOTRUN -> [SKIP][37] ([Intel XE#2244])
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-lnl-1/igt@kms_dsc@dsc-basic.html
- shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#2244])
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-bmg-2/igt@kms_dsc@dsc-basic.html
* igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests:
- shard-bmg: NOTRUN -> [SKIP][39] ([Intel XE#4422]) +1 other test skip
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-bmg-10/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-dirtyfb-tests.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#4156])
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-bmg-2/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_feature_discovery@chamelium:
- shard-bmg: NOTRUN -> [SKIP][41] ([Intel XE#2372])
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-bmg-3/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@display-3x:
- shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#2373])
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-bmg-3/igt@kms_feature_discovery@display-3x.html
* igt@kms_flip@2x-flip-vs-panning:
- shard-lnl: NOTRUN -> [SKIP][43] ([Intel XE#1421])
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-lnl-8/igt@kms_flip@2x-flip-vs-panning.html
* igt@kms_flip@flip-vs-expired-vblank@a-edp1:
- shard-lnl: [PASS][44] -> [FAIL][45] ([Intel XE#301]) +3 other tests fail
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8685/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling:
- shard-bmg: NOTRUN -> [SKIP][46] ([Intel XE#2293] / [Intel XE#2380]) +3 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-bmg-7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling:
- shard-lnl: NOTRUN -> [SKIP][47] ([Intel XE#1397] / [Intel XE#1745])
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-lnl-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode:
- shard-lnl: NOTRUN -> [SKIP][48] ([Intel XE#1397])
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-lnl-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
- shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#2380]) +1 other test skip
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-bmg-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-valid-mode:
- shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#2293]) +3 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-bmg-7/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@drrs-1p-offscreen-pri-indfb-draw-render:
- shard-lnl: NOTRUN -> [SKIP][51] ([Intel XE#6312]) +1 other test skip
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-lnl-4/igt@kms_frontbuffer_tracking@drrs-1p-offscreen-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-render:
- shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#2311]) +49 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt:
- shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#4141]) +24 other tests skip
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-bmg-9/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-blt:
- shard-lnl: NOTRUN -> [SKIP][54] ([Intel XE#651]) +2 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-lnl-4/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt:
- shard-bmg: NOTRUN -> [SKIP][55] ([Intel XE#2313]) +50 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-bmg-9/igt@kms_frontbuffer_tracking@psr-2p-primscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt:
- shard-lnl: NOTRUN -> [SKIP][56] ([Intel XE#656]) +14 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-lnl-1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_hdr@bpc-switch@pipe-a-dp-2:
- shard-bmg: [PASS][57] -> [ABORT][58] ([Intel XE#6740]) +1 other test abort
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8685/shard-bmg-2/igt@kms_hdr@bpc-switch@pipe-a-dp-2.html
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-bmg-3/igt@kms_hdr@bpc-switch@pipe-a-dp-2.html
* igt@kms_hdr@invalid-hdr@pipe-a-hdmi-a-3:
- shard-bmg: NOTRUN -> [ABORT][59] ([Intel XE#6740]) +1 other test abort
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-bmg-1/igt@kms_hdr@invalid-hdr@pipe-a-hdmi-a-3.html
* igt@kms_joiner@basic-big-joiner:
- shard-bmg: NOTRUN -> [SKIP][60] ([Intel XE#6901])
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-bmg-1/igt@kms_joiner@basic-big-joiner.html
* igt@kms_joiner@basic-max-non-joiner:
- shard-lnl: NOTRUN -> [SKIP][61] ([Intel XE#4298])
[61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-lnl-1/igt@kms_joiner@basic-max-non-joiner.html
- shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#4298])
[62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-bmg-10/igt@kms_joiner@basic-max-non-joiner.html
* igt@kms_joiner@invalid-modeset-big-joiner:
- shard-lnl: NOTRUN -> [SKIP][63] ([Intel XE#6901])
[63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-lnl-3/igt@kms_joiner@invalid-modeset-big-joiner.html
* igt@kms_plane_multiple@2x-tiling-yf:
- shard-bmg: NOTRUN -> [SKIP][64] ([Intel XE#5021])
[64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-bmg-7/igt@kms_plane_multiple@2x-tiling-yf.html
* igt@kms_plane_multiple@tiling-y:
- shard-bmg: NOTRUN -> [SKIP][65] ([Intel XE#5020])
[65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-bmg-10/igt@kms_plane_multiple@tiling-y.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-c:
- shard-bmg: NOTRUN -> [SKIP][66] ([Intel XE#6886]) +4 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-bmg-9/igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-c.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-b:
- shard-lnl: NOTRUN -> [SKIP][67] ([Intel XE#6886]) +3 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-lnl-3/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-b.html
* igt@kms_pm_backlight@brightness-with-dpms:
- shard-bmg: NOTRUN -> [SKIP][68] ([Intel XE#2938])
[68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-bmg-10/igt@kms_pm_backlight@brightness-with-dpms.html
* igt@kms_pm_backlight@fade-with-dpms:
- shard-bmg: NOTRUN -> [SKIP][69] ([Intel XE#870])
[69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-bmg-7/igt@kms_pm_backlight@fade-with-dpms.html
* igt@kms_pm_dc@dc5-retention-flops:
- shard-bmg: NOTRUN -> [SKIP][70] ([Intel XE#3309])
[70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-bmg-2/igt@kms_pm_dc@dc5-retention-flops.html
* igt@kms_pm_dc@deep-pkgc:
- shard-bmg: NOTRUN -> [SKIP][71] ([Intel XE#2505])
[71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-bmg-9/igt@kms_pm_dc@deep-pkgc.html
* igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-sf:
- shard-bmg: NOTRUN -> [SKIP][72] ([Intel XE#1406] / [Intel XE#6703]) +3 other tests skip
[72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-bmg-2/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-sf.html
- shard-lnl: NOTRUN -> [SKIP][73] ([Intel XE#1406] / [Intel XE#2893])
[73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-lnl-8/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-sf:
- shard-bmg: NOTRUN -> [SKIP][74] ([Intel XE#1406] / [Intel XE#1489]) +12 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-bmg-9/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_su@page_flip-p010:
- shard-bmg: NOTRUN -> [SKIP][75] ([Intel XE#1406] / [Intel XE#2387])
[75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-bmg-2/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr@fbc-pr-basic:
- shard-bmg: NOTRUN -> [SKIP][76] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) +16 other tests skip
[76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-bmg-7/igt@kms_psr@fbc-pr-basic.html
* igt@kms_psr@pr-primary-page-flip:
- shard-lnl: NOTRUN -> [SKIP][77] ([Intel XE#1406])
[77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-lnl-3/igt@kms_psr@pr-primary-page-flip.html
* igt@kms_rotation_crc@bad-tiling:
- shard-bmg: NOTRUN -> [SKIP][78] ([Intel XE#3414] / [Intel XE#3904])
[78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-bmg-9/igt@kms_rotation_crc@bad-tiling.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-180:
- shard-bmg: NOTRUN -> [SKIP][79] ([Intel XE#2330])
[79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-bmg-9/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html
* igt@kms_scaling_modes@scaling-mode-center:
- shard-bmg: NOTRUN -> [SKIP][80] ([Intel XE#2413])
[80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-bmg-3/igt@kms_scaling_modes@scaling-mode-center.html
* igt@kms_setmode@invalid-clone-exclusive-crtc:
- shard-lnl: NOTRUN -> [SKIP][81] ([Intel XE#1435])
[81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-lnl-8/igt@kms_setmode@invalid-clone-exclusive-crtc.html
* igt@kms_sharpness_filter@filter-formats:
- shard-bmg: NOTRUN -> [SKIP][82] ([Intel XE#6503]) +4 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-bmg-3/igt@kms_sharpness_filter@filter-formats.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-bmg: NOTRUN -> [SKIP][83] ([Intel XE#2426]) +1 other test skip
[83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-bmg-9/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-lnl: NOTRUN -> [SKIP][84] ([Intel XE#362])
[84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-lnl-5/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_vrr@lobf:
- shard-bmg: NOTRUN -> [SKIP][85] ([Intel XE#2168])
[85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-bmg-9/igt@kms_vrr@lobf.html
* igt@kms_vrr@seamless-rr-switch-drrs:
- shard-bmg: NOTRUN -> [SKIP][86] ([Intel XE#1499]) +2 other tests skip
[86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-bmg-10/igt@kms_vrr@seamless-rr-switch-drrs.html
* igt@xe_compute@ccs-mode-compute-kernel:
- shard-lnl: NOTRUN -> [SKIP][87] ([Intel XE#1447])
[87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-lnl-4/igt@xe_compute@ccs-mode-compute-kernel.html
* igt@xe_compute@eu-busy-10s:
- shard-lnl: NOTRUN -> [SKIP][88] ([Intel XE#6592] / [Intel XE#6645])
[88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-lnl-8/igt@xe_compute@eu-busy-10s.html
* igt@xe_create@multigpu-create-massive-size:
- shard-bmg: NOTRUN -> [SKIP][89] ([Intel XE#2504])
[89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-bmg-9/igt@xe_create@multigpu-create-massive-size.html
* igt@xe_eudebug@basic-connect:
- shard-lnl: NOTRUN -> [SKIP][90] ([Intel XE#4837]) +2 other tests skip
[90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-lnl-1/igt@xe_eudebug@basic-connect.html
* igt@xe_eudebug@basic-vm-access-userptr:
- shard-bmg: NOTRUN -> [SKIP][91] ([Intel XE#4837]) +14 other tests skip
[91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-bmg-9/igt@xe_eudebug@basic-vm-access-userptr.html
* igt@xe_eudebug_online@pagefault-read-stress:
- shard-lnl: NOTRUN -> [SKIP][92] ([Intel XE#6665])
[92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-lnl-8/igt@xe_eudebug_online@pagefault-read-stress.html
* igt@xe_eudebug_online@pagefault-write-stress:
- shard-bmg: NOTRUN -> [SKIP][93] ([Intel XE#6665] / [Intel XE#6681])
[93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-bmg-1/igt@xe_eudebug_online@pagefault-write-stress.html
* igt@xe_eudebug_online@tdctl-parameters:
- shard-bmg: NOTRUN -> [SKIP][94] ([Intel XE#4837] / [Intel XE#6665]) +7 other tests skip
[94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-bmg-10/igt@xe_eudebug_online@tdctl-parameters.html
* igt@xe_eudebug_online@writes-caching-sram-bb-vram-target-sram:
- shard-lnl: NOTRUN -> [SKIP][95] ([Intel XE#4837] / [Intel XE#6665]) +1 other test skip
[95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-lnl-8/igt@xe_eudebug_online@writes-caching-sram-bb-vram-target-sram.html
* igt@xe_eudebug_sriov@deny-sriov:
- shard-bmg: NOTRUN -> [SKIP][96] ([Intel XE#5793])
[96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-bmg-1/igt@xe_eudebug_sriov@deny-sriov.html
* igt@xe_evict@evict-large-multi-vm:
- shard-lnl: NOTRUN -> [SKIP][97] ([Intel XE#688]) +2 other tests skip
[97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-lnl-1/igt@xe_evict@evict-large-multi-vm.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr:
- shard-bmg: NOTRUN -> [SKIP][98] ([Intel XE#2322]) +13 other tests skip
[98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-bmg-3/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue-userptr.html
* igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null:
- shard-lnl: NOTRUN -> [SKIP][99] ([Intel XE#1392]) +2 other tests skip
[99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-lnl-3/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-null.html
* igt@xe_exec_fault_mode@twice-bindexecqueue-rebind-imm:
- shard-bmg: NOTRUN -> [SKIP][100] ([Intel XE#6557] / [Intel XE#6703])
[100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-bmg-2/igt@xe_exec_fault_mode@twice-bindexecqueue-rebind-imm.html
* igt@xe_exec_multi_queue@few-execs-preempt-mode-userptr-invalidate:
- shard-bmg: NOTRUN -> [SKIP][101] ([Intel XE#6874]) +48 other tests skip
[101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-bmg-3/igt@xe_exec_multi_queue@few-execs-preempt-mode-userptr-invalidate.html
* igt@xe_exec_multi_queue@two-queues-close-fd-smem:
- shard-lnl: NOTRUN -> [SKIP][102] ([Intel XE#6874]) +10 other tests skip
[102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-lnl-5/igt@xe_exec_multi_queue@two-queues-close-fd-smem.html
* igt@xe_exec_system_allocator@many-64k-mmap-new-huge:
- shard-bmg: NOTRUN -> [SKIP][103] ([Intel XE#5007]) +2 other tests skip
[103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-bmg-1/igt@xe_exec_system_allocator@many-64k-mmap-new-huge.html
* igt@xe_exec_system_allocator@many-64k-mmap-new-huge-nomemset:
- shard-lnl: NOTRUN -> [SKIP][104] ([Intel XE#5007])
[104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-lnl-4/igt@xe_exec_system_allocator@many-64k-mmap-new-huge-nomemset.html
* igt@xe_exec_system_allocator@many-execqueues-new-busy:
- shard-bmg: NOTRUN -> [SKIP][105] ([Intel XE#6703]) +83 other tests skip
[105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-bmg-2/igt@xe_exec_system_allocator@many-execqueues-new-busy.html
* igt@xe_exec_system_allocator@many-stride-new-prefetch:
- shard-bmg: NOTRUN -> [INCOMPLETE][106] ([Intel XE#6480])
[106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-bmg-1/igt@xe_exec_system_allocator@many-stride-new-prefetch.html
* igt@xe_exec_system_allocator@once-mmap-new-nomemset:
- shard-bmg: [PASS][107] -> [SKIP][108] ([Intel XE#6703]) +67 other tests skip
[107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8685/shard-bmg-3/igt@xe_exec_system_allocator@once-mmap-new-nomemset.html
[108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-bmg-2/igt@xe_exec_system_allocator@once-mmap-new-nomemset.html
* igt@xe_exec_system_allocator@threads-many-mmap-new-huge-nomemset:
- shard-bmg: NOTRUN -> [SKIP][109] ([Intel XE#4943]) +45 other tests skip
[109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-bmg-2/igt@xe_exec_system_allocator@threads-many-mmap-new-huge-nomemset.html
* igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-mmap-new-huge:
- shard-lnl: NOTRUN -> [SKIP][110] ([Intel XE#4943]) +8 other tests skip
[110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-lnl-8/igt@xe_exec_system_allocator@threads-shared-vm-many-large-execqueues-mmap-new-huge.html
* igt@xe_exec_threads@threads-cm-shared-vm-userptr-invalidate-race:
- shard-bmg: [PASS][111] -> [DMESG-FAIL][112] ([Intel XE#5545])
[111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8685/shard-bmg-7/igt@xe_exec_threads@threads-cm-shared-vm-userptr-invalidate-race.html
[112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-bmg-2/igt@xe_exec_threads@threads-cm-shared-vm-userptr-invalidate-race.html
* igt@xe_mmap@pci-membarrier-bad-object:
- shard-lnl: NOTRUN -> [SKIP][113] ([Intel XE#5100])
[113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-lnl-2/igt@xe_mmap@pci-membarrier-bad-object.html
* igt@xe_multigpu_svm@mgpu-latency-basic:
- shard-bmg: NOTRUN -> [SKIP][114] ([Intel XE#6964]) +5 other tests skip
[114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-bmg-1/igt@xe_multigpu_svm@mgpu-latency-basic.html
* igt@xe_multigpu_svm@mgpu-xgpu-access-prefetch:
- shard-lnl: NOTRUN -> [SKIP][115] ([Intel XE#6964]) +1 other test skip
[115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-lnl-8/igt@xe_multigpu_svm@mgpu-xgpu-access-prefetch.html
* igt@xe_pat@pat-index-xelpg:
- shard-bmg: NOTRUN -> [SKIP][116] ([Intel XE#2236])
[116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-bmg-1/igt@xe_pat@pat-index-xelpg.html
* igt@xe_pm@d3cold-multiple-execs:
- shard-bmg: NOTRUN -> [SKIP][117] ([Intel XE#2284]) +6 other tests skip
[117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-bmg-3/igt@xe_pm@d3cold-multiple-execs.html
* igt@xe_pm@d3hot-i2c:
- shard-lnl: NOTRUN -> [SKIP][118] ([Intel XE#5742])
[118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-lnl-4/igt@xe_pm@d3hot-i2c.html
* igt@xe_pm@d3hot-mmap-vram:
- shard-lnl: NOTRUN -> [SKIP][119] ([Intel XE#1948])
[119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-lnl-4/igt@xe_pm@d3hot-mmap-vram.html
* igt@xe_pm@s3-multiple-execs:
- shard-lnl: NOTRUN -> [SKIP][120] ([Intel XE#584])
[120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-lnl-8/igt@xe_pm@s3-multiple-execs.html
* igt@xe_pxp@display-pxp-fb:
- shard-bmg: NOTRUN -> [SKIP][121] ([Intel XE#4733]) +2 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-bmg-1/igt@xe_pxp@display-pxp-fb.html
* igt@xe_query@multigpu-query-invalid-extension:
- shard-lnl: NOTRUN -> [SKIP][122] ([Intel XE#944])
[122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-lnl-7/igt@xe_query@multigpu-query-invalid-extension.html
* igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz:
- shard-bmg: NOTRUN -> [SKIP][123] ([Intel XE#944]) +1 other test skip
[123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-bmg-9/igt@xe_query@multigpu-query-invalid-uc-fw-version-mbz.html
* igt@xe_sriov_auto_provisioning@fair-allocation@numvfs-random:
- shard-bmg: NOTRUN -> [FAIL][124] ([Intel XE#5937]) +1 other test fail
[124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-bmg-2/igt@xe_sriov_auto_provisioning@fair-allocation@numvfs-random.html
* igt@xe_survivability@i2c-functionality:
- shard-lnl: NOTRUN -> [SKIP][125] ([Intel XE#6529])
[125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-lnl-5/igt@xe_survivability@i2c-functionality.html
#### Possible fixes ####
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-bmg: [INCOMPLETE][126] ([Intel XE#3862]) -> [PASS][127] +1 other test pass
[126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8685/shard-bmg-7/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
[127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-bmg-1/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1:
- shard-lnl: [FAIL][128] ([Intel XE#301] / [Intel XE#3149]) -> [PASS][129]
[128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8685/shard-lnl-8/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1.html
[129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-edp1.html
* igt@kms_pm_dc@dc6-psr:
- shard-lnl: [FAIL][130] ([Intel XE#718]) -> [PASS][131]
[130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8685/shard-lnl-1/igt@kms_pm_dc@dc6-psr.html
[131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-lnl-7/igt@kms_pm_dc@dc6-psr.html
* igt@kms_setmode@basic@pipe-b-edp-1:
- shard-lnl: [FAIL][132] ([Intel XE#6361]) -> [PASS][133]
[132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8685/shard-lnl-7/igt@kms_setmode@basic@pipe-b-edp-1.html
[133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-lnl-7/igt@kms_setmode@basic@pipe-b-edp-1.html
* igt@kms_vrr@cmrr@pipe-a-edp-1:
- shard-lnl: [FAIL][134] ([Intel XE#4459]) -> [PASS][135] +1 other test pass
[134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8685/shard-lnl-7/igt@kms_vrr@cmrr@pipe-a-edp-1.html
[135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-lnl-1/igt@kms_vrr@cmrr@pipe-a-edp-1.html
* igt@xe_pmu@engine-activity-accuracy-90@engine-drm_xe_engine_class_video_decode0:
- shard-lnl: [FAIL][136] ([Intel XE#6251]) -> [PASS][137] +1 other test pass
[136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8685/shard-lnl-2/igt@xe_pmu@engine-activity-accuracy-90@engine-drm_xe_engine_class_video_decode0.html
[137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-lnl-5/igt@xe_pmu@engine-activity-accuracy-90@engine-drm_xe_engine_class_video_decode0.html
#### Warnings ####
* igt@kms_big_fb@x-tiled-32bpp-rotate-90:
- shard-bmg: [SKIP][138] ([Intel XE#2327]) -> [SKIP][139] ([Intel XE#6703])
[138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8685/shard-bmg-10/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html
[139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-bmg-2/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-0:
- shard-bmg: [SKIP][140] ([Intel XE#1124]) -> [SKIP][141] ([Intel XE#6703]) +1 other test skip
[140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8685/shard-bmg-1/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html
[141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-bmg-2/igt@kms_big_fb@y-tiled-64bpp-rotate-0.html
* igt@kms_big_fb@y-tiled-addfb-size-overflow:
- shard-bmg: [SKIP][142] ([Intel XE#610]) -> [SKIP][143] ([Intel XE#6703])
[142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8685/shard-bmg-2/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
[143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-bmg-2/igt@kms_big_fb@y-tiled-addfb-size-overflow.html
* igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p:
- shard-bmg: [SKIP][144] ([Intel XE#2314] / [Intel XE#2894]) -> [SKIP][145] ([Intel XE#6703])
[144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8685/shard-bmg-9/igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p.html
[145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-bmg-2/igt@kms_bw@connected-linear-tiling-4-displays-2160x1440p.html
* igt@kms_ccs@bad-aux-stride-yf-tiled-ccs:
- shard-bmg: [SKIP][146] ([Intel XE#2887]) -> [SKIP][147] ([Intel XE#6703]) +1 other test skip
[146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8685/shard-bmg-1/igt@kms_ccs@bad-aux-stride-yf-tiled-ccs.html
[147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-bmg-2/igt@kms_ccs@bad-aux-stride-yf-tiled-ccs.html
* igt@kms_chamelium_frames@hdmi-cmp-planar-formats:
- shard-bmg: [SKIP][148] ([Intel XE#2252]) -> [SKIP][149] ([Intel XE#6703])
[148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8685/shard-bmg-2/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html
[149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-bmg-2/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html
* igt@kms_content_protection@dp-mst-lic-type-1:
- shard-bmg: [SKIP][150] ([Intel XE#2390]) -> [SKIP][151] ([Intel XE#6703])
[150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8685/shard-bmg-2/igt@kms_content_protection@dp-mst-lic-type-1.html
[151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-bmg-2/igt@kms_content_protection@dp-mst-lic-type-1.html
* igt@kms_flip@flip-vs-expired-vblank-interruptible:
- shard-lnl: [FAIL][152] ([Intel XE#301] / [Intel XE#3149]) -> [FAIL][153] ([Intel XE#301])
[152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8685/shard-lnl-8/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
[153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank-interruptible.html
* igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-render:
- shard-bmg: [SKIP][154] ([Intel XE#2311]) -> [SKIP][155] ([Intel XE#6703]) +4 other tests skip
[154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8685/shard-bmg-9/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-render.html
[155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-bmg-2/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-rte:
- shard-bmg: [SKIP][156] ([Intel XE#4141]) -> [SKIP][157] ([Intel XE#6703])
[156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8685/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-rte.html
[157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-2p-rte.html
* igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary:
- shard-bmg: [SKIP][158] ([Intel XE#2313]) -> [SKIP][159] ([Intel XE#6703]) +2 other tests skip
[158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8685/shard-bmg-9/igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html
[159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-bmg-2/igt@kms_frontbuffer_tracking@fbcpsr-indfb-scaledprimary.html
* igt@kms_hdr@brightness-with-hdr:
- shard-bmg: [SKIP][160] ([Intel XE#3544]) -> [SKIP][161] ([Intel XE#3374] / [Intel XE#3544])
[160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8685/shard-bmg-9/igt@kms_hdr@brightness-with-hdr.html
[161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-bmg-1/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_joiner@invalid-modeset-force-ultra-joiner:
- shard-bmg: [SKIP][162] ([Intel XE#6911]) -> [SKIP][163] ([Intel XE#6703])
[162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8685/shard-bmg-1/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
[163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-bmg-2/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-bmg: [SKIP][164] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836]) -> [SKIP][165] ([Intel XE#6693])
[164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8685/shard-bmg-3/igt@kms_pm_rpm@modeset-lpsp.html
[165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-bmg-2/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-bmg: [SKIP][166] ([Intel XE#1406] / [Intel XE#2387]) -> [SKIP][167] ([Intel XE#1406] / [Intel XE#6703])
[166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8685/shard-bmg-1/igt@kms_psr2_su@page_flip-xrgb8888.html
[167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-bmg-2/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@fbc-psr-sprite-plane-onoff:
- shard-bmg: [SKIP][168] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) -> [SKIP][169] ([Intel XE#1406] / [Intel XE#6703])
[168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8685/shard-bmg-10/igt@kms_psr@fbc-psr-sprite-plane-onoff.html
[169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-bmg-2/igt@kms_psr@fbc-psr-sprite-plane-onoff.html
* igt@kms_vrr@flip-basic:
- shard-bmg: [SKIP][170] ([Intel XE#1499]) -> [SKIP][171] ([Intel XE#6703])
[170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8685/shard-bmg-3/igt@kms_vrr@flip-basic.html
[171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-bmg-2/igt@kms_vrr@flip-basic.html
* igt@xe_eudebug_online@pagefault-one-of-many:
- shard-bmg: [SKIP][172] ([Intel XE#6665]) -> [SKIP][173] ([Intel XE#6703])
[172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8685/shard-bmg-2/igt@xe_eudebug_online@pagefault-one-of-many.html
[173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-bmg-2/igt@xe_eudebug_online@pagefault-one-of-many.html
* igt@xe_exec_multi_queue@max-queues-close-fd:
- shard-bmg: [SKIP][174] ([Intel XE#6874]) -> [SKIP][175] ([Intel XE#6703]) +3 other tests skip
[174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8685/shard-bmg-10/igt@xe_exec_multi_queue@max-queues-close-fd.html
[175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-bmg-2/igt@xe_exec_multi_queue@max-queues-close-fd.html
* igt@xe_exec_system_allocator@twice-mmap-free-huge-nomemset:
- shard-bmg: [SKIP][176] ([Intel XE#4943]) -> [SKIP][177] ([Intel XE#6703]) +2 other tests skip
[176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8685/shard-bmg-10/igt@xe_exec_system_allocator@twice-mmap-free-huge-nomemset.html
[177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/shard-bmg-2/igt@xe_exec_system_allocator@twice-mmap-free-huge-nomemset.html
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178
[Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392
[Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397
[Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406
[Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407
[Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421
[Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424
[Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435
[Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439
[Intel XE#1447]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1447
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499
[Intel XE#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508
[Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512
[Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745
[Intel XE#1948]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1948
[Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2236]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2236
[Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284
[Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293
[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#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325
[Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327
[Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330
[Intel XE#2372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2372
[Intel XE#2373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2373
[Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380
[Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387
[Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390
[Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2504
[Intel XE#2505]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2505
[Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652
[Intel XE#2724]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2724
[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#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894
[Intel XE#2938]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2938
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306
[Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309
[Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141
[Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149
[Intel XE#3157]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3157
[Intel XE#3278]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3278
[Intel XE#3309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3309
[Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374
[Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414
[Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432
[Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
[Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362
[Intel XE#3658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3658
[Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367
[Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373
[Intel XE#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862
[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#4156]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4156
[Intel XE#4210]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4210
[Intel XE#4298]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4298
[Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354
[Intel XE#4416]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4416
[Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422
[Intel XE#4459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4459
[Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733
[Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837
[Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943
[Intel XE#5007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5007
[Intel XE#5020]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5020
[Intel XE#5021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5021
[Intel XE#5100]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5100
[Intel XE#5545]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5545
[Intel XE#5742]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5742
[Intel XE#5793]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5793
[Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584
[Intel XE#5937]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5937
[Intel XE#5993]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5993
[Intel XE#6054]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6054
[Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610
[Intel XE#6251]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6251
[Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312
[Intel XE#6361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6361
[Intel XE#6480]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6480
[Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503
[Intel XE#6507]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6507
[Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651
[Intel XE#6529]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6529
[Intel XE#6557]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6557
[Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656
[Intel XE#6592]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6592
[Intel XE#6645]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6645
[Intel XE#6665]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6665
[Intel XE#6681]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6681
[Intel XE#6693]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6693
[Intel XE#6703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6703
[Intel XE#6740]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6740
[Intel XE#6747]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6747
[Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874
[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#6911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6911
[Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964
[Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718
[Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787
[Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836
[Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* IGT: IGT_8685 -> IGTPW_14296
* Linux: xe-4332-9081abc2c80b75a0c38ba2880f867904acd13a04 -> xe-4333-b3845fe8af5ec5c1d4b26e40ac6b4c7370e5fa35
IGTPW_14296: 14296
IGT_8685: 8685
xe-4332-9081abc2c80b75a0c38ba2880f867904acd13a04: 9081abc2c80b75a0c38ba2880f867904acd13a04
xe-4333-b3845fe8af5ec5c1d4b26e40ac6b4c7370e5fa35: b3845fe8af5ec5c1d4b26e40ac6b4c7370e5fa35
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14296/index.html
[-- Attachment #2: Type: text/html, Size: 60789 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
* ✓ i915.CI.Full: success for lib/amdgpu: implement selective sync skipping for error injection tests
2026-01-06 6:18 [PATCH i-g-t] lib/amdgpu: implement selective sync skipping for error injection tests Jesse.Zhang
` (2 preceding siblings ...)
2026-01-06 11:11 ` ✗ Xe.CI.Full: failure " Patchwork
@ 2026-01-06 12:20 ` Patchwork
3 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2026-01-06 12:20 UTC (permalink / raw)
To: Jesse.Zhang; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 135352 bytes --]
== Series Details ==
Series: lib/amdgpu: implement selective sync skipping for error injection tests
URL : https://patchwork.freedesktop.org/series/159680/
State : success
== Summary ==
CI Bug Log - changes from IGT_8685_full -> IGTPW_14296_full
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/index.html
Participating hosts (9 -> 9)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in IGTPW_14296_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@object-reloc-keep-cache:
- shard-rkl: NOTRUN -> [SKIP][1] ([i915#8411]) +1 other test skip
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-2/igt@api_intel_bb@object-reloc-keep-cache.html
* igt@device_reset@unbind-cold-reset-rebind:
- shard-dg1: NOTRUN -> [SKIP][2] ([i915#11078])
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-dg1-14/igt@device_reset@unbind-cold-reset-rebind.html
- shard-dg2: NOTRUN -> [SKIP][3] ([i915#11078])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-dg2-5/igt@device_reset@unbind-cold-reset-rebind.html
* igt@gem_ccs@block-multicopy-compressed:
- shard-rkl: NOTRUN -> [SKIP][4] ([i915#9323])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-2/igt@gem_ccs@block-multicopy-compressed.html
* igt@gem_ccs@block-multicopy-inplace:
- shard-rkl: NOTRUN -> [SKIP][5] ([i915#3555] / [i915#9323])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-3/igt@gem_ccs@block-multicopy-inplace.html
* igt@gem_ccs@ctrl-surf-copy:
- shard-tglu: NOTRUN -> [SKIP][6] ([i915#3555] / [i915#9323])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-tglu-9/igt@gem_ccs@ctrl-surf-copy.html
* igt@gem_ccs@large-ctrl-surf-copy:
- shard-rkl: NOTRUN -> [SKIP][7] ([i915#13008])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-5/igt@gem_ccs@large-ctrl-surf-copy.html
* igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-lmem0-lmem0:
- shard-dg2: NOTRUN -> [INCOMPLETE][8] ([i915#12392] / [i915#13356])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-dg2-7/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-lmem0-lmem0.html
* igt@gem_close_race@multigpu-basic-process:
- shard-dg1: NOTRUN -> [SKIP][9] ([i915#7697])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-dg1-14/igt@gem_close_race@multigpu-basic-process.html
* igt@gem_create@create-ext-cpu-access-sanity-check:
- shard-tglu: NOTRUN -> [SKIP][10] ([i915#6335])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-tglu-8/igt@gem_create@create-ext-cpu-access-sanity-check.html
* igt@gem_ctx_persistence@heartbeat-stop:
- shard-dg1: NOTRUN -> [SKIP][11] ([i915#8555])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-dg1-16/igt@gem_ctx_persistence@heartbeat-stop.html
- shard-mtlp: NOTRUN -> [SKIP][12] ([i915#8555])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-mtlp-7/igt@gem_ctx_persistence@heartbeat-stop.html
- shard-dg2: NOTRUN -> [SKIP][13] ([i915#8555])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-dg2-1/igt@gem_ctx_persistence@heartbeat-stop.html
* igt@gem_ctx_persistence@smoketest:
- shard-snb: NOTRUN -> [SKIP][14] ([i915#1099]) +1 other test skip
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-snb1/igt@gem_ctx_persistence@smoketest.html
* igt@gem_ctx_sseu@invalid-sseu:
- shard-rkl: NOTRUN -> [SKIP][15] ([i915#280])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-4/igt@gem_ctx_sseu@invalid-sseu.html
* igt@gem_eio@in-flight-suspend:
- shard-rkl: NOTRUN -> [ABORT][16] ([i915#15131])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-1/igt@gem_eio@in-flight-suspend.html
* igt@gem_exec_balancer@invalid-bonds:
- shard-dg1: NOTRUN -> [SKIP][17] ([i915#4036])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-dg1-17/igt@gem_exec_balancer@invalid-bonds.html
* igt@gem_exec_balancer@parallel-dmabuf-import-out-fence:
- shard-tglu: NOTRUN -> [SKIP][18] ([i915#4525]) +1 other test skip
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-tglu-8/igt@gem_exec_balancer@parallel-dmabuf-import-out-fence.html
* igt@gem_exec_balancer@parallel-keep-submit-fence:
- shard-tglu-1: NOTRUN -> [SKIP][19] ([i915#4525])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-tglu-1/igt@gem_exec_balancer@parallel-keep-submit-fence.html
* igt@gem_exec_big@single:
- shard-tglu-1: NOTRUN -> [ABORT][20] ([i915#11713])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-tglu-1/igt@gem_exec_big@single.html
* igt@gem_exec_fence@concurrent:
- shard-mtlp: NOTRUN -> [SKIP][21] ([i915#4812])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-mtlp-7/igt@gem_exec_fence@concurrent.html
- shard-dg2: NOTRUN -> [SKIP][22] ([i915#4812])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-dg2-1/igt@gem_exec_fence@concurrent.html
* igt@gem_exec_flush@basic-wb-ro-before-default:
- shard-dg2: NOTRUN -> [SKIP][23] ([i915#3539] / [i915#4852]) +1 other test skip
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-dg2-5/igt@gem_exec_flush@basic-wb-ro-before-default.html
- shard-dg1: NOTRUN -> [SKIP][24] ([i915#3539] / [i915#4852]) +1 other test skip
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-dg1-12/igt@gem_exec_flush@basic-wb-ro-before-default.html
* igt@gem_exec_params@rsvd2-dirt:
- shard-dg2: NOTRUN -> [SKIP][25] ([i915#5107])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-dg2-5/igt@gem_exec_params@rsvd2-dirt.html
* igt@gem_exec_reloc@basic-cpu-gtt-noreloc:
- shard-rkl: NOTRUN -> [SKIP][26] ([i915#14544] / [i915#3281]) +2 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-6/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html
* igt@gem_exec_reloc@basic-wc-gtt-noreloc:
- shard-mtlp: NOTRUN -> [SKIP][27] ([i915#3281])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-mtlp-4/igt@gem_exec_reloc@basic-wc-gtt-noreloc.html
* igt@gem_exec_reloc@basic-wc-read-noreloc:
- shard-rkl: NOTRUN -> [SKIP][28] ([i915#3281]) +9 other tests skip
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-8/igt@gem_exec_reloc@basic-wc-read-noreloc.html
* igt@gem_exec_reloc@basic-write-cpu-active:
- shard-dg1: NOTRUN -> [SKIP][29] ([i915#3281]) +4 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-dg1-17/igt@gem_exec_reloc@basic-write-cpu-active.html
* igt@gem_exec_reloc@basic-write-wc-active:
- shard-dg2: NOTRUN -> [SKIP][30] ([i915#3281]) +2 other tests skip
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-dg2-1/igt@gem_exec_reloc@basic-write-wc-active.html
* igt@gem_exec_schedule@reorder-wide:
- shard-dg2: NOTRUN -> [SKIP][31] ([i915#4537] / [i915#4812])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-dg2-6/igt@gem_exec_schedule@reorder-wide.html
- shard-dg1: NOTRUN -> [SKIP][32] ([i915#4812]) +1 other test skip
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-dg1-17/igt@gem_exec_schedule@reorder-wide.html
* igt@gem_exec_schedule@thriceslice:
- shard-snb: NOTRUN -> [SKIP][33] +98 other tests skip
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-snb6/igt@gem_exec_schedule@thriceslice.html
* igt@gem_exec_suspend@basic-s3:
- shard-rkl: NOTRUN -> [INCOMPLETE][34] ([i915#13356]) +1 other test incomplete
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-4/igt@gem_exec_suspend@basic-s3.html
* igt@gem_fence_thrash@bo-copy:
- shard-dg2: NOTRUN -> [SKIP][35] ([i915#4860])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-dg2-11/igt@gem_fence_thrash@bo-copy.html
- shard-dg1: NOTRUN -> [SKIP][36] ([i915#4860])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-dg1-16/igt@gem_fence_thrash@bo-copy.html
* igt@gem_huc_copy@huc-copy:
- shard-glk: NOTRUN -> [SKIP][37] ([i915#2190])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-glk1/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@heavy-multi:
- shard-rkl: NOTRUN -> [SKIP][38] ([i915#14544] / [i915#4613])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-6/igt@gem_lmem_swapping@heavy-multi.html
* igt@gem_lmem_swapping@heavy-verify-multi-ccs:
- shard-tglu: NOTRUN -> [SKIP][39] ([i915#4613]) +1 other test skip
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-tglu-5/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html
* igt@gem_lmem_swapping@parallel-multi:
- shard-rkl: NOTRUN -> [SKIP][40] ([i915#4613]) +2 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-2/igt@gem_lmem_swapping@parallel-multi.html
* igt@gem_lmem_swapping@random-engines:
- shard-glk: NOTRUN -> [SKIP][41] ([i915#4613]) +1 other test skip
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-glk1/igt@gem_lmem_swapping@random-engines.html
- shard-tglu-1: NOTRUN -> [SKIP][42] ([i915#4613])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-tglu-1/igt@gem_lmem_swapping@random-engines.html
* igt@gem_media_fill@media-fill:
- shard-dg2: NOTRUN -> [SKIP][43] ([i915#8289])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-dg2-3/igt@gem_media_fill@media-fill.html
* igt@gem_media_vme:
- shard-rkl: NOTRUN -> [SKIP][44] ([i915#284])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-3/igt@gem_media_vme.html
* igt@gem_mmap_gtt@basic-write-read-distinct:
- shard-mtlp: NOTRUN -> [SKIP][45] ([i915#4077]) +2 other tests skip
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-mtlp-3/igt@gem_mmap_gtt@basic-write-read-distinct.html
* igt@gem_mmap_gtt@big-copy:
- shard-dg2: NOTRUN -> [SKIP][46] ([i915#4077]) +7 other tests skip
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-dg2-1/igt@gem_mmap_gtt@big-copy.html
* igt@gem_mmap_wc@pf-nonblock:
- shard-dg1: NOTRUN -> [SKIP][47] ([i915#4083]) +2 other tests skip
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-dg1-13/igt@gem_mmap_wc@pf-nonblock.html
* igt@gem_mmap_wc@read-write:
- shard-dg2: NOTRUN -> [SKIP][48] ([i915#4083]) +1 other test skip
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-dg2-1/igt@gem_mmap_wc@read-write.html
* igt@gem_partial_pwrite_pread@reads-snoop:
- shard-dg1: NOTRUN -> [SKIP][49] ([i915#3282]) +1 other test skip
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-dg1-12/igt@gem_partial_pwrite_pread@reads-snoop.html
* igt@gem_partial_pwrite_pread@writes-after-reads:
- shard-rkl: NOTRUN -> [SKIP][50] ([i915#3282]) +8 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-4/igt@gem_partial_pwrite_pread@writes-after-reads.html
* igt@gem_pread@bench:
- shard-rkl: NOTRUN -> [SKIP][51] ([i915#14544] / [i915#3282])
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-6/igt@gem_pread@bench.html
* igt@gem_pwrite@basic-exhaustion:
- shard-tglu: NOTRUN -> [WARN][52] ([i915#2658])
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-tglu-3/igt@gem_pwrite@basic-exhaustion.html
* igt@gem_pxp@verify-pxp-stale-ctx-execution:
- shard-dg1: NOTRUN -> [SKIP][53] ([i915#4270]) +1 other test skip
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-dg1-14/igt@gem_pxp@verify-pxp-stale-ctx-execution.html
- shard-dg2: NOTRUN -> [SKIP][54] ([i915#4270])
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-dg2-5/igt@gem_pxp@verify-pxp-stale-ctx-execution.html
* igt@gem_readwrite@read-bad-handle:
- shard-mtlp: NOTRUN -> [SKIP][55] ([i915#3282])
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-mtlp-3/igt@gem_readwrite@read-bad-handle.html
- shard-dg2: NOTRUN -> [SKIP][56] ([i915#3282])
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-dg2-6/igt@gem_readwrite@read-bad-handle.html
* igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs:
- shard-glk: NOTRUN -> [SKIP][57] +150 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-glk1/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs.html
* igt@gem_render_copy@yf-tiled-to-vebox-y-tiled:
- shard-dg2: NOTRUN -> [SKIP][58] ([i915#5190] / [i915#8428])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-dg2-8/igt@gem_render_copy@yf-tiled-to-vebox-y-tiled.html
* igt@gem_set_tiling_vs_blt@tiled-to-tiled:
- shard-dg2: NOTRUN -> [SKIP][59] ([i915#4079])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-dg2-5/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html
- shard-dg1: NOTRUN -> [SKIP][60] ([i915#4079])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-dg1-18/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html
* igt@gem_softpin@evict-snoop-interruptible:
- shard-dg1: NOTRUN -> [SKIP][61] ([i915#4885])
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-dg1-17/igt@gem_softpin@evict-snoop-interruptible.html
* igt@gem_userptr_blits@coherency-sync:
- shard-dg2: NOTRUN -> [SKIP][62] ([i915#3297])
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-dg2-4/igt@gem_userptr_blits@coherency-sync.html
* igt@gem_userptr_blits@invalid-mmap-offset-unsync:
- shard-tglu: NOTRUN -> [SKIP][63] ([i915#3297]) +2 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-tglu-6/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html
* igt@gem_userptr_blits@map-fixed-invalidate-busy:
- shard-dg2: NOTRUN -> [SKIP][64] ([i915#3297] / [i915#4880])
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-dg2-8/igt@gem_userptr_blits@map-fixed-invalidate-busy.html
- shard-dg1: NOTRUN -> [SKIP][65] ([i915#3297] / [i915#4880])
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-dg1-17/igt@gem_userptr_blits@map-fixed-invalidate-busy.html
* igt@gem_userptr_blits@unsync-overlap:
- shard-rkl: NOTRUN -> [SKIP][66] ([i915#14544] / [i915#3297])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-6/igt@gem_userptr_blits@unsync-overlap.html
* igt@gem_userptr_blits@unsync-unmap-after-close:
- shard-rkl: NOTRUN -> [SKIP][67] ([i915#3297]) +2 other tests skip
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-8/igt@gem_userptr_blits@unsync-unmap-after-close.html
* igt@gen9_exec_parse@allowed-all:
- shard-mtlp: NOTRUN -> [SKIP][68] ([i915#2856]) +1 other test skip
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-mtlp-2/igt@gen9_exec_parse@allowed-all.html
* igt@gen9_exec_parse@allowed-single:
- shard-tglu-1: NOTRUN -> [SKIP][69] ([i915#2527] / [i915#2856])
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-tglu-1/igt@gen9_exec_parse@allowed-single.html
* igt@gen9_exec_parse@batch-invalid-length:
- shard-tglu: NOTRUN -> [SKIP][70] ([i915#2527] / [i915#2856]) +1 other test skip
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-tglu-5/igt@gen9_exec_parse@batch-invalid-length.html
* igt@gen9_exec_parse@bb-oversize:
- shard-dg1: NOTRUN -> [SKIP][71] ([i915#2527]) +2 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-dg1-14/igt@gen9_exec_parse@bb-oversize.html
* igt@gen9_exec_parse@shadow-peek:
- shard-rkl: NOTRUN -> [SKIP][72] ([i915#14544] / [i915#2527]) +1 other test skip
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-6/igt@gen9_exec_parse@shadow-peek.html
* igt@gen9_exec_parse@unaligned-access:
- shard-dg2: NOTRUN -> [SKIP][73] ([i915#2856]) +2 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-dg2-11/igt@gen9_exec_parse@unaligned-access.html
- shard-rkl: NOTRUN -> [SKIP][74] ([i915#2527]) +5 other tests skip
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-4/igt@gen9_exec_parse@unaligned-access.html
* igt@i915_drm_fdinfo@all-busy-idle-check-all:
- shard-dg2: NOTRUN -> [SKIP][75] ([i915#14123])
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-dg2-6/igt@i915_drm_fdinfo@all-busy-idle-check-all.html
- shard-dg1: NOTRUN -> [SKIP][76] ([i915#14123])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-dg1-17/igt@i915_drm_fdinfo@all-busy-idle-check-all.html
- shard-mtlp: NOTRUN -> [SKIP][77] ([i915#14123])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-mtlp-4/igt@i915_drm_fdinfo@all-busy-idle-check-all.html
* igt@i915_drm_fdinfo@busy@vecs1:
- shard-dg2: NOTRUN -> [SKIP][78] ([i915#14073]) +7 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-dg2-8/igt@i915_drm_fdinfo@busy@vecs1.html
* igt@i915_module_load@fault-injection:
- shard-glk: NOTRUN -> [ABORT][79] ([i915#15342] / [i915#15481])
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-glk1/igt@i915_module_load@fault-injection.html
* igt@i915_module_load@fault-injection@i915_driver_hw_probe:
- shard-glk: NOTRUN -> [ABORT][80] ([i915#15481])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-glk1/igt@i915_module_load@fault-injection@i915_driver_hw_probe.html
* igt@i915_module_load@fault-injection@intel_connector_register:
- shard-glk: NOTRUN -> [DMESG-WARN][81] ([i915#15342])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-glk1/igt@i915_module_load@fault-injection@intel_connector_register.html
* igt@i915_module_load@reload-no-display:
- shard-dg1: [PASS][82] -> [DMESG-WARN][83] ([i915#13029] / [i915#14545])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8685/shard-dg1-12/igt@i915_module_load@reload-no-display.html
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-dg1-19/igt@i915_module_load@reload-no-display.html
* igt@i915_pm_freq_api@freq-basic-api:
- shard-tglu: NOTRUN -> [SKIP][84] ([i915#8399])
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-tglu-10/igt@i915_pm_freq_api@freq-basic-api.html
* igt@i915_pm_freq_api@freq-reset:
- shard-rkl: NOTRUN -> [SKIP][85] ([i915#14544] / [i915#8399])
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-6/igt@i915_pm_freq_api@freq-reset.html
* igt@i915_pm_freq_api@freq-suspend:
- shard-rkl: NOTRUN -> [SKIP][86] ([i915#8399])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-3/igt@i915_pm_freq_api@freq-suspend.html
* igt@i915_pm_freq_mult@media-freq@gt0:
- shard-rkl: NOTRUN -> [SKIP][87] ([i915#6590]) +1 other test skip
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-5/igt@i915_pm_freq_mult@media-freq@gt0.html
* igt@i915_pm_rc6_residency@rc6-idle:
- shard-tglu: NOTRUN -> [SKIP][88] ([i915#14498])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-tglu-7/igt@i915_pm_rc6_residency@rc6-idle.html
* igt@i915_pm_rpm@system-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][89] ([i915#13356])
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-glk1/igt@i915_pm_rpm@system-suspend.html
* igt@i915_pm_rpm@system-suspend-devices:
- shard-rkl: [PASS][90] -> [ABORT][91] ([i915#15060])
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8685/shard-rkl-5/igt@i915_pm_rpm@system-suspend-devices.html
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-1/igt@i915_pm_rpm@system-suspend-devices.html
* igt@i915_pm_rpm@system-suspend-execbuf:
- shard-rkl: [PASS][92] -> [INCOMPLETE][93] ([i915#13356]) +1 other test incomplete
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8685/shard-rkl-4/igt@i915_pm_rpm@system-suspend-execbuf.html
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-3/igt@i915_pm_rpm@system-suspend-execbuf.html
* igt@i915_query@hwconfig_table:
- shard-dg1: NOTRUN -> [SKIP][94] ([i915#6245])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-dg1-18/igt@i915_query@hwconfig_table.html
* igt@i915_query@test-query-geometry-subslices:
- shard-rkl: NOTRUN -> [SKIP][95] ([i915#5723])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-3/igt@i915_query@test-query-geometry-subslices.html
- shard-dg1: NOTRUN -> [SKIP][96] ([i915#5723])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-dg1-17/igt@i915_query@test-query-geometry-subslices.html
- shard-tglu: NOTRUN -> [SKIP][97] ([i915#5723])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-tglu-7/igt@i915_query@test-query-geometry-subslices.html
* igt@i915_selftest@live@workarounds:
- shard-dg2: [PASS][98] -> [DMESG-FAIL][99] ([i915#12061]) +1 other test dmesg-fail
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8685/shard-dg2-3/igt@i915_selftest@live@workarounds.html
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-dg2-7/igt@i915_selftest@live@workarounds.html
- shard-mtlp: [PASS][100] -> [DMESG-FAIL][101] ([i915#12061]) +1 other test dmesg-fail
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8685/shard-mtlp-3/igt@i915_selftest@live@workarounds.html
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-mtlp-3/igt@i915_selftest@live@workarounds.html
* igt@i915_suspend@basic-s3-without-i915:
- shard-tglu: NOTRUN -> [INCOMPLETE][102] ([i915#4817] / [i915#7443])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-tglu-5/igt@i915_suspend@basic-s3-without-i915.html
- shard-mtlp: NOTRUN -> [SKIP][103] ([i915#6645])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-mtlp-2/igt@i915_suspend@basic-s3-without-i915.html
* igt@i915_suspend@debugfs-reader:
- shard-glk: NOTRUN -> [INCOMPLETE][104] ([i915#4817])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-glk1/igt@i915_suspend@debugfs-reader.html
* igt@i915_suspend@forcewake:
- shard-tglu: [PASS][105] -> [INCOMPLETE][106] ([i915#4817])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8685/shard-tglu-6/igt@i915_suspend@forcewake.html
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-tglu-10/igt@i915_suspend@forcewake.html
* igt@intel_hwmon@hwmon-read:
- shard-tglu: NOTRUN -> [SKIP][107] ([i915#7707])
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-tglu-6/igt@intel_hwmon@hwmon-read.html
* igt@intel_hwmon@hwmon-write:
- shard-rkl: NOTRUN -> [SKIP][108] ([i915#14544] / [i915#7707])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-6/igt@intel_hwmon@hwmon-write.html
* igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling:
- shard-dg2: NOTRUN -> [SKIP][109] ([i915#4212])
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-dg2-6/igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling.html
- shard-dg1: NOTRUN -> [SKIP][110] ([i915#4212])
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-dg1-13/igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling.html
* igt@kms_async_flips@async-flip-suspend-resume@pipe-a-hdmi-a-1:
- shard-glk: [PASS][111] -> [INCOMPLETE][112] ([i915#12761])
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8685/shard-glk1/igt@kms_async_flips@async-flip-suspend-resume@pipe-a-hdmi-a-1.html
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-glk6/igt@kms_async_flips@async-flip-suspend-resume@pipe-a-hdmi-a-1.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-rkl: NOTRUN -> [SKIP][113] ([i915#9531])
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-5/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-tglu: NOTRUN -> [SKIP][114] ([i915#1769] / [i915#3555])
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-tglu-3/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
- shard-glk10: NOTRUN -> [SKIP][115] ([i915#1769])
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-glk10/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-90:
- shard-tglu: NOTRUN -> [SKIP][116] ([i915#5286]) +2 other tests skip
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-tglu-2/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-addfb-size-offset-overflow:
- shard-tglu-1: NOTRUN -> [SKIP][117] ([i915#5286])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-tglu-1/igt@kms_big_fb@4-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-rkl: NOTRUN -> [SKIP][118] ([i915#5286]) +4 other tests skip
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-4/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-dg1: NOTRUN -> [SKIP][119] ([i915#4538] / [i915#5286]) +3 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-dg1-14/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip:
- shard-rkl: NOTRUN -> [SKIP][120] ([i915#14544] / [i915#5286])
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_big_fb@linear-16bpp-rotate-270:
- shard-mtlp: NOTRUN -> [SKIP][121] +5 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-mtlp-8/igt@kms_big_fb@linear-16bpp-rotate-270.html
* igt@kms_big_fb@linear-32bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][122] ([i915#3638]) +5 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-8/igt@kms_big_fb@linear-32bpp-rotate-90.html
* igt@kms_big_fb@x-tiled-64bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][123] ([i915#3638]) +2 other tests skip
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-dg1-17/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-180:
- shard-dg2: NOTRUN -> [SKIP][124] ([i915#4538] / [i915#5190]) +8 other tests skip
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-dg2-6/igt@kms_big_fb@y-tiled-8bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip:
- shard-dg1: NOTRUN -> [SKIP][125] ([i915#4538]) +3 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-dg1-18/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-rkl: NOTRUN -> [SKIP][126] ([i915#14544]) +1 other test skip
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-6/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-tglu: NOTRUN -> [SKIP][127] +48 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-tglu-3/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-a-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][128] ([i915#6095]) +4 other tests skip
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-mtlp-4/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-mc-ccs@pipe-a-edp-1.html
* igt@kms_ccs@bad-pixel-format-yf-tiled-ccs@pipe-b-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][129] ([i915#10307] / [i915#6095]) +145 other tests skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-dg2-6/igt@kms_ccs@bad-pixel-format-yf-tiled-ccs@pipe-b-hdmi-a-3.html
* igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs:
- shard-mtlp: NOTRUN -> [SKIP][130] ([i915#12313])
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-mtlp-3/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
- shard-dg2: NOTRUN -> [SKIP][131] ([i915#12313])
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-dg2-7/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html
* igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][132] ([i915#14098] / [i915#14544] / [i915#6095]) +6 other tests skip
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-6/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][133] ([i915#14544] / [i915#6095]) +11 other tests skip
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-6/igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs@pipe-a-hdmi-a-2.html
* igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs:
- shard-rkl: NOTRUN -> [SKIP][134] ([i915#12313] / [i915#14544])
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-6/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][135] ([i915#12313])
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-tglu-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html
- shard-dg1: NOTRUN -> [SKIP][136] ([i915#12313])
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-dg1-18/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][137] ([i915#6095]) +67 other tests skip
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-8/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][138] ([i915#10307] / [i915#10434] / [i915#6095]) +3 other tests skip
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-dg2-4/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-b-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][139] ([i915#6095]) +66 other tests skip
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-dg2-8/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc@pipe-b-hdmi-a-3.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs:
- shard-tglu: NOTRUN -> [SKIP][140] ([i915#12313]) +2 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-tglu-2/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-1:
- shard-tglu: NOTRUN -> [SKIP][141] ([i915#6095]) +44 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-tglu-4/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-1.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][142] ([i915#14098] / [i915#6095]) +47 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-4/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs:
- shard-rkl: NOTRUN -> [SKIP][143] ([i915#12313]) +1 other test skip
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-5/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html
* igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs@pipe-d-hdmi-a-1:
- shard-tglu-1: NOTRUN -> [SKIP][144] ([i915#6095]) +19 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-tglu-1/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-a-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][145] ([i915#6095]) +162 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/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-dg2: NOTRUN -> [SKIP][146] ([i915#13784])
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-dg2-8/igt@kms_cdclk@mode-transition-all-outputs.html
* igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][147] ([i915#13781]) +3 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-dg2-4/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-1.html
* igt@kms_cdclk@plane-scaling:
- shard-tglu-1: NOTRUN -> [SKIP][148] ([i915#3742])
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-tglu-1/igt@kms_cdclk@plane-scaling.html
* igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][149] ([i915#13783]) +3 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-dg2-4/igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-1.html
* igt@kms_chamelium_color@ctm-max:
- shard-dg2: NOTRUN -> [SKIP][150] +3 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-dg2-5/igt@kms_chamelium_color@ctm-max.html
* igt@kms_chamelium_edid@hdmi-edid-change-during-suspend:
- shard-rkl: NOTRUN -> [SKIP][151] ([i915#11151] / [i915#14544] / [i915#7828])
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-6/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html
* igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k:
- shard-dg2: NOTRUN -> [SKIP][152] ([i915#11151] / [i915#7828]) +3 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-dg2-8/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html
* igt@kms_chamelium_edid@hdmi-mode-timings:
- shard-tglu: NOTRUN -> [SKIP][153] ([i915#11151] / [i915#7828]) +5 other tests skip
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-tglu-10/igt@kms_chamelium_edid@hdmi-mode-timings.html
* igt@kms_chamelium_frames@hdmi-crc-single:
- shard-dg1: NOTRUN -> [SKIP][154] ([i915#11151] / [i915#7828]) +4 other tests skip
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-dg1-13/igt@kms_chamelium_frames@hdmi-crc-single.html
* igt@kms_chamelium_hpd@dp-hpd-with-enabled-mode:
- shard-tglu-1: NOTRUN -> [SKIP][155] ([i915#11151] / [i915#7828])
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-tglu-1/igt@kms_chamelium_hpd@dp-hpd-with-enabled-mode.html
* igt@kms_chamelium_hpd@hdmi-hpd-fast:
- shard-rkl: NOTRUN -> [SKIP][156] ([i915#11151] / [i915#7828]) +11 other tests skip
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-7/igt@kms_chamelium_hpd@hdmi-hpd-fast.html
* igt@kms_chamelium_hpd@vga-hpd:
- shard-mtlp: NOTRUN -> [SKIP][157] ([i915#11151] / [i915#7828]) +1 other test skip
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-mtlp-2/igt@kms_chamelium_hpd@vga-hpd.html
* igt@kms_content_protection@atomic-dpms:
- shard-tglu: NOTRUN -> [SKIP][158] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424])
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-tglu-7/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@legacy@pipe-a-dp-3:
- shard-dg2: NOTRUN -> [FAIL][159] ([i915#7173])
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-dg2-11/igt@kms_content_protection@legacy@pipe-a-dp-3.html
* igt@kms_content_protection@lic-type-0:
- shard-rkl: NOTRUN -> [SKIP][160] ([i915#6944] / [i915#9424])
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-5/igt@kms_content_protection@lic-type-0.html
* igt@kms_content_protection@lic-type-1:
- shard-dg1: NOTRUN -> [SKIP][161] ([i915#6944] / [i915#9424])
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-dg1-17/igt@kms_content_protection@lic-type-1.html
* igt@kms_content_protection@mei-interface:
- shard-tglu-1: NOTRUN -> [SKIP][162] ([i915#6944] / [i915#9424])
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-tglu-1/igt@kms_content_protection@mei-interface.html
* igt@kms_content_protection@suspend-resume:
- shard-rkl: NOTRUN -> [SKIP][163] ([i915#6944])
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-5/igt@kms_content_protection@suspend-resume.html
- shard-dg1: NOTRUN -> [SKIP][164] ([i915#6944])
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-dg1-19/igt@kms_content_protection@suspend-resume.html
- shard-tglu: NOTRUN -> [SKIP][165] ([i915#6944])
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-tglu-8/igt@kms_content_protection@suspend-resume.html
- shard-mtlp: NOTRUN -> [SKIP][166] ([i915#6944])
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-mtlp-5/igt@kms_content_protection@suspend-resume.html
- shard-dg2: NOTRUN -> [SKIP][167] ([i915#6944])
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-dg2-8/igt@kms_content_protection@suspend-resume.html
* igt@kms_content_protection@type1:
- shard-rkl: NOTRUN -> [SKIP][168] ([i915#14544] / [i915#6944] / [i915#7118] / [i915#9424])
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-6/igt@kms_content_protection@type1.html
* igt@kms_cursor_crc@cursor-offscreen-32x32:
- shard-dg1: NOTRUN -> [SKIP][169] ([i915#3555]) +3 other tests skip
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-dg1-18/igt@kms_cursor_crc@cursor-offscreen-32x32.html
* igt@kms_cursor_crc@cursor-onscreen-256x85:
- shard-tglu: [PASS][170] -> [FAIL][171] ([i915#13566]) +3 other tests fail
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8685/shard-tglu-5/igt@kms_cursor_crc@cursor-onscreen-256x85.html
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-tglu-8/igt@kms_cursor_crc@cursor-onscreen-256x85.html
* igt@kms_cursor_crc@cursor-random-max-size:
- shard-mtlp: NOTRUN -> [SKIP][172] ([i915#3555] / [i915#8814])
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-mtlp-6/igt@kms_cursor_crc@cursor-random-max-size.html
* igt@kms_cursor_crc@cursor-rapid-movement-512x512:
- shard-tglu: NOTRUN -> [SKIP][173] ([i915#13049]) +1 other test skip
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-tglu-4/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html
* igt@kms_cursor_crc@cursor-rapid-movement-max-size:
- shard-dg2: NOTRUN -> [SKIP][174] ([i915#3555]) +2 other tests skip
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-dg2-3/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html
* igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-2:
- shard-rkl: [PASS][175] -> [FAIL][176] ([i915#13566]) +1 other test fail
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8685/shard-rkl-7/igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-2.html
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-4/igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-2.html
* igt@kms_cursor_crc@cursor-sliding-256x85@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [FAIL][177] ([i915#13566])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-7/igt@kms_cursor_crc@cursor-sliding-256x85@pipe-a-hdmi-a-2.html
* igt@kms_cursor_crc@cursor-sliding-32x10:
- shard-tglu: NOTRUN -> [SKIP][178] ([i915#3555]) +4 other tests skip
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-tglu-10/igt@kms_cursor_crc@cursor-sliding-32x10.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-rkl: NOTRUN -> [SKIP][179] ([i915#13049]) +1 other test skip
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-8/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_cursor_edge_walk@128x128-top-bottom:
- shard-dg1: [PASS][180] -> [DMESG-WARN][181] ([i915#4423]) +2 other tests dmesg-warn
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8685/shard-dg1-12/igt@kms_cursor_edge_walk@128x128-top-bottom.html
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-dg1-14/igt@kms_cursor_edge_walk@128x128-top-bottom.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
- shard-rkl: NOTRUN -> [SKIP][182] +20 other tests skip
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-5/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
- shard-tglu: NOTRUN -> [SKIP][183] ([i915#4103]) +1 other test skip
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-tglu-7/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size:
- shard-dg2: NOTRUN -> [SKIP][184] ([i915#13046] / [i915#5354]) +1 other test skip
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-dg2-6/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html
- shard-mtlp: NOTRUN -> [SKIP][185] ([i915#9809])
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-mtlp-3/igt@kms_cursor_legacy@cursorb-vs-flipb-varying-size.html
* igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot:
- shard-tglu: NOTRUN -> [SKIP][186] ([i915#9067])
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-tglu-5/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-dg1: NOTRUN -> [SKIP][187] ([i915#4103] / [i915#4213])
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-dg1-17/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][188] ([i915#3804])
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-8/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html
* igt@kms_dp_link_training@uhbr-sst:
- shard-dg2: NOTRUN -> [SKIP][189] ([i915#13748])
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-dg2-6/igt@kms_dp_link_training@uhbr-sst.html
* igt@kms_dp_linktrain_fallback@dsc-fallback:
- shard-rkl: NOTRUN -> [SKIP][190] ([i915#13707])
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-8/igt@kms_dp_linktrain_fallback@dsc-fallback.html
* igt@kms_dsc@dsc-with-bpc:
- shard-dg2: NOTRUN -> [SKIP][191] ([i915#3555] / [i915#3840])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-dg2-4/igt@kms_dsc@dsc-with-bpc.html
- shard-tglu-1: NOTRUN -> [SKIP][192] ([i915#3555] / [i915#3840])
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-tglu-1/igt@kms_dsc@dsc-with-bpc.html
- shard-dg1: NOTRUN -> [SKIP][193] ([i915#3555] / [i915#3840])
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-dg1-18/igt@kms_dsc@dsc-with-bpc.html
* igt@kms_dsc@dsc-with-formats:
- shard-rkl: NOTRUN -> [SKIP][194] ([i915#3555] / [i915#3840])
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-3/igt@kms_dsc@dsc-with-formats.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc:
- shard-tglu: NOTRUN -> [SKIP][195] ([i915#3840] / [i915#9053])
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-tglu-4/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
* igt@kms_fb_coherency@memset-crc:
- shard-dg2: NOTRUN -> [CRASH][196] ([i915#15351]) +1 other test crash
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-dg2-8/igt@kms_fb_coherency@memset-crc.html
* igt@kms_fb_coherency@memset-crc@mmap-gtt:
- shard-rkl: NOTRUN -> [CRASH][197] ([i915#15351]) +1 other test crash
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-5/igt@kms_fb_coherency@memset-crc@mmap-gtt.html
- shard-snb: NOTRUN -> [CRASH][198] ([i915#15351]) +1 other test crash
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-snb4/igt@kms_fb_coherency@memset-crc@mmap-gtt.html
- shard-tglu: NOTRUN -> [CRASH][199] ([i915#15351]) +1 other test crash
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-tglu-8/igt@kms_fb_coherency@memset-crc@mmap-gtt.html
* igt@kms_fb_coherency@memset-crc@mmap-offset-fixed:
- shard-dg1: NOTRUN -> [CRASH][200] ([i915#15351]) +1 other test crash
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-dg1-19/igt@kms_fb_coherency@memset-crc@mmap-offset-fixed.html
* igt@kms_fb_coherency@memset-crc@mmap-offset-wc:
- shard-mtlp: NOTRUN -> [CRASH][201] ([i915#15351]) +1 other test crash
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-mtlp-5/igt@kms_fb_coherency@memset-crc@mmap-offset-wc.html
* igt@kms_feature_discovery@chamelium:
- shard-rkl: NOTRUN -> [SKIP][202] ([i915#4854])
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-8/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@display-2x:
- shard-rkl: NOTRUN -> [SKIP][203] ([i915#14544] / [i915#1839])
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-6/igt@kms_feature_discovery@display-2x.html
* igt@kms_feature_discovery@display-3x:
- shard-tglu: NOTRUN -> [SKIP][204] ([i915#1839])
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-tglu-10/igt@kms_feature_discovery@display-3x.html
* igt@kms_feature_discovery@display-4x:
- shard-dg1: NOTRUN -> [SKIP][205] ([i915#1839])
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-dg1-16/igt@kms_feature_discovery@display-4x.html
- shard-dg2: NOTRUN -> [SKIP][206] ([i915#1839])
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-dg2-1/igt@kms_feature_discovery@display-4x.html
* igt@kms_feature_discovery@psr1:
- shard-dg2: NOTRUN -> [SKIP][207] ([i915#658])
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-dg2-11/igt@kms_feature_discovery@psr1.html
* igt@kms_feature_discovery@psr2:
- shard-rkl: NOTRUN -> [SKIP][208] ([i915#658])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-2/igt@kms_feature_discovery@psr2.html
* igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible:
- shard-dg2: NOTRUN -> [SKIP][209] ([i915#9934])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-dg2-3/igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible.html
* igt@kms_flip@2x-flip-vs-dpms:
- shard-rkl: NOTRUN -> [SKIP][210] ([i915#9934]) +7 other tests skip
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-7/igt@kms_flip@2x-flip-vs-dpms.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible:
- shard-dg1: NOTRUN -> [SKIP][211] ([i915#9934]) +1 other test skip
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-dg1-14/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible:
- shard-snb: NOTRUN -> [TIMEOUT][212] ([i915#14033] / [i915#14350])
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-snb4/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
- shard-glk: NOTRUN -> [INCOMPLETE][213] ([i915#12314] / [i915#12745] / [i915#4839])
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-glk5/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-hdmi-a1-hdmi-a2:
- shard-glk: NOTRUN -> [INCOMPLETE][214] ([i915#12314] / [i915#4839])
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-glk5/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-hdmi-a1-hdmi-a2.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-vga1-hdmi-a1:
- shard-snb: NOTRUN -> [TIMEOUT][215] ([i915#14033])
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-snb4/igt@kms_flip@2x-flip-vs-suspend-interruptible@ab-vga1-hdmi-a1.html
* igt@kms_flip@2x-modeset-vs-vblank-race:
- shard-rkl: NOTRUN -> [SKIP][216] ([i915#14544] / [i915#9934]) +1 other test skip
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-6/igt@kms_flip@2x-modeset-vs-vblank-race.html
* igt@kms_flip@2x-nonexisting-fb:
- shard-tglu: NOTRUN -> [SKIP][217] ([i915#3637] / [i915#9934]) +4 other tests skip
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-tglu-9/igt@kms_flip@2x-nonexisting-fb.html
* igt@kms_flip@flip-vs-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][218] ([i915#12314] / [i915#12745] / [i915#4839] / [i915#6113])
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-glk5/igt@kms_flip@flip-vs-suspend.html
* igt@kms_flip@flip-vs-suspend@a-hdmi-a1:
- shard-glk: NOTRUN -> [INCOMPLETE][219] ([i915#12314] / [i915#12745] / [i915#6113])
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-glk5/igt@kms_flip@flip-vs-suspend@a-hdmi-a1.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][220] ([i915#2672]) +5 other tests skip
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-7/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling:
- shard-rkl: NOTRUN -> [SKIP][221] ([i915#14544] / [i915#2672] / [i915#3555])
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-rkl: NOTRUN -> [SKIP][222] ([i915#14544] / [i915#2672])
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling:
- shard-dg1: NOTRUN -> [SKIP][223] ([i915#2587] / [i915#2672] / [i915#3555])
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-dg1-19/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
- shard-tglu: NOTRUN -> [SKIP][224] ([i915#2587] / [i915#2672] / [i915#3555])
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-tglu-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
- shard-mtlp: NOTRUN -> [SKIP][225] ([i915#2672] / [i915#3555] / [i915#8813]) +1 other test skip
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][226] ([i915#2672] / [i915#8813]) +1 other test skip
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][227] ([i915#2672]) +3 other tests skip
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-dg2-11/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html
- shard-dg1: NOTRUN -> [SKIP][228] ([i915#2587] / [i915#2672]) +2 other tests skip
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-dg1-19/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html
- shard-tglu: NOTRUN -> [SKIP][229] ([i915#2587] / [i915#2672])
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-tglu-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
- shard-dg2: NOTRUN -> [SKIP][230] ([i915#2672] / [i915#3555]) +1 other test skip
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-dg2-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
- shard-dg1: NOTRUN -> [SKIP][231] ([i915#2672] / [i915#3555]) +1 other test skip
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-dg1-14/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling:
- shard-rkl: NOTRUN -> [SKIP][232] ([i915#2672] / [i915#3555]) +5 other tests skip
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-5/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling:
- shard-dg2: NOTRUN -> [SKIP][233] ([i915#2672] / [i915#3555] / [i915#5190]) +1 other test skip
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-dg2-7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-16bpp-ytile-downscaling.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-indfb-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][234] ([i915#15104])
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-dg2-4/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-pwrite:
- shard-mtlp: NOTRUN -> [SKIP][235] ([i915#1825]) +5 other tests skip
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-mtlp-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbc-2p-rte:
- shard-dg2: NOTRUN -> [SKIP][236] ([i915#5354]) +14 other tests skip
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-2p-rte.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][237] ([i915#8708]) +9 other tests skip
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-dg1-14/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][238] ([i915#15104])
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-dg1-13/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-pwrite:
- shard-dg2: NOTRUN -> [SKIP][239] ([i915#15102]) +2 other tests skip
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-pwrite.html
- shard-dg1: NOTRUN -> [SKIP][240] ([i915#15102]) +2 other tests skip
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-wc:
- shard-rkl: NOTRUN -> [SKIP][241] ([i915#14544] / [i915#15102] / [i915#3023]) +3 other tests skip
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-pwrite:
- shard-dg1: NOTRUN -> [SKIP][242] +24 other tests skip
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc:
- shard-rkl: NOTRUN -> [SKIP][243] ([i915#15102] / [i915#3023]) +21 other tests skip
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][244] ([i915#15102]) +2 other tests skip
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-cpu:
- shard-tglu: NOTRUN -> [SKIP][245] ([i915#15102]) +12 other tests skip
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-tglu-6/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-pwrite:
- shard-rkl: NOTRUN -> [SKIP][246] ([i915#14544] / [i915#15102]) +1 other test skip
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render:
- shard-dg1: NOTRUN -> [SKIP][247] ([i915#15102] / [i915#3458]) +5 other tests skip
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-dg1-16/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt:
- shard-tglu-1: NOTRUN -> [SKIP][248] ([i915#15102]) +3 other tests skip
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][249] ([i915#8708]) +6 other tests skip
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-onoff:
- shard-dg2: NOTRUN -> [SKIP][250] ([i915#15102] / [i915#3458]) +4 other tests skip
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-dg2-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt:
- shard-rkl: NOTRUN -> [SKIP][251] ([i915#14544] / [i915#1825]) +7 other tests skip
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-tglu-1: NOTRUN -> [SKIP][252] +11 other tests skip
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-plflip-blt:
- shard-rkl: NOTRUN -> [SKIP][253] ([i915#1825]) +37 other tests skip
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-8/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-plflip-blt.html
* igt@kms_hdr@bpc-switch-suspend:
- shard-rkl: NOTRUN -> [SKIP][254] ([i915#3555] / [i915#8228]) +1 other test skip
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-4/igt@kms_hdr@bpc-switch-suspend.html
* igt@kms_hdr@invalid-hdr:
- shard-dg1: NOTRUN -> [SKIP][255] ([i915#3555] / [i915#8228])
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-dg1-18/igt@kms_hdr@invalid-hdr.html
* igt@kms_hdr@invalid-metadata-sizes:
- shard-dg2: NOTRUN -> [SKIP][256] ([i915#3555] / [i915#8228]) +1 other test skip
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-dg2-3/igt@kms_hdr@invalid-metadata-sizes.html
* igt@kms_hdr@static-toggle-dpms:
- shard-dg2: [PASS][257] -> [SKIP][258] ([i915#3555] / [i915#8228])
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8685/shard-dg2-11/igt@kms_hdr@static-toggle-dpms.html
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-dg2-5/igt@kms_hdr@static-toggle-dpms.html
- shard-tglu: NOTRUN -> [SKIP][259] ([i915#3555] / [i915#8228])
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-tglu-2/igt@kms_hdr@static-toggle-dpms.html
* igt@kms_joiner@basic-big-joiner:
- shard-rkl: NOTRUN -> [SKIP][260] ([i915#15460])
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-3/igt@kms_joiner@basic-big-joiner.html
* igt@kms_joiner@basic-max-non-joiner:
- shard-tglu: NOTRUN -> [SKIP][261] ([i915#13688])
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-tglu-4/igt@kms_joiner@basic-max-non-joiner.html
- shard-mtlp: NOTRUN -> [SKIP][262] ([i915#13688])
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-mtlp-7/igt@kms_joiner@basic-max-non-joiner.html
- shard-dg2: NOTRUN -> [SKIP][263] ([i915#13688])
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-dg2-1/igt@kms_joiner@basic-max-non-joiner.html
- shard-rkl: NOTRUN -> [SKIP][264] ([i915#13688])
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-7/igt@kms_joiner@basic-max-non-joiner.html
- shard-dg1: NOTRUN -> [SKIP][265] ([i915#13688])
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-dg1-16/igt@kms_joiner@basic-max-non-joiner.html
* igt@kms_joiner@basic-ultra-joiner:
- shard-rkl: NOTRUN -> [SKIP][266] ([i915#15458])
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-5/igt@kms_joiner@basic-ultra-joiner.html
* igt@kms_joiner@invalid-modeset-ultra-joiner:
- shard-tglu: NOTRUN -> [SKIP][267] ([i915#15458])
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-tglu-3/igt@kms_joiner@invalid-modeset-ultra-joiner.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-rkl: NOTRUN -> [SKIP][268] ([i915#1839] / [i915#4816])
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-2/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-rkl: NOTRUN -> [SKIP][269] ([i915#6301]) +1 other test skip
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-8/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_panel_fitting@legacy:
- shard-dg2: NOTRUN -> [SKIP][270] ([i915#6301])
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-dg2-1/igt@kms_panel_fitting@legacy.html
- shard-dg1: NOTRUN -> [SKIP][271] ([i915#6301])
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-dg1-12/igt@kms_panel_fitting@legacy.html
* igt@kms_pipe_stress@stress-xrgb8888-4tiled:
- shard-tglu: NOTRUN -> [SKIP][272] ([i915#14712])
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-tglu-10/igt@kms_pipe_stress@stress-xrgb8888-4tiled.html
* igt@kms_plane_alpha_blend@alpha-basic:
- shard-glk10: NOTRUN -> [FAIL][273] ([i915#12178])
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-glk10/igt@kms_plane_alpha_blend@alpha-basic.html
* igt@kms_plane_alpha_blend@alpha-basic@pipe-c-hdmi-a-1:
- shard-glk10: NOTRUN -> [FAIL][274] ([i915#7862]) +1 other test fail
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-glk10/igt@kms_plane_alpha_blend@alpha-basic@pipe-c-hdmi-a-1.html
* igt@kms_plane_lowres@tiling-y:
- shard-dg2: NOTRUN -> [SKIP][275] ([i915#8821])
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-dg2-7/igt@kms_plane_lowres@tiling-y.html
* igt@kms_plane_lowres@tiling-yf:
- shard-rkl: NOTRUN -> [SKIP][276] ([i915#3555]) +3 other tests skip
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-3/igt@kms_plane_lowres@tiling-yf.html
* igt@kms_plane_multiple@2x-tiling-y:
- shard-rkl: NOTRUN -> [SKIP][277] ([i915#13958] / [i915#14544])
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-6/igt@kms_plane_multiple@2x-tiling-y.html
* igt@kms_plane_multiple@tiling-4:
- shard-rkl: NOTRUN -> [SKIP][278] ([i915#14259])
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-8/igt@kms_plane_multiple@tiling-4.html
* igt@kms_plane_multiple@tiling-yf:
- shard-rkl: NOTRUN -> [SKIP][279] ([i915#14259] / [i915#14544])
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-6/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75:
- shard-mtlp: NOTRUN -> [SKIP][280] ([i915#15329] / [i915#3555] / [i915#6953])
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-mtlp-5/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-a:
- shard-mtlp: NOTRUN -> [SKIP][281] ([i915#15329]) +3 other tests skip
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-mtlp-5/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-75@pipe-a.html
* igt@kms_pm_backlight@brightness-with-dpms:
- shard-rkl: NOTRUN -> [SKIP][282] ([i915#12343])
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-7/igt@kms_pm_backlight@brightness-with-dpms.html
* igt@kms_pm_backlight@fade:
- shard-rkl: NOTRUN -> [SKIP][283] ([i915#5354])
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-8/igt@kms_pm_backlight@fade.html
* igt@kms_pm_backlight@fade-with-dpms:
- shard-tglu: NOTRUN -> [SKIP][284] ([i915#9812])
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-tglu-10/igt@kms_pm_backlight@fade-with-dpms.html
* igt@kms_pm_dc@dc6-dpms:
- shard-tglu-1: NOTRUN -> [FAIL][285] ([i915#9295])
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-tglu-1/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_dc@dc9-dpms:
- shard-tglu: NOTRUN -> [SKIP][286] ([i915#4281])
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-tglu-4/igt@kms_pm_dc@dc9-dpms.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-glk10: NOTRUN -> [SKIP][287] +211 other tests skip
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-glk10/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-rkl: [PASS][288] -> [SKIP][289] ([i915#15073]) +1 other test skip
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8685/shard-rkl-6/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-8/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@kms_pm_rpm@fences:
- shard-dg1: NOTRUN -> [SKIP][290] ([i915#4077]) +7 other tests skip
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-dg1-19/igt@kms_pm_rpm@fences.html
* igt@kms_pm_rpm@modeset-lpsp:
- shard-dg2: NOTRUN -> [SKIP][291] ([i915#15073])
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-dg2-3/igt@kms_pm_rpm@modeset-lpsp.html
- shard-dg1: NOTRUN -> [SKIP][292] ([i915#15073])
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-dg1-18/igt@kms_pm_rpm@modeset-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-dg1: [PASS][293] -> [SKIP][294] ([i915#15073])
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8685/shard-dg1-17/igt@kms_pm_rpm@modeset-non-lpsp.html
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-dg1-14/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_pm_rpm@system-suspend-modeset:
- shard-rkl: NOTRUN -> [INCOMPLETE][295] ([i915#14419])
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-6/igt@kms_pm_rpm@system-suspend-modeset.html
* igt@kms_prime@basic-modeset-hybrid:
- shard-rkl: NOTRUN -> [SKIP][296] ([i915#6524])
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-5/igt@kms_prime@basic-modeset-hybrid.html
* igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf:
- shard-tglu: NOTRUN -> [SKIP][297] ([i915#11520]) +5 other tests skip
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-tglu-9/igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf:
- shard-glk: NOTRUN -> [SKIP][298] ([i915#11520]) +4 other tests skip
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-glk5/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-sf:
- shard-mtlp: NOTRUN -> [SKIP][299] ([i915#12316])
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-mtlp-8/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-sf.html
- shard-snb: NOTRUN -> [SKIP][300] ([i915#11520]) +1 other test skip
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-snb4/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-sf.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area:
- shard-rkl: NOTRUN -> [SKIP][301] ([i915#11520]) +8 other tests skip
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-8/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@pr-plane-move-sf-dmg-area:
- shard-tglu-1: NOTRUN -> [SKIP][302] ([i915#11520])
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-tglu-1/igt@kms_psr2_sf@pr-plane-move-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf:
- shard-dg2: NOTRUN -> [SKIP][303] ([i915#11520]) +4 other tests skip
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-dg2-7/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf:
- shard-dg1: NOTRUN -> [SKIP][304] ([i915#11520]) +4 other tests skip
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-dg1-14/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html
* igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf:
- shard-glk10: NOTRUN -> [SKIP][305] ([i915#11520]) +5 other tests skip
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-glk10/igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html
* igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area:
- shard-rkl: NOTRUN -> [SKIP][306] ([i915#11520] / [i915#14544])
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-6/igt@kms_psr2_sf@psr2-plane-move-sf-dmg-area.html
* igt@kms_psr2_su@page_flip-nv12:
- shard-rkl: NOTRUN -> [SKIP][307] ([i915#14544] / [i915#9683])
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-6/igt@kms_psr2_su@page_flip-nv12.html
* igt@kms_psr@fbc-pr-sprite-plane-onoff:
- shard-rkl: NOTRUN -> [SKIP][308] ([i915#1072] / [i915#9732]) +27 other tests skip
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-3/igt@kms_psr@fbc-pr-sprite-plane-onoff.html
* igt@kms_psr@fbc-psr-basic:
- shard-dg2: NOTRUN -> [SKIP][309] ([i915#1072] / [i915#9732]) +11 other tests skip
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-dg2-4/igt@kms_psr@fbc-psr-basic.html
* igt@kms_psr@fbc-psr2-cursor-blt:
- shard-dg1: NOTRUN -> [SKIP][310] ([i915#1072] / [i915#9732]) +14 other tests skip
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-dg1-16/igt@kms_psr@fbc-psr2-cursor-blt.html
* igt@kms_psr@fbc-psr2-sprite-plane-onoff:
- shard-mtlp: NOTRUN -> [SKIP][311] ([i915#9688]) +7 other tests skip
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-mtlp-6/igt@kms_psr@fbc-psr2-sprite-plane-onoff.html
* igt@kms_psr@psr-cursor-plane-onoff:
- shard-tglu-1: NOTRUN -> [SKIP][312] ([i915#9732]) +7 other tests skip
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-tglu-1/igt@kms_psr@psr-cursor-plane-onoff.html
* igt@kms_psr@psr-primary-render:
- shard-tglu: NOTRUN -> [SKIP][313] ([i915#9732]) +14 other tests skip
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-tglu-5/igt@kms_psr@psr-primary-render.html
* igt@kms_psr@psr-sprite-plane-onoff:
- shard-rkl: NOTRUN -> [SKIP][314] ([i915#1072] / [i915#14544] / [i915#9732]) +3 other tests skip
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-6/igt@kms_psr@psr-sprite-plane-onoff.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-tglu: NOTRUN -> [SKIP][315] ([i915#9685]) +1 other test skip
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-tglu-4/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_rotation_crc@multiplane-rotation-cropping-bottom:
- shard-glk10: NOTRUN -> [INCOMPLETE][316] ([i915#15500])
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-glk10/igt@kms_rotation_crc@multiplane-rotation-cropping-bottom.html
* igt@kms_rotation_crc@primary-y-tiled-reflect-x-0:
- shard-dg2: NOTRUN -> [SKIP][317] ([i915#5190]) +2 other tests skip
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-dg2-8/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-rkl: NOTRUN -> [SKIP][318] ([i915#5289])
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
- shard-dg1: NOTRUN -> [SKIP][319] ([i915#5289])
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-dg1-18/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
- shard-tglu: NOTRUN -> [SKIP][320] ([i915#5289]) +2 other tests skip
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-tglu-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
- shard-mtlp: NOTRUN -> [SKIP][321] ([i915#5289])
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-mtlp-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_selftest@drm_framebuffer:
- shard-tglu: NOTRUN -> [ABORT][322] ([i915#13179]) +1 other test abort
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-tglu-4/igt@kms_selftest@drm_framebuffer.html
* igt@kms_vrr@flip-basic:
- shard-rkl: NOTRUN -> [SKIP][323] ([i915#15243] / [i915#3555])
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-5/igt@kms_vrr@flip-basic.html
* igt@kms_vrr@flip-basic-fastset:
- shard-dg2: NOTRUN -> [SKIP][324] ([i915#9906]) +1 other test skip
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-dg2-5/igt@kms_vrr@flip-basic-fastset.html
* igt@kms_vrr@flip-suspend:
- shard-tglu-1: NOTRUN -> [SKIP][325] ([i915#3555])
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-tglu-1/igt@kms_vrr@flip-suspend.html
* igt@kms_vrr@lobf:
- shard-tglu: NOTRUN -> [SKIP][326] ([i915#11920])
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-tglu-4/igt@kms_vrr@lobf.html
* igt@kms_vrr@max-min:
- shard-dg1: NOTRUN -> [SKIP][327] ([i915#9906]) +1 other test skip
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-dg1-16/igt@kms_vrr@max-min.html
- shard-tglu: NOTRUN -> [SKIP][328] ([i915#9906])
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-tglu-8/igt@kms_vrr@max-min.html
- shard-mtlp: NOTRUN -> [SKIP][329] ([i915#8808] / [i915#9906])
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-mtlp-7/igt@kms_vrr@max-min.html
* igt@kms_vrr@seamless-rr-switch-virtual:
- shard-rkl: NOTRUN -> [SKIP][330] ([i915#9906]) +1 other test skip
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-2/igt@kms_vrr@seamless-rr-switch-virtual.html
* igt@perf@gen8-unprivileged-single-ctx-counters:
- shard-rkl: NOTRUN -> [SKIP][331] ([i915#2436])
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-5/igt@perf@gen8-unprivileged-single-ctx-counters.html
* igt@perf@mi-rpc:
- shard-rkl: NOTRUN -> [SKIP][332] ([i915#2434])
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-4/igt@perf@mi-rpc.html
* igt@perf_pmu@module-unload:
- shard-glk: NOTRUN -> [FAIL][333] ([i915#14433])
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-glk1/igt@perf_pmu@module-unload.html
* igt@prime_vgem@basic-fence-flip:
- shard-dg1: NOTRUN -> [SKIP][334] ([i915#3708]) +1 other test skip
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-dg1-19/igt@prime_vgem@basic-fence-flip.html
* igt@prime_vgem@basic-read:
- shard-rkl: NOTRUN -> [SKIP][335] ([i915#3291] / [i915#3708])
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-8/igt@prime_vgem@basic-read.html
* igt@prime_vgem@basic-write:
- shard-rkl: NOTRUN -> [SKIP][336] ([i915#14544] / [i915#3291] / [i915#3708])
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-6/igt@prime_vgem@basic-write.html
* igt@prime_vgem@fence-read-hang:
- shard-dg2: NOTRUN -> [SKIP][337] ([i915#3708]) +1 other test skip
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-dg2-3/igt@prime_vgem@fence-read-hang.html
* igt@sriov_basic@bind-unbind-vf:
- shard-rkl: NOTRUN -> [SKIP][338] ([i915#9917]) +1 other test skip
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-3/igt@sriov_basic@bind-unbind-vf.html
#### Possible fixes ####
* igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0:
- shard-dg2: [INCOMPLETE][339] ([i915#13356]) -> [PASS][340]
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8685/shard-dg2-1/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-dg2-7/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html
* igt@gem_ctx_isolation@preservation-s3:
- shard-rkl: [INCOMPLETE][341] ([i915#13356]) -> [PASS][342] +1 other test pass
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8685/shard-rkl-6/igt@gem_ctx_isolation@preservation-s3.html
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-2/igt@gem_ctx_isolation@preservation-s3.html
* igt@gem_softpin@noreloc-s3:
- shard-rkl: [INCOMPLETE][343] ([i915#13809]) -> [PASS][344]
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8685/shard-rkl-3/igt@gem_softpin@noreloc-s3.html
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-7/igt@gem_softpin@noreloc-s3.html
* igt@kms_color@deep-color:
- shard-dg2: [SKIP][345] ([i915#12655] / [i915#3555]) -> [PASS][346]
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8685/shard-dg2-5/igt@kms_color@deep-color.html
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-dg2-11/igt@kms_color@deep-color.html
* igt@kms_cursor_crc@cursor-onscreen-64x21:
- shard-rkl: [FAIL][347] ([i915#13566]) -> [PASS][348] +1 other test pass
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8685/shard-rkl-7/igt@kms_cursor_crc@cursor-onscreen-64x21.html
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-8/igt@kms_cursor_crc@cursor-onscreen-64x21.html
* igt@kms_cursor_crc@cursor-random-128x42:
- shard-tglu: [FAIL][349] ([i915#13566]) -> [PASS][350] +3 other tests pass
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8685/shard-tglu-7/igt@kms_cursor_crc@cursor-random-128x42.html
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-tglu-7/igt@kms_cursor_crc@cursor-random-128x42.html
* igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-2:
- shard-rkl: [INCOMPLETE][351] ([i915#12358] / [i915#14152]) -> [PASS][352] +1 other test pass
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8685/shard-rkl-6/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-2.html
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-3/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-2.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-dg2: [FAIL][353] ([i915#4767]) -> [PASS][354]
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8685/shard-dg2-7/igt@kms_fbcon_fbt@fbc-suspend.html
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-dg2-8/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_hdr@static-toggle:
- shard-dg2: [SKIP][355] ([i915#3555] / [i915#8228]) -> [PASS][356]
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8685/shard-dg2-7/igt@kms_hdr@static-toggle.html
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-dg2-11/igt@kms_hdr@static-toggle.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-dg2: [SKIP][357] ([i915#6953] / [i915#9423]) -> [PASS][358]
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8685/shard-dg2-4/igt@kms_plane_scaling@intel-max-src-size.html
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-dg2-11/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-rkl: [SKIP][359] ([i915#14544] / [i915#15073]) -> [PASS][360] +1 other test pass
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8685/shard-rkl-6/igt@kms_pm_rpm@dpms-lpsp.html
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-5/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_pm_rpm@dpms-non-lpsp:
- shard-dg1: [SKIP][361] ([i915#15073]) -> [PASS][362]
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8685/shard-dg1-14/igt@kms_pm_rpm@dpms-non-lpsp.html
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-dg1-12/igt@kms_pm_rpm@dpms-non-lpsp.html
* igt@kms_pm_rpm@i2c:
- shard-dg1: [DMESG-WARN][363] ([i915#4423]) -> [PASS][364] +1 other test pass
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8685/shard-dg1-17/igt@kms_pm_rpm@i2c.html
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-dg1-16/igt@kms_pm_rpm@i2c.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-dg2: [SKIP][365] ([i915#15073]) -> [PASS][366] +1 other test pass
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8685/shard-dg2-4/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-dg2-6/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
* igt@kms_vblank@ts-continuation-dpms-suspend:
- shard-rkl: [INCOMPLETE][367] ([i915#12276]) -> [PASS][368]
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8685/shard-rkl-6/igt@kms_vblank@ts-continuation-dpms-suspend.html
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-2/igt@kms_vblank@ts-continuation-dpms-suspend.html
- shard-snb: [ABORT][369] ([i915#14871]) -> [PASS][370] +1 other test pass
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8685/shard-snb5/igt@kms_vblank@ts-continuation-dpms-suspend.html
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-snb4/igt@kms_vblank@ts-continuation-dpms-suspend.html
#### Warnings ####
* igt@gem_basic@multigpu-create-close:
- shard-rkl: [SKIP][371] ([i915#7697]) -> [SKIP][372] ([i915#14544] / [i915#7697])
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8685/shard-rkl-3/igt@gem_basic@multigpu-create-close.html
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-6/igt@gem_basic@multigpu-create-close.html
* igt@gem_ccs@ctrl-surf-copy:
- shard-rkl: [SKIP][373] ([i915#3555] / [i915#9323]) -> [SKIP][374] ([i915#14544] / [i915#3555] / [i915#9323])
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8685/shard-rkl-2/igt@gem_ccs@ctrl-surf-copy.html
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-6/igt@gem_ccs@ctrl-surf-copy.html
* igt@gem_create@create-ext-set-pat:
- shard-rkl: [SKIP][375] ([i915#14544] / [i915#8562]) -> [SKIP][376] ([i915#8562])
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8685/shard-rkl-6/igt@gem_create@create-ext-set-pat.html
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-5/igt@gem_create@create-ext-set-pat.html
* igt@gem_exec_balancer@parallel-bb-first:
- shard-rkl: [SKIP][377] ([i915#4525]) -> [SKIP][378] ([i915#14544] / [i915#4525])
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8685/shard-rkl-7/igt@gem_exec_balancer@parallel-bb-first.html
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-6/igt@gem_exec_balancer@parallel-bb-first.html
* igt@gem_exec_balancer@parallel-keep-submit-fence:
- shard-rkl: [SKIP][379] ([i915#14544] / [i915#4525]) -> [SKIP][380] ([i915#4525]) +1 other test skip
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8685/shard-rkl-6/igt@gem_exec_balancer@parallel-keep-submit-fence.html
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-4/igt@gem_exec_balancer@parallel-keep-submit-fence.html
* igt@gem_exec_capture@capture-invisible:
- shard-rkl: [SKIP][381] ([i915#6334]) -> [SKIP][382] ([i915#14544] / [i915#6334]) +1 other test skip
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8685/shard-rkl-5/igt@gem_exec_capture@capture-invisible.html
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-6/igt@gem_exec_capture@capture-invisible.html
* igt@gem_exec_reloc@basic-gtt-cpu-active:
- shard-rkl: [SKIP][383] ([i915#14544] / [i915#3281]) -> [SKIP][384] ([i915#3281]) +4 other tests skip
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8685/shard-rkl-6/igt@gem_exec_reloc@basic-gtt-cpu-active.html
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-7/igt@gem_exec_reloc@basic-gtt-cpu-active.html
* igt@gem_exec_reloc@basic-gtt-read-noreloc:
- shard-rkl: [SKIP][385] ([i915#3281]) -> [SKIP][386] ([i915#14544] / [i915#3281]) +1 other test skip
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8685/shard-rkl-7/igt@gem_exec_reloc@basic-gtt-read-noreloc.html
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-6/igt@gem_exec_reloc@basic-gtt-read-noreloc.html
* igt@gem_huc_copy@huc-copy:
- shard-rkl: [SKIP][387] ([i915#2190]) -> [SKIP][388] ([i915#14544] / [i915#2190])
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8685/shard-rkl-5/igt@gem_huc_copy@huc-copy.html
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-6/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@basic:
- shard-rkl: [SKIP][389] ([i915#14544] / [i915#4613]) -> [SKIP][390] ([i915#4613]) +1 other test skip
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8685/shard-rkl-6/igt@gem_lmem_swapping@basic.html
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-7/igt@gem_lmem_swapping@basic.html
* igt@gem_lmem_swapping@parallel-random:
- shard-rkl: [SKIP][391] ([i915#4613]) -> [SKIP][392] ([i915#14544] / [i915#4613])
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8685/shard-rkl-8/igt@gem_lmem_swapping@parallel-random.html
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-6/igt@gem_lmem_swapping@parallel-random.html
* igt@gem_partial_pwrite_pread@write:
- shard-rkl: [SKIP][393] ([i915#3282]) -> [SKIP][394] ([i915#14544] / [i915#3282])
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8685/shard-rkl-5/igt@gem_partial_pwrite_pread@write.html
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-6/igt@gem_partial_pwrite_pread@write.html
* igt@gem_readwrite@new-obj:
- shard-rkl: [SKIP][395] ([i915#14544] / [i915#3282]) -> [SKIP][396] ([i915#3282])
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8685/shard-rkl-6/igt@gem_readwrite@new-obj.html
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-4/igt@gem_readwrite@new-obj.html
* igt@gem_userptr_blits@coherency-sync:
- shard-rkl: [SKIP][397] ([i915#3297]) -> [SKIP][398] ([i915#14544] / [i915#3297])
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8685/shard-rkl-5/igt@gem_userptr_blits@coherency-sync.html
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-6/igt@gem_userptr_blits@coherency-sync.html
* igt@gen9_exec_parse@bb-large:
- shard-rkl: [SKIP][399] ([i915#2527]) -> [SKIP][400] ([i915#14544] / [i915#2527])
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8685/shard-rkl-5/igt@gen9_exec_parse@bb-large.html
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-6/igt@gen9_exec_parse@bb-large.html
* igt@i915_pm_sseu@full-enable:
- shard-rkl: [SKIP][401] ([i915#4387]) -> [SKIP][402] ([i915#14544] / [i915#4387])
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8685/shard-rkl-3/igt@i915_pm_sseu@full-enable.html
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-6/igt@i915_pm_sseu@full-enable.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-0:
- shard-rkl: [SKIP][403] ([i915#5286]) -> [SKIP][404] ([i915#14544] / [i915#5286]) +2 other tests skip
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8685/shard-rkl-8/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-6/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html
* igt@kms_big_fb@4-tiled-addfb:
- shard-rkl: [SKIP][405] ([i915#14544] / [i915#5286]) -> [SKIP][406] ([i915#5286]) +2 other tests skip
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8685/shard-rkl-6/igt@kms_big_fb@4-tiled-addfb.html
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-8/igt@kms_big_fb@4-tiled-addfb.html
* igt@kms_big_fb@y-tiled-64bpp-rotate-270:
- shard-rkl: [SKIP][407] ([i915#3638]) -> [SKIP][408] ([i915#14544] / [i915#3638]) +3 other tests skip
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8685/shard-rkl-7/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-6/igt@kms_big_fb@y-tiled-64bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-90:
- shard-rkl: [SKIP][409] ([i915#14544] / [i915#3638]) -> [SKIP][410] ([i915#3638]) +1 other test skip
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8685/shard-rkl-6/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-2/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html
* igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-2:
- shard-rkl: [SKIP][411] ([i915#14544] / [i915#6095]) -> [SKIP][412] ([i915#6095]) +6 other tests skip
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8685/shard-rkl-6/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-2.html
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-3/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-2.html
* igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs:
- shard-dg1: [SKIP][413] ([i915#4423] / [i915#6095]) -> [SKIP][414] ([i915#6095])
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8685/shard-dg1-13/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs.html
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-dg1-16/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-rkl: [SKIP][415] ([i915#12805] / [i915#14544]) -> [SKIP][416] ([i915#12805])
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8685/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-7/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs:
- shard-rkl: [SKIP][417] ([i915#14098] / [i915#14544] / [i915#6095]) -> [SKIP][418] ([i915#14098] / [i915#6095]) +8 other tests skip
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8685/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-3/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs:
- shard-rkl: [SKIP][419] ([i915#14098] / [i915#6095]) -> [SKIP][420] ([i915#14098] / [i915#14544] / [i915#6095]) +16 other tests skip
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8685/shard-rkl-2/igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs.html
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs.html
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: [SKIP][421] ([i915#6095]) -> [SKIP][422] ([i915#14544] / [i915#6095]) +11 other tests skip
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8685/shard-rkl-7/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-6/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_cdclk@mode-transition:
- shard-rkl: [SKIP][423] ([i915#3742]) -> [SKIP][424] ([i915#14544] / [i915#3742])
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8685/shard-rkl-2/igt@kms_cdclk@mode-transition.html
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-6/igt@kms_cdclk@mode-transition.html
* igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k:
- shard-rkl: [SKIP][425] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][426] ([i915#11151] / [i915#7828]) +2 other tests skip
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8685/shard-rkl-6/igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k.html
[426]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-7/igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k.html
* igt@kms_chamelium_edid@hdmi-edid-read:
- shard-rkl: [SKIP][427] ([i915#11151] / [i915#7828]) -> [SKIP][428] ([i915#11151] / [i915#14544] / [i915#7828]) +5 other tests skip
[427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8685/shard-rkl-3/igt@kms_chamelium_edid@hdmi-edid-read.html
[428]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-6/igt@kms_chamelium_edid@hdmi-edid-read.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-rkl: [SKIP][429] ([i915#3116]) -> [SKIP][430] ([i915#14544] / [i915#3116]) +1 other test skip
[429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8685/shard-rkl-8/igt@kms_content_protection@dp-mst-type-1.html
[430]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-6/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@legacy:
- shard-dg2: [SKIP][431] ([i915#6944] / [i915#7118] / [i915#9424]) -> [FAIL][432] ([i915#7173])
[431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8685/shard-dg2-6/igt@kms_content_protection@legacy.html
[432]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-dg2-11/igt@kms_content_protection@legacy.html
- shard-rkl: [SKIP][433] ([i915#6944] / [i915#7118] / [i915#9424]) -> [SKIP][434] ([i915#14544] / [i915#6944] / [i915#7118] / [i915#9424])
[433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8685/shard-rkl-3/igt@kms_content_protection@legacy.html
[434]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-6/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@type1:
- shard-dg2: [SKIP][435] ([i915#6944] / [i915#7118] / [i915#7162] / [i915#9424]) -> [SKIP][436] ([i915#6944] / [i915#7118] / [i915#9424])
[435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8685/shard-dg2-11/igt@kms_content_protection@type1.html
[436]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-dg2-4/igt@kms_content_protection@type1.html
* igt@kms_cursor_crc@cursor-onscreen-32x32:
- shard-rkl: [SKIP][437] ([i915#3555]) -> [SKIP][438] ([i915#14544] / [i915#3555]) +2 other tests skip
[437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8685/shard-rkl-3/igt@kms_cursor_crc@cursor-onscreen-32x32.html
[438]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-32x32.html
* igt@kms_cursor_crc@cursor-random-32x32:
- shard-rkl: [SKIP][439] ([i915#14544] / [i915#3555]) -> [SKIP][440] ([i915#3555])
[439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8685/shard-rkl-6/igt@kms_cursor_crc@cursor-random-32x32.html
[440]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-7/igt@kms_cursor_crc@cursor-random-32x32.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-rkl: [SKIP][441] ([i915#13049]) -> [SKIP][442] ([i915#13049] / [i915#14544]) +3 other tests skip
[441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8685/shard-rkl-3/igt@kms_cursor_crc@cursor-random-512x170.html
[442]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-6/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-rkl: [SKIP][443] ([i915#14544] / [i915#4103]) -> [SKIP][444] ([i915#4103])
[443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8685/shard-rkl-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
[444]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-7/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_dp_link_training@non-uhbr-mst:
- shard-rkl: [SKIP][445] ([i915#13749] / [i915#14544]) -> [SKIP][446] ([i915#13749])
[445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8685/shard-rkl-6/igt@kms_dp_link_training@non-uhbr-mst.html
[446]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-5/igt@kms_dp_link_training@non-uhbr-mst.html
* igt@kms_dp_linktrain_fallback@dp-fallback:
- shard-rkl: [SKIP][447] ([i915#13707]) -> [SKIP][448] ([i915#13707] / [i915#14544])
[447]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8685/shard-rkl-2/igt@kms_dp_linktrain_fallback@dp-fallback.html
[448]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-6/igt@kms_dp_linktrain_fallback@dp-fallback.html
* igt@kms_dsc@dsc-fractional-bpp:
- shard-rkl: [SKIP][449] ([i915#3840]) -> [SKIP][450] ([i915#14544] / [i915#3840])
[449]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8685/shard-rkl-7/igt@kms_dsc@dsc-fractional-bpp.html
[450]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-6/igt@kms_dsc@dsc-fractional-bpp.html
* igt@kms_fbcon_fbt@psr:
- shard-rkl: [SKIP][451] ([i915#3955]) -> [SKIP][452] ([i915#14544] / [i915#3955])
[451]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8685/shard-rkl-8/igt@kms_fbcon_fbt@psr.html
[452]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-6/igt@kms_fbcon_fbt@psr.html
* igt@kms_feature_discovery@dp-mst:
- shard-rkl: [SKIP][453] ([i915#9337]) -> [SKIP][454] ([i915#14544] / [i915#9337])
[453]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8685/shard-rkl-3/igt@kms_feature_discovery@dp-mst.html
[454]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-6/igt@kms_feature_discovery@dp-mst.html
* igt@kms_feature_discovery@psr1:
- shard-rkl: [SKIP][455] ([i915#658]) -> [SKIP][456] ([i915#14544] / [i915#658])
[455]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8685/shard-rkl-5/igt@kms_feature_discovery@psr1.html
[456]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-6/igt@kms_feature_discovery@psr1.html
* igt@kms_flip@2x-flip-vs-blocking-wf-vblank:
- shard-rkl: [SKIP][457] ([i915#14544] / [i915#9934]) -> [SKIP][458] ([i915#9934]) +4 other tests skip
[457]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8685/shard-rkl-6/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html
[458]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-4/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html
* igt@kms_flip@2x-wf_vblank-ts-check-interruptible:
- shard-rkl: [SKIP][459] ([i915#9934]) -> [SKIP][460] ([i915#14544] / [i915#9934]) +5 other tests skip
[459]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8685/shard-rkl-7/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html
[460]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-6/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode:
- shard-rkl: [SKIP][461] ([i915#2672]) -> [SKIP][462] ([i915#14544] / [i915#2672]) +1 other test skip
[461]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8685/shard-rkl-8/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html
[462]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling:
- shard-rkl: [SKIP][463] ([i915#2672] / [i915#3555]) -> [SKIP][464] ([i915#14544] / [i915#2672] / [i915#3555]) +1 other test skip
[463]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8685/shard-rkl-7/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html
[464]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling:
- shard-rkl: [SKIP][465] ([i915#14544] / [i915#2672] / [i915#3555]) -> [SKIP][466] ([i915#2672] / [i915#3555])
[465]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8685/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html
[466]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-7/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode:
- shard-rkl: [SKIP][467] ([i915#14544] / [i915#2672]) -> [SKIP][468] ([i915#2672])
[467]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8685/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html
[468]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-7/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc:
- shard-rkl: [SKIP][469] ([i915#1825]) -> [SKIP][470] ([i915#14544] / [i915#1825]) +21 other tests skip
[469]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8685/shard-rkl-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html
[470]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-render:
- shard-rkl: [SKIP][471] ([i915#15102]) -> [SKIP][472] ([i915#14544] / [i915#15102]) +1 other test skip
[471]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8685/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-render.html
[472]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move:
- shard-rkl: [SKIP][473] ([i915#14544] / [i915#15102] / [i915#3023]) -> [SKIP][474] ([i915#15102] / [i915#3023]) +7 other tests skip
[473]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8685/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move.html
[474]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt:
- shard-rkl: [SKIP][475] ([i915#14544] / [i915#1825]) -> [SKIP][476] ([i915#1825]) +14 other tests skip
[475]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8685/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html
[476]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-pwrite:
- shard-rkl: [SKIP][477] ([i915#15102] / [i915#3023]) -> [SKIP][478] ([i915#14544] / [i915#15102] / [i915#3023]) +6 other tests skip
[477]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8685/shard-rkl-8/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-pwrite.html
[478]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-wc:
- shard-rkl: [SKIP][479] ([i915#14544] / [i915#15102]) -> [SKIP][480] ([i915#15102]) +2 other tests skip
[479]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8685/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-wc.html
[480]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-8/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move:
- shard-dg2: [SKIP][481] ([i915#15102] / [i915#3458]) -> [SKIP][482] ([i915#10433] / [i915#15102] / [i915#3458]) +2 other tests skip
[481]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8685/shard-dg2-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html
[482]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary:
- shard-dg2: [SKIP][483] ([i915#10433] / [i915#15102] / [i915#3458]) -> [SKIP][484] ([i915#15102] / [i915#3458])
[483]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8685/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html
[484]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-dg2-5/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html
* igt@kms_hdr@brightness-with-hdr:
- shard-rkl: [SKIP][485] ([i915#1187] / [i915#12713]) -> [SKIP][486] ([i915#13331] / [i915#14544])
[485]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8685/shard-rkl-3/igt@kms_hdr@brightness-with-hdr.html
[486]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-6/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_joiner@invalid-modeset-force-big-joiner:
- shard-rkl: [SKIP][487] ([i915#15459]) -> [SKIP][488] ([i915#14544] / [i915#15459])
[487]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8685/shard-rkl-7/igt@kms_joiner@invalid-modeset-force-big-joiner.html
[488]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-6/igt@kms_joiner@invalid-modeset-force-big-joiner.html
* igt@kms_joiner@invalid-modeset-force-ultra-joiner:
- shard-rkl: [SKIP][489] ([i915#14544] / [i915#15458]) -> [SKIP][490] ([i915#15458])
[489]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8685/shard-rkl-6/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
[490]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-5/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html
* igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner:
- shard-rkl: [SKIP][491] ([i915#13522]) -> [SKIP][492] ([i915#13522] / [i915#14544])
[491]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8685/shard-rkl-5/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
[492]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-6/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html
* igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes:
- shard-rkl: [SKIP][493] -> [SKIP][494] ([i915#14544]) +6 other tests skip
[493]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8685/shard-rkl-8/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html
[494]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-6/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html
* igt@kms_pipe_stress@stress-xrgb8888-4tiled:
- shard-rkl: [SKIP][495] ([i915#14712]) -> [SKIP][496] ([i915#14544] / [i915#14712])
[495]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8685/shard-rkl-4/igt@kms_pipe_stress@stress-xrgb8888-4tiled.html
[496]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-6/igt@kms_pipe_stress@stress-xrgb8888-4tiled.html
* igt@kms_plane_multiple@2x-tiling-4:
- shard-rkl: [SKIP][497] ([i915#13958] / [i915#14544]) -> [SKIP][498] ([i915#13958])
[497]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8685/shard-rkl-6/igt@kms_plane_multiple@2x-tiling-4.html
[498]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-5/igt@kms_plane_multiple@2x-tiling-4.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a:
- shard-rkl: [SKIP][499] ([i915#15329]) -> [SKIP][500] ([i915#14544] / [i915#15329]) +3 other tests skip
[499]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8685/shard-rkl-3/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a.html
[500]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-6/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation:
- shard-rkl: [SKIP][501] ([i915#14544] / [i915#15329] / [i915#3555]) -> [SKIP][502] ([i915#15329] / [i915#3555])
[501]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8685/shard-rkl-6/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html
[502]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-2/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b:
- shard-rkl: [SKIP][503] ([i915#14544] / [i915#15329]) -> [SKIP][504] ([i915#15329]) +6 other tests skip
[503]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8685/shard-rkl-6/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b.html
[504]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-2/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b.html
* igt@kms_pm_backlight@fade-with-dpms:
- shard-rkl: [SKIP][505] ([i915#5354]) -> [SKIP][506] ([i915#14544] / [i915#5354])
[505]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8685/shard-rkl-4/igt@kms_pm_backlight@fade-with-dpms.html
[506]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-6/igt@kms_pm_backlight@fade-with-dpms.html
* igt@kms_pm_backlight@fade-with-suspend:
- shard-rkl: [SKIP][507] ([i915#14544] / [i915#5354]) -> [SKIP][508] ([i915#5354])
[507]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8685/shard-rkl-6/igt@kms_pm_backlight@fade-with-suspend.html
[508]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-8/igt@kms_pm_backlight@fade-with-suspend.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-rkl: [SKIP][509] ([i915#9340]) -> [SKIP][510] ([i915#14544] / [i915#9340])
[509]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8685/shard-rkl-3/igt@kms_pm_lpsp@kms-lpsp.html
[510]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-6/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area:
- shard-dg1: [SKIP][511] ([i915#11520] / [i915#4423]) -> [SKIP][512] ([i915#11520])
[511]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8685/shard-dg1-17/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html
[512]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-dg1-14/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf:
- shard-rkl: [SKIP][513] ([i915#11520]) -> [SKIP][514] ([i915#11520] / [i915#14544]) +6 other tests skip
[513]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8685/shard-rkl-2/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf.html
[514]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-6/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf.html
* igt@kms_psr2_sf@pr-plane-move-sf-dmg-area:
- shard-rkl: [SKIP][515] ([i915#11520] / [i915#14544]) -> [SKIP][516] ([i915#11520]) +1 other test skip
[515]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8685/shard-rkl-6/igt@kms_psr2_sf@pr-plane-move-sf-dmg-area.html
[516]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-4/igt@kms_psr2_sf@pr-plane-move-sf-dmg-area.html
* igt@kms_psr@fbc-psr2-sprite-render:
- shard-rkl: [SKIP][517] ([i915#1072] / [i915#9732]) -> [SKIP][518] ([i915#1072] / [i915#14544] / [i915#9732]) +12 other tests skip
[517]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8685/shard-rkl-8/igt@kms_psr@fbc-psr2-sprite-render.html
[518]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-6/igt@kms_psr@fbc-psr2-sprite-render.html
* igt@kms_psr@psr2-cursor-plane-move:
- shard-rkl: [SKIP][519] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][520] ([i915#1072] / [i915#9732]) +7 other tests skip
[519]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8685/shard-rkl-6/igt@kms_psr@psr2-cursor-plane-move.html
[520]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-3/igt@kms_psr@psr2-cursor-plane-move.html
* igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
- shard-rkl: [SKIP][521] ([i915#14544] / [i915#9685]) -> [SKIP][522] ([i915#9685])
[521]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8685/shard-rkl-6/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
[522]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-4/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-180:
- shard-rkl: [SKIP][523] ([i915#5289]) -> [SKIP][524] ([i915#14544] / [i915#5289])
[523]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8685/shard-rkl-5/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html
[524]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-6/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html
* igt@kms_vrr@flip-suspend:
- shard-rkl: [SKIP][525] ([i915#14544] / [i915#15243] / [i915#3555]) -> [SKIP][526] ([i915#15243] / [i915#3555])
[525]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8685/shard-rkl-6/igt@kms_vrr@flip-suspend.html
[526]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-2/igt@kms_vrr@flip-suspend.html
* igt@kms_vrr@flipline:
- shard-rkl: [SKIP][527] ([i915#15243] / [i915#3555]) -> [SKIP][528] ([i915#14544] / [i915#15243] / [i915#3555])
[527]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8685/shard-rkl-3/igt@kms_vrr@flipline.html
[528]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-6/igt@kms_vrr@flipline.html
* igt@perf@per-context-mode-unprivileged:
- shard-rkl: [SKIP][529] ([i915#2435]) -> [SKIP][530] ([i915#14544] / [i915#2435])
[529]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8685/shard-rkl-8/igt@perf@per-context-mode-unprivileged.html
[530]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-6/igt@perf@per-context-mode-unprivileged.html
* igt@prime_vgem@coherency-gtt:
- shard-rkl: [SKIP][531] ([i915#3708]) -> [SKIP][532] ([i915#14544] / [i915#3708])
[531]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8685/shard-rkl-7/igt@prime_vgem@coherency-gtt.html
[532]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-6/igt@prime_vgem@coherency-gtt.html
* igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all:
- shard-rkl: [SKIP][533] ([i915#9917]) -> [SKIP][534] ([i915#14544] / [i915#9917]) +1 other test skip
[533]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8685/shard-rkl-8/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
[534]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-6/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html
* igt@tools_test@sysfs_l3_parity:
- shard-rkl: [SKIP][535] ([i915#14544]) -> [SKIP][536] +7 other tests skip
[535]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8685/shard-rkl-6/igt@tools_test@sysfs_l3_parity.html
[536]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/shard-rkl-5/igt@tools_test@sysfs_l3_parity.html
[i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
[i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433
[i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[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#11713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11713
[i915#1187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1187
[i915#11920]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#12178]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12178
[i915#12276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12276
[i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313
[i915#12314]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12314
[i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316
[i915#12343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12343
[i915#12358]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12358
[i915#12392]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12392
[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#12761]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12761
[i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805
[i915#13008]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13008
[i915#13029]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13029
[i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046
[i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049
[i915#13179]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13179
[i915#13331]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13331
[i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356
[i915#13522]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13522
[i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566
[i915#13688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13688
[i915#13707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707
[i915#13748]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748
[i915#13749]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749
[i915#13781]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13781
[i915#13783]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13783
[i915#13784]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13784
[i915#13809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13809
[i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958
[i915#14033]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14033
[i915#14073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14073
[i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098
[i915#14123]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14123
[i915#14152]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14152
[i915#14259]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259
[i915#14350]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14350
[i915#14419]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14419
[i915#14433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14433
[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#14712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14712
[i915#14871]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14871
[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#15104]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15104
[i915#15131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15131
[i915#15243]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15243
[i915#15329]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15329
[i915#15342]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15342
[i915#15351]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15351
[i915#15458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15458
[i915#15459]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15459
[i915#15460]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15460
[i915#15481]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15481
[i915#15500]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15500
[i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769
[i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839
[i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190
[i915#2434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2434
[i915#2435]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2435
[i915#2436]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2436
[i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
[i915#2587]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587
[i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658
[i915#2672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672
[i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280
[i915#284]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/284
[i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023
[i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116
[i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
[i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291
[i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297
[i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458
[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#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[i915#3955]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3955
[i915#4036]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4036
[i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083
[i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213
[i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
[i915#4281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4281
[i915#4387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4387
[i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423
[i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525
[i915#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537
[i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538
[i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613
[i915#4767]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4767
[i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812
[i915#4816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4816
[i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817
[i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839
[i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852
[i915#4854]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4854
[i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860
[i915#4880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4880
[i915#4885]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4885
[i915#5107]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5107
[i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
[i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286
[i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#5723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5723
[i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
[i915#6113]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6113
[i915#6245]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6245
[i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301
[i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334
[i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335
[i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524
[i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658
[i915#6590]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6590
[i915#6645]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6645
[i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944
[i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953
[i915#7116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116
[i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118
[i915#7162]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7162
[i915#7173]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173
[i915#7443]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7443
[i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697
[i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707
[i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828
[i915#7862]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7862
[i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
[i915#8289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8289
[i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399
[i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411
[i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428
[i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555
[i915#8562]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8562
[i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
[i915#8808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808
[i915#8813]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813
[i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814
[i915#8821]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8821
[i915#9053]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9053
[i915#9067]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067
[i915#9295]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9295
[i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323
[i915#9337]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9337
[i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340
[i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423
[i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424
[i915#9531]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9531
[i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683
[i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685
[i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688
[i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732
[i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809
[i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812
[i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906
[i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917
[i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8685 -> IGTPW_14296
CI-20190529: 20190529
CI_DRM_17770: b3845fe8af5ec5c1d4b26e40ac6b4c7370e5fa35 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_14296: 14296
IGT_8685: 8685
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14296/index.html
[-- Attachment #2: Type: text/html, Size: 186210 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2026-01-06 12:20 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-01-06 6:18 [PATCH i-g-t] lib/amdgpu: implement selective sync skipping for error injection tests Jesse.Zhang
2026-01-06 7:42 ` ✓ Xe.CI.BAT: success for " Patchwork
2026-01-06 8:22 ` ✓ i915.CI.BAT: " Patchwork
2026-01-06 11:11 ` ✗ Xe.CI.Full: failure " Patchwork
2026-01-06 12:20 ` ✓ i915.CI.Full: success " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox