* [PATCH i-g-t 1/2] lib/amdgpu: restore sched_mask after abnormal subtest exits
@ 2026-04-09 7:15 Jesse Zhang
2026-04-09 7:15 ` [PATCH i-g-t 2/2] tests/amdgpu/queue_reset: Add test for oversize packet length Jesse Zhang
` (4 more replies)
0 siblings, 5 replies; 6+ messages in thread
From: Jesse Zhang @ 2026-04-09 7:15 UTC (permalink / raw)
To: igt-dev
Cc: Vitaly Prosyak, Alex Deucher, Christian Koenig, Jesse Zhang,
Pierre-Eric Pelloux-Prayer, Jesse Zhang
amdgpu_wait_memory_helper(), bad_access_ring_helper(),
amdgpu_hang_sdma_ring_helper(), and mm_queue_test_helper()
temporarily isolate individual rings by writing a reduced mask to the
sched_mask sysfs nodes and restore the original mask only at the end of
the function.
When an igt_assert fires inside the ring iteration loop or in a helper
called from it, IGT unwinds via siglongjmp back to the subtest entry
point and bypasses the normal restore path. This leaves all-but-one ring
disabled for the rest of the test process, so later subtests can observe
disabled schedulers and run into follow-up failures.
Fix this by adding the same three-layer protection used in the dispatch
helpers:
- register a file-scoped igt exit handler that restores the saved mask
when the process exits with a dirty sched_mask state
- restore a stale dirty mask lazily at the start of the next helper
- keep the existing happy-path restore and clear the dirty flag once the
mask is restored successfully
This makes the deadlock and multimedia helpers resilient to abnormal
subtest exits without changing their normal ring-isolation behavior.
Cc: Pierre-Eric Pelloux-Prayer <pierre-eric.pelloux-prayer@amd.com>
Cc: Christian König <christian.koenig@amd.com>
Cc: Alex Deucher <alexander.deucher@amd.com>
Cc: Vitaly Prosyak <vitaly.prosyak@amd.com>
Suggested-by: Vitaly Prosyak <vitaly.prosyak@amd.com>
Signed-off-by: Jesse Zhang <jesse.zhang@amd.com>
---
lib/amdgpu/amd_deadlock_helpers.c | 56 +++++++++++++++++++++++++++++++
lib/amdgpu/amd_mmd_shared.c | 47 +++++++++++++++++++++++++-
2 files changed, 102 insertions(+), 1 deletion(-)
diff --git a/lib/amdgpu/amd_deadlock_helpers.c b/lib/amdgpu/amd_deadlock_helpers.c
index cb37a3564..06c577085 100644
--- a/lib/amdgpu/amd_deadlock_helpers.c
+++ b/lib/amdgpu/amd_deadlock_helpers.c
@@ -27,6 +27,50 @@ struct thread_param {
static int
use_uc_mtype = 1;
+/*
+ * Static state for sched_mask cleanup on abnormal subtest exit.
+ *
+ * A failing assert in ring iteration helpers can jump over the normal
+ * sched_mask restore path, leaving non-selected rings disabled for later
+ * subtests. Keep one file-scoped backup and restore it from an exit handler.
+ */
+static char sched_mask_sysfs[256];
+static uint64_t sched_mask_saved;
+static bool sched_mask_dirty;
+static bool sched_mask_handler_installed;
+
+static void sched_mask_exit_handler(int sig)
+{
+ char cmd[1024];
+
+ (void)sig;
+
+ if (!sched_mask_dirty)
+ return;
+
+ sched_mask_dirty = false;
+ snprintf(cmd, sizeof(cmd) - 1, "sudo echo 0x%" PRIx64 " > %s",
+ sched_mask_saved, sched_mask_sysfs);
+ system(cmd);
+}
+
+static void sched_mask_arm(const char *sysfs, uint64_t mask)
+{
+ /* Restore stale state first if a prior subtest exited abnormally. */
+ if (sched_mask_dirty)
+ sched_mask_exit_handler(0);
+
+ strncpy(sched_mask_sysfs, sysfs, sizeof(sched_mask_sysfs) - 1);
+ sched_mask_sysfs[sizeof(sched_mask_sysfs) - 1] = '\0';
+ sched_mask_saved = mask;
+ sched_mask_dirty = true;
+
+ if (!sched_mask_handler_installed) {
+ igt_install_exit_handler(sched_mask_exit_handler);
+ sched_mask_handler_installed = true;
+ }
+}
+
static void*
write_mem_address(void *data)
{
@@ -239,6 +283,9 @@ void amdgpu_wait_memory_helper(amdgpu_device_handle device_handle, unsigned int
igt_info("The scheduling ring only enables one for ip %d\n", ip_type);
}
+ if (sched_mask > 1)
+ sched_mask_arm(sysfs, sched_mask);
+
for (ring_id = 0; ((uint64_t)0x1 << ring_id) <= sched_mask; ring_id += 1) {
/* check sched is ready is on the ring. */
if (!((1 << ring_id) & sched_mask))
@@ -289,6 +336,7 @@ void amdgpu_wait_memory_helper(amdgpu_device_handle device_handle, unsigned int
snprintf(cmd, sizeof(cmd) - 1, "sudo echo 0x%" PRIx64 " > %s", sched_mask, sysfs);
r = system(cmd);
igt_assert_eq(r, 0);
+ sched_mask_dirty = false;
}
}
@@ -494,6 +542,9 @@ void bad_access_ring_helper(amdgpu_device_handle device_handle, unsigned int cmd
igt_info("The scheduling ring only enables one for ip %d\n", ip_type);
}
+ if (sched_mask > 1)
+ sched_mask_arm(sysfs, sched_mask);
+
for (ring_id = 0; ((uint64_t)0x1 << ring_id) <= sched_mask; ring_id++) {
/* check sched is ready is on the ring. */
if (!((1 << ring_id) & sched_mask))
@@ -544,6 +595,7 @@ void bad_access_ring_helper(amdgpu_device_handle device_handle, unsigned int cmd
snprintf(cmd, sizeof(cmd) - 1, "sudo echo 0x%" PRIx64 " > %s", sched_mask, sysfs);
r = system(cmd);
igt_assert_eq(r, 0);
+ sched_mask_dirty = false;
}
}
@@ -581,6 +633,9 @@ void amdgpu_hang_sdma_ring_helper(amdgpu_device_handle device_handle, uint8_t ha
} else
sched_mask = 1;
+ if (sched_mask > 1)
+ sched_mask_arm(sysfs, sched_mask);
+
for (ring_id = 0; ((uint64_t)0x1 << ring_id) <= sched_mask; ring_id++) {
/* check sched is ready is on the ring. */
if (!((1 << ring_id) & sched_mask))
@@ -613,6 +668,7 @@ void amdgpu_hang_sdma_ring_helper(amdgpu_device_handle device_handle, uint8_t ha
snprintf(cmd, sizeof(cmd) - 1, "sudo echo 0x%" PRIx64 " > %s", sched_mask, sysfs);
r = system(cmd);
igt_assert_eq(r, 0);
+ sched_mask_dirty = false;
}
}
diff --git a/lib/amdgpu/amd_mmd_shared.c b/lib/amdgpu/amd_mmd_shared.c
index 588f2302c..39d4eea68 100644
--- a/lib/amdgpu/amd_mmd_shared.c
+++ b/lib/amdgpu/amd_mmd_shared.c
@@ -4,6 +4,47 @@
*/
#include "amd_mmd_shared.h"
+/*
+ * Static state for sched_mask cleanup when subtests abort out of the
+ * per-ring loop before reaching the normal restore path.
+ */
+static char sched_mask_sysfs[256];
+static long sched_mask_saved;
+static bool sched_mask_dirty;
+static bool sched_mask_handler_installed;
+
+static void sched_mask_exit_handler(int sig)
+{
+ char cmd[1024];
+
+ (void)sig;
+
+ if (!sched_mask_dirty)
+ return;
+
+ sched_mask_dirty = false;
+ snprintf(cmd, sizeof(cmd) - 1, "sudo echo 0x%lx > %s",
+ sched_mask_saved, sched_mask_sysfs);
+ system(cmd);
+}
+
+static void sched_mask_arm(const char *sysfs, long mask)
+{
+ /* Restore stale state first if a prior subtest exited abnormally. */
+ if (sched_mask_dirty)
+ sched_mask_exit_handler(0);
+
+ strncpy(sched_mask_sysfs, sysfs, sizeof(sched_mask_sysfs) - 1);
+ sched_mask_sysfs[sizeof(sched_mask_sysfs) - 1] = '\0';
+ sched_mask_saved = mask;
+ sched_mask_dirty = true;
+
+ if (!sched_mask_handler_installed) {
+ igt_install_exit_handler(sched_mask_exit_handler);
+ sched_mask_handler_installed = true;
+ }
+}
+
bool
is_gfx_pipe_removed(uint32_t family_id, uint32_t chip_id, uint32_t chip_rev)
{
@@ -214,7 +255,7 @@ int
mm_queue_test_helper(amdgpu_device_handle device_handle, struct mmd_shared_context *context,
mm_test_callback callback, int err_type, const struct pci_addr *pci)
{
- int r;
+ int r = 0;
char cmd[1024];
long sched_mask = 0;
long mask = 0;
@@ -230,6 +271,9 @@ mm_queue_test_helper(amdgpu_device_handle device_handle, struct mmd_shared_conte
sched_mask = 1;
}
+ if (sched_mask > 1)
+ sched_mask_arm(sysfs, sched_mask);
+
mask = sched_mask;
for (ring_id = 0; mask > 0; ring_id++) {
/* check sched is ready is on the ring. */
@@ -251,6 +295,7 @@ mm_queue_test_helper(amdgpu_device_handle device_handle, struct mmd_shared_conte
snprintf(cmd, sizeof(cmd) - 1, "sudo echo 0x%lx > %s", sched_mask, sysfs);
r = system(cmd);
igt_assert_eq(r, 0);
+ sched_mask_dirty = false;
}
return r;
}
--
2.49.0
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [PATCH i-g-t 2/2] tests/amdgpu/queue_reset: Add test for oversize packet length
2026-04-09 7:15 [PATCH i-g-t 1/2] lib/amdgpu: restore sched_mask after abnormal subtest exits Jesse Zhang
@ 2026-04-09 7:15 ` Jesse Zhang
2026-04-10 1:37 ` ✓ Xe.CI.BAT: success for series starting with [i-g-t,1/2] lib/amdgpu: restore sched_mask after abnormal subtest exits Patchwork
` (3 subsequent siblings)
4 siblings, 0 replies; 6+ messages in thread
From: Jesse Zhang @ 2026-04-09 7:15 UTC (permalink / raw)
To: igt-dev
Cc: Vitaly Prosyak, Alex Deucher, Christian Koenig, Jesse Zhang,
Jesse Zhang
Add a new test case entry for CMD_STREAM_EXEC_INVALID_PACKET_LENGTH_OVERSIZE
to the queue reset test matrix.
Fixes 81169c743e75(tests/amdgpu: add string mapping for oversized packet length error)
Signed-off-by: Jesse Zhang <jesse.zhang@amd.com>
---
tests/amdgpu/amd_queue_reset.c | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/tests/amdgpu/amd_queue_reset.c b/tests/amdgpu/amd_queue_reset.c
index 73a99bb89..c770c5ee2 100644
--- a/tests/amdgpu/amd_queue_reset.c
+++ b/tests/amdgpu/amd_queue_reset.c
@@ -1176,6 +1176,10 @@ int igt_main()
"Stressful-and-multiple-cs-of-bad and good length-operations-using-multiple-processes",
{ {FAMILY_AI, 0x32, 0xFF} },
{-ECANCELED, -ECANCELED, -ECANCELED }, true},
+ {CMD_STREAM_EXEC_INVALID_PACKET_LENGTH_OVERSIZE, "CMD_STREAM_EXEC_INVALID_PACKET_LENGTH_OVERSIZE",
+ "Stressful-and-multiple-cs-of-bad and good length-operations-using-multiple-processes",
+ { {FAMILY_AI, 0x32, 0xFF} },
+ {-ECANCELED, -ECANCELED, -ECANCELED }, true},
{CMD_STREAM_EXEC_INVALID_OPCODE, "CMD_STREAM_EXEC_INVALID_OPCODE",
"Stressful-and-multiple-cs-of-bad and good opcode-operations-using-multiple-processes",
{}, {-ECANCELED, -ECANCELED, -ECANCELED }, true },
--
2.49.0
^ permalink raw reply related [flat|nested] 6+ messages in thread
* ✓ Xe.CI.BAT: success for series starting with [i-g-t,1/2] lib/amdgpu: restore sched_mask after abnormal subtest exits
2026-04-09 7:15 [PATCH i-g-t 1/2] lib/amdgpu: restore sched_mask after abnormal subtest exits Jesse Zhang
2026-04-09 7:15 ` [PATCH i-g-t 2/2] tests/amdgpu/queue_reset: Add test for oversize packet length Jesse Zhang
@ 2026-04-10 1:37 ` Patchwork
2026-04-10 1:48 ` ✓ i915.CI.BAT: " Patchwork
` (2 subsequent siblings)
4 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2026-04-10 1:37 UTC (permalink / raw)
To: Jesse Zhang; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 2357 bytes --]
== Series Details ==
Series: series starting with [i-g-t,1/2] lib/amdgpu: restore sched_mask after abnormal subtest exits
URL : https://patchwork.freedesktop.org/series/164603/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_8852_BAT -> XEIGTPW_14954_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (14 -> 14)
------------------------------
No changes in participating hosts
Known issues
------------
Here are the changes found in XEIGTPW_14954_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_flip@basic-flip-vs-wf_vblank@c-edp1:
- bat-adlp-7: [PASS][1] -> [DMESG-WARN][2] ([Intel XE#7483])
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8852/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@c-edp1.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14954/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@c-edp1.html
#### Possible fixes ####
* igt@kms_flip@basic-flip-vs-wf_vblank@d-edp1:
- bat-adlp-7: [DMESG-WARN][3] ([Intel XE#7483]) -> [PASS][4]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8852/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@d-edp1.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14954/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@d-edp1.html
* igt@xe_waitfence@reltime:
- bat-dg2-oem2: [FAIL][5] ([Intel XE#6520]) -> [PASS][6]
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8852/bat-dg2-oem2/igt@xe_waitfence@reltime.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14954/bat-dg2-oem2/igt@xe_waitfence@reltime.html
[Intel XE#6520]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6520
[Intel XE#7483]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7483
Build changes
-------------
* IGT: IGT_8852 -> IGTPW_14954
* Linux: xe-4860-5ee75b2816df74bfe606d4dfc061547d5cda4ebf -> xe-4877-97d8833ffba6bd3d6aaa51169069620ac17a2e37
IGTPW_14954: 14954
IGT_8852: 8852
xe-4860-5ee75b2816df74bfe606d4dfc061547d5cda4ebf: 5ee75b2816df74bfe606d4dfc061547d5cda4ebf
xe-4877-97d8833ffba6bd3d6aaa51169069620ac17a2e37: 97d8833ffba6bd3d6aaa51169069620ac17a2e37
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14954/index.html
[-- Attachment #2: Type: text/html, Size: 3065 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* ✓ i915.CI.BAT: success for series starting with [i-g-t,1/2] lib/amdgpu: restore sched_mask after abnormal subtest exits
2026-04-09 7:15 [PATCH i-g-t 1/2] lib/amdgpu: restore sched_mask after abnormal subtest exits Jesse Zhang
2026-04-09 7:15 ` [PATCH i-g-t 2/2] tests/amdgpu/queue_reset: Add test for oversize packet length Jesse Zhang
2026-04-10 1:37 ` ✓ Xe.CI.BAT: success for series starting with [i-g-t,1/2] lib/amdgpu: restore sched_mask after abnormal subtest exits Patchwork
@ 2026-04-10 1:48 ` Patchwork
2026-04-10 4:52 ` ✗ Xe.CI.FULL: failure " Patchwork
2026-04-10 19:51 ` ✓ i915.CI.Full: success " Patchwork
4 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2026-04-10 1:48 UTC (permalink / raw)
To: Jesse Zhang; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 2298 bytes --]
== Series Details ==
Series: series starting with [i-g-t,1/2] lib/amdgpu: restore sched_mask after abnormal subtest exits
URL : https://patchwork.freedesktop.org/series/164603/
State : success
== Summary ==
CI Bug Log - changes from IGT_8852 -> IGTPW_14954
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/index.html
Participating hosts (42 -> 40)
------------------------------
Missing (2): bat-dg2-13 fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_14954 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@i915_selftest@live:
- bat-mtlp-8: [PASS][1] -> [DMESG-FAIL][2] ([i915#12061]) +1 other test dmesg-fail
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8852/bat-mtlp-8/igt@i915_selftest@live.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/bat-mtlp-8/igt@i915_selftest@live.html
#### Possible fixes ####
* igt@i915_selftest@live:
- bat-dg2-8: [DMESG-FAIL][3] ([i915#12061]) -> [PASS][4] +1 other test pass
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8852/bat-dg2-8/igt@i915_selftest@live.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/bat-dg2-8/igt@i915_selftest@live.html
* igt@i915_selftest@live@workarounds:
- bat-mtlp-9: [DMESG-FAIL][5] ([i915#12061]) -> [PASS][6] +1 other test pass
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8852/bat-mtlp-9/igt@i915_selftest@live@workarounds.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/bat-mtlp-9/igt@i915_selftest@live@workarounds.html
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_8852 -> IGTPW_14954
* Linux: CI_DRM_18303 -> CI_DRM_18306
CI-20190529: 20190529
CI_DRM_18303: 7fa61e7003dda66c77b7f63a555658d8fb10bacf @ git://anongit.freedesktop.org/gfx-ci/linux
CI_DRM_18306: 97d8833ffba6bd3d6aaa51169069620ac17a2e37 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_14954: 14954
IGT_8852: 8852
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/index.html
[-- Attachment #2: Type: text/html, Size: 3116 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* ✗ Xe.CI.FULL: failure for series starting with [i-g-t,1/2] lib/amdgpu: restore sched_mask after abnormal subtest exits
2026-04-09 7:15 [PATCH i-g-t 1/2] lib/amdgpu: restore sched_mask after abnormal subtest exits Jesse Zhang
` (2 preceding siblings ...)
2026-04-10 1:48 ` ✓ i915.CI.BAT: " Patchwork
@ 2026-04-10 4:52 ` Patchwork
2026-04-10 19:51 ` ✓ i915.CI.Full: success " Patchwork
4 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2026-04-10 4:52 UTC (permalink / raw)
To: Jesse Zhang; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 18866 bytes --]
== Series Details ==
Series: series starting with [i-g-t,1/2] lib/amdgpu: restore sched_mask after abnormal subtest exits
URL : https://patchwork.freedesktop.org/series/164603/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_8852_FULL -> XEIGTPW_14954_FULL
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_14954_FULL absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_14954_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_14954_FULL:
### IGT changes ###
#### Possible regressions ####
* igt@xe_exec_system_allocator@threads-shared-vm-many-stride-mmap-huge-nomemset:
- shard-lnl: [PASS][1] -> [FAIL][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8852/shard-lnl-6/igt@xe_exec_system_allocator@threads-shared-vm-many-stride-mmap-huge-nomemset.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14954/shard-lnl-8/igt@xe_exec_system_allocator@threads-shared-vm-many-stride-mmap-huge-nomemset.html
* igt@xe_fault_injection@inject-fault-probe-function-xe_sriov_init:
- shard-lnl: [PASS][3] -> [ABORT][4]
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8852/shard-lnl-7/igt@xe_fault_injection@inject-fault-probe-function-xe_sriov_init.html
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14954/shard-lnl-8/igt@xe_fault_injection@inject-fault-probe-function-xe_sriov_init.html
Known issues
------------
Here are the changes found in XEIGTPW_14954_FULL that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@core_hotunplug@unplug-rescan:
- shard-bmg: [PASS][5] -> [ABORT][6] ([Intel XE#7578])
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8852/shard-bmg-9/igt@core_hotunplug@unplug-rescan.html
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14954/shard-bmg-2/igt@core_hotunplug@unplug-rescan.html
* igt@kms_big_fb@y-tiled-8bpp-rotate-90:
- shard-bmg: NOTRUN -> [SKIP][7] ([Intel XE#1124]) +1 other test skip
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14954/shard-bmg-3/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-addfb:
- shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#2328] / [Intel XE#7367])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14954/shard-bmg-7/igt@kms_big_fb@yf-tiled-addfb.html
* igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p:
- shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#7679]) +1 other test skip
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14954/shard-bmg-10/igt@kms_bw@connected-linear-tiling-3-displays-2560x1440p.html
* igt@kms_ccs@crc-primary-basic-y-tiled-ccs:
- shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#2887]) +5 other tests skip
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14954/shard-bmg-7/igt@kms_ccs@crc-primary-basic-y-tiled-ccs.html
* igt@kms_chamelium_hpd@dp-hpd-fast:
- shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#2252]) +1 other test skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14954/shard-bmg-3/igt@kms_chamelium_hpd@dp-hpd-fast.html
* igt@kms_cursor_crc@cursor-offscreen-256x85:
- shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#2320])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14954/shard-bmg-7/igt@kms_cursor_crc@cursor-offscreen-256x85.html
* igt@kms_cursor_legacy@flip-vs-cursor-legacy:
- shard-bmg: [PASS][13] -> [FAIL][14] ([Intel XE#7571])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8852/shard-bmg-1/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14954/shard-bmg-8/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html
* igt@kms_dp_link_training@uhbr-mst:
- shard-bmg: NOTRUN -> [SKIP][15] ([Intel XE#4354] / [Intel XE#7386])
[15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14954/shard-bmg-2/igt@kms_dp_link_training@uhbr-mst.html
* igt@kms_flip@flip-vs-suspend:
- shard-lnl: [PASS][16] -> [INCOMPLETE][17] ([Intel XE#2597]) +1 other test incomplete
[16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8852/shard-lnl-5/igt@kms_flip@flip-vs-suspend.html
[17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14954/shard-lnl-7/igt@kms_flip@flip-vs-suspend.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling:
- shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#7178] / [Intel XE#7351])
[18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14954/shard-bmg-8/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt:
- shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#4141]) +3 other tests skip
[19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14954/shard-bmg-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-shrfb-pgflip-blt.html
* igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#2311]) +8 other tests skip
[20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14954/shard-bmg-9/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt:
- shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#2313]) +6 other tests skip
[21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14954/shard-bmg-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier@pipe-b-plane-5:
- shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#7130]) +1 other test skip
[22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14954/shard-bmg-3/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier@pipe-b-plane-5.html
* igt@kms_pm_dc@dc5-dpms:
- shard-lnl: [PASS][23] -> [FAIL][24] ([Intel XE#7340] / [Intel XE#7504])
[23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8852/shard-lnl-2/igt@kms_pm_dc@dc5-dpms.html
[24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14954/shard-lnl-1/igt@kms_pm_dc@dc5-dpms.html
* igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf:
- shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#1489]) +1 other test skip
[25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14954/shard-bmg-5/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-sf.html
* igt@kms_psr@fbc-pr-primary-page-flip:
- shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#2234] / [Intel XE#2850]) +5 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14954/shard-bmg-4/igt@kms_psr@fbc-pr-primary-page-flip.html
* igt@kms_rotation_crc@sprite-rotation-90-pos-100-0:
- shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#3904] / [Intel XE#7342])
[27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14954/shard-bmg-10/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html
* igt@kms_vrr@cmrr@pipe-a-edp-1:
- shard-lnl: [PASS][28] -> [FAIL][29] ([Intel XE#4459]) +1 other test fail
[28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8852/shard-lnl-4/igt@kms_vrr@cmrr@pipe-a-edp-1.html
[29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14954/shard-lnl-7/igt@kms_vrr@cmrr@pipe-a-edp-1.html
* igt@kms_vrr@lobf:
- shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#2168] / [Intel XE#7444])
[30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14954/shard-bmg-10/igt@kms_vrr@lobf.html
* igt@xe_eudebug@basic-exec-queues:
- shard-bmg: NOTRUN -> [SKIP][31] ([Intel XE#7636]) +4 other tests skip
[31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14954/shard-bmg-5/igt@xe_eudebug@basic-exec-queues.html
* igt@xe_evict@evict-small-multi-queue-priority-cm:
- shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#7140])
[32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14954/shard-bmg-5/igt@xe_evict@evict-small-multi-queue-priority-cm.html
* igt@xe_exec_basic@multigpu-no-exec-null:
- shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#2322] / [Intel XE#7372])
[33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14954/shard-bmg-7/igt@xe_exec_basic@multigpu-no-exec-null.html
* igt@xe_exec_fault_mode@twice-multi-queue-userptr-rebind:
- shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#7136]) +6 other tests skip
[34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14954/shard-bmg-10/igt@xe_exec_fault_mode@twice-multi-queue-userptr-rebind.html
* igt@xe_exec_multi_queue@two-queues-preempt-mode-basic-smem:
- shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#6874]) +11 other tests skip
[35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14954/shard-bmg-1/igt@xe_exec_multi_queue@two-queues-preempt-mode-basic-smem.html
* igt@xe_exec_threads@threads-multi-queue-cm-fd-rebind:
- shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#7138]) +3 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14954/shard-bmg-10/igt@xe_exec_threads@threads-multi-queue-cm-fd-rebind.html
* igt@xe_pxp@pxp-termination-key-update-post-suspend:
- shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#4733] / [Intel XE#7417])
[37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14954/shard-bmg-7/igt@xe_pxp@pxp-termination-key-update-post-suspend.html
* igt@xe_query@multigpu-query-pxp-status:
- shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#944])
[38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14954/shard-bmg-7/igt@xe_query@multigpu-query-pxp-status.html
* igt@xe_sriov_flr@flr-twice:
- shard-bmg: [PASS][39] -> [FAIL][40] ([Intel XE#6569])
[39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8852/shard-bmg-9/igt@xe_sriov_flr@flr-twice.html
[40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14954/shard-bmg-3/igt@xe_sriov_flr@flr-twice.html
#### Possible fixes ####
* igt@kms_flip@2x-wf_vblank-ts-check-interruptible:
- shard-bmg: [FAIL][41] ([Intel XE#3149]) -> [PASS][42] +1 other test pass
[41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8852/shard-bmg-6/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html
[42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14954/shard-bmg-6/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html
* igt@kms_flip@2x-wf_vblank-ts-check-interruptible@ad-dp2-hdmi-a3:
- shard-bmg: [FAIL][43] -> [PASS][44] +4 other tests pass
[43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8852/shard-bmg-6/igt@kms_flip@2x-wf_vblank-ts-check-interruptible@ad-dp2-hdmi-a3.html
[44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14954/shard-bmg-6/igt@kms_flip@2x-wf_vblank-ts-check-interruptible@ad-dp2-hdmi-a3.html
* igt@kms_flip@flip-vs-expired-vblank@a-edp1:
- shard-lnl: [FAIL][45] ([Intel XE#301]) -> [PASS][46] +1 other test pass
[45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8852/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html
[46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14954/shard-lnl-2/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html
* igt@kms_hdmi_inject@inject-audio:
- shard-bmg: [SKIP][47] ([Intel XE#7308]) -> [PASS][48]
[47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8852/shard-bmg-9/igt@kms_hdmi_inject@inject-audio.html
[48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14954/shard-bmg-8/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_vrr@flip-basic:
- shard-lnl: [FAIL][49] ([Intel XE#4227] / [Intel XE#7397]) -> [PASS][50] +3 other tests pass
[49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8852/shard-lnl-8/igt@kms_vrr@flip-basic.html
[50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14954/shard-lnl-6/igt@kms_vrr@flip-basic.html
* igt@xe_evict@evict-beng-mixed-many-threads-small:
- shard-bmg: [INCOMPLETE][51] ([Intel XE#6321]) -> [PASS][52]
[51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8852/shard-bmg-9/igt@xe_evict@evict-beng-mixed-many-threads-small.html
[52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14954/shard-bmg-4/igt@xe_evict@evict-beng-mixed-many-threads-small.html
* igt@xe_exec_system_allocator@many-execqueues-mmap-shared-remap-eocheck:
- shard-bmg: [DMESG-WARN][53] -> [PASS][54]
[53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8852/shard-bmg-6/igt@xe_exec_system_allocator@many-execqueues-mmap-shared-remap-eocheck.html
[54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14954/shard-bmg-10/igt@xe_exec_system_allocator@many-execqueues-mmap-shared-remap-eocheck.html
* igt@xe_sriov_auto_provisioning@selfconfig-reprovision-increase-numvfs:
- shard-bmg: [FAIL][55] ([Intel XE#5937]) -> [PASS][56] +2 other tests pass
[55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8852/shard-bmg-8/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-increase-numvfs.html
[56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14954/shard-bmg-10/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-increase-numvfs.html
#### Warnings ####
* igt@kms_hdr@brightness-with-hdr:
- shard-bmg: [SKIP][57] ([Intel XE#3374] / [Intel XE#3544]) -> [SKIP][58] ([Intel XE#3544])
[57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8852/shard-bmg-1/igt@kms_hdr@brightness-with-hdr.html
[58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14954/shard-bmg-6/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-bmg: [SKIP][59] ([Intel XE#2509] / [Intel XE#7437]) -> [SKIP][60] ([Intel XE#2426] / [Intel XE#5848])
[59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8852/shard-bmg-10/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14954/shard-bmg-9/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
[Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124
[Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489
[Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168
[Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234
[Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252
[Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311
[Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313
[Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320
[Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322
[Intel XE#2328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328
[Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426
[Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509
[Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597
[Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850
[Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887
[Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301
[Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149
[Intel XE#3374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3374
[Intel XE#3544]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3544
[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#4227]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4227
[Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354
[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#5848]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5848
[Intel XE#5937]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5937
[Intel XE#6321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6321
[Intel XE#6569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6569
[Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874
[Intel XE#7130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7130
[Intel XE#7136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7136
[Intel XE#7138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7138
[Intel XE#7140]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7140
[Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178
[Intel XE#7308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7308
[Intel XE#7340]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7340
[Intel XE#7342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7342
[Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351
[Intel XE#7367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7367
[Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372
[Intel XE#7386]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7386
[Intel XE#7397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7397
[Intel XE#7417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7417
[Intel XE#7437]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7437
[Intel XE#7444]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7444
[Intel XE#7504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7504
[Intel XE#7571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7571
[Intel XE#7578]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7578
[Intel XE#7636]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7636
[Intel XE#7679]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7679
[Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944
Build changes
-------------
* IGT: IGT_8852 -> IGTPW_14954
* Linux: xe-4860-5ee75b2816df74bfe606d4dfc061547d5cda4ebf -> xe-4877-97d8833ffba6bd3d6aaa51169069620ac17a2e37
IGTPW_14954: 14954
IGT_8852: 8852
xe-4860-5ee75b2816df74bfe606d4dfc061547d5cda4ebf: 5ee75b2816df74bfe606d4dfc061547d5cda4ebf
xe-4877-97d8833ffba6bd3d6aaa51169069620ac17a2e37: 97d8833ffba6bd3d6aaa51169069620ac17a2e37
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14954/index.html
[-- Attachment #2: Type: text/html, Size: 20381 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* ✓ i915.CI.Full: success for series starting with [i-g-t,1/2] lib/amdgpu: restore sched_mask after abnormal subtest exits
2026-04-09 7:15 [PATCH i-g-t 1/2] lib/amdgpu: restore sched_mask after abnormal subtest exits Jesse Zhang
` (3 preceding siblings ...)
2026-04-10 4:52 ` ✗ Xe.CI.FULL: failure " Patchwork
@ 2026-04-10 19:51 ` Patchwork
4 siblings, 0 replies; 6+ messages in thread
From: Patchwork @ 2026-04-10 19:51 UTC (permalink / raw)
To: Jesse Zhang; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 150012 bytes --]
== Series Details ==
Series: series starting with [i-g-t,1/2] lib/amdgpu: restore sched_mask after abnormal subtest exits
URL : https://patchwork.freedesktop.org/series/164603/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_18306_full -> IGTPW_14954_full
====================================================
Summary
-------
**WARNING**
Minor unknown changes coming with IGTPW_14954_full need to be verified
manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_14954_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them
to document this new failure mode, which will reduce false positives in CI.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/index.html
Participating hosts (11 -> 10)
------------------------------
Missing (1): pig-kbl-iris
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_14954_full:
### IGT changes ###
#### Warnings ####
* igt@kms_pm_rpm@modeset-non-lpsp-stress:
- shard-mtlp: [SKIP][1] ([i915#15073]) -> [SKIP][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-mtlp-4/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-mtlp-1/igt@kms_pm_rpm@modeset-non-lpsp-stress.html
New tests
---------
New tests have been introduced between CI_DRM_18306_full and IGTPW_14954_full:
### New IGT tests (34) ###
* igt@api_intel_allocator@4-tiled-max-hw-stride-32bpp-rotate-0:
- Statuses :
- Exec time: [None] s
* igt@api_intel_allocator@all-busy-idle-check-all:
- Statuses :
- Exec time: [None] s
* igt@api_intel_allocator@alloc_fence_invalid_timeline:
- Statuses :
- Exec time: [None] s
* igt@api_intel_allocator@basic:
- Statuses :
- Exec time: [None] s
* igt@api_intel_allocator@basic-all:
- Statuses :
- Exec time: [None] s
* igt@api_intel_allocator@basic-close-race:
- Statuses :
- Exec time: [None] s
* igt@api_intel_allocator@busy:
- Statuses :
- Exec time: [None] s
* igt@api_intel_allocator@busy-idle:
- Statuses :
- Exec time: [None] s
* igt@api_intel_allocator@ccs-on-another-bo-yf-tiled-ccs:
- Statuses :
- Exec time: [None] s
* igt@api_intel_allocator@cursora-vs-flipb-atomic:
- Statuses :
- Exec time: [None] s
* igt@api_intel_allocator@dc3co-vpb-simulation:
- Statuses :
- Exec time: [None] s
* igt@api_intel_allocator@engines-mixed:
- Statuses :
- Exec time: [None] s
* igt@api_intel_allocator@evict-prime-sanity-check:
- Statuses :
- Exec time: [None] s
* igt@api_intel_allocator@extended-pageflip-hang-newfb:
- Statuses :
- Exec time: [None] s
* igt@api_intel_allocator@fbc-2p-primscrn-spr-indfb-draw-mmap-gtt:
- Statuses :
- Exec time: [None] s
* igt@api_intel_allocator@fbc-2p-scndscrn-pri-shrfb-draw-blt:
- Statuses :
- Exec time: [None] s
* igt@api_intel_allocator@fbc-2p-scndscrn-spr-indfb-draw-pwrite:
- Statuses :
- Exec time: [None] s
* igt@api_intel_allocator@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf:
- Statuses :
- Exec time: [None] s
* igt@api_intel_allocator@fbc-rgb101010-draw-pwrite:
- Statuses :
- Exec time: [None] s
* igt@api_intel_allocator@fbcpsr-2p-scndscrn-cur-indfb-draw-blt:
- Statuses :
- Exec time: [None] s
* igt@api_intel_allocator@flip-vs-rmfb:
- Statuses :
- Exec time: [None] s
* igt@api_intel_allocator@i915-ref-count:
- Statuses :
- Exec time: [None] s
* igt@api_intel_allocator@mmap-boundaries:
- Statuses :
- Exec time: [None] s
* igt@api_intel_allocator@modeset-vs-vblank-race:
- Statuses :
- Exec time: [None] s
* igt@api_intel_allocator@multi-wait-all-available-submitted-signaled:
- Statuses :
- Exec time: [None] s
* igt@api_intel_allocator@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping:
- Statuses :
- Exec time: [None] s
* igt@api_intel_allocator@plane-lut1d-post-ctm3x4:
- Statuses :
- Exec time: [None] s
* igt@api_intel_allocator@psr-1p-primscrn-pri-indfb-draw-blt:
- Statuses :
- Exec time: [None] s
* igt@api_intel_allocator@psr-2p-primscrn-spr-indfb-draw-mmap-cpu:
- Statuses :
- Exec time: [None] s
* igt@api_intel_allocator@psr2-dpms:
- Statuses :
- Exec time: [None] s
* igt@api_intel_allocator@seamless-rr-switch-drrs:
- Statuses :
- Exec time: [None] s
* igt@api_intel_allocator@secure-non-master:
- Statuses :
- Exec time: [None] s
* igt@api_intel_allocator@system-suspend-execbuf:
- Statuses :
- Exec time: [None] s
* igt@api_intel_allocator@too-wide:
- Statuses :
- Exec time: [None] s
Known issues
------------
Here are the changes found in IGTPW_14954_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@api_intel_allocator@fork-simple-stress:
- shard-mtlp: [PASS][3] -> [ABORT][4] ([i915#13562])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-mtlp-8/igt@api_intel_allocator@fork-simple-stress.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-mtlp-7/igt@api_intel_allocator@fork-simple-stress.html
* igt@api_intel_bb@blit-reloc-purge-cache:
- shard-rkl: NOTRUN -> [SKIP][5] ([i915#8411]) +2 other tests skip
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-7/igt@api_intel_bb@blit-reloc-purge-cache.html
* igt@gem_bad_reloc@negative-reloc-bltcopy:
- shard-mtlp: NOTRUN -> [SKIP][6] ([i915#3281]) +8 other tests skip
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-mtlp-7/igt@gem_bad_reloc@negative-reloc-bltcopy.html
* igt@gem_basic@multigpu-create-close:
- shard-rkl: NOTRUN -> [SKIP][7] ([i915#7697])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-4/igt@gem_basic@multigpu-create-close.html
* igt@gem_ccs@block-multicopy-inplace:
- shard-dg1: NOTRUN -> [SKIP][8] ([i915#3555] / [i915#9323])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-dg1-17/igt@gem_ccs@block-multicopy-inplace.html
* igt@gem_ccs@suspend-resume:
- shard-dg2: NOTRUN -> [INCOMPLETE][9] ([i915#13356])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-dg2-7/igt@gem_ccs@suspend-resume.html
- shard-rkl: NOTRUN -> [SKIP][10] ([i915#14544] / [i915#9323])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-6/igt@gem_ccs@suspend-resume.html
- shard-dg1: NOTRUN -> [SKIP][11] ([i915#9323])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-dg1-12/igt@gem_ccs@suspend-resume.html
- shard-tglu: NOTRUN -> [SKIP][12] ([i915#9323]) +1 other test skip
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-tglu-4/igt@gem_ccs@suspend-resume.html
- shard-mtlp: NOTRUN -> [SKIP][13] ([i915#9323])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-mtlp-2/igt@gem_ccs@suspend-resume.html
* igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-lmem0-lmem0:
- shard-dg2: NOTRUN -> [INCOMPLETE][14] ([i915#12392] / [i915#13356])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-dg2-7/igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-lmem0-lmem0.html
* igt@gem_create@create-ext-cpu-access-sanity-check:
- shard-tglu: NOTRUN -> [SKIP][15] ([i915#6335])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-tglu-4/igt@gem_create@create-ext-cpu-access-sanity-check.html
- shard-mtlp: NOTRUN -> [SKIP][16] ([i915#6335])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-mtlp-6/igt@gem_create@create-ext-cpu-access-sanity-check.html
- shard-rkl: NOTRUN -> [SKIP][17] ([i915#6335])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-2/igt@gem_create@create-ext-cpu-access-sanity-check.html
* igt@gem_ctx_persistence@heartbeat-close:
- shard-dg2: NOTRUN -> [SKIP][18] ([i915#8555])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-dg2-3/igt@gem_ctx_persistence@heartbeat-close.html
- shard-dg1: NOTRUN -> [SKIP][19] ([i915#8555]) +1 other test skip
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-dg1-14/igt@gem_ctx_persistence@heartbeat-close.html
- shard-mtlp: NOTRUN -> [SKIP][20] ([i915#8555])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-mtlp-2/igt@gem_ctx_persistence@heartbeat-close.html
* igt@gem_ctx_sseu@invalid-args:
- shard-rkl: NOTRUN -> [SKIP][21] ([i915#280])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-7/igt@gem_ctx_sseu@invalid-args.html
* igt@gem_ctx_sseu@invalid-sseu:
- shard-tglu: NOTRUN -> [SKIP][22] ([i915#280])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-tglu-2/igt@gem_ctx_sseu@invalid-sseu.html
* igt@gem_exec_balancer@bonded-pair:
- shard-mtlp: NOTRUN -> [SKIP][23] ([i915#4771])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-mtlp-7/igt@gem_exec_balancer@bonded-pair.html
- shard-dg2: NOTRUN -> [SKIP][24] ([i915#4771])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-dg2-8/igt@gem_exec_balancer@bonded-pair.html
- shard-dg1: NOTRUN -> [SKIP][25] ([i915#4771])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-dg1-12/igt@gem_exec_balancer@bonded-pair.html
* igt@gem_exec_balancer@bonded-true-hang:
- shard-dg2: NOTRUN -> [SKIP][26] ([i915#4812]) +3 other tests skip
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-dg2-6/igt@gem_exec_balancer@bonded-true-hang.html
* igt@gem_exec_balancer@parallel:
- shard-tglu: NOTRUN -> [SKIP][27] ([i915#4525])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-tglu-2/igt@gem_exec_balancer@parallel.html
* igt@gem_exec_balancer@parallel-keep-in-fence:
- shard-tglu-1: NOTRUN -> [SKIP][28] ([i915#4525])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-tglu-1/igt@gem_exec_balancer@parallel-keep-in-fence.html
* igt@gem_exec_balancer@parallel-keep-submit-fence:
- shard-rkl: NOTRUN -> [SKIP][29] ([i915#4525]) +2 other tests skip
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-5/igt@gem_exec_balancer@parallel-keep-submit-fence.html
* igt@gem_exec_capture@capture:
- shard-mtlp: NOTRUN -> [FAIL][30] ([i915#11965]) +1 other test fail
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-mtlp-8/igt@gem_exec_capture@capture.html
* igt@gem_exec_capture@capture-invisible@smem0:
- shard-glk: NOTRUN -> [SKIP][31] ([i915#6334]) +1 other test skip
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-glk8/igt@gem_exec_capture@capture-invisible@smem0.html
* igt@gem_exec_capture@capture-recoverable:
- shard-tglu: NOTRUN -> [SKIP][32] ([i915#6344])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-tglu-6/igt@gem_exec_capture@capture-recoverable.html
* igt@gem_exec_capture@capture@vecs0-lmem0:
- shard-dg2: NOTRUN -> [FAIL][33] ([i915#11965]) +4 other tests fail
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-dg2-6/igt@gem_exec_capture@capture@vecs0-lmem0.html
- shard-dg1: NOTRUN -> [FAIL][34] ([i915#11965]) +2 other tests fail
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-dg1-14/igt@gem_exec_capture@capture@vecs0-lmem0.html
* igt@gem_exec_fence@submit67:
- shard-mtlp: NOTRUN -> [SKIP][35] ([i915#4812])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-mtlp-2/igt@gem_exec_fence@submit67.html
* igt@gem_exec_flush@basic-wb-prw-default:
- shard-dg2: NOTRUN -> [SKIP][36] ([i915#3539] / [i915#4852]) +2 other tests skip
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-dg2-4/igt@gem_exec_flush@basic-wb-prw-default.html
- shard-dg1: NOTRUN -> [SKIP][37] ([i915#3539] / [i915#4852]) +1 other test skip
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-dg1-15/igt@gem_exec_flush@basic-wb-prw-default.html
* igt@gem_exec_reloc@basic-scanout:
- shard-rkl: NOTRUN -> [SKIP][38] ([i915#14544] / [i915#3281])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-6/igt@gem_exec_reloc@basic-scanout.html
* igt@gem_exec_reloc@basic-write-read-active:
- shard-dg2: NOTRUN -> [SKIP][39] ([i915#3281]) +9 other tests skip
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-dg2-3/igt@gem_exec_reloc@basic-write-read-active.html
- shard-rkl: NOTRUN -> [SKIP][40] ([i915#3281]) +11 other tests skip
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-8/igt@gem_exec_reloc@basic-write-read-active.html
- shard-dg1: NOTRUN -> [SKIP][41] ([i915#3281]) +10 other tests skip
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-dg1-18/igt@gem_exec_reloc@basic-write-read-active.html
* igt@gem_exec_schedule@reorder-wide:
- shard-dg2: NOTRUN -> [SKIP][42] ([i915#4537] / [i915#4812])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-dg2-8/igt@gem_exec_schedule@reorder-wide.html
- shard-dg1: NOTRUN -> [SKIP][43] ([i915#4812]) +1 other test skip
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-dg1-16/igt@gem_exec_schedule@reorder-wide.html
- shard-mtlp: NOTRUN -> [SKIP][44] ([i915#4537] / [i915#4812])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-mtlp-6/igt@gem_exec_schedule@reorder-wide.html
* igt@gem_exec_suspend@basic-s0:
- shard-dg2: [PASS][45] -> [INCOMPLETE][46] ([i915#13356]) +1 other test incomplete
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-dg2-8/igt@gem_exec_suspend@basic-s0.html
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-dg2-4/igt@gem_exec_suspend@basic-s0.html
* igt@gem_fenced_exec_thrash@no-spare-fences:
- shard-dg2: NOTRUN -> [SKIP][47] ([i915#4860])
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-dg2-8/igt@gem_fenced_exec_thrash@no-spare-fences.html
* igt@gem_huc_copy@huc-copy:
- shard-rkl: NOTRUN -> [SKIP][48] ([i915#2190])
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-3/igt@gem_huc_copy@huc-copy.html
- shard-tglu: NOTRUN -> [SKIP][49] ([i915#2190])
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-tglu-7/igt@gem_huc_copy@huc-copy.html
- shard-glk: NOTRUN -> [SKIP][50] ([i915#2190])
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-glk9/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@heavy-verify-random-ccs:
- shard-tglu: NOTRUN -> [SKIP][51] ([i915#4613]) +2 other tests skip
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-tglu-3/igt@gem_lmem_swapping@heavy-verify-random-ccs.html
* igt@gem_lmem_swapping@parallel-random-verify:
- shard-rkl: NOTRUN -> [SKIP][52] ([i915#4613]) +5 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-2/igt@gem_lmem_swapping@parallel-random-verify.html
* igt@gem_lmem_swapping@parallel-random-verify-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][53] ([i915#4613]) +1 other test skip
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-tglu-1/igt@gem_lmem_swapping@parallel-random-verify-ccs.html
* igt@gem_lmem_swapping@verify-ccs:
- shard-glk: NOTRUN -> [SKIP][54] ([i915#4613]) +7 other tests skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-glk9/igt@gem_lmem_swapping@verify-ccs.html
* igt@gem_mmap_gtt@fault-concurrent:
- shard-dg1: NOTRUN -> [SKIP][55] ([i915#4077]) +5 other tests skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-dg1-16/igt@gem_mmap_gtt@fault-concurrent.html
* igt@gem_mmap_wc@coherency:
- shard-dg2: NOTRUN -> [SKIP][56] ([i915#4083]) +3 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-dg2-8/igt@gem_mmap_wc@coherency.html
- shard-dg1: NOTRUN -> [SKIP][57] ([i915#4083]) +5 other tests skip
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-dg1-12/igt@gem_mmap_wc@coherency.html
* igt@gem_mmap_wc@set-cache-level:
- shard-mtlp: NOTRUN -> [SKIP][58] ([i915#4083]) +3 other tests skip
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-mtlp-5/igt@gem_mmap_wc@set-cache-level.html
* igt@gem_partial_pwrite_pread@write-display:
- shard-rkl: NOTRUN -> [SKIP][59] ([i915#3282]) +3 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-5/igt@gem_partial_pwrite_pread@write-display.html
* igt@gem_pread@exhaustion:
- shard-glk: NOTRUN -> [WARN][60] ([i915#2658])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-glk9/igt@gem_pread@exhaustion.html
* igt@gem_pwrite@basic-random:
- shard-dg2: NOTRUN -> [SKIP][61] ([i915#3282]) +1 other test skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-dg2-6/igt@gem_pwrite@basic-random.html
- shard-rkl: NOTRUN -> [SKIP][62] ([i915#14544] / [i915#3282])
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-6/igt@gem_pwrite@basic-random.html
- shard-dg1: NOTRUN -> [SKIP][63] ([i915#3282]) +2 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-dg1-16/igt@gem_pwrite@basic-random.html
- shard-mtlp: NOTRUN -> [SKIP][64] ([i915#3282]) +1 other test skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-mtlp-1/igt@gem_pwrite@basic-random.html
* igt@gem_pxp@reject-modify-context-protection-off-2:
- shard-dg2: NOTRUN -> [SKIP][65] ([i915#4270]) +2 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-dg2-5/igt@gem_pxp@reject-modify-context-protection-off-2.html
* igt@gem_pxp@reject-modify-context-protection-off-3:
- shard-dg1: NOTRUN -> [SKIP][66] ([i915#4270]) +3 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-dg1-15/igt@gem_pxp@reject-modify-context-protection-off-3.html
* igt@gem_pxp@verify-pxp-execution-after-suspend-resume:
- shard-rkl: NOTRUN -> [ABORT][67] ([i915#15131])
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-1/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html
* igt@gem_render_copy@y-tiled-ccs-to-yf-tiled-mc-ccs:
- shard-dg2: NOTRUN -> [SKIP][68] ([i915#5190] / [i915#8428]) +5 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-dg2-3/igt@gem_render_copy@y-tiled-ccs-to-yf-tiled-mc-ccs.html
* igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled:
- shard-mtlp: NOTRUN -> [SKIP][69] ([i915#8428])
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-mtlp-3/igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled.html
* igt@gem_tiled_swapping@non-threaded:
- shard-dg2: NOTRUN -> [SKIP][70] ([i915#4077]) +7 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-dg2-10/igt@gem_tiled_swapping@non-threaded.html
* igt@gem_userptr_blits@forbidden-operations:
- shard-dg2: NOTRUN -> [SKIP][71] ([i915#3282] / [i915#3297])
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-dg2-4/igt@gem_userptr_blits@forbidden-operations.html
- shard-rkl: NOTRUN -> [SKIP][72] ([i915#3282] / [i915#3297])
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-5/igt@gem_userptr_blits@forbidden-operations.html
* igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy:
- shard-dg1: NOTRUN -> [SKIP][73] ([i915#3297] / [i915#4880])
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-dg1-13/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html
- shard-mtlp: NOTRUN -> [SKIP][74] ([i915#3297])
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-mtlp-4/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html
* igt@gem_userptr_blits@relocations:
- shard-rkl: NOTRUN -> [SKIP][75] ([i915#14544] / [i915#3281] / [i915#3297])
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-6/igt@gem_userptr_blits@relocations.html
* igt@gem_userptr_blits@sd-probe:
- shard-dg2: NOTRUN -> [SKIP][76] ([i915#3297] / [i915#4958])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-dg2-8/igt@gem_userptr_blits@sd-probe.html
- shard-dg1: NOTRUN -> [SKIP][77] ([i915#3297] / [i915#4958])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-dg1-15/igt@gem_userptr_blits@sd-probe.html
* igt@gem_userptr_blits@unsync-overlap:
- shard-rkl: NOTRUN -> [SKIP][78] ([i915#3297]) +3 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-2/igt@gem_userptr_blits@unsync-overlap.html
* igt@gem_userptr_blits@unsync-unmap-cycles:
- shard-dg2: NOTRUN -> [SKIP][79] ([i915#3297])
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-dg2-10/igt@gem_userptr_blits@unsync-unmap-cycles.html
* igt@gem_workarounds@suspend-resume-fd:
- shard-glk: NOTRUN -> [INCOMPLETE][80] ([i915#13356] / [i915#14586])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-glk3/igt@gem_workarounds@suspend-resume-fd.html
* igt@gen9_exec_parse@allowed-all:
- shard-dg2: NOTRUN -> [SKIP][81] ([i915#2856]) +2 other tests skip
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-dg2-1/igt@gen9_exec_parse@allowed-all.html
* igt@gen9_exec_parse@allowed-single:
- shard-tglu-1: NOTRUN -> [SKIP][82] ([i915#2527] / [i915#2856])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-tglu-1/igt@gen9_exec_parse@allowed-single.html
* igt@gen9_exec_parse@basic-rejected:
- shard-tglu: NOTRUN -> [SKIP][83] ([i915#2527] / [i915#2856]) +3 other tests skip
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-tglu-3/igt@gen9_exec_parse@basic-rejected.html
* igt@gen9_exec_parse@bb-secure:
- shard-mtlp: NOTRUN -> [SKIP][84] ([i915#2856])
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-mtlp-8/igt@gen9_exec_parse@bb-secure.html
* igt@gen9_exec_parse@bb-start-far:
- shard-rkl: NOTRUN -> [SKIP][85] ([i915#2527]) +5 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-5/igt@gen9_exec_parse@bb-start-far.html
* igt@i915_drm_fdinfo@virtual-busy:
- shard-dg2: NOTRUN -> [SKIP][86] ([i915#14118]) +1 other test skip
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-dg2-5/igt@i915_drm_fdinfo@virtual-busy.html
* igt@i915_drm_fdinfo@virtual-busy-hang-all:
- shard-dg1: NOTRUN -> [SKIP][87] ([i915#14118])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-dg1-12/igt@i915_drm_fdinfo@virtual-busy-hang-all.html
- shard-mtlp: NOTRUN -> [SKIP][88] ([i915#14118])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-mtlp-7/igt@i915_drm_fdinfo@virtual-busy-hang-all.html
* igt@i915_module_load@fault-injection:
- shard-dg1: NOTRUN -> [ABORT][89] ([i915#15481]) +1 other test abort
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-dg1-17/igt@i915_module_load@fault-injection.html
* igt@i915_module_load@fault-injection@i915_driver_mmio_probe:
- shard-dg1: NOTRUN -> [INCOMPLETE][90] ([i915#15481])
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-dg1-17/igt@i915_module_load@fault-injection@i915_driver_mmio_probe.html
* igt@i915_module_load@resize-bar:
- shard-rkl: NOTRUN -> [SKIP][91] ([i915#6412])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-5/igt@i915_module_load@resize-bar.html
* igt@i915_pm_freq_api@freq-reset-multiple:
- shard-rkl: NOTRUN -> [SKIP][92] ([i915#8399])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-5/igt@i915_pm_freq_api@freq-reset-multiple.html
* igt@i915_pm_freq_mult@media-freq@gt0:
- shard-rkl: NOTRUN -> [SKIP][93] ([i915#6590]) +1 other test skip
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-5/igt@i915_pm_freq_mult@media-freq@gt0.html
* igt@i915_pm_rc6_residency@rc6-accuracy:
- shard-dg2: [PASS][94] -> [FAIL][95] ([i915#12964]) +1 other test fail
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-dg2-8/igt@i915_pm_rc6_residency@rc6-accuracy.html
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-dg2-5/igt@i915_pm_rc6_residency@rc6-accuracy.html
* igt@i915_pm_rc6_residency@rc6-fence:
- shard-tglu: [PASS][96] -> [WARN][97] ([i915#13790] / [i915#2681]) +1 other test warn
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-tglu-6/igt@i915_pm_rc6_residency@rc6-fence.html
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-tglu-4/igt@i915_pm_rc6_residency@rc6-fence.html
* igt@i915_pm_rps@thresholds-idle-park:
- shard-dg2: NOTRUN -> [SKIP][98] ([i915#11681]) +1 other test skip
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-dg2-1/igt@i915_pm_rps@thresholds-idle-park.html
* igt@i915_power@sanity:
- shard-rkl: NOTRUN -> [SKIP][99] ([i915#7984])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-4/igt@i915_power@sanity.html
* igt@i915_query@hwconfig_table:
- shard-dg1: NOTRUN -> [SKIP][100] ([i915#6245])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-dg1-14/igt@i915_query@hwconfig_table.html
- shard-tglu: NOTRUN -> [SKIP][101] ([i915#6245])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-tglu-9/igt@i915_query@hwconfig_table.html
* igt@i915_query@query-topology-coherent-slice-mask:
- shard-dg2: NOTRUN -> [SKIP][102] ([i915#6188])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-dg2-10/igt@i915_query@query-topology-coherent-slice-mask.html
* igt@i915_query@test-query-geometry-subslices:
- shard-tglu: NOTRUN -> [SKIP][103] ([i915#5723])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-tglu-8/igt@i915_query@test-query-geometry-subslices.html
* igt@i915_suspend@debugfs-reader:
- shard-rkl: NOTRUN -> [INCOMPLETE][104] ([i915#4817])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-4/igt@i915_suspend@debugfs-reader.html
* igt@i915_suspend@fence-restore-untiled:
- shard-rkl: [PASS][105] -> [ABORT][106] ([i915#15131])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-rkl-2/igt@i915_suspend@fence-restore-untiled.html
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-1/igt@i915_suspend@fence-restore-untiled.html
* igt@i915_suspend@forcewake:
- shard-glk: NOTRUN -> [INCOMPLETE][107] ([i915#4817]) +1 other test incomplete
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-glk3/igt@i915_suspend@forcewake.html
* igt@intel_hwmon@hwmon-write:
- shard-tglu-1: NOTRUN -> [SKIP][108] ([i915#7707])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-tglu-1/igt@intel_hwmon@hwmon-write.html
* igt@kms_addfb_basic@basic-x-tiled-legacy:
- shard-dg1: NOTRUN -> [SKIP][109] ([i915#4212])
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-dg1-12/igt@kms_addfb_basic@basic-x-tiled-legacy.html
- shard-mtlp: NOTRUN -> [SKIP][110] ([i915#4212])
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-mtlp-2/igt@kms_addfb_basic@basic-x-tiled-legacy.html
* igt@kms_addfb_basic@basic-y-tiled-legacy:
- shard-dg1: NOTRUN -> [SKIP][111] ([i915#4215])
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-dg1-19/igt@kms_addfb_basic@basic-y-tiled-legacy.html
* igt@kms_addfb_basic@invalid-smem-bo-on-discrete:
- shard-tglu: NOTRUN -> [SKIP][112] ([i915#12454] / [i915#12712])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-tglu-5/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html
* igt@kms_async_flips@async-flip-suspend-resume:
- shard-glk11: NOTRUN -> [INCOMPLETE][113] ([i915#12761]) +1 other test incomplete
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-glk11/igt@kms_async_flips@async-flip-suspend-resume.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-dg2: NOTRUN -> [SKIP][114] ([i915#9531])
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-dg2-6/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-3:
- shard-dg2: [PASS][115] -> [FAIL][116] ([i915#5956]) +1 other test fail
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-dg2-1/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-3.html
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-dg2-3/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-3.html
* igt@kms_big_fb@4-tiled-16bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][117] ([i915#5286]) +4 other tests skip
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-5/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html
- shard-dg1: NOTRUN -> [SKIP][118] ([i915#4538] / [i915#5286]) +2 other tests skip
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-dg1-15/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html
- shard-tglu: NOTRUN -> [SKIP][119] ([i915#5286]) +4 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-tglu-8/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-addfb-size-offset-overflow:
- shard-tglu-1: NOTRUN -> [SKIP][120] ([i915#5286])
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-tglu-1/igt@kms_big_fb@4-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@linear-64bpp-rotate-90:
- shard-rkl: NOTRUN -> [SKIP][121] ([i915#3638]) +4 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-1/igt@kms_big_fb@linear-64bpp-rotate-90.html
- shard-dg1: NOTRUN -> [SKIP][122] ([i915#3638]) +2 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-dg1-17/igt@kms_big_fb@linear-64bpp-rotate-90.html
* igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip:
- shard-dg1: NOTRUN -> [SKIP][123] ([i915#3828])
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-dg1-16/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip:
- shard-tglu: NOTRUN -> [SKIP][124] ([i915#3828]) +1 other test skip
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-tglu-10/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@x-tiled-32bpp-rotate-270:
- shard-dg2: NOTRUN -> [SKIP][125] +11 other tests skip
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-dg2-1/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@y-tiled-addfb:
- shard-mtlp: NOTRUN -> [SKIP][126] ([i915#6187])
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-mtlp-6/igt@kms_big_fb@y-tiled-addfb.html
* igt@kms_big_fb@y-tiled-addfb-size-offset-overflow:
- shard-dg2: NOTRUN -> [SKIP][127] ([i915#5190]) +2 other tests skip
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-dg2-6/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-dg2: NOTRUN -> [SKIP][128] ([i915#4538] / [i915#5190]) +10 other tests skip
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-dg2-6/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-180:
- shard-dg1: NOTRUN -> [SKIP][129] ([i915#4538]) +1 other test skip
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-dg1-14/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-270:
- shard-rkl: NOTRUN -> [SKIP][130] +28 other tests skip
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-3/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-270:
- shard-tglu: NOTRUN -> [SKIP][131] +54 other tests skip
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-tglu-10/igt@kms_big_fb@yf-tiled-8bpp-rotate-270.html
* igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][132] ([i915#6095]) +234 other tests skip
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-dg1-16/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-4.html
* igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][133] ([i915#14544] / [i915#6095]) +3 other tests skip
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-6/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-2.html
* igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][134] ([i915#14098] / [i915#14544] / [i915#6095]) +2 other tests skip
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-6/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2.html
* igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs:
- shard-dg2: NOTRUN -> [SKIP][135] ([i915#12313]) +2 other tests skip
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-dg2-5/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs:
- shard-rkl: NOTRUN -> [SKIP][136] ([i915#12313]) +3 other tests skip
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-5/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs:
- shard-dg1: NOTRUN -> [SKIP][137] ([i915#12313])
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-dg1-12/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html
- shard-tglu: NOTRUN -> [SKIP][138] ([i915#12313])
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-tglu-2/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html
- shard-mtlp: NOTRUN -> [SKIP][139] ([i915#12313])
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-mtlp-7/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc:
- shard-tglu: NOTRUN -> [SKIP][140] ([i915#6095]) +84 other tests skip
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-tglu-4/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-1:
- shard-tglu-1: NOTRUN -> [SKIP][141] ([i915#6095]) +24 other tests skip
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-tglu-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-1.html
* igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc@pipe-b-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][142] ([i915#10307] / [i915#6095]) +80 other tests skip
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-dg2-4/igt@kms_ccs@crc-primary-rotation-180-y-tiled-gen12-rc-ccs-cc@pipe-b-hdmi-a-1.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs:
- shard-tglu: NOTRUN -> [SKIP][143] ([i915#12805])
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-tglu-10/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html
* igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs:
- shard-rkl: NOTRUN -> [SKIP][144] ([i915#12805])
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-8/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][145] ([i915#6095]) +47 other tests skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-dg2-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-c-hdmi-a-3.html
* igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs:
- shard-tglu-1: NOTRUN -> [SKIP][146] ([i915#12313])
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-tglu-1/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs@pipe-c-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][147] ([i915#14098] / [i915#6095]) +57 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-5/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs@pipe-c-hdmi-a-1.html
* igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs@pipe-d-hdmi-a-1:
- shard-dg2: NOTRUN -> [SKIP][148] ([i915#10307] / [i915#10434] / [i915#6095])
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-dg2-4/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs@pipe-d-hdmi-a-1.html
* igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][149] ([i915#6095]) +34 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-mtlp-3/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc@pipe-b-edp-1.html
* igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][150] ([i915#6095]) +85 other tests skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-3/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html
* igt@kms_cdclk@mode-transition:
- shard-rkl: NOTRUN -> [SKIP][151] ([i915#3742])
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-7/igt@kms_cdclk@mode-transition.html
* igt@kms_cdclk@plane-scaling:
- shard-tglu: NOTRUN -> [SKIP][152] ([i915#3742])
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-tglu-10/igt@kms_cdclk@plane-scaling.html
* igt@kms_chamelium_audio@hdmi-audio-edid:
- shard-tglu: NOTRUN -> [SKIP][153] ([i915#11151] / [i915#7828]) +7 other tests skip
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-tglu-3/igt@kms_chamelium_audio@hdmi-audio-edid.html
* igt@kms_chamelium_color@ctm-blue-to-red:
- shard-mtlp: NOTRUN -> [SKIP][154] +9 other tests skip
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-mtlp-6/igt@kms_chamelium_color@ctm-blue-to-red.html
* igt@kms_chamelium_frames@dp-crc-fast:
- shard-rkl: NOTRUN -> [SKIP][155] ([i915#11151] / [i915#14544] / [i915#7828]) +1 other test skip
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-6/igt@kms_chamelium_frames@dp-crc-fast.html
* igt@kms_chamelium_frames@hdmi-crc-fast:
- shard-rkl: NOTRUN -> [SKIP][156] ([i915#11151] / [i915#7828]) +8 other tests skip
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-4/igt@kms_chamelium_frames@hdmi-crc-fast.html
* igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats:
- shard-tglu-1: NOTRUN -> [SKIP][157] ([i915#11151] / [i915#7828]) +2 other tests skip
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-tglu-1/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html
* igt@kms_chamelium_hpd@dp-hpd-for-each-pipe:
- shard-mtlp: NOTRUN -> [SKIP][158] ([i915#11151] / [i915#7828]) +4 other tests skip
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-mtlp-8/igt@kms_chamelium_hpd@dp-hpd-for-each-pipe.html
* igt@kms_chamelium_hpd@dp-hpd-storm-disable:
- shard-dg1: NOTRUN -> [SKIP][159] ([i915#11151] / [i915#7828]) +4 other tests skip
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-dg1-19/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html
* igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode:
- shard-dg2: NOTRUN -> [SKIP][160] ([i915#11151] / [i915#7828]) +6 other tests skip
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-dg2-3/igt@kms_chamelium_hpd@hdmi-hpd-with-enabled-mode.html
* igt@kms_color@deep-color:
- shard-rkl: NOTRUN -> [SKIP][161] ([i915#12655] / [i915#3555])
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-7/igt@kms_color@deep-color.html
* igt@kms_content_protection@atomic-dpms:
- shard-tglu-1: NOTRUN -> [SKIP][162] ([i915#15865])
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-tglu-1/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@atomic-hdcp14:
- shard-dg1: NOTRUN -> [SKIP][163] ([i915#15865]) +1 other test skip
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-dg1-19/igt@kms_content_protection@atomic-hdcp14.html
* igt@kms_content_protection@atomic-hdcp14@pipe-a-dp-3:
- shard-dg2: NOTRUN -> [FAIL][164] ([i915#7173]) +2 other tests fail
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-dg2-10/igt@kms_content_protection@atomic-hdcp14@pipe-a-dp-3.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-tglu-1: NOTRUN -> [SKIP][165] ([i915#15330] / [i915#3116] / [i915#3299])
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-tglu-1/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_content_protection@dp-mst-type-1-suspend-resume:
- shard-tglu: NOTRUN -> [SKIP][166] ([i915#15330]) +1 other test skip
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-tglu-4/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html
- shard-mtlp: NOTRUN -> [SKIP][167] ([i915#15330])
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-mtlp-6/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html
- shard-dg2: NOTRUN -> [SKIP][168] ([i915#15330]) +1 other test skip
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-dg2-1/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html
- shard-rkl: NOTRUN -> [SKIP][169] ([i915#15330])
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-2/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html
- shard-dg1: NOTRUN -> [SKIP][170] ([i915#15330])
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-dg1-15/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html
* igt@kms_content_protection@lic-type-1:
- shard-mtlp: NOTRUN -> [SKIP][171] ([i915#15865])
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-mtlp-3/igt@kms_content_protection@lic-type-1.html
- shard-dg2: NOTRUN -> [SKIP][172] ([i915#15865])
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-dg2-1/igt@kms_content_protection@lic-type-1.html
* igt@kms_content_protection@srm:
- shard-rkl: NOTRUN -> [SKIP][173] ([i915#15865]) +2 other tests skip
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-3/igt@kms_content_protection@srm.html
* igt@kms_content_protection@type1:
- shard-tglu: NOTRUN -> [SKIP][174] ([i915#15865]) +2 other tests skip
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-tglu-6/igt@kms_content_protection@type1.html
* igt@kms_cursor_crc@cursor-offscreen-512x170:
- shard-tglu: NOTRUN -> [SKIP][175] ([i915#13049]) +1 other test skip
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-tglu-8/igt@kms_cursor_crc@cursor-offscreen-512x170.html
- shard-mtlp: NOTRUN -> [SKIP][176] ([i915#13049]) +1 other test skip
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-mtlp-3/igt@kms_cursor_crc@cursor-offscreen-512x170.html
* igt@kms_cursor_crc@cursor-onscreen-256x85:
- shard-tglu: NOTRUN -> [FAIL][177] ([i915#13566]) +3 other tests fail
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-tglu-2/igt@kms_cursor_crc@cursor-onscreen-256x85.html
* igt@kms_cursor_crc@cursor-onscreen-64x21:
- shard-rkl: [PASS][178] -> [FAIL][179] ([i915#13566]) +1 other test fail
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-rkl-3/igt@kms_cursor_crc@cursor-onscreen-64x21.html
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-7/igt@kms_cursor_crc@cursor-onscreen-64x21.html
* igt@kms_cursor_crc@cursor-onscreen-max-size:
- shard-dg2: NOTRUN -> [SKIP][180] ([i915#3555]) +1 other test skip
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-dg2-4/igt@kms_cursor_crc@cursor-onscreen-max-size.html
- shard-dg1: NOTRUN -> [SKIP][181] ([i915#3555]) +5 other tests skip
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-dg1-15/igt@kms_cursor_crc@cursor-onscreen-max-size.html
- shard-tglu: NOTRUN -> [SKIP][182] ([i915#3555]) +2 other tests skip
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-tglu-8/igt@kms_cursor_crc@cursor-onscreen-max-size.html
- shard-mtlp: NOTRUN -> [SKIP][183] ([i915#3555] / [i915#8814])
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-mtlp-4/igt@kms_cursor_crc@cursor-onscreen-max-size.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-dg2: NOTRUN -> [SKIP][184] ([i915#13049]) +1 other test skip
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-dg2-8/igt@kms_cursor_crc@cursor-random-512x170.html
- shard-rkl: NOTRUN -> [SKIP][185] ([i915#13049]) +2 other tests skip
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-3/igt@kms_cursor_crc@cursor-random-512x170.html
- shard-dg1: NOTRUN -> [SKIP][186] ([i915#13049]) +1 other test skip
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-dg1-16/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-random-max-size:
- shard-glk: NOTRUN -> [SKIP][187] +636 other tests skip
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-glk3/igt@kms_cursor_crc@cursor-random-max-size.html
* igt@kms_cursor_crc@cursor-sliding-256x85:
- shard-tglu: [PASS][188] -> [FAIL][189] ([i915#13566]) +5 other tests fail
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-tglu-4/igt@kms_cursor_crc@cursor-sliding-256x85.html
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-tglu-6/igt@kms_cursor_crc@cursor-sliding-256x85.html
* igt@kms_cursor_crc@cursor-sliding-32x10:
- shard-rkl: NOTRUN -> [SKIP][190] ([i915#3555]) +7 other tests skip
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-8/igt@kms_cursor_crc@cursor-sliding-32x10.html
* igt@kms_cursor_crc@cursor-sliding-512x512:
- shard-tglu-1: NOTRUN -> [SKIP][191] ([i915#13049])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-tglu-1/igt@kms_cursor_crc@cursor-sliding-512x512.html
* igt@kms_cursor_crc@cursor-sliding-64x21:
- shard-mtlp: NOTRUN -> [SKIP][192] ([i915#8814])
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-mtlp-1/igt@kms_cursor_crc@cursor-sliding-64x21.html
* igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-2:
- shard-rkl: NOTRUN -> [FAIL][193] ([i915#13566]) +1 other test fail
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-6/igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-2.html
* igt@kms_cursor_crc@cursor-suspend:
- shard-glk10: NOTRUN -> [INCOMPLETE][194] ([i915#12358] / [i915#14152] / [i915#7882])
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-glk10/igt@kms_cursor_crc@cursor-suspend.html
* igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1:
- shard-glk10: NOTRUN -> [INCOMPLETE][195] ([i915#12358] / [i915#14152])
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-glk10/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-1.html
* igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy:
- shard-dg2: NOTRUN -> [SKIP][196] ([i915#13046] / [i915#5354]) +1 other test skip
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-dg2-10/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html
- shard-mtlp: NOTRUN -> [SKIP][197] ([i915#9809])
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-mtlp-1/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-tglu: NOTRUN -> [SKIP][198] ([i915#4103])
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-tglu-3/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size:
- shard-rkl: NOTRUN -> [SKIP][199] ([i915#4103])
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic:
- shard-rkl: NOTRUN -> [SKIP][200] ([i915#14544]) +2 other tests skip
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-6/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html
* igt@kms_dirtyfb@drrs-dirtyfb-ioctl:
- shard-tglu-1: NOTRUN -> [SKIP][201] ([i915#9723])
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-tglu-1/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html
* igt@kms_dirtyfb@psr-dirtyfb-ioctl:
- shard-rkl: NOTRUN -> [SKIP][202] ([i915#9723])
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-2/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html
* igt@kms_dp_link_training@uhbr-mst:
- shard-mtlp: NOTRUN -> [SKIP][203] ([i915#13749])
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-mtlp-5/igt@kms_dp_link_training@uhbr-mst.html
- shard-dg2: NOTRUN -> [SKIP][204] ([i915#13748])
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-dg2-5/igt@kms_dp_link_training@uhbr-mst.html
- shard-rkl: NOTRUN -> [SKIP][205] ([i915#13748])
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-8/igt@kms_dp_link_training@uhbr-mst.html
- shard-dg1: NOTRUN -> [SKIP][206] ([i915#13748])
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-dg1-19/igt@kms_dp_link_training@uhbr-mst.html
* igt@kms_dp_linktrain_fallback@dsc-fallback:
- shard-rkl: NOTRUN -> [SKIP][207] ([i915#13707]) +1 other test skip
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-4/igt@kms_dp_linktrain_fallback@dsc-fallback.html
- shard-dg1: NOTRUN -> [SKIP][208] ([i915#13707])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-dg1-13/igt@kms_dp_linktrain_fallback@dsc-fallback.html
- shard-tglu: NOTRUN -> [SKIP][209] ([i915#13707])
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-tglu-5/igt@kms_dp_linktrain_fallback@dsc-fallback.html
- shard-mtlp: NOTRUN -> [SKIP][210] ([i915#13707])
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-mtlp-4/igt@kms_dp_linktrain_fallback@dsc-fallback.html
* igt@kms_dsc@dsc-fractional-bpp:
- shard-rkl: NOTRUN -> [SKIP][211] ([i915#14544] / [i915#3840])
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-6/igt@kms_dsc@dsc-fractional-bpp.html
- shard-tglu: NOTRUN -> [SKIP][212] ([i915#3840])
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-tglu-4/igt@kms_dsc@dsc-fractional-bpp.html
* igt@kms_dsc@dsc-fractional-bpp-with-bpc:
- shard-tglu-1: NOTRUN -> [SKIP][213] ([i915#3840])
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-tglu-1/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html
* igt@kms_dsc@dsc-with-bpc:
- shard-rkl: NOTRUN -> [SKIP][214] ([i915#3555] / [i915#3840])
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-2/igt@kms_dsc@dsc-with-bpc.html
- shard-dg1: NOTRUN -> [SKIP][215] ([i915#3555] / [i915#3840])
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-dg1-15/igt@kms_dsc@dsc-with-bpc.html
- shard-tglu: NOTRUN -> [SKIP][216] ([i915#3555] / [i915#3840])
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-tglu-4/igt@kms_dsc@dsc-with-bpc.html
- shard-mtlp: NOTRUN -> [SKIP][217] ([i915#3555] / [i915#3840])
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-mtlp-6/igt@kms_dsc@dsc-with-bpc.html
* igt@kms_dsc@dsc-with-output-formats:
- shard-dg2: NOTRUN -> [SKIP][218] ([i915#3555] / [i915#3840]) +1 other test skip
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-dg2-6/igt@kms_dsc@dsc-with-output-formats.html
- shard-tglu-1: NOTRUN -> [SKIP][219] ([i915#3555] / [i915#3840])
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-tglu-1/igt@kms_dsc@dsc-with-output-formats.html
* igt@kms_fbcon_fbt@fbc-suspend:
- shard-rkl: [PASS][220] -> [INCOMPLETE][221] ([i915#9878])
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-rkl-4/igt@kms_fbcon_fbt@fbc-suspend.html
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-6/igt@kms_fbcon_fbt@fbc-suspend.html
* igt@kms_fbcon_fbt@psr:
- shard-dg1: NOTRUN -> [SKIP][222] ([i915#3469])
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-dg1-16/igt@kms_fbcon_fbt@psr.html
* igt@kms_feature_discovery@chamelium:
- shard-rkl: NOTRUN -> [SKIP][223] ([i915#4854])
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-7/igt@kms_feature_discovery@chamelium.html
* igt@kms_feature_discovery@display-2x:
- shard-dg2: NOTRUN -> [SKIP][224] ([i915#1839])
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-dg2-10/igt@kms_feature_discovery@display-2x.html
- shard-rkl: NOTRUN -> [SKIP][225] ([i915#1839]) +1 other test skip
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-1/igt@kms_feature_discovery@display-2x.html
* igt@kms_feature_discovery@dp-mst:
- shard-tglu: NOTRUN -> [SKIP][226] ([i915#9337])
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-tglu-10/igt@kms_feature_discovery@dp-mst.html
* igt@kms_feature_discovery@psr1:
- shard-tglu: NOTRUN -> [SKIP][227] ([i915#658])
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-tglu-7/igt@kms_feature_discovery@psr1.html
- shard-dg2: NOTRUN -> [SKIP][228] ([i915#658])
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-dg2-8/igt@kms_feature_discovery@psr1.html
- shard-rkl: NOTRUN -> [SKIP][229] ([i915#658])
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-3/igt@kms_feature_discovery@psr1.html
- shard-dg1: NOTRUN -> [SKIP][230] ([i915#658])
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-dg1-16/igt@kms_feature_discovery@psr1.html
* igt@kms_flip@2x-absolute-wf_vblank-interruptible:
- shard-dg1: NOTRUN -> [SKIP][231] ([i915#9934]) +2 other tests skip
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-dg1-15/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html
* igt@kms_flip@2x-blocking-absolute-wf_vblank:
- shard-tglu: NOTRUN -> [SKIP][232] ([i915#3637] / [i915#9934]) +9 other tests skip
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-tglu-2/igt@kms_flip@2x-blocking-absolute-wf_vblank.html
- shard-mtlp: NOTRUN -> [SKIP][233] ([i915#3637] / [i915#9934]) +2 other tests skip
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-mtlp-3/igt@kms_flip@2x-blocking-absolute-wf_vblank.html
* igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset:
- shard-rkl: NOTRUN -> [SKIP][234] ([i915#14544] / [i915#9934])
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-6/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html
* igt@kms_flip@2x-flip-vs-fences-interruptible:
- shard-dg2: NOTRUN -> [SKIP][235] ([i915#8381])
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-dg2-5/igt@kms_flip@2x-flip-vs-fences-interruptible.html
* igt@kms_flip@2x-flip-vs-panning-vs-hang:
- shard-dg2: NOTRUN -> [SKIP][236] ([i915#9934]) +5 other tests skip
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-dg2-4/igt@kms_flip@2x-flip-vs-panning-vs-hang.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible:
- shard-glk: NOTRUN -> [INCOMPLETE][237] ([i915#12745] / [i915#4839])
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-glk2/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible@ac-hdmi-a1-hdmi-a2:
- shard-glk: NOTRUN -> [INCOMPLETE][238] ([i915#12745])
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-glk2/igt@kms_flip@2x-flip-vs-suspend-interruptible@ac-hdmi-a1-hdmi-a2.html
* igt@kms_flip@2x-modeset-vs-vblank-race:
- shard-rkl: NOTRUN -> [SKIP][239] ([i915#9934]) +6 other tests skip
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-8/igt@kms_flip@2x-modeset-vs-vblank-race.html
* igt@kms_flip@2x-plain-flip-ts-check-interruptible:
- shard-tglu-1: NOTRUN -> [SKIP][240] ([i915#3637] / [i915#9934])
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-tglu-1/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling:
- shard-tglu-1: NOTRUN -> [SKIP][241] ([i915#15643])
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling:
- shard-dg2: NOTRUN -> [SKIP][242] ([i915#15643]) +1 other test skip
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-dg2-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling:
- shard-dg2: NOTRUN -> [SKIP][243] ([i915#15643] / [i915#5190]) +1 other test skip
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-dg2-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling:
- shard-tglu: NOTRUN -> [SKIP][244] ([i915#15643]) +4 other tests skip
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-tglu-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html
- shard-mtlp: NOTRUN -> [SKIP][245] ([i915#3555] / [i915#8810] / [i915#8813])
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][246] ([i915#8810] / [i915#8813])
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-mtlp-4/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling:
- shard-rkl: NOTRUN -> [SKIP][247] ([i915#15643]) +7 other tests skip
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-5/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling:
- shard-dg1: NOTRUN -> [SKIP][248] ([i915#15643]) +3 other tests skip
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-dg1-13/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html
- shard-mtlp: NOTRUN -> [SKIP][249] ([i915#15643]) +1 other test skip
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling.html
* igt@kms_force_connector_basic@force-edid:
- shard-mtlp: [PASS][250] -> [SKIP][251] ([i915#15672])
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-mtlp-3/igt@kms_force_connector_basic@force-edid.html
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-mtlp-1/igt@kms_force_connector_basic@force-edid.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][252] ([i915#15104]) +2 other tests skip
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-mmap-gtt.html
- shard-dg1: NOTRUN -> [SKIP][253] ([i915#15104]) +1 other test skip
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-dg1-17/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-mmap-gtt.html
- shard-mtlp: NOTRUN -> [SKIP][254] ([i915#15104])
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-mtlp-1/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-onoff:
- shard-dg2: [PASS][255] -> [FAIL][256] ([i915#15389] / [i915#6880])
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-onoff.html
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render:
- shard-dg1: NOTRUN -> [SKIP][257] +26 other tests skip
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-dg1-14/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt:
- shard-dg2: NOTRUN -> [SKIP][258] ([i915#5354]) +22 other tests skip
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-dg2-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][259] ([i915#15102]) +3 other tests skip
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-dg2-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-blt.html
- shard-dg1: NOTRUN -> [SKIP][260] ([i915#15102]) +3 other tests skip
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-gtt:
- shard-rkl: NOTRUN -> [SKIP][261] ([i915#15102]) +6 other tests skip
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][262] ([i915#8708]) +9 other tests skip
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-move:
- shard-rkl: NOTRUN -> [SKIP][263] ([i915#14544] / [i915#1825]) +2 other tests skip
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-move.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-pwrite:
- shard-tglu-1: NOTRUN -> [SKIP][264] +23 other tests skip
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][265] ([i915#4423] / [i915#8708])
[265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt:
- shard-snb: NOTRUN -> [SKIP][266] +156 other tests skip
[266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-snb5/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt.html
- shard-dg1: NOTRUN -> [SKIP][267] ([i915#15102] / [i915#3458]) +10 other tests skip
[267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc:
- shard-rkl: NOTRUN -> [SKIP][268] ([i915#15102] / [i915#3023]) +31 other tests skip
[268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-8/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-y:
- shard-dg2: NOTRUN -> [SKIP][269] ([i915#10055])
[269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
- shard-mtlp: NOTRUN -> [SKIP][270] ([i915#10055])
[270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-pwrite:
- shard-rkl: NOTRUN -> [SKIP][271] ([i915#14544] / [i915#15102])
[271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu:
- shard-dg2: NOTRUN -> [SKIP][272] ([i915#15102] / [i915#3458]) +13 other tests skip
[272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-dg2-10/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite:
- shard-glk11: NOTRUN -> [SKIP][273] +50 other tests skip
[273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-glk11/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt:
- shard-rkl: NOTRUN -> [SKIP][274] ([i915#1825]) +43 other tests skip
[274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html
- shard-mtlp: NOTRUN -> [SKIP][275] ([i915#1825]) +10 other tests skip
[275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-mtlp-1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-wc:
- shard-tglu-1: NOTRUN -> [SKIP][276] ([i915#15102]) +8 other tests skip
[276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt:
- shard-tglu: NOTRUN -> [SKIP][277] ([i915#15102]) +29 other tests skip
[277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-tglu-6/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt.html
- shard-mtlp: NOTRUN -> [SKIP][278] ([i915#8708]) +3 other tests skip
[278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-mtlp-5/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc:
- shard-dg1: NOTRUN -> [SKIP][279] ([i915#8708]) +9 other tests skip
[279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-wc.html
* igt@kms_hdmi_inject@inject-audio:
- shard-dg1: [PASS][280] -> [SKIP][281] ([i915#13030])
[280]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-dg1-14/igt@kms_hdmi_inject@inject-audio.html
[281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-dg1-14/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_hdr@brightness-with-hdr:
- shard-rkl: NOTRUN -> [SKIP][282] ([i915#13331])
[282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-1/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_hdr@static-toggle-suspend:
- shard-rkl: NOTRUN -> [SKIP][283] ([i915#3555] / [i915#8228]) +2 other tests skip
[283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-5/igt@kms_hdr@static-toggle-suspend.html
- shard-tglu: NOTRUN -> [SKIP][284] ([i915#3555] / [i915#8228]) +1 other test skip
[284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-tglu-10/igt@kms_hdr@static-toggle-suspend.html
* igt@kms_joiner@basic-big-joiner:
- shard-rkl: NOTRUN -> [SKIP][285] ([i915#15460])
[285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-5/igt@kms_joiner@basic-big-joiner.html
* igt@kms_joiner@basic-force-big-joiner:
- shard-tglu: NOTRUN -> [SKIP][286] ([i915#15459])
[286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-tglu-2/igt@kms_joiner@basic-force-big-joiner.html
* igt@kms_joiner@basic-max-non-joiner:
- shard-tglu: NOTRUN -> [SKIP][287] ([i915#13688])
[287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-tglu-8/igt@kms_joiner@basic-max-non-joiner.html
- shard-mtlp: NOTRUN -> [SKIP][288] ([i915#13688])
[288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-mtlp-3/igt@kms_joiner@basic-max-non-joiner.html
- shard-dg2: NOTRUN -> [SKIP][289] ([i915#13688])
[289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-dg2-1/igt@kms_joiner@basic-max-non-joiner.html
- shard-rkl: NOTRUN -> [SKIP][290] ([i915#13688])
[290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-2/igt@kms_joiner@basic-max-non-joiner.html
- shard-dg1: NOTRUN -> [SKIP][291] ([i915#13688])
[291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-dg1-17/igt@kms_joiner@basic-max-non-joiner.html
* igt@kms_joiner@invalid-modeset-big-joiner:
- shard-tglu: NOTRUN -> [SKIP][292] ([i915#15460])
[292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-tglu-9/igt@kms_joiner@invalid-modeset-big-joiner.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-rkl: NOTRUN -> [SKIP][293] ([i915#6301])
[293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-5/igt@kms_panel_fitting@atomic-fastset.html
- shard-tglu: NOTRUN -> [SKIP][294] ([i915#6301])
[294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-tglu-10/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_pipe_crc_basic@suspend-read-crc:
- shard-rkl: [PASS][295] -> [INCOMPLETE][296] ([i915#12756] / [i915#13476])
[295]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-rkl-4/igt@kms_pipe_crc_basic@suspend-read-crc.html
[296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-6/igt@kms_pipe_crc_basic@suspend-read-crc.html
- shard-glk: NOTRUN -> [INCOMPLETE][297] ([i915#12756] / [i915#13409] / [i915#13476])
[297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-glk6/igt@kms_pipe_crc_basic@suspend-read-crc.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-2:
- shard-rkl: [PASS][298] -> [INCOMPLETE][299] ([i915#13476])
[298]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-rkl-4/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-2.html
[299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-6/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-2.html
* igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-2:
- shard-glk: NOTRUN -> [INCOMPLETE][300] ([i915#13409] / [i915#13476])
[300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-glk6/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-b-hdmi-a-2.html
* igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier:
- shard-rkl: NOTRUN -> [SKIP][301] ([i915#15709]) +2 other tests skip
[301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-3/igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier.html
- shard-tglu-1: NOTRUN -> [SKIP][302] ([i915#15709]) +1 other test skip
[302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-tglu-1/igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier.html
* igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier-source-clamping:
- shard-dg1: NOTRUN -> [SKIP][303] ([i915#15709]) +2 other tests skip
[303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-dg1-16/igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier:
- shard-tglu: NOTRUN -> [SKIP][304] ([i915#15709]) +1 other test skip
[304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-tglu-5/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier.html
* igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping:
- shard-dg2: NOTRUN -> [SKIP][305] ([i915#15709]) +2 other tests skip
[305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-dg2-3/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-y-tiled-ccs-modifier-source-clamping:
- shard-mtlp: NOTRUN -> [SKIP][306] ([i915#15709])
[306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-mtlp-8/igt@kms_plane@pixel-format-y-tiled-ccs-modifier-source-clamping.html
* igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier@pipe-a-plane-5:
- shard-rkl: NOTRUN -> [SKIP][307] ([i915#15608]) +1 other test skip
[307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-6/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier@pipe-a-plane-5.html
* igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier@pipe-a-plane-7:
- shard-tglu: NOTRUN -> [SKIP][308] ([i915#15608]) +1 other test skip
[308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-tglu-8/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier@pipe-a-plane-7.html
* igt@kms_plane@pixel-format-y-tiled-modifier@pipe-b-plane-7:
- shard-dg1: NOTRUN -> [SKIP][309] ([i915#15608]) +1 other test skip
[309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-dg1-13/igt@kms_plane@pixel-format-y-tiled-modifier@pipe-b-plane-7.html
* igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a:
- shard-rkl: [PASS][310] -> [INCOMPLETE][311] ([i915#14412]) +1 other test incomplete
[310]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-rkl-4/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html
[311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-3/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html
* igt@kms_plane_alpha_blend@alpha-basic:
- shard-glk10: NOTRUN -> [FAIL][312] ([i915#12178])
[312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/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][313] ([i915#7862]) +1 other test fail
[313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-glk10/igt@kms_plane_alpha_blend@alpha-basic@pipe-c-hdmi-a-1.html
* igt@kms_plane_alpha_blend@alpha-transparent-fb:
- shard-glk10: NOTRUN -> [FAIL][314] ([i915#10647] / [i915#12177])
[314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-glk10/igt@kms_plane_alpha_blend@alpha-transparent-fb.html
* igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1:
- shard-glk10: NOTRUN -> [FAIL][315] ([i915#10647]) +1 other test fail
[315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-glk10/igt@kms_plane_alpha_blend@alpha-transparent-fb@pipe-a-hdmi-a-1.html
* igt@kms_plane_alpha_blend@constant-alpha-max:
- shard-glk: NOTRUN -> [FAIL][316] ([i915#10647] / [i915#12169])
[316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-glk4/igt@kms_plane_alpha_blend@constant-alpha-max.html
* igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1:
- shard-glk: NOTRUN -> [FAIL][317] ([i915#10647]) +1 other test fail
[317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-glk4/igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1.html
* igt@kms_plane_lowres@tiling-4:
- shard-mtlp: NOTRUN -> [SKIP][318] ([i915#10226] / [i915#11614] / [i915#3555] / [i915#8821])
[318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-mtlp-2/igt@kms_plane_lowres@tiling-4.html
* igt@kms_plane_lowres@tiling-4@pipe-c-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][319] ([i915#11614] / [i915#3582]) +3 other tests skip
[319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-mtlp-2/igt@kms_plane_lowres@tiling-4@pipe-c-edp-1.html
* igt@kms_plane_multiple@2x-tiling-yf:
- shard-tglu-1: NOTRUN -> [SKIP][320] ([i915#13958])
[320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-tglu-1/igt@kms_plane_multiple@2x-tiling-yf.html
- shard-dg2: NOTRUN -> [SKIP][321] ([i915#13958])
[321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-dg2-6/igt@kms_plane_multiple@2x-tiling-yf.html
- shard-rkl: NOTRUN -> [SKIP][322] ([i915#13958])
[322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-4/igt@kms_plane_multiple@2x-tiling-yf.html
* igt@kms_plane_multiple@tiling-yf:
- shard-rkl: NOTRUN -> [SKIP][323] ([i915#14259])
[323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-2/igt@kms_plane_multiple@tiling-yf.html
- shard-dg1: NOTRUN -> [SKIP][324] ([i915#14259])
[324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-dg1-15/igt@kms_plane_multiple@tiling-yf.html
- shard-tglu: NOTRUN -> [SKIP][325] ([i915#14259])
[325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-tglu-4/igt@kms_plane_multiple@tiling-yf.html
- shard-mtlp: NOTRUN -> [SKIP][326] ([i915#14259])
[326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-mtlp-6/igt@kms_plane_multiple@tiling-yf.html
- shard-dg2: NOTRUN -> [SKIP][327] ([i915#14259])
[327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-dg2-1/igt@kms_plane_multiple@tiling-yf.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-rkl: [PASS][328] -> [SKIP][329] ([i915#6953])
[328]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-rkl-1/igt@kms_plane_scaling@intel-max-src-size.html
[329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-7/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-b:
- shard-rkl: NOTRUN -> [SKIP][330] ([i915#15329]) +3 other tests skip
[330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-3/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-b.html
* igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d:
- shard-dg1: NOTRUN -> [SKIP][331] ([i915#15329]) +9 other tests skip
[331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-dg1-12/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5:
- shard-mtlp: NOTRUN -> [SKIP][332] ([i915#15329] / [i915#3555] / [i915#6953])
[332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-mtlp-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5.html
* igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b:
- shard-mtlp: NOTRUN -> [SKIP][333] ([i915#15329]) +3 other tests skip
[333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-mtlp-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5:
- shard-dg1: [PASS][334] -> [DMESG-WARN][335] ([i915#4423]) +3 other tests dmesg-warn
[334]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-dg1-12/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html
[335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-dg1-16/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5.html
* igt@kms_pm_backlight@fade-with-suspend:
- shard-rkl: NOTRUN -> [SKIP][336] ([i915#5354]) +1 other test skip
[336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-3/igt@kms_pm_backlight@fade-with-suspend.html
- shard-dg1: NOTRUN -> [SKIP][337] ([i915#5354]) +1 other test skip
[337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-dg1-15/igt@kms_pm_backlight@fade-with-suspend.html
- shard-tglu: NOTRUN -> [SKIP][338] ([i915#9812])
[338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-tglu-3/igt@kms_pm_backlight@fade-with-suspend.html
* igt@kms_pm_dc@dc3co-vpb-simulation:
- shard-dg2: NOTRUN -> [SKIP][339] ([i915#9685])
[339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-dg2-6/igt@kms_pm_dc@dc3co-vpb-simulation.html
- shard-tglu-1: NOTRUN -> [SKIP][340] ([i915#9685])
[340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-tglu-1/igt@kms_pm_dc@dc3co-vpb-simulation.html
* igt@kms_pm_dc@dc5-retention-flops:
- shard-rkl: NOTRUN -> [SKIP][341] ([i915#3828])
[341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-5/igt@kms_pm_dc@dc5-retention-flops.html
* igt@kms_pm_dc@dc6-dpms:
- shard-tglu: NOTRUN -> [FAIL][342] ([i915#15752])
[342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-tglu-4/igt@kms_pm_dc@dc6-dpms.html
* igt@kms_pm_dc@dc6-psr:
- shard-rkl: NOTRUN -> [SKIP][343] ([i915#9685]) +1 other test skip
[343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-8/igt@kms_pm_dc@dc6-psr.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-glk10: NOTRUN -> [SKIP][344] +55 other tests skip
[344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-glk10/igt@kms_pm_lpsp@kms-lpsp.html
- shard-rkl: NOTRUN -> [SKIP][345] ([i915#9340])
[345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-4/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_pm_lpsp@screens-disabled:
- shard-tglu: NOTRUN -> [SKIP][346] ([i915#8430])
[346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-tglu-7/igt@kms_pm_lpsp@screens-disabled.html
* igt@kms_pm_rpm@cursor-dpms:
- shard-mtlp: NOTRUN -> [SKIP][347] ([i915#4077]) +4 other tests skip
[347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-mtlp-7/igt@kms_pm_rpm@cursor-dpms.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-dg2: [PASS][348] -> [SKIP][349] ([i915#15073])
[348]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-dg2-4/igt@kms_pm_rpm@dpms-lpsp.html
[349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-dg2-6/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_pm_rpm@dpms-mode-unset-lpsp:
- shard-rkl: [PASS][350] -> [SKIP][351] ([i915#15073])
[350]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-rkl-2/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
[351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-4/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-tglu: NOTRUN -> [SKIP][352] ([i915#15073]) +1 other test skip
[352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-tglu-4/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait:
- shard-rkl: NOTRUN -> [SKIP][353] ([i915#15073]) +1 other test skip
[353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-5/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
- shard-mtlp: NOTRUN -> [SKIP][354] ([i915#15073])
[354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-mtlp-7/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html
* igt@kms_pm_rpm@package-g7:
- shard-tglu: NOTRUN -> [SKIP][355] ([i915#15403])
[355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-tglu-3/igt@kms_pm_rpm@package-g7.html
- shard-mtlp: NOTRUN -> [SKIP][356] ([i915#15403])
[356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-mtlp-2/igt@kms_pm_rpm@package-g7.html
- shard-dg2: NOTRUN -> [SKIP][357] ([i915#15403])
[357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-dg2-8/igt@kms_pm_rpm@package-g7.html
- shard-rkl: NOTRUN -> [SKIP][358] ([i915#15403])
[358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-3/igt@kms_pm_rpm@package-g7.html
- shard-dg1: NOTRUN -> [SKIP][359] ([i915#15403])
[359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-dg1-15/igt@kms_pm_rpm@package-g7.html
* igt@kms_pm_rpm@system-suspend-modeset:
- shard-rkl: [PASS][360] -> [INCOMPLETE][361] ([i915#14419])
[360]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-rkl-2/igt@kms_pm_rpm@system-suspend-modeset.html
[361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-3/igt@kms_pm_rpm@system-suspend-modeset.html
* igt@kms_prime@basic-crc-hybrid:
- shard-rkl: NOTRUN -> [SKIP][362] ([i915#6524])
[362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-8/igt@kms_prime@basic-crc-hybrid.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf:
- shard-tglu: NOTRUN -> [SKIP][363] ([i915#11520]) +4 other tests skip
[363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-tglu-4/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf:
- shard-dg2: NOTRUN -> [SKIP][364] ([i915#11520]) +3 other tests skip
[364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-dg2-8/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html
- shard-snb: NOTRUN -> [SKIP][365] ([i915#11520]) +1 other test skip
[365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-snb4/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html
- shard-mtlp: NOTRUN -> [SKIP][366] ([i915#12316]) +1 other test skip
[366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-mtlp-6/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area:
- shard-rkl: NOTRUN -> [SKIP][367] ([i915#11520]) +7 other tests skip
[367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-5/igt@kms_psr2_sf@fbc-pr-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-sf:
- shard-rkl: NOTRUN -> [SKIP][368] ([i915#11520] / [i915#14544])
[368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-6/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-sf.html
* igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf:
- shard-dg1: NOTRUN -> [SKIP][369] ([i915#11520]) +3 other tests skip
[369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-dg1-15/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-exceed-fully-sf.html
* igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area:
- shard-tglu-1: NOTRUN -> [SKIP][370] ([i915#11520]) +3 other tests skip
[370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-tglu-1/igt@kms_psr2_sf@psr2-overlay-plane-update-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area:
- shard-glk: NOTRUN -> [SKIP][371] ([i915#11520]) +14 other tests skip
[371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-glk4/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-rkl: NOTRUN -> [SKIP][372] ([i915#9683])
[372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-8/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-tglu: NOTRUN -> [SKIP][373] ([i915#9683])
[373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-tglu-10/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@fbc-psr-cursor-plane-move:
- shard-dg2: NOTRUN -> [SKIP][374] ([i915#1072] / [i915#9732]) +18 other tests skip
[374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-dg2-5/igt@kms_psr@fbc-psr-cursor-plane-move.html
- shard-rkl: NOTRUN -> [SKIP][375] ([i915#1072] / [i915#9732]) +28 other tests skip
[375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-7/igt@kms_psr@fbc-psr-cursor-plane-move.html
* igt@kms_psr@fbc-psr-primary-page-flip@edp-1:
- shard-mtlp: NOTRUN -> [SKIP][376] ([i915#9688]) +9 other tests skip
[376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-mtlp-6/igt@kms_psr@fbc-psr-primary-page-flip@edp-1.html
* igt@kms_psr@fbc-psr2-basic:
- shard-dg1: NOTRUN -> [SKIP][377] ([i915#1072] / [i915#9732]) +14 other tests skip
[377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-dg1-15/igt@kms_psr@fbc-psr2-basic.html
* igt@kms_psr@pr-no-drrs:
- shard-rkl: NOTRUN -> [SKIP][378] ([i915#1072] / [i915#14544] / [i915#9732]) +2 other tests skip
[378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-6/igt@kms_psr@pr-no-drrs.html
* igt@kms_psr@pr-sprite-plane-move:
- shard-tglu: NOTRUN -> [SKIP][379] ([i915#9732]) +20 other tests skip
[379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-tglu-7/igt@kms_psr@pr-sprite-plane-move.html
* igt@kms_psr@psr-sprite-mmap-cpu:
- shard-tglu-1: NOTRUN -> [SKIP][380] ([i915#9732]) +8 other tests skip
[380]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-tglu-1/igt@kms_psr@psr-sprite-mmap-cpu.html
* igt@kms_rotation_crc@multiplane-rotation:
- shard-glk: NOTRUN -> [INCOMPLETE][381] ([i915#15492]) +1 other test incomplete
[381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-glk5/igt@kms_rotation_crc@multiplane-rotation.html
* igt@kms_rotation_crc@primary-4-tiled-reflect-x-180:
- shard-rkl: NOTRUN -> [SKIP][382] ([i915#14544] / [i915#5289])
[382]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-6/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-dg1: NOTRUN -> [SKIP][383] ([i915#5289]) +2 other tests skip
[383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-dg1-15/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-dg2: NOTRUN -> [SKIP][384] ([i915#12755] / [i915#15867] / [i915#5190])
[384]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-dg2-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
- shard-rkl: NOTRUN -> [SKIP][385] ([i915#5289])
[385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
- shard-tglu: NOTRUN -> [SKIP][386] ([i915#5289]) +1 other test skip
[386]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-tglu-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
- shard-mtlp: NOTRUN -> [SKIP][387] ([i915#12755] / [i915#15867])
[387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-mtlp-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_setmode@basic:
- shard-tglu: NOTRUN -> [FAIL][388] ([i915#15106]) +2 other tests fail
[388]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-tglu-4/igt@kms_setmode@basic.html
* igt@kms_setmode@invalid-clone-exclusive-crtc:
- shard-rkl: NOTRUN -> [SKIP][389] ([i915#14544] / [i915#3555])
[389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-6/igt@kms_setmode@invalid-clone-exclusive-crtc.html
* igt@kms_tiled_display@basic-test-pattern:
- shard-glk: NOTRUN -> [FAIL][390] ([i915#10959])
[390]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-glk2/igt@kms_tiled_display@basic-test-pattern.html
* igt@kms_tiled_display@basic-test-pattern-with-chamelium:
- shard-tglu: NOTRUN -> [SKIP][391] ([i915#8623])
[391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-tglu-4/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html
* igt@kms_vblank@ts-continuation-dpms-suspend:
- shard-rkl: [PASS][392] -> [INCOMPLETE][393] ([i915#12276]) +1 other test incomplete
[392]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-rkl-7/igt@kms_vblank@ts-continuation-dpms-suspend.html
[393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-6/igt@kms_vblank@ts-continuation-dpms-suspend.html
* igt@kms_vblank@ts-continuation-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][394] ([i915#12276]) +1 other test incomplete
[394]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-glk6/igt@kms_vblank@ts-continuation-suspend.html
* igt@kms_vrr@flip-basic:
- shard-tglu-1: NOTRUN -> [SKIP][395] ([i915#3555]) +2 other tests skip
[395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-tglu-1/igt@kms_vrr@flip-basic.html
* igt@kms_vrr@flip-dpms:
- shard-dg2: NOTRUN -> [SKIP][396] ([i915#15243] / [i915#3555])
[396]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-dg2-4/igt@kms_vrr@flip-dpms.html
- shard-rkl: NOTRUN -> [SKIP][397] ([i915#15243] / [i915#3555])
[397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-5/igt@kms_vrr@flip-dpms.html
- shard-mtlp: NOTRUN -> [SKIP][398] ([i915#3555] / [i915#8808])
[398]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-mtlp-4/igt@kms_vrr@flip-dpms.html
* igt@kms_vrr@max-min:
- shard-tglu-1: NOTRUN -> [SKIP][399] ([i915#9906]) +1 other test skip
[399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-tglu-1/igt@kms_vrr@max-min.html
* igt@kms_vrr@negative-basic:
- shard-tglu: NOTRUN -> [SKIP][400] ([i915#3555] / [i915#9906])
[400]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-tglu-2/igt@kms_vrr@negative-basic.html
* igt@kms_vrr@seamless-rr-switch-vrr:
- shard-rkl: NOTRUN -> [SKIP][401] ([i915#9906]) +1 other test skip
[401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-7/igt@kms_vrr@seamless-rr-switch-vrr.html
* igt@perf@global-sseu-config-invalid:
- shard-mtlp: NOTRUN -> [SKIP][402] ([i915#7387])
[402]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-mtlp-4/igt@perf@global-sseu-config-invalid.html
* igt@perf@mi-rpc:
- shard-dg2: NOTRUN -> [SKIP][403] ([i915#2434])
[403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-dg2-10/igt@perf@mi-rpc.html
- shard-rkl: NOTRUN -> [SKIP][404] ([i915#2434])
[404]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-1/igt@perf@mi-rpc.html
- shard-dg1: NOTRUN -> [SKIP][405] ([i915#2434])
[405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-dg1-17/igt@perf@mi-rpc.html
- shard-mtlp: NOTRUN -> [SKIP][406] ([i915#2434])
[406]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-mtlp-1/igt@perf@mi-rpc.html
* igt@perf@unprivileged-single-ctx-counters:
- shard-rkl: NOTRUN -> [SKIP][407] ([i915#2433])
[407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-3/igt@perf@unprivileged-single-ctx-counters.html
* igt@perf_pmu@module-unload:
- shard-glk10: NOTRUN -> [ABORT][408] ([i915#15778])
[408]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-glk10/igt@perf_pmu@module-unload.html
* igt@perf_pmu@rc6-suspend:
- shard-glk: NOTRUN -> [INCOMPLETE][409] ([i915#13356])
[409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-glk8/igt@perf_pmu@rc6-suspend.html
* igt@perf_pmu@rc6@other-idle-gt0:
- shard-rkl: NOTRUN -> [SKIP][410] ([i915#8516])
[410]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-7/igt@perf_pmu@rc6@other-idle-gt0.html
* igt@prime_vgem@basic-fence-read:
- shard-dg1: NOTRUN -> [SKIP][411] ([i915#3708])
[411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-dg1-17/igt@prime_vgem@basic-fence-read.html
* igt@prime_vgem@coherency-gtt:
- shard-rkl: NOTRUN -> [SKIP][412] ([i915#3708])
[412]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-7/igt@prime_vgem@coherency-gtt.html
* igt@sriov_basic@bind-unbind-vf@vf-4:
- shard-tglu: NOTRUN -> [FAIL][413] ([i915#12910]) +10 other tests fail
[413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-tglu-2/igt@sriov_basic@bind-unbind-vf@vf-4.html
* igt@sriov_basic@enable-vfs-autoprobe-off:
- shard-rkl: NOTRUN -> [SKIP][414] ([i915#9917]) +2 other tests skip
[414]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-1/igt@sriov_basic@enable-vfs-autoprobe-off.html
* igt@sriov_basic@enable-vfs-bind-unbind-each@numvfs-2:
- shard-tglu-1: NOTRUN -> [FAIL][415] ([i915#12910]) +18 other tests fail
[415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-tglu-1/igt@sriov_basic@enable-vfs-bind-unbind-each@numvfs-2.html
#### Possible fixes ####
* igt@gem_eio@suspend:
- shard-dg2: [ABORT][416] ([i915#15131]) -> [PASS][417]
[416]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-dg2-10/igt@gem_eio@suspend.html
[417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-dg2-3/igt@gem_eio@suspend.html
* igt@gem_exec_big@single:
- shard-mtlp: [FAIL][418] -> [PASS][419]
[418]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-mtlp-2/igt@gem_exec_big@single.html
[419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-mtlp-2/igt@gem_exec_big@single.html
* igt@gem_exec_suspend@basic-s3@smem:
- shard-tglu: [ABORT][420] ([i915#15652]) -> [PASS][421] +1 other test pass
[420]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-tglu-7/igt@gem_exec_suspend@basic-s3@smem.html
[421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-tglu-9/igt@gem_exec_suspend@basic-s3@smem.html
* igt@gem_exec_suspend@basic-s4-devices:
- shard-tglu: [FAIL][422] -> [PASS][423] +1 other test pass
[422]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-tglu-2/igt@gem_exec_suspend@basic-s4-devices.html
[423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-tglu-10/igt@gem_exec_suspend@basic-s4-devices.html
- shard-mtlp: [FAIL][424] ([i915#15762]) -> [PASS][425] +1 other test pass
[424]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-mtlp-2/igt@gem_exec_suspend@basic-s4-devices.html
[425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-mtlp-7/igt@gem_exec_suspend@basic-s4-devices.html
* igt@i915_pm_rpm@sysfs-read:
- shard-dg1: [DMESG-WARN][426] ([i915#4423]) -> [PASS][427] +1 other test pass
[426]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-dg1-12/igt@i915_pm_rpm@sysfs-read.html
[427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-dg1-13/igt@i915_pm_rpm@sysfs-read.html
* igt@i915_selftest@live:
- shard-mtlp: [DMESG-FAIL][428] ([i915#12061] / [i915#15560]) -> [PASS][429]
[428]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-mtlp-1/igt@i915_selftest@live.html
[429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-mtlp-1/igt@i915_selftest@live.html
* igt@i915_selftest@live@workarounds:
- shard-mtlp: [DMESG-FAIL][430] ([i915#12061]) -> [PASS][431]
[430]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-mtlp-1/igt@i915_selftest@live@workarounds.html
[431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-mtlp-1/igt@i915_selftest@live@workarounds.html
* igt@i915_suspend@forcewake:
- shard-rkl: [INCOMPLETE][432] ([i915#4817]) -> [PASS][433]
[432]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-rkl-4/igt@i915_suspend@forcewake.html
[433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-8/igt@i915_suspend@forcewake.html
* igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1:
- shard-mtlp: [FAIL][434] ([i915#5956]) -> [PASS][435] +1 other test pass
[434]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-mtlp-7/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1.html
[435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-mtlp-7/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels@pipe-a-edp-1.html
* igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-1:
- shard-tglu: [FAIL][436] ([i915#15662]) -> [PASS][437] +1 other test pass
[436]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-tglu-9/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-1.html
[437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-tglu-2/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-1.html
* igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-2:
- shard-rkl: [INCOMPLETE][438] ([i915#15582]) -> [PASS][439] +1 other test pass
[438]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-2.html
[439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-4/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-2.html
* igt@kms_cursor_crc@cursor-random-64x21:
- shard-rkl: [FAIL][440] ([i915#13566]) -> [PASS][441] +1 other test pass
[440]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-rkl-3/igt@kms_cursor_crc@cursor-random-64x21.html
[441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-7/igt@kms_cursor_crc@cursor-random-64x21.html
* igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-2:
- shard-rkl: [INCOMPLETE][442] ([i915#12358] / [i915#14152]) -> [PASS][443] +1 other test pass
[442]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-rkl-6/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-2.html
[443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-7/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-2.html
* igt@kms_flip@plain-flip-ts-check-interruptible:
- shard-tglu: [FAIL][444] ([i915#14600]) -> [PASS][445] +1 other test pass
[444]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-tglu-2/igt@kms_flip@plain-flip-ts-check-interruptible.html
[445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-tglu-9/igt@kms_flip@plain-flip-ts-check-interruptible.html
* igt@kms_frontbuffer_tracking@fbc-suspend:
- shard-rkl: [ABORT][446] ([i915#15132]) -> [PASS][447]
[446]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-rkl-1/igt@kms_frontbuffer_tracking@fbc-suspend.html
[447]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-2/igt@kms_frontbuffer_tracking@fbc-suspend.html
* igt@kms_hdr@static-toggle:
- shard-dg2: [SKIP][448] ([i915#3555] / [i915#8228]) -> [PASS][449]
[448]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-dg2-5/igt@kms_hdr@static-toggle.html
[449]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-dg2-10/igt@kms_hdr@static-toggle.html
- shard-rkl: [SKIP][450] ([i915#3555] / [i915#8228]) -> [PASS][451]
[450]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-rkl-8/igt@kms_hdr@static-toggle.html
[451]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-1/igt@kms_hdr@static-toggle.html
* igt@kms_plane_cursor@overlay:
- shard-rkl: [FAIL][452] ([i915#15912]) -> [PASS][453] +1 other test pass
[452]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-rkl-8/igt@kms_plane_cursor@overlay.html
[453]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-5/igt@kms_plane_cursor@overlay.html
* igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-1-size-128:
- shard-rkl: [FAIL][454] ([i915#15913]) -> [PASS][455] +1 other test pass
[454]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-rkl-8/igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-1-size-128.html
[455]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-5/igt@kms_plane_cursor@overlay@pipe-a-hdmi-a-1-size-128.html
* igt@kms_pm_rpm@dpms-lpsp:
- shard-dg1: [SKIP][456] ([i915#15073]) -> [PASS][457] +1 other test pass
[456]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-dg1-17/igt@kms_pm_rpm@dpms-lpsp.html
[457]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-dg1-14/igt@kms_pm_rpm@dpms-lpsp.html
* igt@kms_pm_rpm@modeset-lpsp-stress:
- shard-dg2: [SKIP][458] ([i915#15073]) -> [PASS][459]
[458]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-dg2-8/igt@kms_pm_rpm@modeset-lpsp-stress.html
[459]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-dg2-4/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_pm_rpm@modeset-non-lpsp:
- shard-rkl: [SKIP][460] ([i915#15073]) -> [PASS][461]
[460]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-rkl-5/igt@kms_pm_rpm@modeset-non-lpsp.html
[461]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-6/igt@kms_pm_rpm@modeset-non-lpsp.html
* igt@perf_pmu@busy-accuracy-50@rcs0:
- shard-glk: [FAIL][462] ([i915#4349]) -> [PASS][463] +2 other tests pass
[462]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-glk6/igt@perf_pmu@busy-accuracy-50@rcs0.html
[463]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-glk4/igt@perf_pmu@busy-accuracy-50@rcs0.html
#### Warnings ####
* igt@gem_close_race@multigpu-basic-process:
- shard-rkl: [SKIP][464] ([i915#14544] / [i915#7697]) -> [SKIP][465] ([i915#7697])
[464]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-rkl-6/igt@gem_close_race@multigpu-basic-process.html
[465]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-4/igt@gem_close_race@multigpu-basic-process.html
* igt@gem_exec_balancer@parallel-keep-in-fence:
- shard-rkl: [SKIP][466] ([i915#14544] / [i915#4525]) -> [SKIP][467] ([i915#4525])
[466]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-rkl-6/igt@gem_exec_balancer@parallel-keep-in-fence.html
[467]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-3/igt@gem_exec_balancer@parallel-keep-in-fence.html
* igt@gem_exec_reloc@basic-softpin:
- shard-rkl: [SKIP][468] ([i915#14544] / [i915#3281]) -> [SKIP][469] ([i915#3281]) +2 other tests skip
[468]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-rkl-6/igt@gem_exec_reloc@basic-softpin.html
[469]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-4/igt@gem_exec_reloc@basic-softpin.html
* igt@gem_exec_reloc@basic-wc-gtt:
- shard-rkl: [SKIP][470] ([i915#3281]) -> [SKIP][471] ([i915#14544] / [i915#3281]) +1 other test skip
[470]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-rkl-4/igt@gem_exec_reloc@basic-wc-gtt.html
[471]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-6/igt@gem_exec_reloc@basic-wc-gtt.html
* igt@gem_lmem_swapping@heavy-verify-random:
- shard-rkl: [SKIP][472] ([i915#14544] / [i915#4613]) -> [SKIP][473] ([i915#4613]) +1 other test skip
[472]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-rkl-6/igt@gem_lmem_swapping@heavy-verify-random.html
[473]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-4/igt@gem_lmem_swapping@heavy-verify-random.html
* igt@gem_lmem_swapping@random-engines:
- shard-rkl: [SKIP][474] ([i915#4613]) -> [SKIP][475] ([i915#14544] / [i915#4613]) +1 other test skip
[474]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-rkl-2/igt@gem_lmem_swapping@random-engines.html
[475]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-6/igt@gem_lmem_swapping@random-engines.html
* igt@gem_partial_pwrite_pread@reads-uncached:
- shard-rkl: [SKIP][476] ([i915#14544] / [i915#3282]) -> [SKIP][477] ([i915#3282]) +2 other tests skip
[476]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-rkl-6/igt@gem_partial_pwrite_pread@reads-uncached.html
[477]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-7/igt@gem_partial_pwrite_pread@reads-uncached.html
* igt@gem_set_tiling_vs_blt@tiled-to-untiled:
- shard-rkl: [SKIP][478] ([i915#14544] / [i915#8411]) -> [SKIP][479] ([i915#8411])
[478]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-rkl-6/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
[479]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-2/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html
* igt@gem_userptr_blits@unsync-unmap:
- shard-rkl: [SKIP][480] ([i915#14544] / [i915#3297]) -> [SKIP][481] ([i915#3297])
[480]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-rkl-6/igt@gem_userptr_blits@unsync-unmap.html
[481]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-3/igt@gem_userptr_blits@unsync-unmap.html
* igt@i915_pm_freq_api@freq-reset:
- shard-rkl: [SKIP][482] ([i915#14544] / [i915#8399]) -> [SKIP][483] ([i915#8399])
[482]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-rkl-6/igt@i915_pm_freq_api@freq-reset.html
[483]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-4/igt@i915_pm_freq_api@freq-reset.html
* igt@i915_pm_sseu@full-enable:
- shard-rkl: [SKIP][484] ([i915#14544] / [i915#4387]) -> [SKIP][485] ([i915#4387])
[484]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-rkl-6/igt@i915_pm_sseu@full-enable.html
[485]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-2/igt@i915_pm_sseu@full-enable.html
* igt@intel_hwmon@hwmon-write:
- shard-rkl: [SKIP][486] ([i915#14544] / [i915#7707]) -> [SKIP][487] ([i915#7707])
[486]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-rkl-6/igt@intel_hwmon@hwmon-write.html
[487]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-4/igt@intel_hwmon@hwmon-write.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-270:
- shard-rkl: [SKIP][488] ([i915#14544] / [i915#5286]) -> [SKIP][489] ([i915#5286]) +1 other test skip
[488]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-rkl-6/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html
[489]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-8/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@4-tiled-8bpp-rotate-90:
- shard-rkl: [SKIP][490] ([i915#5286]) -> [SKIP][491] ([i915#14544] / [i915#5286]) +2 other tests skip
[490]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-rkl-5/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
[491]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-6/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html
* igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip:
- shard-rkl: [SKIP][492] ([i915#3828]) -> [SKIP][493] ([i915#14544] / [i915#3828])
[492]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-rkl-7/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip.html
[493]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-6/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip.html
* igt@kms_big_fb@x-tiled-8bpp-rotate-270:
- shard-rkl: [SKIP][494] ([i915#14544] / [i915#3638]) -> [SKIP][495] ([i915#3638])
[494]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-rkl-6/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
[495]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-8/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-8bpp-rotate-90:
- shard-rkl: [SKIP][496] ([i915#14544]) -> [SKIP][497] +4 other tests skip
[496]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-rkl-6/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html
[497]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-8/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html
* igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc:
- shard-rkl: [SKIP][498] ([i915#14098] / [i915#6095]) -> [SKIP][499] ([i915#14098] / [i915#14544] / [i915#6095]) +2 other tests skip
[498]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-rkl-7/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc.html
[499]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-6/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc.html
* igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-2:
- shard-rkl: [SKIP][500] ([i915#6095]) -> [SKIP][501] ([i915#14544] / [i915#6095]) +1 other test skip
[500]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-rkl-7/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-2.html
[501]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-6/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-2.html
* igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs:
- shard-rkl: [SKIP][502] ([i915#12313]) -> [SKIP][503] ([i915#12313] / [i915#14544])
[502]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-rkl-5/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html
[503]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html
* igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs:
- shard-rkl: [SKIP][504] ([i915#14098] / [i915#14544] / [i915#6095]) -> [SKIP][505] ([i915#14098] / [i915#6095]) +2 other tests skip
[504]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-rkl-6/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs.html
[505]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-8/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs.html
* igt@kms_chamelium_edid@dp-mode-timings:
- shard-rkl: [SKIP][506] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][507] ([i915#11151] / [i915#7828]) +2 other tests skip
[506]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-rkl-6/igt@kms_chamelium_edid@dp-mode-timings.html
[507]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-8/igt@kms_chamelium_edid@dp-mode-timings.html
* igt@kms_chamelium_hpd@vga-hpd-for-each-pipe:
- shard-rkl: [SKIP][508] ([i915#11151] / [i915#7828]) -> [SKIP][509] ([i915#11151] / [i915#14544] / [i915#7828])
[508]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-rkl-2/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html
[509]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-6/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html
* igt@kms_content_protection@atomic-hdcp14:
- shard-dg2: [SKIP][510] ([i915#15865]) -> [FAIL][511] ([i915#7173])
[510]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-dg2-5/igt@kms_content_protection@atomic-hdcp14.html
[511]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-dg2-10/igt@kms_content_protection@atomic-hdcp14.html
* igt@kms_content_protection@dp-mst-type-0-suspend-resume:
- shard-rkl: [SKIP][512] ([i915#15330]) -> [SKIP][513] ([i915#14544] / [i915#15330])
[512]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-rkl-3/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html
[513]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-6/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html
* igt@kms_content_protection@dp-mst-type-1:
- shard-rkl: [SKIP][514] ([i915#14544] / [i915#15330] / [i915#3116]) -> [SKIP][515] ([i915#15330] / [i915#3116])
[514]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-rkl-6/igt@kms_content_protection@dp-mst-type-1.html
[515]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-8/igt@kms_content_protection@dp-mst-type-1.html
* igt@kms_content_protection@legacy:
- shard-rkl: [SKIP][516] ([i915#14544] / [i915#15865]) -> [SKIP][517] ([i915#15865])
[516]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-rkl-6/igt@kms_content_protection@legacy.html
[517]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-8/igt@kms_content_protection@legacy.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x10:
- shard-rkl: [SKIP][518] ([i915#14544] / [i915#3555]) -> [SKIP][519] ([i915#3555])
[518]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-rkl-6/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
[519]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-3/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy:
- shard-rkl: [SKIP][520] -> [SKIP][521] ([i915#14544]) +4 other tests skip
[520]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-rkl-5/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
[521]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-6/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html
* igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot:
- shard-rkl: [SKIP][522] ([i915#14544] / [i915#9067]) -> [SKIP][523] ([i915#9067])
[522]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-rkl-6/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
[523]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-7/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html
* igt@kms_dsc@dsc-with-formats:
- shard-rkl: [SKIP][524] ([i915#3555] / [i915#3840]) -> [SKIP][525] ([i915#14544] / [i915#3555] / [i915#3840])
[524]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-rkl-7/igt@kms_dsc@dsc-with-formats.html
[525]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-6/igt@kms_dsc@dsc-with-formats.html
* igt@kms_dsc@dsc-with-output-formats-with-bpc:
- shard-rkl: [SKIP][526] ([i915#14544] / [i915#3840] / [i915#9053]) -> [SKIP][527] ([i915#3840] / [i915#9053])
[526]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-rkl-6/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
[527]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-7/igt@kms_dsc@dsc-with-output-formats-with-bpc.html
* igt@kms_feature_discovery@display-3x:
- shard-rkl: [SKIP][528] ([i915#1839]) -> [SKIP][529] ([i915#14544] / [i915#1839])
[528]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-rkl-8/igt@kms_feature_discovery@display-3x.html
[529]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-6/igt@kms_feature_discovery@display-3x.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible:
- shard-rkl: [SKIP][530] ([i915#14544] / [i915#9934]) -> [SKIP][531] ([i915#9934]) +1 other test skip
[530]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-rkl-6/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
[531]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-1/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
* igt@kms_flip@2x-flip-vs-wf_vblank:
- shard-rkl: [SKIP][532] ([i915#9934]) -> [SKIP][533] ([i915#14544] / [i915#9934]) +1 other test skip
[532]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-rkl-7/igt@kms_flip@2x-flip-vs-wf_vblank.html
[533]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-6/igt@kms_flip@2x-flip-vs-wf_vblank.html
* igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling:
- shard-dg1: [SKIP][534] ([i915#15643]) -> [SKIP][535] ([i915#15643] / [i915#4423])
[534]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-dg1-15/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
[535]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-dg1-12/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling:
- shard-rkl: [SKIP][536] ([i915#14544] / [i915#15643]) -> [SKIP][537] ([i915#15643])
[536]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html
[537]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-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-upscaling:
- shard-rkl: [SKIP][538] ([i915#15643]) -> [SKIP][539] ([i915#14544] / [i915#15643]) +2 other tests skip
[538]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-rkl-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling.html
[539]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling.html
* igt@kms_force_connector_basic@force-load-detect:
- shard-mtlp: [SKIP][540] ([i915#15672]) -> [SKIP][541]
[540]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-mtlp-1/igt@kms_force_connector_basic@force-load-detect.html
[541]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-mtlp-5/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc:
- shard-rkl: [SKIP][542] ([i915#1825]) -> [SKIP][543] ([i915#14544] / [i915#1825]) +13 other tests skip
[542]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-rkl-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc.html
[543]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-tiling-4:
- shard-rkl: [SKIP][544] ([i915#14544] / [i915#5439]) -> [SKIP][545] ([i915#5439])
[544]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
[545]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-3/igt@kms_frontbuffer_tracking@fbc-tiling-4.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-pwrite:
- shard-dg1: [SKIP][546] -> [SKIP][547] ([i915#4423]) +2 other tests skip
[546]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-pwrite.html
[547]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-cpu:
- shard-rkl: [SKIP][548] ([i915#14544] / [i915#1825]) -> [SKIP][549] ([i915#1825]) +10 other tests skip
[548]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-cpu.html
[549]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-cpu.html
* igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt:
- shard-rkl: [SKIP][550] ([i915#15102]) -> [SKIP][551] ([i915#14544] / [i915#15102]) +2 other tests skip
[550]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt.html
[551]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt:
- shard-rkl: [SKIP][552] ([i915#15102] / [i915#3023]) -> [SKIP][553] ([i915#14544] / [i915#15102] / [i915#3023]) +4 other tests skip
[552]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt.html
[553]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt.html
* igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary:
- shard-rkl: [SKIP][554] ([i915#14544] / [i915#15102] / [i915#3023]) -> [SKIP][555] ([i915#15102] / [i915#3023]) +5 other tests skip
[554]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html
[555]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html
* igt@kms_frontbuffer_tracking@psr-slowdraw:
- shard-dg2: [SKIP][556] ([i915#10433] / [i915#15102] / [i915#3458]) -> [SKIP][557] ([i915#15102] / [i915#3458]) +1 other test skip
[556]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-slowdraw.html
[557]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-dg2-10/igt@kms_frontbuffer_tracking@psr-slowdraw.html
* igt@kms_hdr@bpc-switch-suspend:
- shard-rkl: [INCOMPLETE][558] ([i915#15436]) -> [SKIP][559] ([i915#3555] / [i915#8228])
[558]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-rkl-6/igt@kms_hdr@bpc-switch-suspend.html
[559]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-2/igt@kms_hdr@bpc-switch-suspend.html
* igt@kms_hdr@brightness-with-hdr:
- shard-dg2: [SKIP][560] ([i915#12713]) -> [SKIP][561] ([i915#13331])
[560]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-dg2-7/igt@kms_hdr@brightness-with-hdr.html
[561]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-dg2-10/igt@kms_hdr@brightness-with-hdr.html
* igt@kms_joiner@invalid-modeset-big-joiner:
- shard-rkl: [SKIP][562] ([i915#15460]) -> [SKIP][563] ([i915#14544] / [i915#15460])
[562]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-rkl-5/igt@kms_joiner@invalid-modeset-big-joiner.html
[563]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-6/igt@kms_joiner@invalid-modeset-big-joiner.html
* igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping:
- shard-rkl: [SKIP][564] ([i915#15709]) -> [SKIP][565] ([i915#14544] / [i915#15709])
[564]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-rkl-1/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping.html
[565]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping.html
* igt@kms_plane_multiple@2x-tiling-4:
- shard-dg1: [SKIP][566] ([i915#13958] / [i915#4423]) -> [SKIP][567] ([i915#13958])
[566]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-dg1-18/igt@kms_plane_multiple@2x-tiling-4.html
[567]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-dg1-16/igt@kms_plane_multiple@2x-tiling-4.html
* igt@kms_plane_multiple@2x-tiling-y:
- shard-rkl: [SKIP][568] ([i915#13958] / [i915#14544]) -> [SKIP][569] ([i915#13958])
[568]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-rkl-6/igt@kms_plane_multiple@2x-tiling-y.html
[569]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-2/igt@kms_plane_multiple@2x-tiling-y.html
* igt@kms_pm_lpsp@kms-lpsp:
- shard-dg1: [SKIP][570] ([i915#3828]) -> [SKIP][571] ([i915#9340])
[570]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-dg1-14/igt@kms_pm_lpsp@kms-lpsp.html
[571]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-dg1-13/igt@kms_pm_lpsp@kms-lpsp.html
* igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area:
- shard-rkl: [SKIP][572] ([i915#11520]) -> [SKIP][573] ([i915#11520] / [i915#14544]) +1 other test skip
[572]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-rkl-2/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html
[573]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-6/igt@kms_psr2_sf@fbc-psr2-plane-move-sf-dmg-area.html
* igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area:
- shard-rkl: [SKIP][574] ([i915#11520] / [i915#14544]) -> [SKIP][575] ([i915#11520]) +2 other tests skip
[574]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-rkl-6/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area.html
[575]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-8/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area.html
* igt@kms_psr@fbc-psr2-sprite-render:
- shard-rkl: [SKIP][576] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][577] ([i915#1072] / [i915#9732]) +5 other tests skip
[576]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-rkl-6/igt@kms_psr@fbc-psr2-sprite-render.html
[577]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-4/igt@kms_psr@fbc-psr2-sprite-render.html
* igt@kms_psr@psr2-suspend:
- shard-rkl: [SKIP][578] ([i915#1072] / [i915#9732]) -> [SKIP][579] ([i915#1072] / [i915#14544] / [i915#9732]) +1 other test skip
[578]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-rkl-5/igt@kms_psr@psr2-suspend.html
[579]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-6/igt@kms_psr@psr2-suspend.html
* igt@perf@per-context-mode-unprivileged:
- shard-rkl: [SKIP][580] ([i915#14544] / [i915#2435]) -> [SKIP][581] ([i915#2435])
[580]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-rkl-6/igt@perf@per-context-mode-unprivileged.html
[581]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-3/igt@perf@per-context-mode-unprivileged.html
* igt@perf_pmu@rc6-all-gts:
- shard-rkl: [SKIP][582] ([i915#8516]) -> [SKIP][583] ([i915#14544] / [i915#8516])
[582]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-rkl-8/igt@perf_pmu@rc6-all-gts.html
[583]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-6/igt@perf_pmu@rc6-all-gts.html
* igt@prime_vgem@basic-write:
- shard-rkl: [SKIP][584] ([i915#3291] / [i915#3708]) -> [SKIP][585] ([i915#14544] / [i915#3291] / [i915#3708])
[584]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18306/shard-rkl-3/igt@prime_vgem@basic-write.html
[585]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/shard-rkl-6/igt@prime_vgem@basic-write.html
[i915#10055]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10055
[i915#10226]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10226
[i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307
[i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433
[i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434
[i915#10647]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647
[i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072
[i915#10959]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10959
[i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151
[i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520
[i915#11614]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11614
[i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681
[i915#11965]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11965
[i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061
[i915#12169]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12169
[i915#12177]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12177
[i915#12178]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12178
[i915#12276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12276
[i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313
[i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316
[i915#12358]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12358
[i915#12392]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12392
[i915#12454]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12454
[i915#12655]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12655
[i915#12712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12712
[i915#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713
[i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745
[i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755
[i915#12756]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12756
[i915#12761]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12761
[i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805
[i915#12910]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910
[i915#12964]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12964
[i915#13030]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13030
[i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046
[i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049
[i915#13331]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13331
[i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356
[i915#13409]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13409
[i915#13476]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13476
[i915#13562]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13562
[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#13790]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13790
[i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958
[i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098
[i915#14118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14118
[i915#14152]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14152
[i915#14259]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259
[i915#14412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14412
[i915#14419]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14419
[i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544
[i915#14586]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14586
[i915#14600]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14600
[i915#15073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073
[i915#15102]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102
[i915#15104]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15104
[i915#15106]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15106
[i915#15131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15131
[i915#15132]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15132
[i915#15243]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15243
[i915#15329]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15329
[i915#15330]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330
[i915#15389]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15389
[i915#15403]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15403
[i915#15436]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15436
[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#15492]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15492
[i915#15560]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15560
[i915#15582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15582
[i915#15608]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15608
[i915#15643]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643
[i915#15652]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15652
[i915#15662]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15662
[i915#15672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15672
[i915#15709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709
[i915#15752]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15752
[i915#15762]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15762
[i915#15778]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15778
[i915#15865]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15865
[i915#15867]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15867
[i915#15912]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15912
[i915#15913]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15913
[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#2433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2433
[i915#2434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2434
[i915#2435]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2435
[i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527
[i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658
[i915#2681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2681
[i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280
[i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856
[i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023
[i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116
[i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282
[i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291
[i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299
[i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458
[i915#3469]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3469
[i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539
[i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555
[i915#3582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3582
[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#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828
[i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840
[i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077
[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#4215]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4215
[i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270
[i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349
[i915#4387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4387
[i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423
[i915#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#4771]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4771
[i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812
[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#4958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4958
[i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190
[i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286
[i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289
[i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354
[i915#5439]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439
[i915#5723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5723
[i915#5956]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5956
[i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095
[i915#6187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6187
[i915#6188]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6188
[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#6344]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6344
[i915#6412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6412
[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#6880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880
[i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953
[i915#7173]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173
[i915#7387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7387
[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#7882]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7882
[i915#7984]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7984
[i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228
[i915#8381]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381
[i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399
[i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411
[i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428
[i915#8430]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8430
[i915#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516
[i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555
[i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623
[i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708
[i915#8808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808
[i915#8810]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8810
[i915#8813]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813
[i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814
[i915#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#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#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#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723
[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#9878]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9878
[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_8852 -> IGTPW_14954
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_18306: 97d8833ffba6bd3d6aaa51169069620ac17a2e37 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_14954: 14954
IGT_8852: 8852
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14954/index.html
[-- Attachment #2: Type: text/html, Size: 198387 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2026-04-10 19:51 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-04-09 7:15 [PATCH i-g-t 1/2] lib/amdgpu: restore sched_mask after abnormal subtest exits Jesse Zhang
2026-04-09 7:15 ` [PATCH i-g-t 2/2] tests/amdgpu/queue_reset: Add test for oversize packet length Jesse Zhang
2026-04-10 1:37 ` ✓ Xe.CI.BAT: success for series starting with [i-g-t,1/2] lib/amdgpu: restore sched_mask after abnormal subtest exits Patchwork
2026-04-10 1:48 ` ✓ i915.CI.BAT: " Patchwork
2026-04-10 4:52 ` ✗ Xe.CI.FULL: failure " Patchwork
2026-04-10 19:51 ` ✓ 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