* [PATCH i-g-t v2 1/3] tests/intel/xe_exec_reset: Add a comment about return for syncobj wait
@ 2026-04-13 21:19 Stuart Summers
2026-04-13 21:19 ` [PATCH i-g-t v2 2/3] tests/intel/xe_exec_reset: Add checks for hanging queue wait_ufence return Stuart Summers
` (5 more replies)
0 siblings, 6 replies; 7+ messages in thread
From: Stuart Summers @ 2026-04-13 21:19 UTC (permalink / raw)
Cc: apoorva.singh, igt-dev, niranjana.vishwanathapura, daniel.charles,
fei.yang, katarzyna.piecielska, priyanka.dandamudi,
kamil.konieczny, Stuart Summers
Add a comment to the syncobj wait after a hanging submission
to indicate that even for the hang case, we expect the syncobj
wait to return successfully as opposed to the wait ufence case
where we only return successful if hardware did in fact execute
the batch through the MI_USER_INTERRUPT to satisfy the wait ufence.
Signed-off-by: Stuart Summers <stuart.summers@intel.com>
Reviewed-by: Niranjana Vishwanathapura <niranjana.vishwanathapura@intel.com>
---
lib/xe/xe_legacy.c | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/lib/xe/xe_legacy.c b/lib/xe/xe_legacy.c
index 084445305..6aeddc578 100644
--- a/lib/xe/xe_legacy.c
+++ b/lib/xe/xe_legacy.c
@@ -181,8 +181,13 @@ xe_legacy_test_mode(int fd, struct drm_xe_engine_class_instance *eci,
return;
}
- for (i = 0; i < n_exec_queues && n_execs; i++)
+ for (i = 0; i < n_exec_queues && n_execs; i++) {
+ /*
+ * Expectation here is that on reset, submissions will
+ * still satisfy the syncobj_wait.
+ */
igt_assert(syncobj_wait(fd, &syncobjs[i], 1, INT64_MAX, 0, NULL));
+ }
igt_assert(syncobj_wait(fd, &sync[0].handle, 1, INT64_MAX, 0, NULL));
--
2.43.0
^ permalink raw reply related [flat|nested] 7+ messages in thread* [PATCH i-g-t v2 2/3] tests/intel/xe_exec_reset: Add checks for hanging queue wait_ufence return 2026-04-13 21:19 [PATCH i-g-t v2 1/3] tests/intel/xe_exec_reset: Add a comment about return for syncobj wait Stuart Summers @ 2026-04-13 21:19 ` Stuart Summers 2026-04-13 21:19 ` [PATCH i-g-t v2 3/3] tests/intel/xe_exec_reset: Add multi queue subtests Stuart Summers ` (4 subsequent siblings) 5 siblings, 0 replies; 7+ messages in thread From: Stuart Summers @ 2026-04-13 21:19 UTC (permalink / raw) Cc: apoorva.singh, igt-dev, niranjana.vishwanathapura, daniel.charles, fei.yang, katarzyna.piecielska, priyanka.dandamudi, kamil.konieczny, Stuart Summers There is a 3 second wait user fence timeout for the compute mode variants of this test. Instead of just skipping the wait altogether, let's make sure this does in fact return -ETIME as expected there. Also add the i == 0 cases for legacy and compute path for the actual data checks to stay consistent and to be a little more explicit about what we're checking there. This also let's us add a little more detail to the cases in some planned changes around hanging multi queue secondary queues. Signed-off-by: Stuart Summers <stuart.summers@intel.com> Reviewed-by: Niranjana Vishwanathapura <niranjana.vishwanathapura@intel.com> --- lib/xe/xe_legacy.c | 8 ++++++-- tests/intel/xe_exec_reset.c | 15 +++++++++++---- 2 files changed, 17 insertions(+), 6 deletions(-) diff --git a/lib/xe/xe_legacy.c b/lib/xe/xe_legacy.c index 6aeddc578..3371a91ac 100644 --- a/lib/xe/xe_legacy.c +++ b/lib/xe/xe_legacy.c @@ -230,9 +230,13 @@ xe_legacy_test_mode(int fd, struct drm_xe_engine_class_instance *eci, igt_assert(syncobj_wait(fd, &sync[0].handle, 1, INT64_MAX, 0, NULL)); if (!use_capture_mode && !(flags & (GT_RESET | CANCEL | COMPRESSION))) { - for (i = flags & LONG_SPIN ? n_exec_queues : 1; - i < n_execs + extra_execs; i++) + for (i = flags & LONG_SPIN ? n_exec_queues : 0; + i < n_execs + extra_execs; i++) { + if (!i) + continue; + igt_assert_eq(data[i].data, 0xc0ffee); + } } syncobj_destroy(fd, sync[0].handle); diff --git a/tests/intel/xe_exec_reset.c b/tests/intel/xe_exec_reset.c index 66580ea44..8139af25a 100644 --- a/tests/intel/xe_exec_reset.c +++ b/tests/intel/xe_exec_reset.c @@ -462,17 +462,20 @@ test_compute_mode(int fd, struct drm_xe_engine_class_instance *eci, return; } - for (i = 1; i < n_execs; i++) { + for (i = 0; i < n_execs; i++) { int64_t timeout = 3 * NSEC_PER_SEC; int err; err = __xe_wait_ufence(fd, &data[i].exec_sync, USER_FENCE_VALUE, exec_queues[i % n_exec_queues], &timeout); - if (flags & GT_RESET || flags & CAT_ERROR) + if (!i) { + igt_assert(err == -ETIME || err == -EIO); + } else if (flags & GT_RESET || flags & CAT_ERROR) { /* exec races with reset: may return -EIO or complete */ igt_assert(err == -EIO || !err); - else + } else { igt_assert_eq(err, 0); + } } sync[0].addr = to_user_pointer(&data[0].vm_sync); @@ -480,8 +483,12 @@ test_compute_mode(int fd, struct drm_xe_engine_class_instance *eci, xe_wait_ufence(fd, &data[0].vm_sync, USER_FENCE_VALUE, 0, 3 * NSEC_PER_SEC); if (!(flags & (GT_RESET | CANCEL))) { - for (i = 1; i < n_execs; i++) + for (i = 0; i < n_execs; i++) { + if (!i) + continue; + igt_assert_eq(data[i].data, 0xc0ffee); + } } for (i = 0; i < n_exec_queues; i++) -- 2.43.0 ^ permalink raw reply related [flat|nested] 7+ messages in thread
* [PATCH i-g-t v2 3/3] tests/intel/xe_exec_reset: Add multi queue subtests 2026-04-13 21:19 [PATCH i-g-t v2 1/3] tests/intel/xe_exec_reset: Add a comment about return for syncobj wait Stuart Summers 2026-04-13 21:19 ` [PATCH i-g-t v2 2/3] tests/intel/xe_exec_reset: Add checks for hanging queue wait_ufence return Stuart Summers @ 2026-04-13 21:19 ` Stuart Summers 2026-04-14 2:22 ` ✓ i915.CI.BAT: success for series starting with [i-g-t,v2,1/3] tests/intel/xe_exec_reset: Add a comment about return for syncobj wait Patchwork ` (3 subsequent siblings) 5 siblings, 0 replies; 7+ messages in thread From: Stuart Summers @ 2026-04-13 21:19 UTC (permalink / raw) Cc: apoorva.singh, igt-dev, niranjana.vishwanathapura, daniel.charles, fei.yang, katarzyna.piecielska, priyanka.dandamudi, kamil.konieczny, Stuart Summers From: Apoorva Singh <apoorva.singh@intel.com> Extend the existing test cases in tests/intel/xe_exec_reset.c to include testing of reset flows for both primary queue and secondary queues. Engine resets without CAT faults are triggered via the *-cancel cases. These don't include the CANCEL flag as this causes a spinner on each queue which isn't adding any extra coverage for multi queue over non multi queue. Since the *-cancel cases are currently implemented only for the legacy cases, do the same for multi queue. New MULTI_QUEUE and SECONDARY_QUEUE flags are added to cover the general multi queue cases and the cases where we are triggering engine resets and/or cat faults on secondary queues specifically. Note for multi queue it is interesting to test these secondary queue reset scenarios since these are communicated to the driver from GuC via the primary queue and after this, the entire queue group is torn down. The test cases here are to ensure nothing breaks when we hit a scenario like this. Signed-off-by: Apoorva Singh <apoorva.singh@intel.com> Signed-off-by: Fei Yang <fei.yang@intel.com> Signed-off-by: Katarzyna Piecielska <katarzyna.piecielska@intel.com> Signed-off-by: Priyanka Dandamudi <priyanka.dandamudi@intel.com> Signed-off-by: Daniel Charles <daniel.charles@intel.com> Signed-off-by: Kamil Konieczny <kamil.konieczny@linux.intel.com> Signed-off-by: Stuart Summers <stuart.summers@intel.com> Reviewed-by: Niranjana Vishwanathapura <niranjana.vishwanathapura@intel.com> --- v2: Remove the sub-categories in the test descriptions (Niranjana) --- lib/xe/xe_legacy.c | 71 ++++++++++-- tests/intel/xe_exec_reset.c | 210 ++++++++++++++++++++++++++++++++++-- 2 files changed, 262 insertions(+), 19 deletions(-) diff --git a/lib/xe/xe_legacy.c b/lib/xe/xe_legacy.c index 3371a91ac..f9bd5bcb6 100644 --- a/lib/xe/xe_legacy.c +++ b/lib/xe/xe_legacy.c @@ -13,6 +13,8 @@ /* Batch buffer element count, in number of dwords(u32) */ #define BATCH_DW_COUNT 16 +#define SECONDARY_QUEUE (0x1 << 15) +#define MULTI_QUEUE (0x1 << 14) #define COMPRESSION (0x1 << 13) #define SYSTEM (0x1 << 12) #define LONG_SPIN_REUSE_QUEUE (0x1 << 11) @@ -70,10 +72,14 @@ xe_legacy_test_mode(int fd, struct drm_xe_engine_class_instance *eci, xe_spin_nsec_to_ticks(fd, 0, THREE_SEC) : 0, }; int i, b; + int hang_position = flags & SECONDARY_QUEUE ? 1 : 0; int extra_execs = (flags & LONG_SPIN_REUSE_QUEUE) ? n_exec_queues : 0; igt_assert_lte(n_exec_queues, MAX_N_EXECQUEUES); + igt_assert_f(!(flags & SECONDARY_QUEUE) || (flags & MULTI_QUEUE), + "SECONDARY_QUEUE requires MULTI_QUEUE to be set"); + if (flags & COMPRESSION) igt_require(intel_gen(intel_get_drm_devid(fd)) >= 20); @@ -101,7 +107,20 @@ xe_legacy_test_mode(int fd, struct drm_xe_engine_class_instance *eci, data = xe_bo_map(fd, bo, bo_size); for (i = 0; i < n_exec_queues; i++) { - exec_queues[i] = xe_exec_queue_create(fd, vm, eci, 0); + if (flags & MULTI_QUEUE) { + struct drm_xe_ext_set_property multi_queue = { + .base.next_extension = 0, + .base.name = DRM_XE_EXEC_QUEUE_EXTENSION_SET_PROPERTY, + .property = DRM_XE_EXEC_QUEUE_SET_PROPERTY_MULTI_GROUP, + }; + + uint64_t ext = to_user_pointer(&multi_queue); + + multi_queue.value = i ? exec_queues[0] : DRM_XE_MULTI_GROUP_CREATE; + exec_queues[i] = xe_exec_queue_create(fd, vm, eci, ext); + } else { + exec_queues[i] = xe_exec_queue_create(fd, vm, eci, 0); + } syncobjs[i] = syncobj_create(fd, 0); } @@ -123,17 +142,22 @@ xe_legacy_test_mode(int fd, struct drm_xe_engine_class_instance *eci, } for (i = 0; i < n_execs; i++) { - u64 base_addr = (!use_capture_mode && (flags & CAT_ERROR) && !i) - ? (addr + bo_size * 128) : addr; + u64 base_addr = (!use_capture_mode && flags & CAT_ERROR && + i == hang_position) ? + (addr + bo_size * 128) : addr; u64 batch_offset = (char *)&data[i].batch - (char *)data; u64 batch_addr = base_addr + batch_offset; u64 spin_offset = (char *)&data[i].spin - (char *)data; u64 sdi_offset = (char *)&data[i].data - (char *)data; u64 sdi_addr = base_addr + sdi_offset; u64 exec_addr; - int e = i % n_exec_queues; + int err, e = i % n_exec_queues; - if (!i || flags & CANCEL || + /* + * For cat fault on a secondary queue the fault will + * be on the spinner. + */ + if (i == hang_position || flags & CANCEL || (flags & LONG_SPIN && i < n_exec_queues)) { spin_opts.addr = base_addr + spin_offset; xe_spin_init(&data[i].spin, &spin_opts); @@ -160,10 +184,17 @@ xe_legacy_test_mode(int fd, struct drm_xe_engine_class_instance *eci, if (e != i) syncobj_reset(fd, &syncobjs[e], 1); - xe_exec(fd, &exec); + /* + * Secondary queues are reset when the primary queue + * is reset. The submission can race here and it is + * expected for those to fail submission if the primary + * reset has already happened. + */ + err = __xe_exec(fd, &exec); + igt_assert(!err || ((flags & MULTI_QUEUE) && err == -ECANCELED)); - if (!i && !(flags & CAT_ERROR) && !use_capture_mode && - !(flags & COMPRESSION)) + if (i == hang_position && !(flags & CAT_ERROR) && + !use_capture_mode && !(flags & COMPRESSION)) xe_spin_wait_started(&data[i].spin); } @@ -186,7 +217,21 @@ xe_legacy_test_mode(int fd, struct drm_xe_engine_class_instance *eci, * Expectation here is that on reset, submissions will * still satisfy the syncobj_wait. */ - igt_assert(syncobj_wait(fd, &syncobjs[i], 1, INT64_MAX, 0, NULL)); + int err = syncobj_wait_err(fd, &syncobjs[i], 1, INT64_MAX, 0); + + /* + * Currently any time GuC resets a queue which is part of a + * multi queue queue group submitted by the KMD, the KMD + * will tear down the entire group. This means we don't know + * whether a particular queue submitted prior to the hanging + * queue will complete or not. So we have to check all possible + * return values here. + * + * In the event we get an -ECANCELED at the exec above and the + * syncobj was not installed, we expect this to return -EINVAL + * here instead. + */ + igt_assert(!err || ((flags & MULTI_QUEUE) && err == -EINVAL)); } igt_assert(syncobj_wait(fd, &sync[0].handle, 1, INT64_MAX, 0, NULL)); @@ -232,7 +277,13 @@ xe_legacy_test_mode(int fd, struct drm_xe_engine_class_instance *eci, if (!use_capture_mode && !(flags & (GT_RESET | CANCEL | COMPRESSION))) { for (i = flags & LONG_SPIN ? n_exec_queues : 0; i < n_execs + extra_execs; i++) { - if (!i) + /* + * For multi-queue there is no guarantee which + * queue will be scheduled first as they are all + * submitted at the same priority in this test. + * So we can't guarantee any data integrity here. + */ + if (i == hang_position || flags & MULTI_QUEUE) continue; igt_assert_eq(data[i].data, 0xc0ffee); diff --git a/tests/intel/xe_exec_reset.c b/tests/intel/xe_exec_reset.c index 8139af25a..67cfd64a0 100644 --- a/tests/intel/xe_exec_reset.c +++ b/tests/intel/xe_exec_reset.c @@ -112,7 +112,7 @@ static void test_spin(int fd, struct drm_xe_engine_class_instance *eci, #define MAX_N_EXECQUEUES 16 #define GT_RESET (0x1 << 0) #define CLOSE_FD (0x1 << 1) -#define CLOSE_EXEC_QUEUES (0x1 << 2) +#define CLOSE_EXEC_QUEUES (0x1 << 2) #define VIRTUAL (0x1 << 3) #define PARALLEL (0x1 << 4) #define CAT_ERROR (0x1 << 5) @@ -124,6 +124,8 @@ static void test_spin(int fd, struct drm_xe_engine_class_instance *eci, #define LONG_SPIN_REUSE_QUEUE (0x1 << 11) #define SYSTEM (0x1 << 12) #define COMPRESSION (0x1 << 13) +#define MULTI_QUEUE (0x1 << 14) +#define SECONDARY_QUEUE (0x1 << 15) /** * SUBTEST: %s-cat-error @@ -354,6 +356,45 @@ test_balancer(int fd, int gt, int class, int n_exec_queues, int n_execs, * * SUBTEST: cm-close-execqueues-close-fd * Description: Test compute mode close exec_queues close fd + * + * SUBTEST: multi-queue-cat-error + * Description: Test cat error with multi_queue + * + * SUBTEST: multi-queue-cat-error-on-secondary + * Description: Test cat error with multi_queue + * on a secondary queue + * + * SUBTEST: multi-queue-gt-reset + * Description: Test GT reset with multi_queue + * + * SUBTEST: multi-queue-cancel + * Description: Test engine reset with multi_queue + * + * SUBTEST: multi-queue-cancel-on-secondary + * Description: Test engine reset with multi_queue + * on a secondary queue + * + * SUBTEST: multi-queue-close-fd + * Description: Test close fd with multi_queue + * + * SUBTEST: multi-queue-close-execqueues + * Description: Test close execqueues with multi_queue + * + * SUBTEST: cm-multi-queue-cat-error + * Description: Test compute mode cat error with multi_queue + * + * SUBTEST: cm-multi-queue-cat-error-on-secondary + * Description: Test compute mode cat error with multi_queue + * on a secondary queue + * + * SUBTEST: cm-multi-queue-gt-reset + * Description: Test compute mode GT reset with multi_queue + * + * SUBTEST: cm-multi-queue-close-fd + * Description: Test compute mode close fd with multi_queue + * + * SUBTEST: cm-multi-queue-close-execqueues + * Description: Test compute mode close execqueues with multi_queue */ static void @@ -385,9 +426,14 @@ test_compute_mode(int fd, struct drm_xe_engine_class_instance *eci, } *data; struct xe_spin_opts spin_opts = { .preempt = flags & PREEMPT }; int i, b; + int hang_position = flags & SECONDARY_QUEUE ? 1 : 0; igt_assert_lte(n_exec_queues, MAX_N_EXECQUEUES); + igt_assert_f(!(flags & SECONDARY_QUEUE) || + ((flags & MULTI_QUEUE) && (flags & CAT_ERROR)), + "SECONDARY_QUEUE requires MULTI_QUEUE and CAT_ERROR to be set"); + if (flags & CLOSE_FD) fd = drm_open_driver(DRIVER_XE); @@ -402,7 +448,20 @@ test_compute_mode(int fd, struct drm_xe_engine_class_instance *eci, memset(data, 0, bo_size); for (i = 0; i < n_exec_queues; i++) { - exec_queues[i] = xe_exec_queue_create(fd, vm, eci, 0); + if (flags & MULTI_QUEUE) { + struct drm_xe_ext_set_property multi_queue = { + .base.next_extension = 0, + .base.name = DRM_XE_EXEC_QUEUE_EXTENSION_SET_PROPERTY, + .property = DRM_XE_EXEC_QUEUE_SET_PROPERTY_MULTI_GROUP, + }; + + uint64_t ext = to_user_pointer(&multi_queue); + + multi_queue.value = i ? exec_queues[0] : DRM_XE_MULTI_GROUP_CREATE; + exec_queues[i] = xe_exec_queue_create(fd, vm, eci, ext); + } else { + exec_queues[i] = xe_exec_queue_create(fd, vm, eci, 0); + } }; sync[0].addr = to_user_pointer(&data[0].vm_sync); @@ -412,17 +471,21 @@ test_compute_mode(int fd, struct drm_xe_engine_class_instance *eci, data[0].vm_sync = 0; for (i = 0; i < n_execs; i++) { - uint64_t base_addr = flags & CAT_ERROR && !i ? - addr + bo_size * 128 : addr; + uint64_t base_addr = (flags & CAT_ERROR && i == hang_position) ? + (addr + bo_size * 128) : addr; uint64_t batch_offset = (char *)&data[i].batch - (char *)data; uint64_t batch_addr = base_addr + batch_offset; uint64_t spin_offset = (char *)&data[i].spin - (char *)data; uint64_t sdi_offset = (char *)&data[i].data - (char *)data; uint64_t sdi_addr = base_addr + sdi_offset; uint64_t exec_addr; - int e = i % n_exec_queues; + int err, e = i % n_exec_queues; - if (!i || flags & CANCEL) { + /* + * For cat fault on a secondary queue the fault will + * be on the spinner. + */ + if (i == hang_position || flags & CANCEL) { spin_opts.addr = base_addr + spin_offset; xe_spin_init(&data[i].spin, &spin_opts); exec_addr = spin_opts.addr; @@ -443,7 +506,18 @@ test_compute_mode(int fd, struct drm_xe_engine_class_instance *eci, exec.exec_queue_id = exec_queues[e]; exec.address = exec_addr; - xe_exec(fd, &exec); + + /* + * Secondary queues are reset when the primary queue + * is reset. The submission can race here and it is + * expected for those to fail submission if the primary + * reset has already happened. + */ + err = __xe_exec(fd, &exec); + igt_assert(!err || ((flags & MULTI_QUEUE) && err == -ECANCELED)); + + if (i == hang_position && !(flags & CAT_ERROR)) + xe_spin_wait_started(&data[i].spin); } if (flags & GT_RESET) { @@ -468,8 +542,18 @@ test_compute_mode(int fd, struct drm_xe_engine_class_instance *eci, err = __xe_wait_ufence(fd, &data[i].exec_sync, USER_FENCE_VALUE, exec_queues[i % n_exec_queues], &timeout); - if (!i) { + if (i == hang_position) { igt_assert(err == -ETIME || err == -EIO); + } else if (flags & MULTI_QUEUE) { + /* + * Currently any time GuC resets a queue submitted + * by the KMD, the KMD will tear down the entire + * queue group. This means we don't know whether + * a particular queue submitted prior to the hanging + * queue will complete or not. So we have to check + * all possible return values here. + */ + igt_assert(err == -ETIME || err == -EIO || !err); } else if (flags & GT_RESET || flags & CAT_ERROR) { /* exec races with reset: may return -EIO or complete */ igt_assert(err == -EIO || !err); @@ -484,7 +568,13 @@ test_compute_mode(int fd, struct drm_xe_engine_class_instance *eci, if (!(flags & (GT_RESET | CANCEL))) { for (i = 0; i < n_execs; i++) { - if (!i) + /* + * For multi-queue there is no guarantee which + * queue will be scheduled first as they are all + * submitted at the same priority in this test. + * So we can't guarantee any data integrity here. + */ + if (i == hang_position || flags & MULTI_QUEUE) continue; igt_assert_eq(data[i].data, 0xc0ffee); @@ -987,6 +1077,108 @@ int igt_main() xe_for_each_gt(fd, gt) gt_mocs_reset(fd, gt); + igt_subtest("multi-queue-cat-error") { + igt_require(intel_graphics_ver(intel_get_drm_devid(fd)) >= IP_VER(35, 0)); + xe_for_each_multi_queue_engine(fd, hwe) + xe_legacy_test_mode(fd, hwe, 16, 16, + CAT_ERROR | MULTI_QUEUE, + LEGACY_MODE_ADDR, + false); + } + + igt_subtest("multi-queue-cat-error-on-secondary") { + igt_require(intel_graphics_ver(intel_get_drm_devid(fd)) >= IP_VER(35, 0)); + xe_for_each_multi_queue_engine(fd, hwe) + xe_legacy_test_mode(fd, hwe, 16, 16, + CAT_ERROR | MULTI_QUEUE | + SECONDARY_QUEUE, + LEGACY_MODE_ADDR, + false); + } + + igt_subtest("multi-queue-gt-reset") { + igt_require(intel_graphics_ver(intel_get_drm_devid(fd)) >= IP_VER(35, 0)); + xe_for_each_multi_queue_engine(fd, hwe) + xe_legacy_test_mode(fd, hwe, 16, 16, + GT_RESET | MULTI_QUEUE, + LEGACY_MODE_ADDR, + false); + } + + igt_subtest("multi-queue-cancel") { + igt_require(intel_graphics_ver(intel_get_drm_devid(fd)) >= IP_VER(35, 0)); + xe_for_each_multi_queue_engine(fd, hwe) + xe_legacy_test_mode(fd, hwe, 16, 16, + MULTI_QUEUE, + LEGACY_MODE_ADDR, + false); + } + + igt_subtest("multi-queue-cancel-on-secondary") { + igt_require(intel_graphics_ver(intel_get_drm_devid(fd)) >= IP_VER(35, 0)); + xe_for_each_multi_queue_engine(fd, hwe) + xe_legacy_test_mode(fd, hwe, 16, 16, + MULTI_QUEUE | SECONDARY_QUEUE, + LEGACY_MODE_ADDR, + false); + } + + igt_subtest("multi-queue-close-fd") { + igt_require(intel_graphics_ver(intel_get_drm_devid(fd)) >= IP_VER(35, 0)); + xe_for_each_multi_queue_engine(fd, hwe) + xe_legacy_test_mode(-1, hwe, 16, 256, + CLOSE_FD | MULTI_QUEUE, + LEGACY_MODE_ADDR, + false); + } + + igt_subtest("multi-queue-close-execqueues") { + igt_require(intel_graphics_ver(intel_get_drm_devid(fd)) >= IP_VER(35, 0)); + xe_for_each_multi_queue_engine(fd, hwe) + xe_legacy_test_mode(-1, hwe, 16, 256, + CLOSE_EXEC_QUEUES | CLOSE_FD | + MULTI_QUEUE, + LEGACY_MODE_ADDR, + false); + } + + igt_subtest("cm-multi-queue-cat-error") { + igt_require(intel_graphics_ver(intel_get_drm_devid(fd)) >= IP_VER(35, 0)); + xe_for_each_multi_queue_engine(fd, hwe) + test_compute_mode(fd, hwe, 16, 16, + CAT_ERROR | MULTI_QUEUE); + } + + igt_subtest("cm-multi-queue-cat-error-on-secondary") { + igt_require(intel_graphics_ver(intel_get_drm_devid(fd)) >= IP_VER(35, 0)); + xe_for_each_multi_queue_engine(fd, hwe) + test_compute_mode(fd, hwe, 16, 16, + CAT_ERROR | MULTI_QUEUE | + SECONDARY_QUEUE); + } + + igt_subtest("cm-multi-queue-gt-reset") { + igt_require(intel_graphics_ver(intel_get_drm_devid(fd)) >= IP_VER(35, 0)); + xe_for_each_multi_queue_engine(fd, hwe) + test_compute_mode(fd, hwe, 16, 16, + GT_RESET | MULTI_QUEUE); + } + + igt_subtest("cm-multi-queue-close-fd") { + igt_require(intel_graphics_ver(intel_get_drm_devid(fd)) >= IP_VER(35, 0)); + xe_for_each_multi_queue_engine(fd, hwe) + test_compute_mode(-1, hwe, 16, 256, + CLOSE_FD | MULTI_QUEUE); + } + + igt_subtest("cm-multi-queue-close-execqueues") { + igt_require(intel_graphics_ver(intel_get_drm_devid(fd)) >= IP_VER(35, 0)); + xe_for_each_multi_queue_engine(fd, hwe) + test_compute_mode(-1, hwe, 16, 256, + CLOSE_EXEC_QUEUES | CLOSE_FD | + MULTI_QUEUE); + } + igt_fixture() drm_close_driver(fd); } -- 2.43.0 ^ permalink raw reply related [flat|nested] 7+ messages in thread
* ✓ i915.CI.BAT: success for series starting with [i-g-t,v2,1/3] tests/intel/xe_exec_reset: Add a comment about return for syncobj wait 2026-04-13 21:19 [PATCH i-g-t v2 1/3] tests/intel/xe_exec_reset: Add a comment about return for syncobj wait Stuart Summers 2026-04-13 21:19 ` [PATCH i-g-t v2 2/3] tests/intel/xe_exec_reset: Add checks for hanging queue wait_ufence return Stuart Summers 2026-04-13 21:19 ` [PATCH i-g-t v2 3/3] tests/intel/xe_exec_reset: Add multi queue subtests Stuart Summers @ 2026-04-14 2:22 ` Patchwork 2026-04-14 2:39 ` ✓ Xe.CI.BAT: " Patchwork ` (2 subsequent siblings) 5 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2026-04-14 2:22 UTC (permalink / raw) To: Stuart Summers; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 3040 bytes --] == Series Details == Series: series starting with [i-g-t,v2,1/3] tests/intel/xe_exec_reset: Add a comment about return for syncobj wait URL : https://patchwork.freedesktop.org/series/164825/ State : success == Summary == CI Bug Log - changes from IGT_8854 -> IGTPW_14975 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/index.html Participating hosts (42 -> 39) ------------------------------ Missing (3): bat-dg2-13 fi-glk-j4005 fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_14975 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@core_auth@basic-auth: - bat-adlp-9: [PASS][1] -> [DMESG-WARN][2] ([i915#15673]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8854/bat-adlp-9/igt@core_auth@basic-auth.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/bat-adlp-9/igt@core_auth@basic-auth.html * igt@i915_selftest@live@sanitycheck: - fi-kbl-7567u: [PASS][3] -> [DMESG-WARN][4] ([i915#13735]) +79 other tests dmesg-warn [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8854/fi-kbl-7567u/igt@i915_selftest@live@sanitycheck.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/fi-kbl-7567u/igt@i915_selftest@live@sanitycheck.html * igt@kms_pm_rpm@basic-pci-d3-state: - fi-kbl-7567u: [PASS][5] -> [DMESG-WARN][6] ([i915#13735] / [i915#180]) +53 other tests dmesg-warn [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8854/fi-kbl-7567u/igt@kms_pm_rpm@basic-pci-d3-state.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/fi-kbl-7567u/igt@kms_pm_rpm@basic-pci-d3-state.html #### Possible fixes #### * igt@core_debugfs@read-all-entries: - bat-adlp-9: [DMESG-WARN][7] ([i915#15673]) -> [PASS][8] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8854/bat-adlp-9/igt@core_debugfs@read-all-entries.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/bat-adlp-9/igt@core_debugfs@read-all-entries.html [i915#13735]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13735 [i915#15673]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15673 [i915#180]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/180 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8854 -> IGTPW_14975 * Linux: CI_DRM_18313 -> CI_DRM_18326 CI-20190529: 20190529 CI_DRM_18313: 3751e2e5a19aba3949a3f12aa5b917eb8bbb1eb5 @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_18326: c8bad7becc008716c8475847328c549e178c813c @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_14975: 94c5dd9b2e13fec934ae30ec1adbb7dd1a6e02a3 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8854: 93abaf0170728f69bc27577e5b405f7a2a01b6fd @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/index.html [-- Attachment #2: Type: text/html, Size: 3884 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* ✓ Xe.CI.BAT: success for series starting with [i-g-t,v2,1/3] tests/intel/xe_exec_reset: Add a comment about return for syncobj wait 2026-04-13 21:19 [PATCH i-g-t v2 1/3] tests/intel/xe_exec_reset: Add a comment about return for syncobj wait Stuart Summers ` (2 preceding siblings ...) 2026-04-14 2:22 ` ✓ i915.CI.BAT: success for series starting with [i-g-t,v2,1/3] tests/intel/xe_exec_reset: Add a comment about return for syncobj wait Patchwork @ 2026-04-14 2:39 ` Patchwork 2026-04-14 6:11 ` ✗ Xe.CI.FULL: failure " Patchwork 2026-04-14 8:50 ` ✗ i915.CI.Full: " Patchwork 5 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2026-04-14 2:39 UTC (permalink / raw) To: Stuart Summers; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 2190 bytes --] == Series Details == Series: series starting with [i-g-t,v2,1/3] tests/intel/xe_exec_reset: Add a comment about return for syncobj wait URL : https://patchwork.freedesktop.org/series/164825/ State : success == Summary == CI Bug Log - changes from XEIGT_8854_BAT -> XEIGTPW_14975_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (14 -> 11) ------------------------------ Missing (3): bat-dg2-oem2 bat-adlp-vm bat-ptl-vm Known issues ------------ Here are the changes found in XEIGTPW_14975_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_flip@basic-flip-vs-wf_vblank@d-edp1: - bat-adlp-7: [PASS][1] -> [DMESG-WARN][2] ([Intel XE#7483]) [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8854/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@d-edp1.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14975/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@d-edp1.html #### Possible fixes #### * igt@kms_flip@basic-flip-vs-wf_vblank@c-edp1: - bat-adlp-7: [DMESG-WARN][3] ([Intel XE#7483]) -> [PASS][4] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8854/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@c-edp1.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14975/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@c-edp1.html [Intel XE#7483]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7483 Build changes ------------- * IGT: IGT_8854 -> IGTPW_14975 * Linux: xe-4884-3751e2e5a19aba3949a3f12aa5b917eb8bbb1eb5 -> xe-4897-c8bad7becc008716c8475847328c549e178c813c IGTPW_14975: 94c5dd9b2e13fec934ae30ec1adbb7dd1a6e02a3 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8854: 93abaf0170728f69bc27577e5b405f7a2a01b6fd @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-4884-3751e2e5a19aba3949a3f12aa5b917eb8bbb1eb5: 3751e2e5a19aba3949a3f12aa5b917eb8bbb1eb5 xe-4897-c8bad7becc008716c8475847328c549e178c813c: c8bad7becc008716c8475847328c549e178c813c == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14975/index.html [-- Attachment #2: Type: text/html, Size: 2864 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* ✗ Xe.CI.FULL: failure for series starting with [i-g-t,v2,1/3] tests/intel/xe_exec_reset: Add a comment about return for syncobj wait 2026-04-13 21:19 [PATCH i-g-t v2 1/3] tests/intel/xe_exec_reset: Add a comment about return for syncobj wait Stuart Summers ` (3 preceding siblings ...) 2026-04-14 2:39 ` ✓ Xe.CI.BAT: " Patchwork @ 2026-04-14 6:11 ` Patchwork 2026-04-14 8:50 ` ✗ i915.CI.Full: " Patchwork 5 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2026-04-14 6:11 UTC (permalink / raw) To: Stuart Summers; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 25777 bytes --] == Series Details == Series: series starting with [i-g-t,v2,1/3] tests/intel/xe_exec_reset: Add a comment about return for syncobj wait URL : https://patchwork.freedesktop.org/series/164825/ State : failure == Summary == CI Bug Log - changes from XEIGT_8854_FULL -> XEIGTPW_14975_FULL ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_14975_FULL absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_14975_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_14975_FULL: ### IGT changes ### #### Possible regressions #### * igt@xe_exec_reset@cm-multi-queue-cat-error (NEW): - shard-bmg: NOTRUN -> [SKIP][1] +10 other tests skip [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14975/shard-bmg-1/igt@xe_exec_reset@cm-multi-queue-cat-error.html * igt@xe_exec_reset@multi-queue-gt-reset (NEW): - shard-lnl: NOTRUN -> [SKIP][2] +11 other tests skip [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14975/shard-lnl-8/igt@xe_exec_reset@multi-queue-gt-reset.html New tests --------- New tests have been introduced between XEIGT_8854_FULL and XEIGTPW_14975_FULL: ### New IGT tests (12) ### * igt@xe_exec_reset@cm-multi-queue-cat-error: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt@xe_exec_reset@cm-multi-queue-cat-error-on-secondary: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt@xe_exec_reset@cm-multi-queue-close-execqueues: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt@xe_exec_reset@cm-multi-queue-close-fd: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt@xe_exec_reset@cm-multi-queue-gt-reset: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt@xe_exec_reset@multi-queue-cancel: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt@xe_exec_reset@multi-queue-cancel-on-secondary: - Statuses : 1 skip(s) - Exec time: [0.0] s * igt@xe_exec_reset@multi-queue-cat-error: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt@xe_exec_reset@multi-queue-cat-error-on-secondary: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt@xe_exec_reset@multi-queue-close-execqueues: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt@xe_exec_reset@multi-queue-close-fd: - Statuses : 2 skip(s) - Exec time: [0.0] s * igt@xe_exec_reset@multi-queue-gt-reset: - Statuses : 2 skip(s) - Exec time: [0.0] s Known issues ------------ Here are the changes found in XEIGTPW_14975_FULL that come from known issues: ### IGT changes ### #### Issues hit #### * igt@intel_hwmon@hwmon-write: - shard-bmg: [PASS][3] -> [FAIL][4] ([Intel XE#7445]) [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8854/shard-bmg-2/igt@intel_hwmon@hwmon-write.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14975/shard-bmg-3/igt@intel_hwmon@hwmon-write.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-lnl: NOTRUN -> [SKIP][5] ([Intel XE#3658] / [Intel XE#7360]) [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14975/shard-lnl-8/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180: - shard-bmg: NOTRUN -> [SKIP][6] ([Intel XE#1124]) [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14975/shard-bmg-8/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180.html * igt@kms_bw@connected-linear-tiling-1-displays-2560x1440p: - shard-bmg: [PASS][7] -> [SKIP][8] ([Intel XE#7621]) [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8854/shard-bmg-7/igt@kms_bw@connected-linear-tiling-1-displays-2560x1440p.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14975/shard-bmg-9/igt@kms_bw@connected-linear-tiling-1-displays-2560x1440p.html * igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p: - shard-bmg: NOTRUN -> [SKIP][9] ([Intel XE#7679]) [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14975/shard-bmg-6/igt@kms_bw@connected-linear-tiling-4-displays-2560x1440p.html * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs: - shard-lnl: NOTRUN -> [SKIP][10] ([Intel XE#3432]) [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14975/shard-lnl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs: - shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#2887]) +2 other tests skip [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14975/shard-bmg-9/igt@kms_ccs@crc-sprite-planes-basic-yf-tiled-ccs.html * igt@kms_chamelium_color@ctm-green-to-red: - shard-lnl: NOTRUN -> [SKIP][12] ([Intel XE#306] / [Intel XE#7358]) [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14975/shard-lnl-1/igt@kms_chamelium_color@ctm-green-to-red.html * igt@kms_chamelium_hpd@dp-hpd-after-suspend: - shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#2252]) [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14975/shard-bmg-9/igt@kms_chamelium_hpd@dp-hpd-after-suspend.html * igt@kms_cursor_crc@cursor-offscreen-256x85: - shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#2320]) +1 other test skip [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14975/shard-bmg-10/igt@kms_cursor_crc@cursor-offscreen-256x85.html * igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic: - shard-lnl: NOTRUN -> [SKIP][15] ([Intel XE#309] / [Intel XE#7343]) [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14975/shard-lnl-5/igt@kms_cursor_legacy@2x-long-nonblocking-modeset-vs-cursor-atomic.html * igt@kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-lnl: NOTRUN -> [SKIP][16] ([Intel XE#1508]) [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14975/shard-lnl-8/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt@kms_flip@2x-blocking-absolute-wf_vblank: - shard-lnl: NOTRUN -> [SKIP][17] ([Intel XE#1421]) +1 other test skip [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14975/shard-lnl-1/igt@kms_flip@2x-blocking-absolute-wf_vblank.html * igt@kms_flip_scaled_crc@flip-p016-linear-to-p016-linear-reflect-x: - shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#7179]) [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14975/shard-bmg-7/igt@kms_flip_scaled_crc@flip-p016-linear-to-p016-linear-reflect-x.html * igt@kms_frontbuffer_tracking@drrs-1p-offscreen-pri-shrfb-draw-mmap-wc: - shard-lnl: NOTRUN -> [SKIP][19] ([Intel XE#6312]) [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14975/shard-lnl-8/igt@kms_frontbuffer_tracking@drrs-1p-offscreen-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-blt: - shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#4141]) [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14975/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-fullscreen: - shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#2311]) +3 other tests skip [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14975/shard-bmg-8/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt: - shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#2313]) +3 other tests skip [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14975/shard-bmg-10/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-plflip-blt: - shard-lnl: NOTRUN -> [SKIP][23] ([Intel XE#656]) +3 other tests skip [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14975/shard-lnl-2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psr-argb161616f-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][24] ([Intel XE#7061] / [Intel XE#7356]) [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14975/shard-bmg-3/igt@kms_frontbuffer_tracking@psr-argb161616f-draw-mmap-wc.html * igt@kms_joiner@basic-ultra-joiner: - shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#6911] / [Intel XE#7378]) [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14975/shard-bmg-10/igt@kms_joiner@basic-ultra-joiner.html * igt@kms_joiner@invalid-modeset-ultra-joiner: - shard-lnl: NOTRUN -> [SKIP][26] ([Intel XE#6900] / [Intel XE#7362]) [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14975/shard-lnl-2/igt@kms_joiner@invalid-modeset-ultra-joiner.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-lnl: NOTRUN -> [SKIP][27] ([Intel XE#7591]) [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14975/shard-lnl-6/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier: - shard-lnl: NOTRUN -> [SKIP][28] ([Intel XE#7283]) [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14975/shard-lnl-8/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier.html * igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier: - shard-bmg: NOTRUN -> [SKIP][29] ([Intel XE#7283]) +1 other test skip [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14975/shard-bmg-6/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier.html * igt@kms_psr@fbc-psr-sprite-render: - shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#2234] / [Intel XE#2850]) [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14975/shard-bmg-8/igt@kms_psr@fbc-psr-sprite-render.html * igt@kms_psr@pr-sprite-render: - shard-lnl: NOTRUN -> [SKIP][31] ([Intel XE#1406]) [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14975/shard-lnl-3/igt@kms_psr@pr-sprite-render.html * igt@kms_rotation_crc@bad-tiling: - shard-lnl: NOTRUN -> [SKIP][32] ([Intel XE#3414] / [Intel XE#3904] / [Intel XE#7342]) [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14975/shard-lnl-4/igt@kms_rotation_crc@bad-tiling.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-lnl: NOTRUN -> [SKIP][33] ([Intel XE#1127] / [Intel XE#5813]) [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14975/shard-lnl-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt@kms_sharpness_filter@filter-scaler-upscale: - shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#6503]) [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14975/shard-bmg-7/igt@kms_sharpness_filter@filter-scaler-upscale.html * igt@xe_compute@ccs-mode-basic: - shard-lnl: NOTRUN -> [SKIP][35] ([Intel XE#1447] / [Intel XE#7471]) [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14975/shard-lnl-6/igt@xe_compute@ccs-mode-basic.html * igt@xe_eudebug_online@writes-caching-sram-bb-vram-target-sram: - shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#7636]) [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14975/shard-bmg-5/igt@xe_eudebug_online@writes-caching-sram-bb-vram-target-sram.html * igt@xe_evict@evict-beng-cm-threads-small: - shard-lnl: NOTRUN -> [SKIP][37] ([Intel XE#6540] / [Intel XE#688]) +2 other tests skip [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14975/shard-lnl-7/igt@xe_evict@evict-beng-cm-threads-small.html * igt@xe_evict@evict-small-external-multi-queue-cm: - shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#7140]) [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14975/shard-bmg-6/igt@xe_evict@evict-small-external-multi-queue-cm.html * igt@xe_exec_balancer@many-execqueues-cm-parallel-userptr-rebind: - shard-lnl: NOTRUN -> [SKIP][39] ([Intel XE#7482]) +1 other test skip [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14975/shard-lnl-7/igt@xe_exec_balancer@many-execqueues-cm-parallel-userptr-rebind.html * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-mmap: - shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#2322] / [Intel XE#7372]) +1 other test skip [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14975/shard-bmg-8/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-basic-defer-mmap.html * igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr: - shard-lnl: NOTRUN -> [SKIP][41] ([Intel XE#1392]) [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14975/shard-lnl-1/igt@xe_exec_basic@multigpu-once-bindexecqueue-userptr.html * igt@xe_exec_fault_mode@many-execqueues-multi-queue-imm: - shard-bmg: NOTRUN -> [SKIP][42] ([Intel XE#7136]) +2 other tests skip [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14975/shard-bmg-5/igt@xe_exec_fault_mode@many-execqueues-multi-queue-imm.html * igt@xe_exec_multi_queue@many-queues-close-fd: - shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#6874]) +1 other test skip [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14975/shard-bmg-3/igt@xe_exec_multi_queue@many-queues-close-fd.html * igt@xe_exec_multi_queue@one-queue-preempt-mode-fault-basic: - shard-lnl: NOTRUN -> [SKIP][44] ([Intel XE#6874]) +3 other tests skip [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14975/shard-lnl-7/igt@xe_exec_multi_queue@one-queue-preempt-mode-fault-basic.html * igt@xe_exec_threads@threads-multi-queue-cm-shared-vm-userptr-invalidate: - shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#7138]) +1 other test skip [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14975/shard-bmg-7/igt@xe_exec_threads@threads-multi-queue-cm-shared-vm-userptr-invalidate.html * igt@xe_exec_threads@threads-multi-queue-fd-userptr-invalidate: - shard-lnl: NOTRUN -> [SKIP][46] ([Intel XE#7138]) +1 other test skip [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14975/shard-lnl-4/igt@xe_exec_threads@threads-multi-queue-fd-userptr-invalidate.html * igt@xe_prefetch_fault@prefetch-fault-svm: - shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#7599]) [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14975/shard-bmg-8/igt@xe_prefetch_fault@prefetch-fault-svm.html * igt@xe_query@multigpu-query-topology-l3-bank-mask: - shard-lnl: NOTRUN -> [SKIP][48] ([Intel XE#944]) +1 other test skip [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14975/shard-lnl-5/igt@xe_query@multigpu-query-topology-l3-bank-mask.html * igt@xe_sriov_auto_provisioning@selfconfig-reprovision-increase-numvfs: - shard-bmg: [PASS][49] -> [FAIL][50] ([Intel XE#5937]) +1 other test fail [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8854/shard-bmg-7/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-increase-numvfs.html [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14975/shard-bmg-1/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-increase-numvfs.html * igt@xe_sriov_auto_provisioning@selfconfig-reprovision-reduce-numvfs: - shard-lnl: NOTRUN -> [SKIP][51] ([Intel XE#4130] / [Intel XE#7366]) [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14975/shard-lnl-6/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-reduce-numvfs.html * igt@xe_sriov_flr@flr-vf1-clear: - shard-bmg: [PASS][52] -> [FAIL][53] ([Intel XE#6569]) [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8854/shard-bmg-6/igt@xe_sriov_flr@flr-vf1-clear.html [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14975/shard-bmg-1/igt@xe_sriov_flr@flr-vf1-clear.html * igt@xe_survivability@runtime-survivability: - shard-bmg: [PASS][54] -> [DMESG-WARN][55] ([Intel XE#6627] / [Intel XE#7419]) [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8854/shard-bmg-1/igt@xe_survivability@runtime-survivability.html [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14975/shard-bmg-7/igt@xe_survivability@runtime-survivability.html #### Possible fixes #### * igt@kms_pm_dc@deep-pkgc: - shard-lnl: [FAIL][56] ([Intel XE#2029] / [Intel XE#7395]) -> [PASS][57] [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8854/shard-lnl-7/igt@kms_pm_dc@deep-pkgc.html [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14975/shard-lnl-3/igt@kms_pm_dc@deep-pkgc.html * igt@kms_vrr@max-min@pipe-a-edp-1: - shard-lnl: [FAIL][58] ([Intel XE#4227]) -> [PASS][59] +1 other test pass [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8854/shard-lnl-1/igt@kms_vrr@max-min@pipe-a-edp-1.html [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14975/shard-lnl-7/igt@kms_vrr@max-min@pipe-a-edp-1.html * igt@xe_configfs@engines-allowed: - shard-bmg: [DMESG-WARN][60] ([Intel XE#7725]) -> [PASS][61] +3 other tests pass [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8854/shard-bmg-6/igt@xe_configfs@engines-allowed.html [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14975/shard-bmg-8/igt@xe_configfs@engines-allowed.html * igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-multi-vma: - shard-lnl: [FAIL][62] ([Intel XE#5625]) -> [PASS][63] [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8854/shard-lnl-1/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-multi-vma.html [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14975/shard-lnl-4/igt@xe_exec_system_allocator@pat-index-madvise-pat-idx-uc-multi-vma.html * igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling@numvfs-random: - shard-bmg: [FAIL][64] ([Intel XE#5937]) -> [PASS][65] +1 other test pass [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8854/shard-bmg-3/igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling@numvfs-random.html [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14975/shard-bmg-3/igt@xe_sriov_auto_provisioning@resources-released-on-vfs-disabling@numvfs-random.html * igt@xe_sriov_flr@flr-twice: - shard-bmg: [FAIL][66] ([Intel XE#6569]) -> [PASS][67] [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8854/shard-bmg-8/igt@xe_sriov_flr@flr-twice.html [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14975/shard-bmg-2/igt@xe_sriov_flr@flr-twice.html #### Warnings #### * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-move: - shard-bmg: [SKIP][68] ([Intel XE#2312]) -> [SKIP][69] ([Intel XE#2313]) [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8854/shard-bmg-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-move.html [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14975/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-move.html * igt@kms_tiled_display@basic-test-pattern: - shard-bmg: [SKIP][70] ([Intel XE#2426] / [Intel XE#5848]) -> [FAIL][71] ([Intel XE#1729] / [Intel XE#7424]) [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8854/shard-bmg-5/igt@kms_tiled_display@basic-test-pattern.html [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14975/shard-bmg-6/igt@kms_tiled_display@basic-test-pattern.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127 [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392 [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406 [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421 [Intel XE#1447]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1447 [Intel XE#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508 [Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729 [Intel XE#2029]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2029 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252 [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 [Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312 [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313 [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320 [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322 [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426 [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#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306 [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309 [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414 [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432 [Intel XE#3658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3658 [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904 [Intel XE#4130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130 [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141 [Intel XE#4227]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4227 [Intel XE#5625]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5625 [Intel XE#5813]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5813 [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#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312 [Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503 [Intel XE#6540]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6540 [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656 [Intel XE#6569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6569 [Intel XE#6627]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6627 [Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874 [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#6900]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6900 [Intel XE#6911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6911 [Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061 [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#7179]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7179 [Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283 [Intel XE#7342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7342 [Intel XE#7343]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7343 [Intel XE#7356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7356 [Intel XE#7358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7358 [Intel XE#7360]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7360 [Intel XE#7362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7362 [Intel XE#7366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7366 [Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372 [Intel XE#7378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7378 [Intel XE#7395]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7395 [Intel XE#7419]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7419 [Intel XE#7424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7424 [Intel XE#7445]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7445 [Intel XE#7471]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7471 [Intel XE#7482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7482 [Intel XE#7591]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7591 [Intel XE#7599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7599 [Intel XE#7621]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7621 [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#7725]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7725 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 Build changes ------------- * IGT: IGT_8854 -> IGTPW_14975 * Linux: xe-4884-3751e2e5a19aba3949a3f12aa5b917eb8bbb1eb5 -> xe-4897-c8bad7becc008716c8475847328c549e178c813c IGTPW_14975: 94c5dd9b2e13fec934ae30ec1adbb7dd1a6e02a3 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8854: 93abaf0170728f69bc27577e5b405f7a2a01b6fd @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-4884-3751e2e5a19aba3949a3f12aa5b917eb8bbb1eb5: 3751e2e5a19aba3949a3f12aa5b917eb8bbb1eb5 xe-4897-c8bad7becc008716c8475847328c549e178c813c: c8bad7becc008716c8475847328c549e178c813c == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14975/index.html [-- Attachment #2: Type: text/html, Size: 28362 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* ✗ i915.CI.Full: failure for series starting with [i-g-t,v2,1/3] tests/intel/xe_exec_reset: Add a comment about return for syncobj wait 2026-04-13 21:19 [PATCH i-g-t v2 1/3] tests/intel/xe_exec_reset: Add a comment about return for syncobj wait Stuart Summers ` (4 preceding siblings ...) 2026-04-14 6:11 ` ✗ Xe.CI.FULL: failure " Patchwork @ 2026-04-14 8:50 ` Patchwork 5 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2026-04-14 8:50 UTC (permalink / raw) To: Stuart Summers; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 129603 bytes --] == Series Details == Series: series starting with [i-g-t,v2,1/3] tests/intel/xe_exec_reset: Add a comment about return for syncobj wait URL : https://patchwork.freedesktop.org/series/164825/ State : failure == Summary == CI Bug Log - changes from CI_DRM_18326_full -> IGTPW_14975_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_14975_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_14975_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_14975/index.html Participating hosts (10 -> 10) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_14975_full: ### IGT changes ### #### Possible regressions #### * igt@kms_vblank@accuracy-idle@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][1] +1 other test fail [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-glk5/igt@kms_vblank@accuracy-idle@pipe-a-hdmi-a-1.html New tests --------- New tests have been introduced between CI_DRM_18326_full and IGTPW_14975_full: ### New IGT tests (20) ### * igt@i915_pm_rps@4-tiled-64bpp-rotate-90: - Statuses : - Exec time: [None] s * igt@i915_pm_rps@addfb25-x-tiled-mismatch-legacy: - Statuses : - Exec time: [None] s * igt@i915_pm_rps@dp-mst-type-1-suspend-resume: - Statuses : - Exec time: [None] s * igt@i915_pm_rps@etime-multi-wait-all-available-unsubmitted: - Statuses : - Exec time: [None] s * igt@i915_pm_rps@fbc-1p-primscrn-cur-indfb-draw-mmap-wc: - Statuses : - Exec time: [None] s * igt@i915_pm_rps@fbc-1p-shrfb-fliptrack-mmap-gtt: - Statuses : - Exec time: [None] s * igt@i915_pm_rps@fbcpsr-1p-primscrn-cur-indfb-draw-render: - Statuses : - Exec time: [None] s * igt@i915_pm_rps@fbcpsr-2p-scndscrn-spr-indfb-draw-mmap-cpu: - Statuses : - Exec time: [None] s * igt@i915_pm_rps@hang-user: - Statuses : - Exec time: [None] s * igt@i915_pm_rps@offset-control: - Statuses : - Exec time: [None] s * igt@i915_pm_rps@plane-ctm3x4: - Statuses : - Exec time: [None] s * igt@i915_pm_rps@planes-downscale-factor-0-5: - Statuses : - Exec time: [None] s * igt@i915_pm_rps@psr-1p-primscrn-indfb-plflip-blt: - Statuses : - Exec time: [None] s * igt@i915_pm_rps@screens-disabled: - Statuses : - Exec time: [None] s * igt@i915_pm_rps@semaphore-busy: - Statuses : - Exec time: [None] s * igt@i915_pm_rps@simple-allocator: - Statuses : - Exec time: [None] s * igt@i915_pm_rps@stress-xrgb8888-ytiled: - Statuses : - Exec time: [None] s * igt@i915_pm_rps@wait-delayed-signal: - Statuses : - Exec time: [None] s * igt@i915_pm_rps@write: - Statuses : - Exec time: [None] s * igt@i915_pm_rps@x-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - Statuses : - Exec time: [None] s Known issues ------------ Here are the changes found in IGTPW_14975_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_busy@semaphore: - shard-dg2: NOTRUN -> [SKIP][2] ([i915#3936]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-dg2-5/igt@gem_busy@semaphore.html - shard-dg1: NOTRUN -> [SKIP][3] ([i915#3936]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-dg1-12/igt@gem_busy@semaphore.html - shard-mtlp: NOTRUN -> [SKIP][4] ([i915#3936]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-mtlp-8/igt@gem_busy@semaphore.html * igt@gem_ccs@suspend-resume: - shard-dg2: NOTRUN -> [INCOMPLETE][5] ([i915#13356]) +1 other test incomplete [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-dg2-1/igt@gem_ccs@suspend-resume.html - shard-rkl: NOTRUN -> [SKIP][6] ([i915#9323]) +1 other test skip [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-rkl-8/igt@gem_ccs@suspend-resume.html - shard-dg1: NOTRUN -> [SKIP][7] ([i915#9323]) +1 other test skip [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-dg1-16/igt@gem_ccs@suspend-resume.html - shard-tglu: NOTRUN -> [SKIP][8] ([i915#9323]) +1 other test skip [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-tglu-3/igt@gem_ccs@suspend-resume.html - shard-mtlp: NOTRUN -> [SKIP][9] ([i915#9323]) +1 other test skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-mtlp-1/igt@gem_ccs@suspend-resume.html * igt@gem_create@create-ext-cpu-access-big: - shard-dg2: [PASS][10] -> [FAIL][11] ([i915#15454]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18326/shard-dg2-8/igt@gem_create@create-ext-cpu-access-big.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-dg2-5/igt@gem_create@create-ext-cpu-access-big.html - shard-rkl: NOTRUN -> [SKIP][12] ([i915#6335]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-rkl-5/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_create@create-ext-cpu-access-sanity-check: - shard-tglu: NOTRUN -> [SKIP][13] ([i915#6335]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-tglu-5/igt@gem_create@create-ext-cpu-access-sanity-check.html * igt@gem_ctx_persistence@heartbeat-hang: - shard-dg1: NOTRUN -> [SKIP][14] ([i915#8555]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-dg1-17/igt@gem_ctx_persistence@heartbeat-hang.html * igt@gem_ctx_persistence@saturated-hostile-nopreempt: - shard-dg2: NOTRUN -> [SKIP][15] ([i915#5882]) +7 other tests skip [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-dg2-7/igt@gem_ctx_persistence@saturated-hostile-nopreempt.html * igt@gem_exec_balancer@bonded-true-hang: - shard-dg2: NOTRUN -> [SKIP][16] ([i915#4812]) +1 other test skip [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-dg2-7/igt@gem_exec_balancer@bonded-true-hang.html * igt@gem_exec_balancer@parallel: - shard-tglu-1: NOTRUN -> [SKIP][17] ([i915#4525]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-tglu-1/igt@gem_exec_balancer@parallel.html * igt@gem_exec_balancer@parallel-ordering: - shard-rkl: NOTRUN -> [SKIP][18] ([i915#4525]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-rkl-7/igt@gem_exec_balancer@parallel-ordering.html - shard-tglu: NOTRUN -> [SKIP][19] ([i915#4525]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-tglu-9/igt@gem_exec_balancer@parallel-ordering.html * igt@gem_exec_big@single: - shard-tglu: [PASS][20] -> [FAIL][21] ([i915#15816]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18326/shard-tglu-9/igt@gem_exec_big@single.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-tglu-5/igt@gem_exec_big@single.html * igt@gem_exec_fence@submit67: - shard-dg1: NOTRUN -> [SKIP][22] ([i915#4812]) +1 other test skip [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-dg1-15/igt@gem_exec_fence@submit67.html - shard-mtlp: NOTRUN -> [SKIP][23] ([i915#4812]) +1 other test skip [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-mtlp-2/igt@gem_exec_fence@submit67.html * igt@gem_exec_fence@syncobj-backward-timeline-chain-engines: - shard-snb: NOTRUN -> [SKIP][24] +113 other tests skip [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-snb1/igt@gem_exec_fence@syncobj-backward-timeline-chain-engines.html * igt@gem_exec_flush@basic-batch-kernel-default-uc: - shard-dg2: NOTRUN -> [SKIP][25] ([i915#3539] / [i915#4852]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-dg2-1/igt@gem_exec_flush@basic-batch-kernel-default-uc.html * igt@gem_exec_flush@basic-wb-rw-before-default: - shard-dg1: NOTRUN -> [SKIP][26] ([i915#3539] / [i915#4852]) +1 other test skip [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-dg1-14/igt@gem_exec_flush@basic-wb-rw-before-default.html * igt@gem_exec_reloc@basic-wc: - shard-dg1: NOTRUN -> [SKIP][27] ([i915#3281]) +4 other tests skip [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-dg1-18/igt@gem_exec_reloc@basic-wc.html * igt@gem_exec_reloc@basic-wc-cpu: - shard-dg2: NOTRUN -> [SKIP][28] ([i915#3281]) +2 other tests skip [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-dg2-10/igt@gem_exec_reloc@basic-wc-cpu.html - shard-rkl: NOTRUN -> [SKIP][29] ([i915#3281]) +7 other tests skip [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-rkl-5/igt@gem_exec_reloc@basic-wc-cpu.html - shard-mtlp: NOTRUN -> [SKIP][30] ([i915#3281]) +4 other tests skip [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-mtlp-8/igt@gem_exec_reloc@basic-wc-cpu.html * igt@gem_exec_schedule@preempt-queue-chain: - shard-mtlp: NOTRUN -> [SKIP][31] ([i915#4537] / [i915#4812]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-mtlp-8/igt@gem_exec_schedule@preempt-queue-chain.html - shard-dg2: NOTRUN -> [SKIP][32] ([i915#4537] / [i915#4812]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-dg2-5/igt@gem_exec_schedule@preempt-queue-chain.html * igt@gem_exec_suspend@basic-s3@lmem0: - shard-dg2: [PASS][33] -> [ABORT][34] ([i915#15131]) +1 other test abort [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18326/shard-dg2-8/igt@gem_exec_suspend@basic-s3@lmem0.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-dg2-10/igt@gem_exec_suspend@basic-s3@lmem0.html * igt@gem_lmem_evict@dontneed-evict-race: - shard-rkl: NOTRUN -> [SKIP][35] ([i915#14544] / [i915#4613] / [i915#7582]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-rkl-6/igt@gem_lmem_evict@dontneed-evict-race.html - shard-tglu: NOTRUN -> [SKIP][36] ([i915#4613] / [i915#7582]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-tglu-7/igt@gem_lmem_evict@dontneed-evict-race.html * igt@gem_lmem_swapping@heavy-verify-random-ccs: - shard-dg1: NOTRUN -> [SKIP][37] ([i915#12193]) +1 other test skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-dg1-15/igt@gem_lmem_swapping@heavy-verify-random-ccs.html * igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0: - shard-dg1: NOTRUN -> [SKIP][38] ([i915#4565]) +1 other test skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-dg1-15/igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0.html * igt@gem_lmem_swapping@massive-random: - shard-glk: NOTRUN -> [SKIP][39] ([i915#4613]) +2 other tests skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-glk5/igt@gem_lmem_swapping@massive-random.html * igt@gem_lmem_swapping@smem-oom: - shard-tglu: NOTRUN -> [SKIP][40] ([i915#4613]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-tglu-5/igt@gem_lmem_swapping@smem-oom.html - shard-mtlp: NOTRUN -> [SKIP][41] ([i915#4613]) +2 other tests skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-mtlp-7/igt@gem_lmem_swapping@smem-oom.html - shard-rkl: NOTRUN -> [SKIP][42] ([i915#4613]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-rkl-5/igt@gem_lmem_swapping@smem-oom.html * igt@gem_media_fill@media-fill: - shard-mtlp: NOTRUN -> [SKIP][43] ([i915#8289]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-mtlp-6/igt@gem_media_fill@media-fill.html - shard-dg2: NOTRUN -> [SKIP][44] ([i915#8289]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-dg2-7/igt@gem_media_fill@media-fill.html * igt@gem_mmap_gtt@basic: - shard-mtlp: NOTRUN -> [SKIP][45] ([i915#4077]) +4 other tests skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-mtlp-5/igt@gem_mmap_gtt@basic.html * igt@gem_mmap_gtt@medium-copy-xy: - shard-dg1: NOTRUN -> [SKIP][46] ([i915#4077]) +4 other tests skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-dg1-13/igt@gem_mmap_gtt@medium-copy-xy.html * igt@gem_mmap_wc@coherency: - shard-dg2: NOTRUN -> [SKIP][47] ([i915#4083]) +4 other tests skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-dg2-5/igt@gem_mmap_wc@coherency.html - shard-dg1: NOTRUN -> [SKIP][48] ([i915#4083]) +2 other tests skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-dg1-12/igt@gem_mmap_wc@coherency.html - shard-mtlp: NOTRUN -> [SKIP][49] ([i915#4083]) +2 other tests skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-mtlp-8/igt@gem_mmap_wc@coherency.html * igt@gem_partial_pwrite_pread@writes-after-reads: - shard-dg1: NOTRUN -> [SKIP][50] ([i915#3282]) +3 other tests skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-dg1-12/igt@gem_partial_pwrite_pread@writes-after-reads.html * igt@gem_pxp@display-protected-crc: - shard-dg2: NOTRUN -> [SKIP][51] ([i915#4270]) +1 other test skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-dg2-7/igt@gem_pxp@display-protected-crc.html - shard-dg1: NOTRUN -> [SKIP][52] ([i915#4270]) +1 other test skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-dg1-13/igt@gem_pxp@display-protected-crc.html * igt@gem_pxp@hw-rejects-pxp-context: - shard-tglu: NOTRUN -> [SKIP][53] ([i915#13398]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-tglu-4/igt@gem_pxp@hw-rejects-pxp-context.html * igt@gem_readwrite@beyond-eob: - shard-rkl: NOTRUN -> [SKIP][54] ([i915#3282]) +5 other tests skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-rkl-2/igt@gem_readwrite@beyond-eob.html * igt@gem_readwrite@write-bad-handle: - shard-dg2: NOTRUN -> [SKIP][55] ([i915#3282]) +1 other test skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-dg2-4/igt@gem_readwrite@write-bad-handle.html - shard-mtlp: NOTRUN -> [SKIP][56] ([i915#3282]) +1 other test skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-mtlp-2/igt@gem_readwrite@write-bad-handle.html * igt@gem_render_copy@yf-tiled-ccs-to-y-tiled: - shard-dg2: NOTRUN -> [SKIP][57] ([i915#5190] / [i915#8428]) +1 other test skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-dg2-7/igt@gem_render_copy@yf-tiled-ccs-to-y-tiled.html - shard-mtlp: NOTRUN -> [SKIP][58] ([i915#8428]) +1 other test skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-mtlp-3/igt@gem_render_copy@yf-tiled-ccs-to-y-tiled.html * igt@gem_render_tiled_blits@basic: - shard-dg2: NOTRUN -> [SKIP][59] ([i915#4079]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-dg2-7/igt@gem_render_tiled_blits@basic.html - shard-dg1: NOTRUN -> [SKIP][60] ([i915#4079]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-dg1-13/igt@gem_render_tiled_blits@basic.html - shard-mtlp: NOTRUN -> [SKIP][61] ([i915#4079]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-mtlp-6/igt@gem_render_tiled_blits@basic.html * igt@gem_tiled_partial_pwrite_pread@reads: - shard-dg2: NOTRUN -> [SKIP][62] ([i915#4077]) +4 other tests skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-dg2-5/igt@gem_tiled_partial_pwrite_pread@reads.html - shard-rkl: NOTRUN -> [SKIP][63] ([i915#14544] / [i915#3282]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-rkl-6/igt@gem_tiled_partial_pwrite_pread@reads.html * igt@gem_tiled_pread_basic@basic: - shard-dg1: NOTRUN -> [SKIP][64] ([i915#15657]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-dg1-12/igt@gem_tiled_pread_basic@basic.html * igt@gem_unfence_active_buffers: - shard-dg1: NOTRUN -> [SKIP][65] ([i915#4879]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-dg1-12/igt@gem_unfence_active_buffers.html * igt@gem_userptr_blits@dmabuf-unsync: - shard-rkl: NOTRUN -> [SKIP][66] ([i915#3297]) +2 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-rkl-4/igt@gem_userptr_blits@dmabuf-unsync.html * igt@gem_userptr_blits@readonly-pwrite-unsync: - shard-dg2: NOTRUN -> [SKIP][67] ([i915#3297]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-dg2-8/igt@gem_userptr_blits@readonly-pwrite-unsync.html * igt@gen7_exec_parse@basic-allocation: - shard-mtlp: NOTRUN -> [SKIP][68] +7 other tests skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-mtlp-4/igt@gen7_exec_parse@basic-allocation.html - shard-rkl: NOTRUN -> [SKIP][69] ([i915#14544]) +1 other test skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-rkl-6/igt@gen7_exec_parse@basic-allocation.html * igt@gen9_exec_parse@basic-rejected: - shard-tglu: NOTRUN -> [SKIP][70] ([i915#2527] / [i915#2856]) +3 other tests skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-tglu-5/igt@gen9_exec_parse@basic-rejected.html - shard-mtlp: NOTRUN -> [SKIP][71] ([i915#2856]) +2 other tests skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-mtlp-7/igt@gen9_exec_parse@basic-rejected.html * igt@gen9_exec_parse@batch-without-end: - shard-tglu-1: NOTRUN -> [SKIP][72] ([i915#2527] / [i915#2856]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-tglu-1/igt@gen9_exec_parse@batch-without-end.html * igt@gen9_exec_parse@bb-secure: - shard-rkl: NOTRUN -> [SKIP][73] ([i915#14544] / [i915#2527]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-rkl-6/igt@gen9_exec_parse@bb-secure.html * igt@gen9_exec_parse@shadow-peek: - shard-dg2: NOTRUN -> [SKIP][74] ([i915#2856]) +2 other tests skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-dg2-6/igt@gen9_exec_parse@shadow-peek.html - shard-rkl: NOTRUN -> [SKIP][75] ([i915#2527]) +3 other tests skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-rkl-7/igt@gen9_exec_parse@shadow-peek.html - shard-dg1: NOTRUN -> [SKIP][76] ([i915#2527]) +1 other test skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-dg1-19/igt@gen9_exec_parse@shadow-peek.html * igt@i915_drm_fdinfo@most-busy-idle-check-all@vecs1: - shard-dg2: NOTRUN -> [SKIP][77] ([i915#14073]) +7 other tests skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-dg2-7/igt@i915_drm_fdinfo@most-busy-idle-check-all@vecs1.html * igt@i915_fb_tiling@basic-x-tiling: - shard-dg1: NOTRUN -> [SKIP][78] ([i915#13786]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-dg1-17/igt@i915_fb_tiling@basic-x-tiling.html * igt@i915_module_load@fault-injection@i915_driver_mmio_probe: - shard-dg1: NOTRUN -> [INCOMPLETE][79] ([i915#15481]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-dg1-18/igt@i915_module_load@fault-injection@i915_driver_mmio_probe.html * igt@i915_module_load@reload-no-display: - shard-tglu: [PASS][80] -> [DMESG-WARN][81] ([i915#13029] / [i915#14545]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18326/shard-tglu-3/igt@i915_module_load@reload-no-display.html [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-tglu-7/igt@i915_module_load@reload-no-display.html * igt@i915_pm_freq_api@freq-reset-multiple: - shard-rkl: NOTRUN -> [SKIP][82] ([i915#8399]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-rkl-7/igt@i915_pm_freq_api@freq-reset-multiple.html * igt@i915_pm_freq_api@freq-suspend: - shard-tglu-1: NOTRUN -> [SKIP][83] ([i915#8399]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-tglu-1/igt@i915_pm_freq_api@freq-suspend.html * igt@i915_pm_freq_mult@media-freq@gt0: - shard-rkl: NOTRUN -> [SKIP][84] ([i915#6590]) +1 other test skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-rkl-7/igt@i915_pm_freq_mult@media-freq@gt0.html - shard-dg1: NOTRUN -> [SKIP][85] ([i915#6590]) +1 other test skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-dg1-19/igt@i915_pm_freq_mult@media-freq@gt0.html - shard-tglu: NOTRUN -> [SKIP][86] ([i915#6590]) +1 other test skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-tglu-10/igt@i915_pm_freq_mult@media-freq@gt0.html * igt@i915_pm_freq_mult@media-freq@gt1: - shard-mtlp: NOTRUN -> [SKIP][87] ([i915#6590]) +2 other tests skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-mtlp-7/igt@i915_pm_freq_mult@media-freq@gt1.html * igt@i915_pm_rps@min-max-config-loaded: - shard-dg2: NOTRUN -> [SKIP][88] ([i915#11681] / [i915#6621]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-dg2-8/igt@i915_pm_rps@min-max-config-loaded.html * igt@i915_pm_rps@reset: - shard-snb: NOTRUN -> [INCOMPLETE][89] ([i915#13729] / [i915#13821]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-snb6/igt@i915_pm_rps@reset.html * igt@i915_query@test-query-geometry-subslices: - shard-rkl: NOTRUN -> [SKIP][90] ([i915#5723]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-rkl-2/igt@i915_query@test-query-geometry-subslices.html * igt@i915_suspend@basic-s3-without-i915: - shard-rkl: [PASS][91] -> [ABORT][92] ([i915#15131]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18326/shard-rkl-6/igt@i915_suspend@basic-s3-without-i915.html [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-rkl-1/igt@i915_suspend@basic-s3-without-i915.html - shard-tglu-1: NOTRUN -> [INCOMPLETE][93] ([i915#4817] / [i915#7443]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-tglu-1/igt@i915_suspend@basic-s3-without-i915.html * igt@i915_suspend@fence-restore-tiled2untiled: - shard-glk: NOTRUN -> [INCOMPLETE][94] ([i915#4817]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-glk9/igt@i915_suspend@fence-restore-tiled2untiled.html * igt@kms_addfb_basic@framebuffer-vs-set-tiling: - shard-dg2: NOTRUN -> [SKIP][95] ([i915#4212]) +2 other tests skip [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-dg2-6/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html - shard-dg1: NOTRUN -> [SKIP][96] ([i915#4212]) +1 other test skip [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-dg1-14/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html - shard-mtlp: NOTRUN -> [SKIP][97] ([i915#4212]) +1 other test skip [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-mtlp-3/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html * igt@kms_big_fb@4-tiled-16bpp-rotate-0: - shard-dg1: NOTRUN -> [SKIP][98] ([i915#4538] / [i915#5286]) +1 other test skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-dg1-14/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html * igt@kms_big_fb@4-tiled-addfb: - shard-tglu-1: NOTRUN -> [SKIP][99] ([i915#5286]) +1 other test skip [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-tglu-1/igt@kms_big_fb@4-tiled-addfb.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-rkl: NOTRUN -> [SKIP][100] ([i915#5286]) +3 other tests skip [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-rkl-3/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-tglu: NOTRUN -> [SKIP][101] ([i915#5286]) +3 other tests skip [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-tglu-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html - shard-rkl: NOTRUN -> [SKIP][102] ([i915#14544] / [i915#5286]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt@kms_big_fb@linear-64bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][103] ([i915#3638]) +3 other tests skip [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-rkl-5/igt@kms_big_fb@linear-64bpp-rotate-90.html * igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip: - shard-rkl: NOTRUN -> [SKIP][104] ([i915#3828]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-rkl-5/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@x-tiled-32bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][105] ([i915#14544] / [i915#3638]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-rkl-6/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html * igt@kms_big_fb@x-tiled-8bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][106] ([i915#3638]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-dg1-16/igt@kms_big_fb@x-tiled-8bpp-rotate-90.html * igt@kms_big_fb@y-tiled-addfb-size-overflow: - shard-dg2: NOTRUN -> [SKIP][107] ([i915#5190]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-dg2-8/igt@kms_big_fb@y-tiled-addfb-size-overflow.html - shard-mtlp: NOTRUN -> [SKIP][108] ([i915#6187]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-mtlp-6/igt@kms_big_fb@y-tiled-addfb-size-overflow.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][109] +19 other tests skip [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-rkl-2/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][110] ([i915#4538] / [i915#5190]) +5 other tests skip [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-dg2-1/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][111] ([i915#4538]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-dg1-19/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][112] ([i915#10307] / [i915#6095]) +107 other tests skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-dg2-8/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-3.html * igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][113] ([i915#6095]) +14 other tests skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-mtlp-5/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc@pipe-c-edp-1.html * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][114] ([i915#6095]) +54 other tests skip [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-dg2-6/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-d-hdmi-a-3.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][115] ([i915#6095]) +236 other tests skip [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-dg1-19/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][116] ([i915#6095]) +14 other tests skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-tglu-1/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-1.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc: - shard-tglu: NOTRUN -> [SKIP][117] ([i915#6095]) +59 other tests skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-tglu-10/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs: - shard-mtlp: NOTRUN -> [SKIP][118] ([i915#12313]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-mtlp-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][119] ([i915#10307] / [i915#10434] / [i915#6095]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-dg2-4/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@crc-primary-suspend-y-tiled-ccs: - shard-glk10: NOTRUN -> [INCOMPLETE][120] ([i915#15582]) +1 other test incomplete [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-glk10/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][121] ([i915#14098] / [i915#14544] / [i915#6095]) +6 other tests skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs@pipe-c-hdmi-a-2.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc: - shard-rkl: [PASS][122] -> [INCOMPLETE][123] ([i915#15582]) +1 other test incomplete [122]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18326/shard-rkl-7/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs: - shard-glk: NOTRUN -> [INCOMPLETE][124] ([i915#14694] / [i915#15582]) +1 other test incomplete [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-glk3/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs.html * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-c-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][125] ([i915#14098] / [i915#6095]) +47 other tests skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-rkl-4/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-c-hdmi-a-2.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][126] ([i915#14544] / [i915#6095]) +8 other tests skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][127] ([i915#6095]) +70 other tests skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-rkl-4/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-2.html * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-c-hdmi-a-2: - shard-glk10: NOTRUN -> [SKIP][128] +236 other tests skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-glk10/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-rc-ccs@pipe-c-hdmi-a-2.html * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs: - shard-dg1: NOTRUN -> [SKIP][129] ([i915#12313]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-dg1-15/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html * igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [SKIP][130] +363 other tests skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-glk3/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs@pipe-a-hdmi-a-1.html * igt@kms_cdclk@mode-transition@pipe-b-dp-3: - shard-dg2: NOTRUN -> [SKIP][131] ([i915#13781]) +3 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-dg2-10/igt@kms_cdclk@mode-transition@pipe-b-dp-3.html * igt@kms_chamelium_audio@dp-audio: - shard-mtlp: NOTRUN -> [SKIP][132] ([i915#11151] / [i915#7828]) +4 other tests skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-mtlp-6/igt@kms_chamelium_audio@dp-audio.html * igt@kms_chamelium_color@ctm-negative: - shard-dg2: NOTRUN -> [SKIP][133] +4 other tests skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-dg2-1/igt@kms_chamelium_color@ctm-negative.html * igt@kms_chamelium_frames@hdmi-crc-multiple: - shard-dg2: NOTRUN -> [SKIP][134] ([i915#11151] / [i915#7828]) +6 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-dg2-3/igt@kms_chamelium_frames@hdmi-crc-multiple.html - shard-rkl: NOTRUN -> [SKIP][135] ([i915#11151] / [i915#7828]) +9 other tests skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-rkl-7/igt@kms_chamelium_frames@hdmi-crc-multiple.html - shard-dg1: NOTRUN -> [SKIP][136] ([i915#11151] / [i915#7828]) +5 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-dg1-18/igt@kms_chamelium_frames@hdmi-crc-multiple.html - shard-tglu: NOTRUN -> [SKIP][137] ([i915#11151] / [i915#7828]) +8 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-tglu-9/igt@kms_chamelium_frames@hdmi-crc-multiple.html * igt@kms_chamelium_hpd@vga-hpd-fast: - shard-tglu-1: NOTRUN -> [SKIP][138] ([i915#11151] / [i915#7828]) +1 other test skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-tglu-1/igt@kms_chamelium_hpd@vga-hpd-fast.html * igt@kms_content_protection@atomic: - shard-rkl: NOTRUN -> [SKIP][139] ([i915#15865]) +2 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-rkl-5/igt@kms_content_protection@atomic.html * igt@kms_content_protection@dp-mst-type-0-suspend-resume: - shard-tglu: NOTRUN -> [SKIP][140] ([i915#15330]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-tglu-7/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html * igt@kms_content_protection@dp-mst-type-1-suspend-resume: - shard-mtlp: NOTRUN -> [SKIP][141] ([i915#15330]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-mtlp-7/igt@kms_content_protection@dp-mst-type-1-suspend-resume.html * igt@kms_content_protection@legacy-hdcp14@pipe-a-dp-3: - shard-dg2: NOTRUN -> [FAIL][142] ([i915#7173]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-dg2-10/igt@kms_content_protection@legacy-hdcp14@pipe-a-dp-3.html * igt@kms_content_protection@type1: - shard-dg2: NOTRUN -> [SKIP][143] ([i915#15865]) +1 other test skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-dg2-5/igt@kms_content_protection@type1.html - shard-rkl: NOTRUN -> [SKIP][144] ([i915#14544] / [i915#15865]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-rkl-6/igt@kms_content_protection@type1.html - shard-dg1: NOTRUN -> [SKIP][145] ([i915#15865]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-dg1-12/igt@kms_content_protection@type1.html - shard-tglu: NOTRUN -> [SKIP][146] ([i915#15865]) +2 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-tglu-8/igt@kms_content_protection@type1.html - shard-mtlp: NOTRUN -> [SKIP][147] ([i915#15865]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-mtlp-4/igt@kms_content_protection@type1.html * igt@kms_content_protection@uevent: - shard-tglu-1: NOTRUN -> [SKIP][148] ([i915#15865]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-tglu-1/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-offscreen-32x10: - shard-dg2: NOTRUN -> [SKIP][149] ([i915#3555]) +3 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-dg2-8/igt@kms_cursor_crc@cursor-offscreen-32x10.html - shard-rkl: NOTRUN -> [SKIP][150] ([i915#3555]) +4 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-rkl-2/igt@kms_cursor_crc@cursor-offscreen-32x10.html - shard-dg1: NOTRUN -> [SKIP][151] ([i915#3555]) +1 other test skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-dg1-18/igt@kms_cursor_crc@cursor-offscreen-32x10.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-dg1: NOTRUN -> [SKIP][152] ([i915#13049]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-dg1-14/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_crc@cursor-offscreen-max-size: - shard-rkl: NOTRUN -> [SKIP][153] ([i915#14544] / [i915#3555]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-rkl-6/igt@kms_cursor_crc@cursor-offscreen-max-size.html * igt@kms_cursor_crc@cursor-onscreen-128x42: - shard-rkl: [PASS][154] -> [FAIL][155] ([i915#13566]) +6 other tests fail [154]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18326/shard-rkl-2/igt@kms_cursor_crc@cursor-onscreen-128x42.html [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-rkl-5/igt@kms_cursor_crc@cursor-onscreen-128x42.html - shard-tglu: [PASS][156] -> [FAIL][157] ([i915#13566]) +5 other tests fail [156]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18326/shard-tglu-9/igt@kms_cursor_crc@cursor-onscreen-128x42.html [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-tglu-3/igt@kms_cursor_crc@cursor-onscreen-128x42.html * igt@kms_cursor_crc@cursor-onscreen-32x32: - shard-tglu-1: NOTRUN -> [SKIP][158] ([i915#3555]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-tglu-1/igt@kms_cursor_crc@cursor-onscreen-32x32.html * igt@kms_cursor_crc@cursor-onscreen-max-size: - shard-tglu: NOTRUN -> [SKIP][159] ([i915#3555]) +4 other tests skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-tglu-10/igt@kms_cursor_crc@cursor-onscreen-max-size.html - shard-mtlp: NOTRUN -> [SKIP][160] ([i915#3555] / [i915#8814]) +1 other test skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-mtlp-7/igt@kms_cursor_crc@cursor-onscreen-max-size.html * igt@kms_cursor_crc@cursor-rapid-movement-512x170: - shard-tglu-1: NOTRUN -> [SKIP][161] ([i915#13049]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-tglu-1/igt@kms_cursor_crc@cursor-rapid-movement-512x170.html * igt@kms_cursor_crc@cursor-sliding-256x85: - shard-tglu-1: NOTRUN -> [FAIL][162] ([i915#13566]) +1 other test fail [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-tglu-1/igt@kms_cursor_crc@cursor-sliding-256x85.html * igt@kms_cursor_crc@cursor-sliding-512x170: - shard-tglu: NOTRUN -> [SKIP][163] ([i915#13049]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-tglu-5/igt@kms_cursor_crc@cursor-sliding-512x170.html * igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [FAIL][164] ([i915#13566]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-rkl-8/igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1.html - shard-tglu: NOTRUN -> [FAIL][165] ([i915#13566]) +1 other test fail [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-tglu-2/igt@kms_cursor_crc@cursor-sliding-64x21@pipe-a-hdmi-a-1.html * igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size: - shard-dg2: NOTRUN -> [SKIP][166] ([i915#13046] / [i915#5354]) +1 other test skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-dg2-3/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html - shard-mtlp: NOTRUN -> [SKIP][167] ([i915#9809]) +1 other test skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-mtlp-1/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-dg2: NOTRUN -> [SKIP][168] ([i915#4103] / [i915#4213]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-dg2-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html - shard-rkl: NOTRUN -> [SKIP][169] ([i915#4103]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-rkl-2/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html - shard-dg1: NOTRUN -> [SKIP][170] ([i915#4103] / [i915#4213]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-dg1-12/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html - shard-tglu: NOTRUN -> [SKIP][171] ([i915#4103]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-tglu-3/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html - shard-mtlp: NOTRUN -> [SKIP][172] ([i915#4213]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-mtlp-8/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt@kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-rkl: NOTRUN -> [SKIP][173] ([i915#9723]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-rkl-7/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html - shard-tglu: NOTRUN -> [SKIP][174] ([i915#9723]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-tglu-6/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt@kms_dp_link_training@non-uhbr-sst: - shard-rkl: NOTRUN -> [SKIP][175] ([i915#13749]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-rkl-5/igt@kms_dp_link_training@non-uhbr-sst.html * igt@kms_dsc@dsc-with-bpc: - shard-rkl: NOTRUN -> [SKIP][176] ([i915#3555] / [i915#3840]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-rkl-4/igt@kms_dsc@dsc-with-bpc.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][177] ([i915#9878]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-glk2/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_feature_discovery@display-3x: - shard-tglu: NOTRUN -> [SKIP][178] ([i915#1839]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-tglu-9/igt@kms_feature_discovery@display-3x.html * igt@kms_flip@2x-absolute-wf_vblank: - shard-dg2: NOTRUN -> [SKIP][179] ([i915#9934]) +1 other test skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-dg2-7/igt@kms_flip@2x-absolute-wf_vblank.html - shard-dg1: NOTRUN -> [SKIP][180] ([i915#9934]) +1 other test skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-dg1-17/igt@kms_flip@2x-absolute-wf_vblank.html * igt@kms_flip@2x-dpms-vs-vblank-race-interruptible: - shard-mtlp: NOTRUN -> [SKIP][181] ([i915#3637] / [i915#9934]) +1 other test skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-mtlp-7/igt@kms_flip@2x-dpms-vs-vblank-race-interruptible.html * igt@kms_flip@2x-flip-vs-dpms-on-nop: - shard-tglu: NOTRUN -> [SKIP][182] ([i915#9934]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-tglu-5/igt@kms_flip@2x-flip-vs-dpms-on-nop.html * igt@kms_flip@2x-flip-vs-wf_vblank-interruptible: - shard-rkl: NOTRUN -> [SKIP][183] ([i915#9934]) +6 other tests skip [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-rkl-4/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html * igt@kms_flip@2x-plain-flip-interruptible: - shard-tglu: NOTRUN -> [SKIP][184] ([i915#3637] / [i915#9934]) +4 other tests skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-tglu-6/igt@kms_flip@2x-plain-flip-interruptible.html * igt@kms_flip@2x-wf_vblank-ts-check-interruptible: - shard-tglu-1: NOTRUN -> [SKIP][185] ([i915#3637] / [i915#9934]) +1 other test skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-tglu-1/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html * igt@kms_flip@flip-vs-suspend-interruptible: - shard-dg2: [PASS][186] -> [ABORT][187] ([i915#15132]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18326/shard-dg2-8/igt@kms_flip@flip-vs-suspend-interruptible.html [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-dg2-10/igt@kms_flip@flip-vs-suspend-interruptible.html - shard-glk11: NOTRUN -> [INCOMPLETE][188] ([i915#12745] / [i915#4839]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-glk11/igt@kms_flip@flip-vs-suspend-interruptible.html * igt@kms_flip@flip-vs-suspend-interruptible@a-dp3: - shard-dg2: NOTRUN -> [ABORT][189] ([i915#15132]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-dg2-10/igt@kms_flip@flip-vs-suspend-interruptible@a-dp3.html * igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1: - shard-glk11: NOTRUN -> [INCOMPLETE][190] ([i915#12745]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-glk11/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a1.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling: - shard-dg2: NOTRUN -> [SKIP][191] ([i915#15643]) +1 other test skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-dg2-8/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html - shard-rkl: NOTRUN -> [SKIP][192] ([i915#15643]) +2 other tests skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-rkl-2/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html - shard-dg1: NOTRUN -> [SKIP][193] ([i915#15643]) +2 other tests skip [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-dg1-18/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html - shard-tglu: NOTRUN -> [SKIP][194] ([i915#15643]) +1 other test skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-tglu-4/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling: - shard-mtlp: NOTRUN -> [SKIP][195] ([i915#15643]) +2 other tests skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling: - shard-dg2: NOTRUN -> [SKIP][196] ([i915#15643] / [i915#5190]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-dg2-7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu: - shard-dg2: [PASS][197] -> [FAIL][198] ([i915#15389] / [i915#6880]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18326/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu.html [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-wc: - shard-mtlp: NOTRUN -> [SKIP][199] ([i915#1825]) +16 other tests skip [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-mtlp-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-move: - shard-tglu: NOTRUN -> [SKIP][200] +61 other tests skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-tglu-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-move.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][201] ([i915#1825]) +28 other tests skip [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-rkl-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html - shard-mtlp: NOTRUN -> [SKIP][202] ([i915#8708]) +2 other tests skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-mtlp-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][203] ([i915#10056]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-glk6/igt@kms_frontbuffer_tracking@fbc-suspend.html * igt@kms_frontbuffer_tracking@fbc-tiling-4: - shard-dg1: NOTRUN -> [SKIP][204] ([i915#5439]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-dg1-19/igt@kms_frontbuffer_tracking@fbc-tiling-4.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-render: - shard-dg1: NOTRUN -> [SKIP][205] ([i915#15102]) +2 other tests skip [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-dg1-15/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-pwrite: - shard-rkl: NOTRUN -> [SKIP][206] ([i915#15102]) +2 other tests skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-rkl-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw: - shard-dg1: NOTRUN -> [SKIP][207] ([i915#15102] / [i915#3458]) +6 other tests skip [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][208] ([i915#15102] / [i915#3458]) +8 other tests skip [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu: - shard-tglu-1: NOTRUN -> [SKIP][209] ([i915#15102]) +1 other test skip [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-blt: - shard-tglu-1: NOTRUN -> [SKIP][210] +9 other tests skip [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-pwrite: - shard-dg1: NOTRUN -> [SKIP][211] +18 other tests skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt: - shard-rkl: NOTRUN -> [SKIP][212] ([i915#14544] / [i915#1825]) +8 other tests skip [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc: - shard-rkl: NOTRUN -> [SKIP][213] ([i915#14544] / [i915#15102] / [i915#3023]) +2 other tests skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][214] ([i915#15102]) +2 other tests skip [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-dg2-6/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt: - shard-rkl: NOTRUN -> [SKIP][215] ([i915#15102] / [i915#3023]) +13 other tests skip [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][216] ([i915#8708]) +7 other tests skip [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-dg2-5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][217] ([i915#5354]) +9 other tests skip [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-dg2-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][218] ([i915#8708]) +6 other tests skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-dg1-17/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary: - shard-tglu: NOTRUN -> [SKIP][219] ([i915#15102]) +20 other tests skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-tglu-4/igt@kms_frontbuffer_tracking@psr-shrfb-scaledprimary.html * igt@kms_hdmi_inject@inject-audio: - shard-mtlp: [PASS][220] -> [SKIP][221] ([i915#15725]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18326/shard-mtlp-6/igt@kms_hdmi_inject@inject-audio.html [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-mtlp-1/igt@kms_hdmi_inject@inject-audio.html * igt@kms_hdr@bpc-switch-dpms: - shard-dg2: [PASS][222] -> [SKIP][223] ([i915#3555] / [i915#8228]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18326/shard-dg2-10/igt@kms_hdr@bpc-switch-dpms.html [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-dg2-1/igt@kms_hdr@bpc-switch-dpms.html - shard-rkl: NOTRUN -> [SKIP][224] ([i915#3555] / [i915#8228]) +1 other test skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-rkl-4/igt@kms_hdr@bpc-switch-dpms.html - shard-tglu: NOTRUN -> [SKIP][225] ([i915#3555] / [i915#8228]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-tglu-6/igt@kms_hdr@bpc-switch-dpms.html * igt@kms_hdr@static-toggle: - shard-dg2: NOTRUN -> [SKIP][226] ([i915#3555] / [i915#8228]) [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-dg2-4/igt@kms_hdr@static-toggle.html * igt@kms_invalid_mode@clock-too-high: - shard-mtlp: NOTRUN -> [SKIP][227] ([i915#3555] / [i915#6403] / [i915#8826]) [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-mtlp-7/igt@kms_invalid_mode@clock-too-high.html * igt@kms_invalid_mode@clock-too-high@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][228] ([i915#9457]) +2 other tests skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-mtlp-7/igt@kms_invalid_mode@clock-too-high@pipe-c-edp-1.html * igt@kms_invalid_mode@clock-too-high@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][229] ([i915#8826] / [i915#9457]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-mtlp-7/igt@kms_invalid_mode@clock-too-high@pipe-d-edp-1.html * igt@kms_joiner@basic-big-joiner: - shard-tglu-1: NOTRUN -> [SKIP][230] ([i915#15460]) [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-tglu-1/igt@kms_joiner@basic-big-joiner.html * igt@kms_joiner@invalid-modeset-ultra-joiner: - shard-mtlp: NOTRUN -> [SKIP][231] ([i915#15458]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-mtlp-1/igt@kms_joiner@invalid-modeset-ultra-joiner.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-mtlp: NOTRUN -> [SKIP][232] ([i915#15815]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-mtlp-4/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier-source-clamping: - shard-tglu: NOTRUN -> [SKIP][233] ([i915#15709]) +5 other tests skip [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-tglu-8/igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier-source-clamping.html * igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier-source-clamping: - shard-dg2: NOTRUN -> [SKIP][234] ([i915#15709]) +1 other test skip [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-dg2-6/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier-source-clamping.html - shard-rkl: NOTRUN -> [SKIP][235] ([i915#14544] / [i915#15709]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier-source-clamping.html - shard-mtlp: NOTRUN -> [SKIP][236] ([i915#15709]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-mtlp-4/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier-source-clamping.html * igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier-source-clamping: - shard-dg1: NOTRUN -> [SKIP][237] ([i915#15709]) +2 other tests skip [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-dg1-19/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier-source-clamping.html * igt@kms_plane@pixel-format-yf-tiled-modifier: - shard-rkl: NOTRUN -> [SKIP][238] ([i915#15709]) +3 other tests skip [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-rkl-3/igt@kms_plane@pixel-format-yf-tiled-modifier.html * igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a: - shard-glk: [PASS][239] -> [INCOMPLETE][240] ([i915#13026]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18326/shard-glk5/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-glk1/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a.html * igt@kms_plane_alpha_blend@alpha-transparent-fb: - shard-glk10: NOTRUN -> [FAIL][241] ([i915#10647] / [i915#12177]) [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/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][242] ([i915#10647]) +1 other test fail [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/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][243] ([i915#10647] / [i915#12169]) [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-glk9/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][244] ([i915#10647]) +1 other test fail [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-glk9/igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1.html * igt@kms_plane_multiple@2x-tiling-4: - shard-tglu-1: NOTRUN -> [SKIP][245] ([i915#13958]) [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-tglu-1/igt@kms_plane_multiple@2x-tiling-4.html * igt@kms_plane_multiple@2x-tiling-none: - shard-rkl: NOTRUN -> [SKIP][246] ([i915#13958]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-rkl-7/igt@kms_plane_multiple@2x-tiling-none.html * igt@kms_plane_multiple@2x-tiling-y: - shard-mtlp: NOTRUN -> [SKIP][247] ([i915#13958]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-mtlp-1/igt@kms_plane_multiple@2x-tiling-y.html * igt@kms_plane_multiple@tiling-yf: - shard-rkl: NOTRUN -> [SKIP][248] ([i915#14259] / [i915#14544]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-rkl-6/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c: - shard-tglu: NOTRUN -> [SKIP][249] ([i915#15329]) +14 other tests skip [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-tglu-5/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-c.html * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a: - shard-dg1: NOTRUN -> [SKIP][250] ([i915#15329]) +14 other tests skip [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-dg1-19/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a.html * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-c: - shard-rkl: NOTRUN -> [SKIP][251] ([i915#15329]) +11 other tests skip [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-rkl-5/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-c.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75: - shard-mtlp: NOTRUN -> [SKIP][252] ([i915#15329] / [i915#6953]) +1 other test skip [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-mtlp-8/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-d: - shard-mtlp: NOTRUN -> [SKIP][253] ([i915#15329]) +12 other tests skip [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-mtlp-8/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-75@pipe-d.html * igt@kms_pm_backlight@brightness-with-dpms: - shard-dg1: NOTRUN -> [SKIP][254] ([i915#12343]) [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-dg1-12/igt@kms_pm_backlight@brightness-with-dpms.html * igt@kms_pm_backlight@fade: - shard-tglu-1: NOTRUN -> [SKIP][255] ([i915#9812]) [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-tglu-1/igt@kms_pm_backlight@fade.html * igt@kms_pm_dc@dc6-dpms: - shard-dg2: NOTRUN -> [SKIP][256] ([i915#15751]) [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-dg2-4/igt@kms_pm_dc@dc6-dpms.html - shard-rkl: NOTRUN -> [FAIL][257] ([i915#15752]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-rkl-3/igt@kms_pm_dc@dc6-dpms.html - shard-dg1: NOTRUN -> [SKIP][258] ([i915#3361]) [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-dg1-16/igt@kms_pm_dc@dc6-dpms.html - shard-tglu: NOTRUN -> [FAIL][259] ([i915#15752]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-tglu-10/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_lpsp@screens-disabled: - shard-dg2: NOTRUN -> [SKIP][260] ([i915#8430]) [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-dg2-3/igt@kms_pm_lpsp@screens-disabled.html - shard-rkl: NOTRUN -> [SKIP][261] ([i915#8430]) [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-rkl-7/igt@kms_pm_lpsp@screens-disabled.html - shard-dg1: NOTRUN -> [SKIP][262] ([i915#8430]) [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-dg1-18/igt@kms_pm_lpsp@screens-disabled.html - shard-tglu: NOTRUN -> [SKIP][263] ([i915#8430]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-tglu-9/igt@kms_pm_lpsp@screens-disabled.html - shard-mtlp: NOTRUN -> [SKIP][264] ([i915#8430]) [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-mtlp-7/igt@kms_pm_lpsp@screens-disabled.html * igt@kms_pm_rpm@dpms-lpsp: - shard-dg1: [PASS][265] -> [SKIP][266] ([i915#15073]) +1 other test skip [265]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18326/shard-dg1-14/igt@kms_pm_rpm@dpms-lpsp.html [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-dg1-12/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@i2c: - shard-dg1: [PASS][267] -> [DMESG-WARN][268] ([i915#4423]) [267]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18326/shard-dg1-12/igt@kms_pm_rpm@i2c.html [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-dg1-18/igt@kms_pm_rpm@i2c.html * igt@kms_pm_rpm@modeset-lpsp: - shard-dg2: NOTRUN -> [SKIP][269] ([i915#15073]) +1 other test skip [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-dg2-8/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-dg2: [PASS][270] -> [SKIP][271] ([i915#15073]) [270]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18326/shard-dg2-1/igt@kms_pm_rpm@modeset-non-lpsp-stress.html [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-dg2-4/igt@kms_pm_rpm@modeset-non-lpsp-stress.html - shard-mtlp: NOTRUN -> [SKIP][272] ([i915#15073]) [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-mtlp-1/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_pm_rpm@system-suspend-idle: - shard-dg2: [PASS][273] -> [INCOMPLETE][274] ([i915#14419]) [273]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18326/shard-dg2-3/igt@kms_pm_rpm@system-suspend-idle.html [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-dg2-3/igt@kms_pm_rpm@system-suspend-idle.html * igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area: - shard-glk: NOTRUN -> [SKIP][275] ([i915#11520]) +17 other tests skip [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-glk9/igt@kms_psr2_sf@fbc-pr-plane-move-sf-dmg-area.html * igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area: - shard-tglu-1: NOTRUN -> [SKIP][276] ([i915#11520]) +1 other test skip [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-tglu-1/igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf: - shard-glk10: NOTRUN -> [SKIP][277] ([i915#11520]) +3 other tests skip [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-glk10/igt@kms_psr2_sf@fbc-psr2-overlay-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@pr-plane-move-sf-dmg-area: - shard-mtlp: NOTRUN -> [SKIP][278] ([i915#12316]) +1 other test skip [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-mtlp-5/igt@kms_psr2_sf@pr-plane-move-sf-dmg-area.html * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf: - shard-glk11: NOTRUN -> [SKIP][279] ([i915#11520]) [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-glk11/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html * igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf: - shard-dg2: NOTRUN -> [SKIP][280] ([i915#11520]) +4 other tests skip [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-dg2-3/igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html * igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area: - shard-rkl: NOTRUN -> [SKIP][281] ([i915#11520]) +4 other tests skip [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-rkl-8/igt@kms_psr2_sf@psr2-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb: - shard-snb: NOTRUN -> [SKIP][282] ([i915#11520]) +2 other tests skip [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-snb7/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html - shard-dg1: NOTRUN -> [SKIP][283] ([i915#11520]) +3 other tests skip [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-dg1-18/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html - shard-tglu: NOTRUN -> [SKIP][284] ([i915#11520]) +6 other tests skip [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-tglu-4/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html - shard-rkl: NOTRUN -> [SKIP][285] ([i915#11520] / [i915#14544]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-rkl-6/igt@kms_psr2_sf@psr2-primary-plane-update-sf-dmg-area-big-fb.html * igt@kms_psr@fbc-psr-cursor-plane-move: - shard-dg2: NOTRUN -> [SKIP][286] ([i915#1072] / [i915#9732]) +12 other tests skip [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-dg2-7/igt@kms_psr@fbc-psr-cursor-plane-move.html - shard-rkl: NOTRUN -> [SKIP][287] ([i915#1072] / [i915#9732]) +18 other tests skip [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-rkl-4/igt@kms_psr@fbc-psr-cursor-plane-move.html - shard-dg1: NOTRUN -> [SKIP][288] ([i915#1072] / [i915#9732]) +10 other tests skip [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-dg1-17/igt@kms_psr@fbc-psr-cursor-plane-move.html * igt@kms_psr@fbc-psr-no-drrs: - shard-tglu: NOTRUN -> [SKIP][289] ([i915#9732]) +23 other tests skip [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-tglu-4/igt@kms_psr@fbc-psr-no-drrs.html * igt@kms_psr@fbc-psr2-primary-mmap-cpu: - shard-mtlp: NOTRUN -> [SKIP][290] ([i915#9688]) +8 other tests skip [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-mtlp-8/igt@kms_psr@fbc-psr2-primary-mmap-cpu.html * igt@kms_psr@psr-sprite-mmap-cpu: - shard-tglu-1: NOTRUN -> [SKIP][291] ([i915#9732]) +3 other tests skip [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-tglu-1/igt@kms_psr@psr-sprite-mmap-cpu.html * igt@kms_psr@psr-suspend: - shard-rkl: NOTRUN -> [SKIP][292] ([i915#1072] / [i915#14544] / [i915#9732]) +1 other test skip [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-rkl-6/igt@kms_psr@psr-suspend.html * igt@kms_rotation_crc@exhaust-fences: - shard-dg2: NOTRUN -> [SKIP][293] ([i915#4235]) [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-dg2-4/igt@kms_rotation_crc@exhaust-fences.html * igt@kms_rotation_crc@primary-4-tiled-reflect-x-180: - shard-rkl: NOTRUN -> [SKIP][294] ([i915#5289]) [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-rkl-3/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-rotation-90: - shard-mtlp: NOTRUN -> [SKIP][295] ([i915#12755] / [i915#15867]) [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-mtlp-1/igt@kms_rotation_crc@primary-rotation-90.html - shard-dg2: NOTRUN -> [SKIP][296] ([i915#12755] / [i915#15867]) [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-dg2-4/igt@kms_rotation_crc@primary-rotation-90.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-tglu-1: NOTRUN -> [SKIP][297] ([i915#5289]) [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-tglu-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-rkl: NOTRUN -> [SKIP][298] ([i915#14544] / [i915#5289]) [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-rkl-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html - shard-tglu: NOTRUN -> [SKIP][299] ([i915#5289]) +1 other test skip [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-tglu-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_setmode@basic@pipe-a-hdmi-a-2: - shard-rkl: [PASS][300] -> [FAIL][301] ([i915#15106]) +1 other test fail [300]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18326/shard-rkl-7/igt@kms_setmode@basic@pipe-a-hdmi-a-2.html [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-rkl-4/igt@kms_setmode@basic@pipe-a-hdmi-a-2.html * igt@kms_setmode@invalid-clone-exclusive-crtc: - shard-mtlp: NOTRUN -> [SKIP][302] ([i915#3555] / [i915#8809] / [i915#8823]) [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-mtlp-4/igt@kms_setmode@invalid-clone-exclusive-crtc.html * igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [INCOMPLETE][303] ([i915#12276]) +1 other test incomplete [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-glk8/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-1.html * igt@kms_vblank@ts-continuation-suspend: - shard-glk11: NOTRUN -> [INCOMPLETE][304] ([i915#12276]) +1 other test incomplete [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-glk11/igt@kms_vblank@ts-continuation-suspend.html * igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-2: - shard-rkl: [PASS][305] -> [INCOMPLETE][306] ([i915#12276]) +1 other test incomplete [305]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18326/shard-rkl-7/igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-2.html [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-rkl-3/igt@kms_vblank@ts-continuation-suspend@pipe-a-hdmi-a-2.html * igt@kms_vrr@lobf: - shard-glk11: NOTRUN -> [SKIP][307] +18 other tests skip [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-glk11/igt@kms_vrr@lobf.html - shard-rkl: NOTRUN -> [SKIP][308] ([i915#11920]) [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-rkl-8/igt@kms_vrr@lobf.html - shard-tglu: NOTRUN -> [SKIP][309] ([i915#11920]) [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-tglu-5/igt@kms_vrr@lobf.html * igt@perf_pmu@busy-double-start: - shard-mtlp: NOTRUN -> [FAIL][310] ([i915#4349]) +2 other tests fail [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-mtlp-3/igt@perf_pmu@busy-double-start.html * igt@perf_pmu@module-unload: - shard-tglu-1: NOTRUN -> [ABORT][311] ([i915#13029] / [i915#15778]) [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-tglu-1/igt@perf_pmu@module-unload.html - shard-mtlp: NOTRUN -> [INCOMPLETE][312] ([i915#13520]) [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-mtlp-6/igt@perf_pmu@module-unload.html * igt@perf_pmu@rc6-suspend: - shard-glk10: NOTRUN -> [INCOMPLETE][313] ([i915#13356]) [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-glk10/igt@perf_pmu@rc6-suspend.html * igt@prime_vgem@basic-fence-flip: - shard-dg1: NOTRUN -> [SKIP][314] ([i915#3708]) [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-dg1-14/igt@prime_vgem@basic-fence-flip.html - shard-dg2: NOTRUN -> [SKIP][315] ([i915#3708]) [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-dg2-5/igt@prime_vgem@basic-fence-flip.html * igt@prime_vgem@coherency-gtt: - shard-rkl: NOTRUN -> [SKIP][316] ([i915#3708]) [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-rkl-3/igt@prime_vgem@coherency-gtt.html * igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-6: - shard-tglu: NOTRUN -> [FAIL][317] ([i915#12910]) +9 other tests fail [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-tglu-5/igt@sriov_basic@enable-vfs-autoprobe-off@numvfs-6.html * igt@sriov_basic@enable-vfs-bind-unbind-each@numvfs-2: - shard-tglu-1: NOTRUN -> [FAIL][318] ([i915#12910]) +8 other tests fail [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-tglu-1/igt@sriov_basic@enable-vfs-bind-unbind-each@numvfs-2.html * igt@tools_test@sysfs_l3_parity: - shard-dg2: NOTRUN -> [SKIP][319] ([i915#4818]) [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-dg2-3/igt@tools_test@sysfs_l3_parity.html #### Possible fixes #### * igt@gem_exec_big@single: - shard-mtlp: [FAIL][320] -> [PASS][321] [320]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18326/shard-mtlp-3/igt@gem_exec_big@single.html [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-mtlp-2/igt@gem_exec_big@single.html * igt@gem_softpin@noreloc-s3: - shard-dg2: [ABORT][322] ([i915#15131]) -> [PASS][323] [322]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18326/shard-dg2-10/igt@gem_softpin@noreloc-s3.html [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-dg2-8/igt@gem_softpin@noreloc-s3.html * igt@i915_module_load@reload-no-display: - shard-dg2: [DMESG-WARN][324] ([i915#13029] / [i915#14545]) -> [PASS][325] [324]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18326/shard-dg2-4/igt@i915_module_load@reload-no-display.html [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-dg2-6/igt@i915_module_load@reload-no-display.html - shard-dg1: [DMESG-WARN][326] ([i915#13029] / [i915#14545]) -> [PASS][327] [326]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18326/shard-dg1-13/igt@i915_module_load@reload-no-display.html [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-dg1-12/igt@i915_module_load@reload-no-display.html * igt@i915_pm_rpm@system-suspend: - shard-glk: [INCOMPLETE][328] ([i915#13356]) -> [PASS][329] [328]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18326/shard-glk4/igt@i915_pm_rpm@system-suspend.html [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-glk9/igt@i915_pm_rpm@system-suspend.html * igt@i915_suspend@debugfs-reader: - shard-glk: [INCOMPLETE][330] ([i915#4817]) -> [PASS][331] +1 other test pass [330]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18326/shard-glk1/igt@i915_suspend@debugfs-reader.html [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-glk5/igt@i915_suspend@debugfs-reader.html * igt@i915_suspend@fence-restore-untiled: - shard-rkl: [INCOMPLETE][332] ([i915#4817]) -> [PASS][333] [332]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18326/shard-rkl-6/igt@i915_suspend@fence-restore-untiled.html [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-rkl-5/igt@i915_suspend@fence-restore-untiled.html * igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-3: - shard-dg2: [FAIL][334] ([i915#5956]) -> [PASS][335] +1 other test pass [334]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18326/shard-dg2-1/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-3.html [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-dg2-8/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-3.html * igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1: - shard-tglu: [FAIL][336] ([i915#13566]) -> [PASS][337] +3 other tests pass [336]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18326/shard-tglu-8/igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1.html [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-tglu-3/igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1.html * igt@kms_cursor_crc@cursor-sliding-128x42: - shard-rkl: [FAIL][338] ([i915#13566]) -> [PASS][339] +1 other test pass [338]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18326/shard-rkl-3/igt@kms_cursor_crc@cursor-sliding-128x42.html [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-rkl-4/igt@kms_cursor_crc@cursor-sliding-128x42.html * igt@kms_invalid_mode@bad-vsync-start: - shard-dg1: [DMESG-WARN][340] ([i915#4423]) -> [PASS][341] [340]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18326/shard-dg1-18/igt@kms_invalid_mode@bad-vsync-start.html [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-dg1-14/igt@kms_invalid_mode@bad-vsync-start.html * igt@kms_joiner@basic-force-big-joiner: - shard-dg2: [SKIP][342] ([i915#15459]) -> [PASS][343] [342]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18326/shard-dg2-7/igt@kms_joiner@basic-force-big-joiner.html [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-dg2-10/igt@kms_joiner@basic-force-big-joiner.html * igt@kms_pipe_crc_basic@suspend-read-crc: - shard-rkl: [INCOMPLETE][344] ([i915#12756] / [i915#13476]) -> [PASS][345] [344]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18326/shard-rkl-6/igt@kms_pipe_crc_basic@suspend-read-crc.html [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-rkl-4/igt@kms_pipe_crc_basic@suspend-read-crc.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-2: - shard-rkl: [INCOMPLETE][346] ([i915#13476]) -> [PASS][347] [346]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18326/shard-rkl-6/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-2.html [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-rkl-4/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-2.html * igt@kms_plane_cursor@viewport: - shard-mtlp: [DMESG-WARN][348] -> [PASS][349] +1 other test pass [348]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18326/shard-mtlp-5/igt@kms_plane_cursor@viewport.html [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-mtlp-3/igt@kms_plane_cursor@viewport.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-rkl: [SKIP][350] ([i915#15073]) -> [PASS][351] [350]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18326/shard-rkl-2/igt@kms_pm_rpm@modeset-non-lpsp.html [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-rkl-3/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-dg1: [SKIP][352] ([i915#15073]) -> [PASS][353] [352]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18326/shard-dg1-15/igt@kms_pm_rpm@modeset-non-lpsp-stress.html [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-dg1-16/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_vrr@negative-basic: - shard-dg2: [SKIP][354] ([i915#3555] / [i915#9906]) -> [PASS][355] [354]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18326/shard-dg2-4/igt@kms_vrr@negative-basic.html [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-dg2-10/igt@kms_vrr@negative-basic.html * igt@sysfs_preempt_timeout@timeout: - shard-dg2: [ABORT][356] -> [PASS][357] +1 other test pass [356]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18326/shard-dg2-10/igt@sysfs_preempt_timeout@timeout.html [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-dg2-1/igt@sysfs_preempt_timeout@timeout.html #### Warnings #### * igt@drm_buddy@drm_buddy: - shard-rkl: [SKIP][358] ([i915#14544] / [i915#15678]) -> [SKIP][359] ([i915#15678]) [358]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18326/shard-rkl-6/igt@drm_buddy@drm_buddy.html [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-rkl-5/igt@drm_buddy@drm_buddy.html * igt@gem_bad_reloc@negative-reloc-lut: - shard-rkl: [SKIP][360] ([i915#14544] / [i915#3281]) -> [SKIP][361] ([i915#3281]) +5 other tests skip [360]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18326/shard-rkl-6/igt@gem_bad_reloc@negative-reloc-lut.html [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-rkl-4/igt@gem_bad_reloc@negative-reloc-lut.html * igt@gem_ctx_sseu@mmap-args: - shard-rkl: [SKIP][362] ([i915#280]) -> [SKIP][363] ([i915#14544] / [i915#280]) [362]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18326/shard-rkl-8/igt@gem_ctx_sseu@mmap-args.html [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-rkl-6/igt@gem_ctx_sseu@mmap-args.html * igt@gem_exec_reloc@basic-wc-active: - shard-rkl: [SKIP][364] ([i915#3281]) -> [SKIP][365] ([i915#14544] / [i915#3281]) [364]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18326/shard-rkl-5/igt@gem_exec_reloc@basic-wc-active.html [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-rkl-6/igt@gem_exec_reloc@basic-wc-active.html * igt@gem_huc_copy@huc-copy: - shard-rkl: [SKIP][366] ([i915#2190]) -> [SKIP][367] ([i915#14544] / [i915#2190]) [366]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18326/shard-rkl-8/igt@gem_huc_copy@huc-copy.html [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-rkl-6/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@verify-random: - shard-rkl: [SKIP][368] ([i915#4613]) -> [SKIP][369] ([i915#14544] / [i915#4613]) [368]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18326/shard-rkl-4/igt@gem_lmem_swapping@verify-random.html [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-rkl-6/igt@gem_lmem_swapping@verify-random.html * igt@gem_partial_pwrite_pread@writes-after-reads: - shard-rkl: [SKIP][370] ([i915#3282]) -> [SKIP][371] ([i915#14544] / [i915#3282]) +2 other tests skip [370]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18326/shard-rkl-2/igt@gem_partial_pwrite_pread@writes-after-reads.html [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-rkl-6/igt@gem_partial_pwrite_pread@writes-after-reads.html * igt@gem_pxp@hw-rejects-pxp-context: - shard-rkl: [SKIP][372] ([i915#13717] / [i915#14544]) -> [SKIP][373] ([i915#13717]) [372]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18326/shard-rkl-6/igt@gem_pxp@hw-rejects-pxp-context.html [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-rkl-2/igt@gem_pxp@hw-rejects-pxp-context.html * igt@gem_set_tiling_vs_blt@tiled-to-untiled: - shard-rkl: [SKIP][374] ([i915#8411]) -> [SKIP][375] ([i915#14544] / [i915#8411]) [374]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18326/shard-rkl-8/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-rkl-6/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html * igt@gem_tiled_pread_basic@basic: - shard-rkl: [SKIP][376] ([i915#15656]) -> [SKIP][377] ([i915#14544] / [i915#15656]) [376]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18326/shard-rkl-2/igt@gem_tiled_pread_basic@basic.html [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-rkl-6/igt@gem_tiled_pread_basic@basic.html * igt@gem_userptr_blits@readonly-unsync: - shard-rkl: [SKIP][378] ([i915#14544] / [i915#3297]) -> [SKIP][379] ([i915#3297]) [378]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18326/shard-rkl-6/igt@gem_userptr_blits@readonly-unsync.html [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-rkl-5/igt@gem_userptr_blits@readonly-unsync.html * igt@gen9_exec_parse@bb-chained: - shard-rkl: [SKIP][380] ([i915#14544] / [i915#2527]) -> [SKIP][381] ([i915#2527]) [380]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18326/shard-rkl-6/igt@gen9_exec_parse@bb-chained.html [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-rkl-8/igt@gen9_exec_parse@bb-chained.html * igt@gen9_exec_parse@valid-registers: - shard-rkl: [SKIP][382] ([i915#2527]) -> [SKIP][383] ([i915#14544] / [i915#2527]) +1 other test skip [382]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18326/shard-rkl-4/igt@gen9_exec_parse@valid-registers.html [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-rkl-6/igt@gen9_exec_parse@valid-registers.html * igt@i915_module_load@fault-injection: - shard-dg1: [ABORT][384] -> [ABORT][385] ([i915#15481]) +1 other test abort [384]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18326/shard-dg1-14/igt@i915_module_load@fault-injection.html [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-dg1-18/igt@i915_module_load@fault-injection.html * igt@intel_hwmon@hwmon-read: - shard-rkl: [SKIP][386] ([i915#7707]) -> [SKIP][387] ([i915#14544] / [i915#7707]) [386]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18326/shard-rkl-5/igt@intel_hwmon@hwmon-read.html [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-rkl-6/igt@intel_hwmon@hwmon-read.html * igt@intel_hwmon@hwmon-write: - shard-rkl: [SKIP][388] ([i915#14544] / [i915#7707]) -> [SKIP][389] ([i915#7707]) [388]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18326/shard-rkl-6/igt@intel_hwmon@hwmon-write.html [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-rkl-7/igt@intel_hwmon@hwmon-write.html * igt@kms_big_fb@4-tiled-32bpp-rotate-0: - shard-rkl: [SKIP][390] ([i915#14544] / [i915#5286]) -> [SKIP][391] ([i915#5286]) [390]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18326/shard-rkl-6/igt@kms_big_fb@4-tiled-32bpp-rotate-0.html [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-rkl-4/igt@kms_big_fb@4-tiled-32bpp-rotate-0.html * igt@kms_big_fb@4-tiled-64bpp-rotate-0: - shard-rkl: [SKIP][392] ([i915#5286]) -> [SKIP][393] ([i915#14544] / [i915#5286]) +1 other test skip [392]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18326/shard-rkl-5/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-rkl-6/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html * igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip: - shard-rkl: [SKIP][394] ([i915#14544] / [i915#3828]) -> [SKIP][395] ([i915#3828]) [394]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18326/shard-rkl-6/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip.html [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-rkl-2/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@y-tiled-64bpp-rotate-90: - shard-rkl: [SKIP][396] ([i915#14544] / [i915#3638]) -> [SKIP][397] ([i915#3638]) [396]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18326/shard-rkl-6/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-rkl-7/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180: - shard-rkl: [SKIP][398] -> [SKIP][399] ([i915#14544]) +8 other tests skip [398]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18326/shard-rkl-3/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180.html [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-rkl-6/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180.html * igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs: - shard-rkl: [SKIP][400] ([i915#12313]) -> [SKIP][401] ([i915#12313] / [i915#14544]) [400]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18326/shard-rkl-2/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-rkl-6/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-2: - shard-rkl: [SKIP][402] ([i915#14544] / [i915#6095]) -> [SKIP][403] ([i915#6095]) +2 other tests skip [402]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18326/shard-rkl-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-2.html [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-rkl-3/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-2.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2: - shard-rkl: [SKIP][404] ([i915#14098] / [i915#14544] / [i915#6095]) -> [SKIP][405] ([i915#14098] / [i915#6095]) +5 other tests skip [404]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18326/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2.html [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-rkl-7/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs@pipe-c-hdmi-a-2.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs: - shard-rkl: [SKIP][406] ([i915#14098] / [i915#6095]) -> [SKIP][407] ([i915#14098] / [i915#14544] / [i915#6095]) +8 other tests skip [406]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18326/shard-rkl-5/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs.html [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs: - shard-dg1: [SKIP][408] ([i915#4423] / [i915#6095]) -> [SKIP][409] ([i915#6095]) [408]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18326/shard-dg1-17/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs.html [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-dg1-12/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2: - shard-rkl: [SKIP][410] ([i915#6095]) -> [SKIP][411] ([i915#14544] / [i915#6095]) +5 other tests skip [410]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18326/shard-rkl-7/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-rkl-6/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs@pipe-b-hdmi-a-2.html * igt@kms_chamelium_color@ctm-max: - shard-rkl: [SKIP][412] ([i915#14544]) -> [SKIP][413] +5 other tests skip [412]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18326/shard-rkl-6/igt@kms_chamelium_color@ctm-max.html [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-rkl-8/igt@kms_chamelium_color@ctm-max.html * igt@kms_chamelium_edid@hdmi-edid-change-during-suspend: - shard-rkl: [SKIP][414] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][415] ([i915#11151] / [i915#7828]) +1 other test skip [414]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18326/shard-rkl-6/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-rkl-2/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html * igt@kms_chamelium_frames@dp-crc-fast: - shard-rkl: [SKIP][416] ([i915#11151] / [i915#7828]) -> [SKIP][417] ([i915#11151] / [i915#14544] / [i915#7828]) [416]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18326/shard-rkl-2/igt@kms_chamelium_frames@dp-crc-fast.html [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-rkl-6/igt@kms_chamelium_frames@dp-crc-fast.html * igt@kms_content_protection@dp-mst-type-0: - shard-rkl: [SKIP][418] ([i915#15330] / [i915#3116]) -> [SKIP][419] ([i915#14544] / [i915#15330] / [i915#3116]) +1 other test skip [418]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18326/shard-rkl-5/igt@kms_content_protection@dp-mst-type-0.html [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-rkl-6/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@legacy: - shard-rkl: [SKIP][420] ([i915#14544] / [i915#15865]) -> [SKIP][421] ([i915#15865]) +1 other test skip [420]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18326/shard-rkl-6/igt@kms_content_protection@legacy.html [421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-rkl-3/igt@kms_content_protection@legacy.html * igt@kms_content_protection@legacy-hdcp14: - shard-dg2: [SKIP][422] ([i915#15865]) -> [FAIL][423] ([i915#7173]) [422]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18326/shard-dg2-7/igt@kms_content_protection@legacy-hdcp14.html [423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-dg2-10/igt@kms_content_protection@legacy-hdcp14.html * igt@kms_content_protection@lic-type-0: - shard-dg2: [FAIL][424] ([i915#7173]) -> [SKIP][425] ([i915#15865]) [424]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18326/shard-dg2-10/igt@kms_content_protection@lic-type-0.html [425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-dg2-8/igt@kms_content_protection@lic-type-0.html * igt@kms_cursor_crc@cursor-rapid-movement-32x32: - shard-rkl: [SKIP][426] ([i915#3555]) -> [SKIP][427] ([i915#14544] / [i915#3555]) [426]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18326/shard-rkl-2/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html [427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-rkl-6/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html * igt@kms_cursor_crc@cursor-sliding-512x170: - shard-rkl: [SKIP][428] ([i915#13049] / [i915#14544]) -> [SKIP][429] ([i915#13049]) +1 other test skip [428]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18326/shard-rkl-6/igt@kms_cursor_crc@cursor-sliding-512x170.html [429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-rkl-8/igt@kms_cursor_crc@cursor-sliding-512x170.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-rkl: [SKIP][430] ([i915#4103]) -> [SKIP][431] ([i915#14544] / [i915#4103]) [430]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18326/shard-rkl-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html [431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-rkl-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_dp_aux_dev@basic: - shard-rkl: [SKIP][432] ([i915#1257]) -> [SKIP][433] ([i915#1257] / [i915#14544]) [432]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18326/shard-rkl-2/igt@kms_dp_aux_dev@basic.html [433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-rkl-6/igt@kms_dp_aux_dev@basic.html * igt@kms_dp_linktrain_fallback@dsc-fallback: - shard-rkl: [SKIP][434] ([i915#13707] / [i915#14544]) -> [SKIP][435] ([i915#13707]) [434]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18326/shard-rkl-6/igt@kms_dp_linktrain_fallback@dsc-fallback.html [435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-rkl-4/igt@kms_dp_linktrain_fallback@dsc-fallback.html * igt@kms_dsc@dsc-with-output-formats: - shard-rkl: [SKIP][436] ([i915#14544] / [i915#3555] / [i915#3840]) -> [SKIP][437] ([i915#3555] / [i915#3840]) [436]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18326/shard-rkl-6/igt@kms_dsc@dsc-with-output-formats.html [437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-rkl-4/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_feature_discovery@display-3x: - shard-rkl: [SKIP][438] ([i915#14544] / [i915#1839]) -> [SKIP][439] ([i915#1839]) [438]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18326/shard-rkl-6/igt@kms_feature_discovery@display-3x.html [439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-rkl-3/igt@kms_feature_discovery@display-3x.html * igt@kms_feature_discovery@display-4x: - shard-rkl: [SKIP][440] ([i915#1839]) -> [SKIP][441] ([i915#14544] / [i915#1839]) [440]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18326/shard-rkl-4/igt@kms_feature_discovery@display-4x.html [441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-rkl-6/igt@kms_feature_discovery@display-4x.html * igt@kms_flip@2x-flip-vs-dpms: - shard-rkl: [SKIP][442] ([i915#9934]) -> [SKIP][443] ([i915#14544] / [i915#9934]) +2 other tests skip [442]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18326/shard-rkl-4/igt@kms_flip@2x-flip-vs-dpms.html [443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-rkl-6/igt@kms_flip@2x-flip-vs-dpms.html * igt@kms_flip@2x-modeset-vs-vblank-race: - shard-rkl: [SKIP][444] ([i915#14544] / [i915#9934]) -> [SKIP][445] ([i915#9934]) +4 other tests skip [444]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18326/shard-rkl-6/igt@kms_flip@2x-modeset-vs-vblank-race.html [445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-rkl-5/igt@kms_flip@2x-modeset-vs-vblank-race.html * igt@kms_flip@flip-vs-suspend: - shard-glk: [INCOMPLETE][446] ([i915#12745] / [i915#4839] / [i915#6113]) -> [INCOMPLETE][447] ([i915#12314] / [i915#12745] / [i915#4839] / [i915#6113]) [446]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18326/shard-glk1/igt@kms_flip@flip-vs-suspend.html [447]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-glk5/igt@kms_flip@flip-vs-suspend.html * igt@kms_flip@flip-vs-suspend@a-hdmi-a1: - shard-glk: [INCOMPLETE][448] ([i915#12745] / [i915#6113]) -> [INCOMPLETE][449] ([i915#12314] / [i915#12745] / [i915#6113]) [448]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18326/shard-glk1/igt@kms_flip@flip-vs-suspend@a-hdmi-a1.html [449]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-glk5/igt@kms_flip@flip-vs-suspend@a-hdmi-a1.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling: - shard-rkl: [SKIP][450] ([i915#15643]) -> [SKIP][451] ([i915#14544] / [i915#15643]) +1 other test skip [450]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18326/shard-rkl-8/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling.html [451]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling: - shard-dg1: [SKIP][452] ([i915#15643] / [i915#4423]) -> [SKIP][453] ([i915#15643]) +1 other test skip [452]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18326/shard-dg1-17/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html [453]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-dg1-18/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html * igt@kms_force_connector_basic@force-load-detect: - shard-mtlp: [SKIP][454] ([i915#15672]) -> [SKIP][455] [454]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18326/shard-mtlp-1/igt@kms_force_connector_basic@force-load-detect.html [455]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-mtlp-5/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-render: - shard-rkl: [SKIP][456] ([i915#14544] / [i915#1825]) -> [SKIP][457] ([i915#1825]) +9 other tests skip [456]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18326/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-render.html [457]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-rkl-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-rkl: [SKIP][458] ([i915#1825]) -> [SKIP][459] ([i915#14544] / [i915#1825]) +13 other tests skip [458]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18326/shard-rkl-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc.html [459]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-gtt: - shard-dg1: [SKIP][460] ([i915#15104] / [i915#4423]) -> [SKIP][461] ([i915#15104]) [460]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18326/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-gtt.html [461]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-dg1-19/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw: - shard-rkl: [SKIP][462] ([i915#15102] / [i915#3023]) -> [SKIP][463] ([i915#14544] / [i915#15102] / [i915#3023]) +4 other tests skip [462]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18326/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html [463]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move: - shard-dg2: [SKIP][464] ([i915#10433] / [i915#15102] / [i915#3458]) -> [SKIP][465] ([i915#15102] / [i915#3458]) +2 other tests skip [464]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18326/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move.html [465]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-dg2-10/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-move.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt: - shard-dg1: [SKIP][466] ([i915#4423]) -> [SKIP][467] [466]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18326/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt.html [467]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-cpu: - shard-rkl: [SKIP][468] ([i915#14544] / [i915#15102]) -> [SKIP][469] ([i915#15102]) [468]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18326/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-cpu.html [469]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move: - shard-dg2: [SKIP][470] ([i915#15102] / [i915#3458]) -> [SKIP][471] ([i915#10433] / [i915#15102] / [i915#3458]) +2 other tests skip [470]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18326/shard-dg2-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html [471]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-dg1: [SKIP][472] ([i915#8708]) -> [SKIP][473] ([i915#4423] / [i915#8708]) [472]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18326/shard-dg1-12/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html [473]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-dg1-19/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-suspend: - shard-rkl: [SKIP][474] ([i915#14544] / [i915#15102] / [i915#3023]) -> [SKIP][475] ([i915#15102] / [i915#3023]) +4 other tests skip [474]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18326/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-suspend.html [475]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-suspend.html * igt@kms_hdr@brightness-with-hdr: - shard-mtlp: [SKIP][476] ([i915#12713]) -> [SKIP][477] ([i915#1187] / [i915#12713]) [476]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18326/shard-mtlp-4/igt@kms_hdr@brightness-with-hdr.html [477]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-mtlp-1/igt@kms_hdr@brightness-with-hdr.html - shard-tglu: [SKIP][478] ([i915#1187] / [i915#12713]) -> [SKIP][479] ([i915#12713]) [478]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18326/shard-tglu-2/igt@kms_hdr@brightness-with-hdr.html [479]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-tglu-3/igt@kms_hdr@brightness-with-hdr.html * igt@kms_joiner@invalid-modeset-big-joiner: - shard-rkl: [SKIP][480] ([i915#15460]) -> [SKIP][481] ([i915#14544] / [i915#15460]) [480]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18326/shard-rkl-7/igt@kms_joiner@invalid-modeset-big-joiner.html [481]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-rkl-6/igt@kms_joiner@invalid-modeset-big-joiner.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-rkl: [SKIP][482] ([i915#15815]) -> [SKIP][483] ([i915#14544] / [i915#15815]) [482]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18326/shard-rkl-4/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html [483]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-rkl-6/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_panel_fitting@legacy: - shard-rkl: [SKIP][484] ([i915#6301]) -> [SKIP][485] ([i915#14544] / [i915#6301]) [484]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18326/shard-rkl-5/igt@kms_panel_fitting@legacy.html [485]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-rkl-6/igt@kms_panel_fitting@legacy.html * igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier: - shard-rkl: [SKIP][486] ([i915#15709]) -> [SKIP][487] ([i915#14544] / [i915#15709]) +1 other test skip [486]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18326/shard-rkl-7/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier.html [487]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier.html * igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier-source-clamping: - shard-rkl: [SKIP][488] ([i915#14544] / [i915#15709]) -> [SKIP][489] ([i915#15709]) [488]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18326/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier-source-clamping.html [489]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-rkl-8/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier-source-clamping.html * igt@kms_plane_lowres@tiling-yf: - shard-rkl: [SKIP][490] ([i915#14544] / [i915#3555]) -> [SKIP][491] ([i915#3555]) [490]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18326/shard-rkl-6/igt@kms_plane_lowres@tiling-yf.html [491]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-rkl-5/igt@kms_plane_lowres@tiling-yf.html * igt@kms_pm_dc@dc9-dpms: - shard-rkl: [SKIP][492] ([i915#15739]) -> [SKIP][493] ([i915#14544] / [i915#15739]) [492]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18326/shard-rkl-2/igt@kms_pm_dc@dc9-dpms.html [493]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-rkl-6/igt@kms_pm_dc@dc9-dpms.html * igt@kms_pm_lpsp@kms-lpsp: - shard-rkl: [SKIP][494] ([i915#9340]) -> [SKIP][495] ([i915#3828]) [494]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18326/shard-rkl-3/igt@kms_pm_lpsp@kms-lpsp.html [495]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-rkl-5/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf: - shard-rkl: [SKIP][496] ([i915#11520] / [i915#14544]) -> [SKIP][497] ([i915#11520]) [496]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18326/shard-rkl-6/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf.html [497]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-rkl-5/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf: - shard-rkl: [SKIP][498] ([i915#11520]) -> [SKIP][499] ([i915#11520] / [i915#14544]) +2 other tests skip [498]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18326/shard-rkl-8/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html [499]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-rkl-6/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-rkl: [SKIP][500] ([i915#14544] / [i915#9683]) -> [SKIP][501] ([i915#9683]) [500]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18326/shard-rkl-6/igt@kms_psr2_su@page_flip-xrgb8888.html [501]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-rkl-4/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@pr-primary-blt: - shard-rkl: [SKIP][502] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][503] ([i915#1072] / [i915#9732]) +5 other tests skip [502]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18326/shard-rkl-6/igt@kms_psr@pr-primary-blt.html [503]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-rkl-5/igt@kms_psr@pr-primary-blt.html * igt@kms_psr@psr2-sprite-mmap-cpu: - shard-rkl: [SKIP][504] ([i915#1072] / [i915#9732]) -> [SKIP][505] ([i915#1072] / [i915#14544] / [i915#9732]) +7 other tests skip [504]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18326/shard-rkl-5/igt@kms_psr@psr2-sprite-mmap-cpu.html [505]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-rkl-6/igt@kms_psr@psr2-sprite-mmap-cpu.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-rkl: [SKIP][506] ([i915#9685]) -> [SKIP][507] ([i915#14544] / [i915#9685]) [506]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18326/shard-rkl-2/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html [507]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-rkl-6/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rotation_crc@sprite-rotation-270: - shard-dg2: [SKIP][508] ([i915#15867]) -> [SKIP][509] ([i915#12755] / [i915#15867]) [508]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18326/shard-dg2-10/igt@kms_rotation_crc@sprite-rotation-270.html [509]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-dg2-8/igt@kms_rotation_crc@sprite-rotation-270.html * igt@kms_rotation_crc@sprite-rotation-90-pos-100-0: - shard-dg2: [SKIP][510] ([i915#12755] / [i915#15867]) -> [SKIP][511] ([i915#15867]) [510]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18326/shard-dg2-5/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html [511]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-dg2-10/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html * igt@perf@mi-rpc: - shard-rkl: [SKIP][512] ([i915#14544] / [i915#2434]) -> [SKIP][513] ([i915#2434]) [512]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_18326/shard-rkl-6/igt@perf@mi-rpc.html [513]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/shard-rkl-5/igt@perf@mi-rpc.html [i915#10056]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10056 [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307 [i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433 [i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434 [i915#10647]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647 [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151 [i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520 [i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681 [i915#1187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1187 [i915#11920]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920 [i915#12169]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12169 [i915#12177]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12177 [i915#12193]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12193 [i915#12276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12276 [i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313 [i915#12314]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12314 [i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316 [i915#12343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12343 [i915#1257]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257 [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#12910]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910 [i915#13026]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13026 [i915#13029]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13029 [i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046 [i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049 [i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356 [i915#13398]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13398 [i915#13476]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13476 [i915#13520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13520 [i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566 [i915#13707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707 [i915#13717]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13717 [i915#13729]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13729 [i915#13749]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749 [i915#13781]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13781 [i915#13786]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13786 [i915#13821]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13821 [i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958 [i915#14073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14073 [i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098 [i915#14259]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259 [i915#14419]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14419 [i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544 [i915#14545]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14545 [i915#14694]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14694 [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#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#15454]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15454 [i915#15458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15458 [i915#15459]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15459 [i915#15460]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15460 [i915#15481]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15481 [i915#15582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15582 [i915#15643]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643 [i915#15656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15656 [i915#15657]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15657 [i915#15672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15672 [i915#15678]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15678 [i915#15709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15709 [i915#15725]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15725 [i915#15739]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15739 [i915#15751]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15751 [i915#15752]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15752 [i915#15778]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15778 [i915#15815]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15815 [i915#15816]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15816 [i915#15865]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15865 [i915#15867]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15867 [i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839 [i915#2190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2190 [i915#2434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2434 [i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527 [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#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297 [i915#3361]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3361 [i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458 [i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638 [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708 [i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828 [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840 [i915#3936]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3936 [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083 [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213 [i915#4235]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4235 [i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270 [i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349 [i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423 [i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525 [i915#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537 [i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538 [i915#4565]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4565 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812 [i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817 [i915#4818]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4818 [i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839 [i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852 [i915#4879]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4879 [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#5882]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5882 [i915#5956]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5956 [i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095 [i915#6113]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6113 [i915#6187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6187 [i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301 [i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335 [i915#6403]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6403 [i915#6590]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6590 [i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621 [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#7443]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7443 [i915#7582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7582 [i915#7707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7707 [i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828 [i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228 [i915#8289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8289 [i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399 [i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411 [i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428 [i915#8430]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8430 [i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555 [i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708 [i915#8809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8809 [i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814 [i915#8823]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8823 [i915#8826]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8826 [i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323 [i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340 [i915#9457]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9457 [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#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8854 -> IGTPW_14975 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_18326: c8bad7becc008716c8475847328c549e178c813c @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_14975: 94c5dd9b2e13fec934ae30ec1adbb7dd1a6e02a3 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_8854: 93abaf0170728f69bc27577e5b405f7a2a01b6fd @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14975/index.html [-- Attachment #2: Type: text/html, Size: 173117 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2026-04-14 8:51 UTC | newest] Thread overview: 7+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2026-04-13 21:19 [PATCH i-g-t v2 1/3] tests/intel/xe_exec_reset: Add a comment about return for syncobj wait Stuart Summers 2026-04-13 21:19 ` [PATCH i-g-t v2 2/3] tests/intel/xe_exec_reset: Add checks for hanging queue wait_ufence return Stuart Summers 2026-04-13 21:19 ` [PATCH i-g-t v2 3/3] tests/intel/xe_exec_reset: Add multi queue subtests Stuart Summers 2026-04-14 2:22 ` ✓ i915.CI.BAT: success for series starting with [i-g-t,v2,1/3] tests/intel/xe_exec_reset: Add a comment about return for syncobj wait Patchwork 2026-04-14 2:39 ` ✓ Xe.CI.BAT: " Patchwork 2026-04-14 6:11 ` ✗ Xe.CI.FULL: failure " Patchwork 2026-04-14 8:50 ` ✗ i915.CI.Full: " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox