* [PATCH i-g-t v2] tests/intel/gem_exec_params: add invalid-offset-multiple-buffers test
@ 2026-08-19 15:21 Krzysztof Niemiec
2026-08-19 20:04 ` ✓ Xe.CI.BAT: success for tests/intel/gem_exec_params: add invalid-offset-multiple-buffers test (rev2) Patchwork
` (5 more replies)
0 siblings, 6 replies; 8+ messages in thread
From: Krzysztof Niemiec @ 2026-08-19 15:21 UTC (permalink / raw)
To: igt-dev
Cc: Kamil Konieczny, Krzysztof Karas, Sebastian Brzezinka,
Janusz Krzysztofik, Andi Shyti, Krzysztof Niemiec
Add coverage for the case where the batch start offset is invalid with
multiple BOs submitted, which was buggy in the kernel until 4fe2bd195435
("drm/i915/gem: Zero-initialize the eb.vma array in i915_gem_do_execbuffer")
Signed-off-by: Krzysztof Niemiec <krzysztof.niemiec@intel.com>
---
v2:
- Reword comments to be more specific (Krzysztof K, Sebastian)
- Get rid of the context id parameter (previously set in rsvd2, which
should have been rsvd1) - which turns out isn't actually required to
trigger the correct error path (Sebastian)
- Capitalize sentences (Andi, off-list)
tests/intel/gem_exec_params.c | 50 +++++++++++++++++++++++++++++++++++
1 file changed, 50 insertions(+)
diff --git a/tests/intel/gem_exec_params.c b/tests/intel/gem_exec_params.c
index 3ba4c530b..c405190a0 100644
--- a/tests/intel/gem_exec_params.c
+++ b/tests/intel/gem_exec_params.c
@@ -85,6 +85,8 @@
*
* SUBTEST: invalid-flag
*
+ * SUBTEST: invalid-offset-multiple-buffers
+ *
* SUBTEST: invalid-ring
*
* SUBTEST: invalid-ring2
@@ -404,6 +406,51 @@ static void test_invalid_batch_start(int fd)
gem_close(fd, exec.handle);
}
+/*
+ * This test is checking for a NULL deref in eb_release_vmas()
+ * (see 4fe2bd195435 for kernel fix), which happens when multiple buffers
+ * are submitted to the execbuf ioctl and some of them are invalid.
+ *
+ * The __gem_execbuf() call is always expected to fail with an -EINVAL,
+ * because the bug mentioned above is in the error path, which is
+ * deliberately triggered. Affected systems, however, will not handle it
+ * cleanly and will crash with a NULL deref.
+ */
+
+static void test_invalid_offset_multiple_buffers(int fd)
+{
+ struct drm_i915_gem_exec_object2 exec[2];
+ struct drm_i915_gem_execbuffer2 execbuf;
+ uint32_t size = 0x1000;
+
+ memset(exec, 0, sizeof(exec));
+ memset(&execbuf, 0, sizeof(execbuf));
+
+ exec[0].handle = batch_create_size(fd, size);
+ exec[1].handle = batch_create_size(fd, size);
+
+ /*
+ * To test 4fe2bd195435, we need multiple buffers submitted and
+ * eb_add_vma() to fail. eb_add_vma() checks whether
+ * batch_start_offset + batch_len is smaller than the vma size, and
+ * fails with -EINVAL if it isn't. Submitting two buffers and setting
+ * the offset to the size of the first batch will trigger this
+ * error path.
+ */
+
+ execbuf.buffers_ptr = to_user_pointer(exec);
+ execbuf.buffer_count = 2;
+ execbuf.batch_start_offset = size;
+
+ igt_assert_eq(__gem_execbuf(fd, &execbuf), -EINVAL);
+
+ gem_sync(fd, exec[0].handle);
+ gem_sync(fd, exec[1].handle);
+
+ gem_close(fd, exec[0].handle);
+ gem_close(fd, exec[1].handle);
+}
+
static void test_larger_than_life_batch(int fd)
{
const struct intel_execution_engine2 *e;
@@ -705,6 +752,9 @@ int igt_main()
igt_subtest("larger-than-life-batch")
test_larger_than_life_batch(fd);
+ igt_subtest("invalid-offset-multiple-buffers")
+ test_invalid_offset_multiple_buffers(fd);
+
#define DIRT(name) \
igt_subtest(#name "-dirt") { \
execbuf.flags = 0; \
--
2.55.0
^ permalink raw reply related [flat|nested] 8+ messages in thread* ✓ Xe.CI.BAT: success for tests/intel/gem_exec_params: add invalid-offset-multiple-buffers test (rev2) 2026-08-19 15:21 [PATCH i-g-t v2] tests/intel/gem_exec_params: add invalid-offset-multiple-buffers test Krzysztof Niemiec @ 2026-08-19 20:04 ` Patchwork 2026-08-19 20:45 ` ✓ i915.CI.BAT: " Patchwork ` (4 subsequent siblings) 5 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2026-08-19 20:04 UTC (permalink / raw) To: Krzysztof Niemiec; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 1011 bytes --] == Series Details == Series: tests/intel/gem_exec_params: add invalid-offset-multiple-buffers test (rev2) URL : https://patchwork.freedesktop.org/series/172083/ State : success == Summary == CI Bug Log - changes from XEIGT_9063_BAT -> XEIGTPW_15708_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (13 -> 13) ------------------------------ No changes in participating hosts Changes ------- No changes found Build changes ------------- * IGT: IGT_9063 -> IGTPW_15708 * Linux: xe-5617-291141d363710c4ac7ef9ab71153459d746ed50c -> xe-5618-b083c821521cb941e9838665d205fe76943a0b66 IGTPW_15708: 15708 IGT_9063: 9063 xe-5617-291141d363710c4ac7ef9ab71153459d746ed50c: 291141d363710c4ac7ef9ab71153459d746ed50c xe-5618-b083c821521cb941e9838665d205fe76943a0b66: b083c821521cb941e9838665d205fe76943a0b66 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15708/index.html [-- Attachment #2: Type: text/html, Size: 1570 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* ✓ i915.CI.BAT: success for tests/intel/gem_exec_params: add invalid-offset-multiple-buffers test (rev2) 2026-08-19 15:21 [PATCH i-g-t v2] tests/intel/gem_exec_params: add invalid-offset-multiple-buffers test Krzysztof Niemiec 2026-08-19 20:04 ` ✓ Xe.CI.BAT: success for tests/intel/gem_exec_params: add invalid-offset-multiple-buffers test (rev2) Patchwork @ 2026-08-19 20:45 ` Patchwork 2026-08-20 0:14 ` ✗ Xe.CI.FULL: failure " Patchwork ` (3 subsequent siblings) 5 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2026-08-19 20:45 UTC (permalink / raw) To: Krzysztof Niemiec; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 1914 bytes --] == Series Details == Series: tests/intel/gem_exec_params: add invalid-offset-multiple-buffers test (rev2) URL : https://patchwork.freedesktop.org/series/172083/ State : success == Summary == CI Bug Log - changes from IGT_9063 -> IGTPW_15708 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/index.html Participating hosts (39 -> 37) ------------------------------ Missing (2): bat-dg2-13 fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_15708 that come from known issues: ### IGT changes ### #### Possible fixes #### * igt@i915_selftest@live@requests: - bat-atsm-1: [ABORT][1] ([i915#14564]) -> [PASS][2] +1 other test pass [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9063/bat-atsm-1/igt@i915_selftest@live@requests.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/bat-atsm-1/igt@i915_selftest@live@requests.html * igt@kms_hdmi_inject@inject-audio: - fi-cfl-guc: [SKIP][3] -> [PASS][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_9063/fi-cfl-guc/igt@kms_hdmi_inject@inject-audio.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/fi-cfl-guc/igt@kms_hdmi_inject@inject-audio.html [i915#14564]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14564 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_9063 -> IGTPW_15708 * Linux: CI_DRM_19015 -> CI_DRM_19018 CI-20190529: 20190529 CI_DRM_19015: 291141d363710c4ac7ef9ab71153459d746ed50c @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_19018: 8aa5d62d83ea79c3dae24446614ea31453bc2ca6 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_15708: 15708 IGT_9063: 9063 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/index.html [-- Attachment #2: Type: text/html, Size: 2555 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* ✗ Xe.CI.FULL: failure for tests/intel/gem_exec_params: add invalid-offset-multiple-buffers test (rev2) 2026-08-19 15:21 [PATCH i-g-t v2] tests/intel/gem_exec_params: add invalid-offset-multiple-buffers test Krzysztof Niemiec 2026-08-19 20:04 ` ✓ Xe.CI.BAT: success for tests/intel/gem_exec_params: add invalid-offset-multiple-buffers test (rev2) Patchwork 2026-08-19 20:45 ` ✓ i915.CI.BAT: " Patchwork @ 2026-08-20 0:14 ` Patchwork 2026-08-20 2:36 ` ✗ i915.CI.Full: " Patchwork ` (2 subsequent siblings) 5 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2026-08-20 0:14 UTC (permalink / raw) To: Krzysztof Niemiec; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 37157 bytes --] == Series Details == Series: tests/intel/gem_exec_params: add invalid-offset-multiple-buffers test (rev2) URL : https://patchwork.freedesktop.org/series/172083/ State : failure == Summary == CI Bug Log - changes from XEIGT_9063_FULL -> XEIGTPW_15708_FULL ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_15708_FULL absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_15708_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_15708_FULL: ### IGT changes ### #### Possible regressions #### * igt@xe_sriov_vfio@bind-unbind-vfs@numvfs-9: - shard-bmg: [PASS][1] -> [INCOMPLETE][2] +1 other test incomplete [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9063/shard-bmg-5/igt@xe_sriov_vfio@bind-unbind-vfs@numvfs-9.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15708/shard-bmg-5/igt@xe_sriov_vfio@bind-unbind-vfs@numvfs-9.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * {igt@xe_prefetch_fault@l2-prefetch-fault}: - shard-bmg: NOTRUN -> [SKIP][3] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15708/shard-bmg-10/igt@xe_prefetch_fault@l2-prefetch-fault.html Known issues ------------ Here are the changes found in XEIGTPW_15708_FULL that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip: - shard-bmg: NOTRUN -> [SKIP][4] ([Intel XE#7059] / [Intel XE#7085]) [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15708/shard-bmg-7/igt@kms_big_fb@linear-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@x-tiled-32bpp-rotate-270: - shard-bmg: NOTRUN -> [SKIP][5] ([Intel XE#2327]) +1 other test skip [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15708/shard-bmg-3/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-lnl: [PASS][6] -> [FAIL][7] ([Intel XE#8628]) [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9063/shard-lnl-7/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15708/shard-lnl-1/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-bmg: NOTRUN -> [SKIP][8] ([Intel XE#1124]) +8 other tests skip [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15708/shard-bmg-1/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html - shard-lnl: NOTRUN -> [SKIP][9] ([Intel XE#1124]) [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15708/shard-lnl-8/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#607] / [Intel XE#7361]) +1 other test skip [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15708/shard-bmg-6/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html * igt@kms_bw@connected-linear-tiling-3-displays-target-2160x1440p: - shard-bmg: NOTRUN -> [SKIP][11] ([Intel XE#7679]) [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15708/shard-bmg-3/igt@kms_bw@connected-linear-tiling-3-displays-target-2160x1440p.html * igt@kms_bw@linear-tiling-2-displays-target-1920x1080p: - shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#367]) +1 other test skip [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15708/shard-bmg-1/igt@kms_bw@linear-tiling-2-displays-target-1920x1080p.html * igt@kms_bw@linear-tiling-4-displays-target-1920x1080p: - shard-lnl: NOTRUN -> [SKIP][13] ([Intel XE#8365]) [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15708/shard-lnl-6/igt@kms_bw@linear-tiling-4-displays-target-1920x1080p.html * igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs: - shard-bmg: NOTRUN -> [SKIP][14] ([Intel XE#2887]) +10 other tests skip [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15708/shard-bmg-1/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-mc-ccs.html * igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs: - shard-lnl: NOTRUN -> [SKIP][15] ([Intel XE#2887]) +2 other tests skip [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15708/shard-lnl-8/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs: - shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#3432]) +1 other test skip [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15708/shard-bmg-9/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-mc-ccs.html * igt@kms_chamelium_color_pipeline@plane-lut1d-lut1d: - shard-bmg: NOTRUN -> [SKIP][17] ([Intel XE#7358]) +1 other test skip [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15708/shard-bmg-2/igt@kms_chamelium_color_pipeline@plane-lut1d-lut1d.html * igt@kms_chamelium_hpd@common-hpd-after-suspend: - shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#2252]) +5 other tests skip [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15708/shard-bmg-1/igt@kms_chamelium_hpd@common-hpd-after-suspend.html * igt@kms_color_pipeline@plane-lut3d-green-only@pipe-b-plane-0: - shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#6969]) +10 other tests skip [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15708/shard-bmg-4/igt@kms_color_pipeline@plane-lut3d-green-only@pipe-b-plane-0.html * igt@kms_color_pipeline@plane-lut3d-green-only@pipe-d-plane-2: - shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#6969] / [Intel XE#7006]) +1 other test skip [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15708/shard-bmg-4/igt@kms_color_pipeline@plane-lut3d-green-only@pipe-d-plane-2.html * igt@kms_content_protection@dp-mst-lic-type-0-hdcp14: - shard-bmg: NOTRUN -> [SKIP][21] ([Intel XE#6974]) [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15708/shard-bmg-4/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html * igt@kms_content_protection@lic-type-0-hdcp14@pipe-a-dp-2: - shard-bmg: NOTRUN -> [FAIL][22] ([Intel XE#1178] / [Intel XE#3304] / [Intel XE#7374]) +3 other tests fail [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15708/shard-bmg-5/igt@kms_content_protection@lic-type-0-hdcp14@pipe-a-dp-2.html * igt@kms_cursor_crc@cursor-rapid-movement-32x10: - shard-bmg: NOTRUN -> [SKIP][23] ([Intel XE#2320]) +2 other tests skip [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15708/shard-bmg-10/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html * igt@kms_cursor_crc@cursor-sliding-512x512: - shard-lnl: NOTRUN -> [SKIP][24] ([Intel XE#2321] / [Intel XE#7355]) [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15708/shard-lnl-6/igt@kms_cursor_crc@cursor-sliding-512x512.html - shard-bmg: NOTRUN -> [SKIP][25] ([Intel XE#2321] / [Intel XE#7355]) +1 other test skip [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15708/shard-bmg-8/igt@kms_cursor_crc@cursor-sliding-512x512.html * igt@kms_dsc@dsc-with-output-formats-with-bpc-bigjoiner: - shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#8265]) +5 other tests skip [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15708/shard-bmg-2/igt@kms_dsc@dsc-with-output-formats-with-bpc-bigjoiner.html * igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats: - shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#4422] / [Intel XE#7442]) [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15708/shard-bmg-1/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-different-formats.html * igt@kms_feature_discovery@psr1: - shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#2374] / [Intel XE#6127]) [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15708/shard-bmg-4/igt@kms_feature_discovery@psr1.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible: - shard-bmg: [PASS][29] -> [FAIL][30] ([Intel XE#3321]) +1 other test fail [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9063/shard-bmg-10/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15708/shard-bmg-2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html * igt@kms_flip@2x-flip-vs-rmfb-interruptible: - shard-lnl: NOTRUN -> [SKIP][31] ([Intel XE#1421]) [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15708/shard-lnl-3/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html * igt@kms_flip_scaled_crc@flip-32bpp-yuv-linear-to-32bpp-yuv-linear-reflect-x: - shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#7179]) [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15708/shard-bmg-5/igt@kms_flip_scaled_crc@flip-32bpp-yuv-linear-to-32bpp-yuv-linear-reflect-x.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling: - shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#7178] / [Intel XE#7351]) +2 other tests skip [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15708/shard-bmg-8/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html - shard-lnl: NOTRUN -> [SKIP][34] ([Intel XE#7178] / [Intel XE#7351]) [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15708/shard-lnl-7/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html * igt@kms_frontbuffer_tracking@drrshdr-abgr161616f-draw-blt: - shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#7061]) +3 other tests skip [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15708/shard-bmg-10/igt@kms_frontbuffer_tracking@drrshdr-abgr161616f-draw-blt.html * igt@kms_frontbuffer_tracking@drrshdr-slowdraw: - shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#2311]) +55 other tests skip [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15708/shard-bmg-3/igt@kms_frontbuffer_tracking@drrshdr-slowdraw.html * igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-indfb-draw-blt: - shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#4141]) +12 other tests skip [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15708/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-argb161616f-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#7061] / [Intel XE#7356]) +2 other tests skip [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15708/shard-bmg-9/igt@kms_frontbuffer_tracking@fbc-argb161616f-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-spr-indfb-move: - shard-lnl: NOTRUN -> [SKIP][39] ([Intel XE#7905]) +1 other test skip [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15708/shard-lnl-1/igt@kms_frontbuffer_tracking@fbchdr-2p-scndscrn-spr-indfb-move.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt: - shard-bmg: NOTRUN -> [SKIP][40] ([Intel XE#2313]) +49 other tests skip [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15708/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-blt: - shard-lnl: NOTRUN -> [SKIP][41] ([Intel XE#656] / [Intel XE#7905]) [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15708/shard-lnl-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-abgr161616f-draw-mmap-wc: - shard-lnl: NOTRUN -> [SKIP][42] ([Intel XE#7061]) [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15708/shard-lnl-4/igt@kms_frontbuffer_tracking@fbcpsrhdr-abgr161616f-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@hdr-1p-primscrn-cur-indfb-move: - shard-lnl: NOTRUN -> [SKIP][43] ([Intel XE#7865]) [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15708/shard-lnl-4/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@plane-fbc-rte: - shard-bmg: NOTRUN -> [SKIP][44] ([Intel XE#2350] / [Intel XE#7503]) [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15708/shard-bmg-6/igt@kms_frontbuffer_tracking@plane-fbc-rte.html * igt@kms_hdmi_inject@inject-audio: - shard-bmg: [PASS][45] -> [SKIP][46] ([Intel XE#7308]) [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9063/shard-bmg-10/igt@kms_hdmi_inject@inject-audio.html [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15708/shard-bmg-9/igt@kms_hdmi_inject@inject-audio.html * igt@kms_hdr@invalid-hdr: - shard-bmg: [PASS][47] -> [SKIP][48] ([Intel XE#1503]) [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9063/shard-bmg-8/igt@kms_hdr@invalid-hdr.html [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15708/shard-bmg-1/igt@kms_hdr@invalid-hdr.html * igt@kms_joiner@basic-force-ultra-joiner: - shard-bmg: NOTRUN -> [SKIP][49] ([Intel XE#6911] / [Intel XE#7466]) [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15708/shard-bmg-9/igt@kms_joiner@basic-force-ultra-joiner.html * igt@kms_joiner@basic-ultra-joiner: - shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#6911] / [Intel XE#7378]) [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15708/shard-bmg-9/igt@kms_joiner@basic-ultra-joiner.html * igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping: - shard-bmg: NOTRUN -> [SKIP][51] ([Intel XE#7283]) +3 other tests skip [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15708/shard-bmg-4/igt@kms_plane@pixel-format-y-tiled-gen12-mc-ccs-modifier-source-clamping.html * igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-c: - shard-bmg: NOTRUN -> [SKIP][52] ([Intel XE#2763] / [Intel XE#6886]) +4 other tests skip [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15708/shard-bmg-4/igt@kms_plane_scaling@planes-downscale-factor-0-5@pipe-c.html * igt@kms_pm_backlight@brightness-with-dpms: - shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#2938] / [Intel XE#7376] / [Intel XE#7760]) [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15708/shard-bmg-6/igt@kms_pm_backlight@brightness-with-dpms.html * igt@kms_pm_backlight@fade: - shard-bmg: NOTRUN -> [SKIP][54] ([Intel XE#7376] / [Intel XE#7760] / [Intel XE#870]) [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15708/shard-bmg-2/igt@kms_pm_backlight@fade.html * igt@kms_pm_dc@dc5-psr: - shard-bmg: NOTRUN -> [SKIP][55] ([Intel XE#7794]) [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15708/shard-bmg-2/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_dc@dc6-psr: - shard-lnl: [PASS][56] -> [FAIL][57] ([Intel XE#8399]) [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9063/shard-lnl-6/igt@kms_pm_dc@dc6-psr.html [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15708/shard-lnl-5/igt@kms_pm_dc@dc6-psr.html * igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf: - shard-lnl: NOTRUN -> [SKIP][58] ([Intel XE#2893] / [Intel XE#7304]) [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15708/shard-lnl-3/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@psr2-cursor-plane-update-sf: - shard-bmg: NOTRUN -> [SKIP][59] ([Intel XE#1489]) +7 other tests skip [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15708/shard-bmg-2/igt@kms_psr2_sf@psr2-cursor-plane-update-sf.html * igt@kms_psr2_su@page_flip-p010: - shard-bmg: NOTRUN -> [SKIP][60] ([Intel XE#2387] / [Intel XE#7429]) [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15708/shard-bmg-9/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr@pr-sprite-plane-onoff: - shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#2234] / [Intel XE#2850]) +8 other tests skip [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15708/shard-bmg-5/igt@kms_psr@pr-sprite-plane-onoff.html * igt@kms_psr@psr2-primary-render: - shard-bmg: NOTRUN -> [SKIP][62] ([Intel XE#2234]) [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15708/shard-bmg-4/igt@kms_psr@psr2-primary-render.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#2330] / [Intel XE#5813]) [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15708/shard-bmg-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-bmg: NOTRUN -> [SKIP][64] ([Intel XE#3904] / [Intel XE#7342]) [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15708/shard-bmg-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_sharpness_filter@filter-basic: - shard-bmg: NOTRUN -> [SKIP][65] ([Intel XE#6503]) +2 other tests skip [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15708/shard-bmg-10/igt@kms_sharpness_filter@filter-basic.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-bmg: NOTRUN -> [SKIP][66] ([Intel XE#2509] / [Intel XE#7437]) [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15708/shard-bmg-3/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_vrr@max-min: - shard-bmg: NOTRUN -> [SKIP][67] ([Intel XE#1499]) [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15708/shard-bmg-2/igt@kms_vrr@max-min.html * igt@xe_create@multigpu-create-massive-size: - shard-bmg: NOTRUN -> [SKIP][68] ([Intel XE#2504] / [Intel XE#7319] / [Intel XE#7350]) [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15708/shard-bmg-2/igt@xe_create@multigpu-create-massive-size.html * igt@xe_evict@evict-threads-large: - shard-lnl: NOTRUN -> [SKIP][69] ([Intel XE#6540] / [Intel XE#688]) [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15708/shard-lnl-5/igt@xe_evict@evict-threads-large.html * igt@xe_evict@evict-threads-small-multi-queue: - shard-bmg: NOTRUN -> [SKIP][70] ([Intel XE#8370]) [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15708/shard-bmg-4/igt@xe_evict@evict-threads-small-multi-queue.html * igt@xe_exec_balancer@no-exec-virtual-userptr-invalidate: - shard-lnl: NOTRUN -> [SKIP][71] ([Intel XE#7482]) +2 other tests skip [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15708/shard-lnl-5/igt@xe_exec_balancer@no-exec-virtual-userptr-invalidate.html * igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue: - shard-bmg: NOTRUN -> [SKIP][72] ([Intel XE#2322] / [Intel XE#7372]) +7 other tests skip [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15708/shard-bmg-4/igt@xe_exec_basic@multigpu-many-execqueues-many-vm-bindexecqueue.html * igt@xe_exec_fault_mode@twice-multi-queue-userptr-invalidate: - shard-bmg: NOTRUN -> [SKIP][73] ([Intel XE#8374]) +6 other tests skip [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15708/shard-bmg-10/igt@xe_exec_fault_mode@twice-multi-queue-userptr-invalidate.html * igt@xe_exec_multi_queue@max-queues-preempt-mode-fault-dyn-priority: - shard-lnl: NOTRUN -> [SKIP][74] ([Intel XE#8364]) +1 other test skip [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15708/shard-lnl-5/igt@xe_exec_multi_queue@max-queues-preempt-mode-fault-dyn-priority.html * igt@xe_exec_multi_queue@two-queues-preempt-mode-fault-dyn-priority-smem: - shard-bmg: NOTRUN -> [SKIP][75] ([Intel XE#8364]) +26 other tests skip [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15708/shard-bmg-8/igt@xe_exec_multi_queue@two-queues-preempt-mode-fault-dyn-priority-smem.html * igt@xe_exec_reset@multi-queue-close-execqueues: - shard-bmg: NOTRUN -> [SKIP][76] ([Intel XE#8369]) +2 other tests skip [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15708/shard-bmg-4/igt@xe_exec_reset@multi-queue-close-execqueues.html * igt@xe_exec_threads@threads-multi-queue-mixed-shared-vm-userptr-rebind: - shard-bmg: NOTRUN -> [SKIP][77] ([Intel XE#8378]) +6 other tests skip [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15708/shard-bmg-8/igt@xe_exec_threads@threads-multi-queue-mixed-shared-vm-userptr-rebind.html * igt@xe_fault_injection@exec-queue-create-fail-xe_pxp_exec_queue_add: - shard-bmg: NOTRUN -> [ABORT][78] ([Intel XE#8007]) [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15708/shard-bmg-6/igt@xe_fault_injection@exec-queue-create-fail-xe_pxp_exec_queue_add.html * igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create: - shard-bmg: [PASS][79] -> [ABORT][80] ([Intel XE#8007]) [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9063/shard-bmg-1/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create.html [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15708/shard-bmg-2/igt@xe_fault_injection@vm-bind-fail-vm_bind_ioctl_ops_create.html * igt@xe_mmap@pci-membarrier-bad-pagesize: - shard-lnl: NOTRUN -> [SKIP][81] ([Intel XE#5100] / [Intel XE#7322] / [Intel XE#7408]) [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15708/shard-lnl-2/igt@xe_mmap@pci-membarrier-bad-pagesize.html * igt@xe_multigpu_svm@mgpu-atomic-op-basic: - shard-bmg: NOTRUN -> [SKIP][82] ([Intel XE#6964]) +2 other tests skip [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15708/shard-bmg-6/igt@xe_multigpu_svm@mgpu-atomic-op-basic.html * igt@xe_multigpu_svm@mgpu-latency-copy-prefetch: - shard-lnl: NOTRUN -> [SKIP][83] ([Intel XE#6964]) [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15708/shard-lnl-8/igt@xe_multigpu_svm@mgpu-latency-copy-prefetch.html * igt@xe_page_reclaim@binds-1g-partial: - shard-bmg: NOTRUN -> [SKIP][84] ([Intel XE#7793]) [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15708/shard-bmg-1/igt@xe_page_reclaim@binds-1g-partial.html * igt@xe_pat@xa-app-transient-media-off: - shard-lnl: NOTRUN -> [SKIP][85] ([Intel XE#7590] / [Intel XE#7772]) [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15708/shard-lnl-4/igt@xe_pat@xa-app-transient-media-off.html - shard-bmg: NOTRUN -> [SKIP][86] ([Intel XE#7590]) [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15708/shard-bmg-4/igt@xe_pat@xa-app-transient-media-off.html * igt@xe_pm@d3cold-basic: - shard-bmg: NOTRUN -> [SKIP][87] ([Intel XE#2284] / [Intel XE#7370]) [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15708/shard-bmg-1/igt@xe_pm@d3cold-basic.html * igt@xe_pm@d3cold-i2c: - shard-bmg: NOTRUN -> [SKIP][88] ([Intel XE#5694] / [Intel XE#7370]) [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15708/shard-bmg-1/igt@xe_pm@d3cold-i2c.html * igt@xe_pm@d3hot-i2c: - shard-bmg: NOTRUN -> [SKIP][89] ([Intel XE#5742] / [Intel XE#7328] / [Intel XE#7400]) [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15708/shard-bmg-4/igt@xe_pm@d3hot-i2c.html * igt@xe_pxp@pxp-stale-queue-post-termination-irq: - shard-bmg: NOTRUN -> [SKIP][90] ([Intel XE#4733] / [Intel XE#7417]) [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15708/shard-bmg-2/igt@xe_pxp@pxp-stale-queue-post-termination-irq.html * igt@xe_query@multigpu-query-topology-l3-bank-mask: - shard-bmg: NOTRUN -> [SKIP][91] ([Intel XE#944]) [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15708/shard-bmg-10/igt@xe_query@multigpu-query-topology-l3-bank-mask.html * igt@xe_wedged@basic-wedged: - shard-bmg: NOTRUN -> [DMESG-WARN][92] ([Intel XE#8963]) [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15708/shard-bmg-1/igt@xe_wedged@basic-wedged.html #### Possible fixes #### * igt@kms_async_flips@alternate-sync-async-flip: - shard-bmg: [FAIL][93] ([Intel XE#3718] / [Intel XE#6078]) -> [PASS][94] [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9063/shard-bmg-2/igt@kms_async_flips@alternate-sync-async-flip.html [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15708/shard-bmg-9/igt@kms_async_flips@alternate-sync-async-flip.html * igt@kms_async_flips@alternate-sync-async-flip@pipe-b-dp-2: - shard-bmg: [FAIL][95] ([Intel XE#6078]) -> [PASS][96] [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9063/shard-bmg-2/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-dp-2.html [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15708/shard-bmg-9/igt@kms_async_flips@alternate-sync-async-flip@pipe-b-dp-2.html * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-bmg: [INCOMPLETE][97] ([Intel XE#7084] / [Intel XE#8150]) -> [PASS][98] +1 other test pass [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9063/shard-bmg-4/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15708/shard-bmg-5/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic: - shard-bmg: [FAIL][99] ([Intel XE#7571]) -> [PASS][100] [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9063/shard-bmg-3/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15708/shard-bmg-9/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html * igt@kms_flip@dpms-vs-vblank-race-interruptible@c-hdmi-a3: - shard-bmg: [FAIL][101] ([Intel XE#3098]) -> [PASS][102] +1 other test pass [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9063/shard-bmg-1/igt@kms_flip@dpms-vs-vblank-race-interruptible@c-hdmi-a3.html [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15708/shard-bmg-10/igt@kms_flip@dpms-vs-vblank-race-interruptible@c-hdmi-a3.html * igt@kms_flip@flip-vs-expired-vblank-interruptible: - shard-lnl: [FAIL][103] ([Intel XE#301] / [Intel XE#3149]) -> [PASS][104] +1 other test pass [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9063/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank-interruptible.html [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15708/shard-lnl-5/igt@kms_flip@flip-vs-expired-vblank-interruptible.html * igt@xe_module_load@many-reload: - shard-bmg: [ABORT][105] ([Intel XE#8007]) -> [PASS][106] +1 other test pass [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9063/shard-bmg-6/igt@xe_module_load@many-reload.html [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15708/shard-bmg-8/igt@xe_module_load@many-reload.html #### Warnings #### * igt@kms_tiled_display@basic-test-pattern: - shard-bmg: [SKIP][107] ([Intel XE#2426] / [Intel XE#5848]) -> [FAIL][108] ([Intel XE#1729] / [Intel XE#7424]) [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_9063/shard-bmg-9/igt@kms_tiled_display@basic-test-pattern.html [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15708/shard-bmg-1/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#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178 [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499 [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503 [Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252 [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284 [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313 [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320 [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321 [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322 [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327 [Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330 [Intel XE#2350]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2350 [Intel XE#2374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374 [Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387 [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426 [Intel XE#2504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2504 [Intel XE#2509]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2509 [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893 [Intel XE#2938]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2938 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#3098]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3098 [Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149 [Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304 [Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321 [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432 [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367 [Intel XE#3718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3718 [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904 [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141 [Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422 [Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733 [Intel XE#5100]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5100 [Intel XE#5694]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5694 [Intel XE#5742]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5742 [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#607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/607 [Intel XE#6078]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6078 [Intel XE#6127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6127 [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#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#6886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886 [Intel XE#6911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6911 [Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964 [Intel XE#6969]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6969 [Intel XE#6974]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6974 [Intel XE#7006]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7006 [Intel XE#7059]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7059 [Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061 [Intel XE#7084]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7084 [Intel XE#7085]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7085 [Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178 [Intel XE#7179]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7179 [Intel XE#7283]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7283 [Intel XE#7304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7304 [Intel XE#7308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7308 [Intel XE#7319]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7319 [Intel XE#7322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7322 [Intel XE#7328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7328 [Intel XE#7342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7342 [Intel XE#7350]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7350 [Intel XE#7351]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7351 [Intel XE#7355]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7355 [Intel XE#7356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7356 [Intel XE#7358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7358 [Intel XE#7361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7361 [Intel XE#7370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7370 [Intel XE#7372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7372 [Intel XE#7374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7374 [Intel XE#7376]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7376 [Intel XE#7378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7378 [Intel XE#7400]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7400 [Intel XE#7408]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7408 [Intel XE#7417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7417 [Intel XE#7424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7424 [Intel XE#7429]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7429 [Intel XE#7437]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7437 [Intel XE#7442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7442 [Intel XE#7466]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7466 [Intel XE#7482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7482 [Intel XE#7503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7503 [Intel XE#7571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7571 [Intel XE#7590]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7590 [Intel XE#7679]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7679 [Intel XE#7760]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7760 [Intel XE#7772]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7772 [Intel XE#7793]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7793 [Intel XE#7794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7794 [Intel XE#7865]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7865 [Intel XE#7905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7905 [Intel XE#8007]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8007 [Intel XE#8150]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8150 [Intel XE#8265]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8265 [Intel XE#8364]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8364 [Intel XE#8365]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8365 [Intel XE#8369]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8369 [Intel XE#8370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8370 [Intel XE#8374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8374 [Intel XE#8378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8378 [Intel XE#8399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8399 [Intel XE#8628]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8628 [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870 [Intel XE#8963]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/8963 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 Build changes ------------- * IGT: IGT_9063 -> IGTPW_15708 * Linux: xe-5617-291141d363710c4ac7ef9ab71153459d746ed50c -> xe-5618-b083c821521cb941e9838665d205fe76943a0b66 IGTPW_15708: 15708 IGT_9063: 9063 xe-5617-291141d363710c4ac7ef9ab71153459d746ed50c: 291141d363710c4ac7ef9ab71153459d746ed50c xe-5618-b083c821521cb941e9838665d205fe76943a0b66: b083c821521cb941e9838665d205fe76943a0b66 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_15708/index.html [-- Attachment #2: Type: text/html, Size: 40983 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* ✗ i915.CI.Full: failure for tests/intel/gem_exec_params: add invalid-offset-multiple-buffers test (rev2) 2026-08-19 15:21 [PATCH i-g-t v2] tests/intel/gem_exec_params: add invalid-offset-multiple-buffers test Krzysztof Niemiec ` (2 preceding siblings ...) 2026-08-20 0:14 ` ✗ Xe.CI.FULL: failure " Patchwork @ 2026-08-20 2:36 ` Patchwork 2026-08-20 7:15 ` [PATCH i-g-t v2] tests/intel/gem_exec_params: add invalid-offset-multiple-buffers test Krzysztof Karas 2026-08-20 8:26 ` Sebastian Brzezinka 5 siblings, 0 replies; 8+ messages in thread From: Patchwork @ 2026-08-20 2:36 UTC (permalink / raw) To: Krzysztof Niemiec; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 141230 bytes --] == Series Details == Series: tests/intel/gem_exec_params: add invalid-offset-multiple-buffers test (rev2) URL : https://patchwork.freedesktop.org/series/172083/ State : failure == Summary == CI Bug Log - changes from CI_DRM_19018_full -> IGTPW_15708_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_15708_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_15708_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_15708/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_15708_full: ### IGT changes ### #### Possible regressions #### * igt@kms_busy@extended-modeset-hang-newfb-with-reset@pipe-c: - shard-rkl: [PASS][1] -> [ABORT][2] +1 other test abort [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19018/shard-rkl-7/igt@kms_busy@extended-modeset-hang-newfb-with-reset@pipe-c.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-rkl-8/igt@kms_busy@extended-modeset-hang-newfb-with-reset@pipe-c.html New tests --------- New tests have been introduced between CI_DRM_19018_full and IGTPW_15708_full: ### New IGT tests (1) ### * igt@gem_exec_params@invalid-offset-multiple-buffers: - Statuses : 6 pass(s) - Exec time: [0.01, 0.04] s Known issues ------------ Here are the changes found in IGTPW_15708_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-reloc-keep-cache: - shard-dg2: NOTRUN -> [SKIP][3] ([i915#8411]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-dg2-5/igt@api_intel_bb@blit-reloc-keep-cache.html * igt@device_reset@unbind-cold-reset-rebind: - shard-rkl: NOTRUN -> [SKIP][4] ([i915#11078]) +1 other test skip [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-rkl-8/igt@device_reset@unbind-cold-reset-rebind.html * igt@gem_ccs@ctrl-surf-copy-new-ctx: - shard-rkl: NOTRUN -> [SKIP][5] ([i915#9323]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-rkl-7/igt@gem_ccs@ctrl-surf-copy-new-ctx.html * igt@gem_ccs@large-ctrl-surf-copy: - shard-tglu: NOTRUN -> [SKIP][6] ([i915#13008]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-tglu-2/igt@gem_ccs@large-ctrl-surf-copy.html * igt@gem_ccs@suspend-resume: - shard-tglu-1: NOTRUN -> [SKIP][7] ([i915#9323]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-tglu-1/igt@gem_ccs@suspend-resume.html * igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0: - shard-dg2: [PASS][8] -> [INCOMPLETE][9] ([i915#13356] / [i915#16348]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19018/shard-dg2-5/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-dg2-5/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-smem-lmem0.html * igt@gem_create@create-ext-cpu-access-big: - shard-tglu-1: NOTRUN -> [SKIP][10] ([i915#6335]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-tglu-1/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_ctx_persistence@legacy-engines-queued: - shard-snb: NOTRUN -> [SKIP][11] ([i915#1099]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-snb6/igt@gem_ctx_persistence@legacy-engines-queued.html * igt@gem_eio@in-flight-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][12] ([i915#13390]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-glk8/igt@gem_eio@in-flight-suspend.html * igt@gem_eio@suspend: - shard-rkl: [PASS][13] -> [ABORT][14] ([i915#15131]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19018/shard-rkl-8/igt@gem_eio@suspend.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-rkl-1/igt@gem_eio@suspend.html * igt@gem_exec_balancer@bonded-pair: - shard-dg2: NOTRUN -> [SKIP][15] ([i915#4771]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-dg2-6/igt@gem_exec_balancer@bonded-pair.html * igt@gem_exec_balancer@bonded-semaphore: - shard-dg2: NOTRUN -> [SKIP][16] ([i915#4812]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-dg2-7/igt@gem_exec_balancer@bonded-semaphore.html * igt@gem_exec_balancer@parallel: - shard-tglu-1: NOTRUN -> [SKIP][17] ([i915#4525]) +1 other test skip [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-tglu-1/igt@gem_exec_balancer@parallel.html * igt@gem_exec_balancer@parallel-bb-first: - shard-rkl: NOTRUN -> [SKIP][18] ([i915#4525]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-rkl-7/igt@gem_exec_balancer@parallel-bb-first.html * igt@gem_exec_capture@capture: - shard-mtlp: NOTRUN -> [FAIL][19] ([i915#11965]) +1 other test fail [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-mtlp-5/igt@gem_exec_capture@capture.html * igt@gem_exec_capture@capture-invisible@smem0: - shard-glk: NOTRUN -> [SKIP][20] ([i915#6334]) +1 other test skip [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-glk9/igt@gem_exec_capture@capture-invisible@smem0.html - shard-tglu: NOTRUN -> [SKIP][21] ([i915#6334]) +1 other test skip [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-tglu-3/igt@gem_exec_capture@capture-invisible@smem0.html * igt@gem_exec_capture@capture@vecs0-lmem0: - shard-dg2: NOTRUN -> [FAIL][22] ([i915#11965]) +4 other tests fail [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-dg2-7/igt@gem_exec_capture@capture@vecs0-lmem0.html - shard-dg1: NOTRUN -> [FAIL][23] ([i915#11965]) +2 other tests fail [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-dg1-13/igt@gem_exec_capture@capture@vecs0-lmem0.html * igt@gem_exec_fence@syncobj-backward-timeline-chain-engines: - shard-snb: NOTRUN -> [SKIP][24] +81 other tests skip [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-snb4/igt@gem_exec_fence@syncobj-backward-timeline-chain-engines.html * igt@gem_exec_flush@basic-wb-rw-default: - shard-dg2: NOTRUN -> [SKIP][25] ([i915#3539] / [i915#4852]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-dg2-7/igt@gem_exec_flush@basic-wb-rw-default.html * igt@gem_exec_reloc@basic-cpu-active: - shard-mtlp: NOTRUN -> [SKIP][26] ([i915#3281]) +1 other test skip [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-mtlp-2/igt@gem_exec_reloc@basic-cpu-active.html * igt@gem_exec_reloc@basic-cpu-gtt-active: - shard-dg2: NOTRUN -> [SKIP][27] ([i915#3281]) +4 other tests skip [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-dg2-7/igt@gem_exec_reloc@basic-cpu-gtt-active.html * igt@gem_exec_reloc@basic-gtt-wc-noreloc: - shard-rkl: NOTRUN -> [SKIP][28] ([i915#3281]) +10 other tests skip [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-rkl-8/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html * igt@gem_exec_reloc@basic-wc: - shard-dg1: NOTRUN -> [SKIP][29] ([i915#3281]) +3 other tests skip [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-dg1-14/igt@gem_exec_reloc@basic-wc.html * igt@gem_exec_schedule@preempt-queue: - shard-dg1: NOTRUN -> [SKIP][30] ([i915#4812]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-dg1-15/igt@gem_exec_schedule@preempt-queue.html - shard-mtlp: NOTRUN -> [SKIP][31] ([i915#4537] / [i915#4812]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-mtlp-6/igt@gem_exec_schedule@preempt-queue.html - shard-dg2: NOTRUN -> [SKIP][32] ([i915#4537] / [i915#4812]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-dg2-3/igt@gem_exec_schedule@preempt-queue.html * igt@gem_exec_suspend@basic-s3: - shard-glk: [PASS][33] -> [INCOMPLETE][34] ([i915#13196] / [i915#13356]) +1 other test incomplete [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19018/shard-glk4/igt@gem_exec_suspend@basic-s3.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-glk5/igt@gem_exec_suspend@basic-s3.html * igt@gem_lmem_evict@dontneed-evict-race: - shard-rkl: NOTRUN -> [SKIP][35] ([i915#4613] / [i915#7582]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-rkl-3/igt@gem_lmem_evict@dontneed-evict-race.html * igt@gem_lmem_swapping@heavy-verify-random-ccs: - shard-tglu: NOTRUN -> [SKIP][36] ([i915#4613]) +2 other tests skip [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-tglu-8/igt@gem_lmem_swapping@heavy-verify-random-ccs.html * igt@gem_lmem_swapping@massive: - shard-tglu-1: NOTRUN -> [SKIP][37] ([i915#4613]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-tglu-1/igt@gem_lmem_swapping@massive.html * igt@gem_lmem_swapping@parallel-multi: - shard-mtlp: NOTRUN -> [SKIP][38] ([i915#4613]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-mtlp-7/igt@gem_lmem_swapping@parallel-multi.html * igt@gem_lmem_swapping@parallel-random: - shard-rkl: NOTRUN -> [SKIP][39] ([i915#4613]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-rkl-7/igt@gem_lmem_swapping@parallel-random.html * igt@gem_lmem_swapping@random-engines: - shard-glk: NOTRUN -> [SKIP][40] ([i915#4613]) +8 other tests skip [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-glk8/igt@gem_lmem_swapping@random-engines.html * igt@gem_mmap_wc@read-write: - shard-mtlp: NOTRUN -> [SKIP][41] ([i915#4083]) +2 other tests skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-mtlp-3/igt@gem_mmap_wc@read-write.html * igt@gem_mmap_wc@write-wc-read-gtt: - shard-dg2: NOTRUN -> [SKIP][42] ([i915#4083]) +5 other tests skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-dg2-7/igt@gem_mmap_wc@write-wc-read-gtt.html - shard-dg1: NOTRUN -> [SKIP][43] ([i915#4083]) +2 other tests skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-dg1-14/igt@gem_mmap_wc@write-wc-read-gtt.html * igt@gem_partial_pwrite_pread@reads-snoop: - shard-dg2: NOTRUN -> [SKIP][44] ([i915#3282]) +1 other test skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-dg2-7/igt@gem_partial_pwrite_pread@reads-snoop.html - shard-dg1: NOTRUN -> [SKIP][45] ([i915#3282]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-dg1-12/igt@gem_partial_pwrite_pread@reads-snoop.html - shard-mtlp: NOTRUN -> [SKIP][46] ([i915#3282]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-mtlp-3/igt@gem_partial_pwrite_pread@reads-snoop.html * igt@gem_partial_pwrite_pread@writes-after-reads-display: - shard-rkl: NOTRUN -> [SKIP][47] ([i915#3282]) +1 other test skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-rkl-3/igt@gem_partial_pwrite_pread@writes-after-reads-display.html * igt@gem_pxp@create-protected-buffer: - shard-rkl: [PASS][48] -> [SKIP][49] ([i915#4270]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19018/shard-rkl-7/igt@gem_pxp@create-protected-buffer.html [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-rkl-2/igt@gem_pxp@create-protected-buffer.html * igt@gem_pxp@hw-rejects-pxp-buffer: - shard-rkl: NOTRUN -> [SKIP][50] ([i915#13717] / [i915#14544]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-rkl-6/igt@gem_pxp@hw-rejects-pxp-buffer.html * igt@gem_pxp@hw-rejects-pxp-context: - shard-tglu: NOTRUN -> [SKIP][51] ([i915#13398]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-tglu-3/igt@gem_pxp@hw-rejects-pxp-context.html - shard-mtlp: NOTRUN -> [SKIP][52] ([i915#13398]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-mtlp-7/igt@gem_pxp@hw-rejects-pxp-context.html * igt@gem_pxp@protected-raw-src-copy-not-readible: - shard-dg2: NOTRUN -> [SKIP][53] ([i915#4270]) +1 other test skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-dg2-4/igt@gem_pxp@protected-raw-src-copy-not-readible.html * igt@gem_pxp@reject-modify-context-protection-off-1: - shard-dg1: NOTRUN -> [SKIP][54] ([i915#4270]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-dg1-19/igt@gem_pxp@reject-modify-context-protection-off-1.html * igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled: - shard-dg2: NOTRUN -> [SKIP][55] ([i915#5190] / [i915#8428]) +2 other tests skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-dg2-5/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled.html * igt@gem_tiled_wb: - shard-dg2: NOTRUN -> [SKIP][56] ([i915#4077]) +8 other tests skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-dg2-3/igt@gem_tiled_wb.html - shard-dg1: NOTRUN -> [SKIP][57] ([i915#4077]) +3 other tests skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-dg1-16/igt@gem_tiled_wb.html - shard-mtlp: NOTRUN -> [SKIP][58] ([i915#4077]) +2 other tests skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-mtlp-5/igt@gem_tiled_wb.html * igt@gem_unfence_active_buffers: - shard-dg2: NOTRUN -> [SKIP][59] ([i915#4879]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-dg2-4/igt@gem_unfence_active_buffers.html * igt@gem_userptr_blits@access-control: - shard-mtlp: NOTRUN -> [SKIP][60] ([i915#3297]) +2 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-mtlp-7/igt@gem_userptr_blits@access-control.html - shard-dg2: NOTRUN -> [SKIP][61] ([i915#3297]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-dg2-4/igt@gem_userptr_blits@access-control.html - shard-dg1: NOTRUN -> [SKIP][62] ([i915#3297]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-dg1-18/igt@gem_userptr_blits@access-control.html - shard-tglu: NOTRUN -> [SKIP][63] ([i915#3297]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-tglu-4/igt@gem_userptr_blits@access-control.html * igt@gem_userptr_blits@coherency-unsync: - shard-rkl: NOTRUN -> [SKIP][64] ([i915#3297]) +1 other test skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-rkl-7/igt@gem_userptr_blits@coherency-unsync.html * igt@gem_userptr_blits@dmabuf-sync: - shard-tglu-1: NOTRUN -> [SKIP][65] ([i915#3297] / [i915#3323]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-tglu-1/igt@gem_userptr_blits@dmabuf-sync.html * igt@gem_userptr_blits@map-fixed-invalidate-busy: - shard-dg2: NOTRUN -> [SKIP][66] ([i915#3297] / [i915#4880]) +2 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-dg2-8/igt@gem_userptr_blits@map-fixed-invalidate-busy.html - shard-dg1: NOTRUN -> [SKIP][67] ([i915#3297] / [i915#4880]) +1 other test skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-dg1-19/igt@gem_userptr_blits@map-fixed-invalidate-busy.html * igt@gem_userptr_blits@relocations: - shard-rkl: NOTRUN -> [SKIP][68] ([i915#3281] / [i915#3297]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-rkl-4/igt@gem_userptr_blits@relocations.html * igt@gem_userptr_blits@unsync-unmap-after-close: - shard-tglu-1: NOTRUN -> [SKIP][69] ([i915#3297]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-tglu-1/igt@gem_userptr_blits@unsync-unmap-after-close.html * igt@gem_workarounds@suspend-resume-fd: - shard-glk: NOTRUN -> [INCOMPLETE][70] ([i915#13356] / [i915#14586]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-glk5/igt@gem_workarounds@suspend-resume-fd.html * igt@gen3_render_tiledy_blits: - shard-mtlp: NOTRUN -> [SKIP][71] +7 other tests skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-mtlp-2/igt@gen3_render_tiledy_blits.html * igt@gen9_exec_parse@batch-without-end: - shard-tglu: NOTRUN -> [SKIP][72] ([i915#2527] / [i915#2856]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-tglu-4/igt@gen9_exec_parse@batch-without-end.html * igt@gen9_exec_parse@bb-chained: - shard-dg1: NOTRUN -> [SKIP][73] ([i915#2527]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-dg1-19/igt@gen9_exec_parse@bb-chained.html - shard-mtlp: NOTRUN -> [SKIP][74] ([i915#2856]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-mtlp-5/igt@gen9_exec_parse@bb-chained.html * igt@gen9_exec_parse@bb-start-param: - shard-dg2: NOTRUN -> [SKIP][75] ([i915#2856]) +2 other tests skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-dg2-3/igt@gen9_exec_parse@bb-start-param.html * igt@gen9_exec_parse@secure-batches: - shard-rkl: NOTRUN -> [SKIP][76] ([i915#2527]) +2 other tests skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-rkl-2/igt@gen9_exec_parse@secure-batches.html * igt@gen9_exec_parse@shadow-peek: - shard-tglu-1: NOTRUN -> [SKIP][77] ([i915#2527] / [i915#2856]) +1 other test skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-tglu-1/igt@gen9_exec_parse@shadow-peek.html * igt@gpu_buddy@gpu_buddy: - shard-tglu: NOTRUN -> [SKIP][78] ([i915#15678]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-tglu-2/igt@gpu_buddy@gpu_buddy.html * igt@i915_drm_fdinfo@all-busy-idle-check-all: - shard-dg2: NOTRUN -> [SKIP][79] ([i915#14123]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-dg2-8/igt@i915_drm_fdinfo@all-busy-idle-check-all.html - shard-dg1: NOTRUN -> [SKIP][80] ([i915#14123]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-dg1-17/igt@i915_drm_fdinfo@all-busy-idle-check-all.html - shard-mtlp: NOTRUN -> [SKIP][81] ([i915#14123]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-mtlp-2/igt@i915_drm_fdinfo@all-busy-idle-check-all.html * igt@i915_module_load@fault-injection: - shard-dg2: NOTRUN -> [ABORT][82] ([i915#15342] / [i915#15481]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-dg2-3/igt@i915_module_load@fault-injection.html * igt@i915_module_load@fault-injection@__uc_init: - shard-dg2: NOTRUN -> [ABORT][83] ([i915#15481]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-dg2-3/igt@i915_module_load@fault-injection@__uc_init.html - shard-rkl: NOTRUN -> [SKIP][84] ([i915#15479]) +4 other tests skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-rkl-3/igt@i915_module_load@fault-injection@__uc_init.html * igt@i915_module_load@fault-injection@intel_connector_register: - shard-rkl: NOTRUN -> [ABORT][85] ([i915#15342]) +1 other test abort [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-rkl-3/igt@i915_module_load@fault-injection@intel_connector_register.html - shard-glk: NOTRUN -> [ABORT][86] ([i915#15342]) +1 other test abort [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-glk5/igt@i915_module_load@fault-injection@intel_connector_register.html - shard-dg2: NOTRUN -> [DMESG-WARN][87] ([i915#15342]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-dg2-3/igt@i915_module_load@fault-injection@intel_connector_register.html * igt@i915_module_load@reload-no-display: - shard-dg2: NOTRUN -> [DMESG-WARN][88] ([i915#13029] / [i915#14545]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-dg2-7/igt@i915_module_load@reload-no-display.html - shard-dg1: NOTRUN -> [DMESG-WARN][89] ([i915#13029] / [i915#14545]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-dg1-16/igt@i915_module_load@reload-no-display.html * igt@i915_module_load@resize-bar: - shard-dg2: [PASS][90] -> [DMESG-WARN][91] ([i915#14545]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19018/shard-dg2-5/igt@i915_module_load@resize-bar.html [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-dg2-1/igt@i915_module_load@resize-bar.html - shard-tglu: NOTRUN -> [SKIP][92] ([i915#6412]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-tglu-4/igt@i915_module_load@resize-bar.html * igt@i915_pm_freq_api@freq-reset-multiple: - shard-tglu: NOTRUN -> [SKIP][93] ([i915#8399]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-tglu-2/igt@i915_pm_freq_api@freq-reset-multiple.html * igt@i915_pm_rc6_residency@rc6-idle: - shard-rkl: NOTRUN -> [SKIP][94] ([i915#14498]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-rkl-2/igt@i915_pm_rc6_residency@rc6-idle.html * igt@i915_pm_rpm@system-suspend: - shard-glk11: NOTRUN -> [INCOMPLETE][95] ([i915#13356]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-glk11/igt@i915_pm_rpm@system-suspend.html * igt@i915_pm_rpm@system-suspend-execbuf: - shard-rkl: [PASS][96] -> [INCOMPLETE][97] ([i915#13356]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19018/shard-rkl-2/igt@i915_pm_rpm@system-suspend-execbuf.html [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-rkl-4/igt@i915_pm_rpm@system-suspend-execbuf.html * igt@i915_pm_rps@min-max-config-loaded: - shard-dg2: NOTRUN -> [SKIP][98] ([i915#11681] / [i915#6621]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-dg2-8/igt@i915_pm_rps@min-max-config-loaded.html - shard-dg1: NOTRUN -> [SKIP][99] ([i915#11681] / [i915#6621]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-dg1-19/igt@i915_pm_rps@min-max-config-loaded.html * igt@i915_pm_rps@waitboost: - shard-mtlp: [PASS][100] -> [FAIL][101] ([i915#15365]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19018/shard-mtlp-8/igt@i915_pm_rps@waitboost.html [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-mtlp-5/igt@i915_pm_rps@waitboost.html * igt@i915_query@test-query-geometry-subslices: - shard-rkl: NOTRUN -> [SKIP][102] ([i915#14544] / [i915#5723]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-rkl-6/igt@i915_query@test-query-geometry-subslices.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-dg2: NOTRUN -> [SKIP][103] ([i915#5190]) +2 other tests skip [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-dg2-6/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_addfb_basic@basic-y-tiled-legacy: - shard-dg2: NOTRUN -> [SKIP][104] ([i915#4215] / [i915#5190]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-dg2-4/igt@kms_addfb_basic@basic-y-tiled-legacy.html * igt@kms_addfb_basic@framebuffer-vs-set-tiling: - shard-dg2: NOTRUN -> [SKIP][105] ([i915#4212]) +1 other test skip [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-dg2-4/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html * igt@kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-tglu-1: NOTRUN -> [SKIP][106] ([i915#12454] / [i915#12712]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-tglu-1/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-glk: NOTRUN -> [SKIP][107] ([i915#1769]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-glk6/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html - shard-tglu-1: NOTRUN -> [SKIP][108] ([i915#1769] / [i915#3555]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-tglu-1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-b-hdmi-a-1: - shard-tglu: [PASS][109] -> [ABORT][110] ([i915#16837]) +1 other test abort [109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19018/shard-tglu-10/igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-b-hdmi-a-1.html [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-tglu-5/igt@kms_atomic_transition@plane-all-modeset-transition-fencing@pipe-b-hdmi-a-1.html * igt@kms_big_fb@4-tiled-16bpp-rotate-0: - shard-dg1: NOTRUN -> [SKIP][111] ([i915#4538] / [i915#5286]) +1 other test skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-dg1-12/igt@kms_big_fb@4-tiled-16bpp-rotate-0.html * igt@kms_big_fb@4-tiled-32bpp-rotate-90: - shard-tglu-1: NOTRUN -> [SKIP][112] ([i915#5286]) +1 other test skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-tglu-1/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html * igt@kms_big_fb@4-tiled-64bpp-rotate-0: - shard-rkl: NOTRUN -> [SKIP][113] ([i915#5286]) +3 other tests skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-rkl-5/igt@kms_big_fb@4-tiled-64bpp-rotate-0.html * igt@kms_big_fb@4-tiled-8bpp-rotate-180: - shard-tglu: NOTRUN -> [SKIP][114] ([i915#5286]) +4 other tests skip [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-tglu-8/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-mtlp: [PASS][115] -> [FAIL][116] ([i915#15733] / [i915#5138]) +1 other test fail [115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19018/shard-mtlp-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-mtlp-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@linear-32bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][117] ([i915#3638]) +1 other test skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-rkl-5/igt@kms_big_fb@linear-32bpp-rotate-270.html * igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip: - shard-tglu: NOTRUN -> [SKIP][118] ([i915#3828]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-tglu-3/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@x-tiled-16bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][119] ([i915#14544] / [i915#3638]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-rkl-6/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html - shard-dg1: NOTRUN -> [SKIP][120] ([i915#3638]) +1 other test skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-dg1-17/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-0: - shard-dg2: NOTRUN -> [SKIP][121] ([i915#4538] / [i915#5190]) +5 other tests skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-dg2-6/igt@kms_big_fb@yf-tiled-16bpp-rotate-0.html - shard-dg1: NOTRUN -> [SKIP][122] ([i915#4538]) +3 other tests skip [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-dg1-13/igt@kms_big_fb@yf-tiled-16bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-tglu-1: NOTRUN -> [SKIP][123] +44 other tests skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-tglu-1/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-rkl: NOTRUN -> [SKIP][124] +76 other tests skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-rkl-5/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][125] ([i915#10307] / [i915#10434] / [i915#6095]) +2 other tests skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-dg2-4/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc: - shard-rkl: NOTRUN -> [SKIP][126] ([i915#14098] / [i915#14544] / [i915#6095]) +3 other tests skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-rkl-6/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs-cc.html * igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs: - shard-tglu: NOTRUN -> [SKIP][127] ([i915#12313]) +1 other test skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-tglu-7/igt@kms_ccs@bad-rotation-90-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs: - shard-rkl: NOTRUN -> [SKIP][128] ([i915#12313]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-rkl-5/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs: - shard-dg2: NOTRUN -> [SKIP][129] ([i915#12313]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-dg2-6/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-rkl: NOTRUN -> [SKIP][130] ([i915#12805] / [i915#14544]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][131] ([i915#14098] / [i915#6095]) +32 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-rkl-3/igt@kms_ccs@crc-primary-suspend-4-tiled-dg2-rc-ccs-cc@pipe-c-hdmi-a-2.html * igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs: - shard-tglu-1: NOTRUN -> [SKIP][132] ([i915#12805]) [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-tglu-1/igt@kms_ccs@crc-primary-suspend-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-1: - shard-tglu-1: NOTRUN -> [SKIP][133] ([i915#6095]) +29 other tests skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-tglu-1/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-1.html * igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [INCOMPLETE][134] ([i915#15582]) +2 other tests incomplete [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-glk6/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-c-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][135] ([i915#6095]) +8 other tests skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-dg2-4/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs@pipe-c-hdmi-a-1.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][136] ([i915#10307] / [i915#6095]) +83 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-dg2-5/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-rc-ccs@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][137] ([i915#6095]) +53 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-rkl-3/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-ccs@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][138] ([i915#14544] / [i915#6095]) +5 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs@pipe-a-hdmi-a-2.html * igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-b-hdmi-a-1: - shard-dg1: NOTRUN -> [SKIP][139] ([i915#6095]) +179 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-dg1-14/igt@kms_ccs@missing-ccs-buffer-yf-tiled-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs: - shard-tglu-1: NOTRUN -> [SKIP][140] ([i915#12313]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-tglu-1/igt@kms_ccs@random-ccs-data-4-tiled-bmg-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc: - shard-tglu: NOTRUN -> [SKIP][141] ([i915#6095]) +69 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-tglu-6/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc.html * igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][142] ([i915#13781]) +3 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-dg2-3/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html * igt@kms_cdclk@plane-scaling: - shard-rkl: NOTRUN -> [SKIP][143] ([i915#3742]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-rkl-8/igt@kms_cdclk@plane-scaling.html * igt@kms_chamelium_audio@dp-audio-after-suspend: - shard-dg2: NOTRUN -> [SKIP][144] ([i915#11151]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-dg2-1/igt@kms_chamelium_audio@dp-audio-after-suspend.html * igt@kms_chamelium_color@degamma: - shard-dg2: NOTRUN -> [SKIP][145] +7 other tests skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-dg2-3/igt@kms_chamelium_color@degamma.html * igt@kms_chamelium_color_pipeline@plane-ctm3x4-lut1d: - shard-tglu-1: NOTRUN -> [SKIP][146] ([i915#16471]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-tglu-1/igt@kms_chamelium_color_pipeline@plane-ctm3x4-lut1d.html * igt@kms_chamelium_color_pipeline@plane-lut1d-ctm3x4-lut1d: - shard-dg2: NOTRUN -> [SKIP][147] ([i915#16471]) +1 other test skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-dg2-4/igt@kms_chamelium_color_pipeline@plane-lut1d-ctm3x4-lut1d.html * igt@kms_chamelium_color_pipeline@plane-lut1d-lut1d: - shard-tglu: NOTRUN -> [SKIP][148] ([i915#16471]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-tglu-3/igt@kms_chamelium_color_pipeline@plane-lut1d-lut1d.html * igt@kms_chamelium_color_pipeline@plane-lut3d-green-only: - shard-rkl: NOTRUN -> [SKIP][149] ([i915#16471]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-rkl-8/igt@kms_chamelium_color_pipeline@plane-lut3d-green-only.html * igt@kms_chamelium_edid@dp-edid-change-during-suspend: - shard-rkl: NOTRUN -> [SKIP][150] ([i915#11151] / [i915#7828]) +3 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-rkl-3/igt@kms_chamelium_edid@dp-edid-change-during-suspend.html * igt@kms_chamelium_frames@hdmi-crc-multiple: - shard-dg2: NOTRUN -> [SKIP][151] ([i915#11151] / [i915#7828]) +3 other tests skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-dg2-3/igt@kms_chamelium_frames@hdmi-crc-multiple.html * igt@kms_chamelium_frames@hdmi-frame-dump: - shard-tglu-1: NOTRUN -> [SKIP][152] ([i915#11151] / [i915#7828]) +2 other tests skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-tglu-1/igt@kms_chamelium_frames@hdmi-frame-dump.html * igt@kms_chamelium_hpd@vga-hpd-fast: - shard-tglu: NOTRUN -> [SKIP][153] ([i915#11151] / [i915#7828]) +4 other tests skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-tglu-7/igt@kms_chamelium_hpd@vga-hpd-fast.html * igt@kms_color@deep-color: - shard-dg2: NOTRUN -> [SKIP][154] ([i915#12655] / [i915#3555]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-dg2-7/igt@kms_color@deep-color.html - shard-rkl: NOTRUN -> [SKIP][155] ([i915#12655] / [i915#3555]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-rkl-5/igt@kms_color@deep-color.html - shard-dg1: NOTRUN -> [SKIP][156] ([i915#12655] / [i915#3555]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-dg1-16/igt@kms_color@deep-color.html * igt@kms_content_protection@dp-mst-type-0-suspend-resume: - shard-mtlp: NOTRUN -> [SKIP][157] ([i915#15330]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-mtlp-8/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html - shard-dg2: NOTRUN -> [SKIP][158] ([i915#15330]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-dg2-5/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html - shard-dg1: NOTRUN -> [SKIP][159] ([i915#15330]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-dg1-16/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html - shard-tglu: NOTRUN -> [SKIP][160] ([i915#15330]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-tglu-6/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html * igt@kms_content_protection@legacy: - shard-tglu-1: NOTRUN -> [SKIP][161] ([i915#15865]) +1 other test skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-tglu-1/igt@kms_content_protection@legacy.html * igt@kms_content_protection@legacy-hdcp14: - shard-rkl: NOTRUN -> [SKIP][162] ([i915#15865]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-rkl-5/igt@kms_content_protection@legacy-hdcp14.html - shard-dg1: NOTRUN -> [SKIP][163] ([i915#15865]) +1 other test skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-dg1-16/igt@kms_content_protection@legacy-hdcp14.html - shard-mtlp: NOTRUN -> [SKIP][164] ([i915#15865]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-mtlp-3/igt@kms_content_protection@legacy-hdcp14.html * igt@kms_content_protection@lic-type-1: - shard-rkl: NOTRUN -> [SKIP][165] ([i915#14544] / [i915#15865]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-rkl-6/igt@kms_content_protection@lic-type-1.html * igt@kms_content_protection@mei-interface: - shard-tglu: NOTRUN -> [SKIP][166] ([i915#15865]) +3 other tests skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-tglu-3/igt@kms_content_protection@mei-interface.html * igt@kms_content_protection@srm: - shard-dg2: NOTRUN -> [SKIP][167] ([i915#15865]) +2 other tests skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-dg2-8/igt@kms_content_protection@srm.html * igt@kms_cursor_crc@cursor-offscreen-32x10: - shard-tglu-1: NOTRUN -> [SKIP][168] ([i915#3555]) +1 other test skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-tglu-1/igt@kms_cursor_crc@cursor-offscreen-32x10.html * igt@kms_cursor_crc@cursor-onscreen-128x42: - shard-tglu: NOTRUN -> [FAIL][169] ([i915#13566]) +3 other tests fail [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-tglu-6/igt@kms_cursor_crc@cursor-onscreen-128x42.html * igt@kms_cursor_crc@cursor-onscreen-256x85: - shard-tglu: [PASS][170] -> [FAIL][171] ([i915#13566]) +3 other tests fail [170]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19018/shard-tglu-8/igt@kms_cursor_crc@cursor-onscreen-256x85.html [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-tglu-4/igt@kms_cursor_crc@cursor-onscreen-256x85.html * igt@kms_cursor_crc@cursor-onscreen-32x10: - shard-mtlp: NOTRUN -> [SKIP][172] ([i915#3555] / [i915#8814]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-mtlp-5/igt@kms_cursor_crc@cursor-onscreen-32x10.html * igt@kms_cursor_crc@cursor-onscreen-512x512: - shard-tglu-1: NOTRUN -> [SKIP][173] ([i915#13049]) +1 other test skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-tglu-1/igt@kms_cursor_crc@cursor-onscreen-512x512.html * igt@kms_cursor_crc@cursor-random-512x512: - shard-dg2: NOTRUN -> [SKIP][174] ([i915#13049]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-dg2-1/igt@kms_cursor_crc@cursor-random-512x512.html * igt@kms_cursor_crc@cursor-rapid-movement-32x32: - shard-dg2: NOTRUN -> [SKIP][175] ([i915#3555]) +2 other tests skip [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-dg2-4/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html - shard-rkl: NOTRUN -> [SKIP][176] ([i915#3555]) +4 other tests skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-rkl-5/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html * igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [FAIL][177] ([i915#13566]) +1 other test fail [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-rkl-3/igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-2.html * igt@kms_cursor_crc@cursor-sliding-32x10: - shard-tglu: NOTRUN -> [SKIP][178] ([i915#3555]) +1 other test skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-tglu-3/igt@kms_cursor_crc@cursor-sliding-32x10.html * igt@kms_cursor_crc@cursor-suspend: - shard-rkl: [PASS][179] -> [INCOMPLETE][180] ([i915#12358] / [i915#14152]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19018/shard-rkl-2/igt@kms_cursor_crc@cursor-suspend.html [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-rkl-6/igt@kms_cursor_crc@cursor-suspend.html * igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [INCOMPLETE][181] ([i915#12358] / [i915#14152]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-rkl-6/igt@kms_cursor_crc@cursor-suspend@pipe-a-hdmi-a-2.html * igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic: - shard-mtlp: NOTRUN -> [SKIP][182] ([i915#9809]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-mtlp-6/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-rkl: NOTRUN -> [SKIP][183] ([i915#4103]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-rkl-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipb-legacy: - shard-dg2: NOTRUN -> [SKIP][184] ([i915#13046] / [i915#5354]) +3 other tests skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-dg2-5/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-glk: NOTRUN -> [FAIL][185] ([i915#15804]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-glk8/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-tglu-1: NOTRUN -> [SKIP][186] ([i915#9067]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-tglu-1/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-tglu-1: NOTRUN -> [SKIP][187] ([i915#4103]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-tglu-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt@kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-dg2: NOTRUN -> [SKIP][188] ([i915#9833]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-dg2-5/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt@kms_dirtyfb@psr-dirtyfb-ioctl: - shard-rkl: NOTRUN -> [SKIP][189] ([i915#9723]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-rkl-3/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html * igt@kms_dp_link_training@uhbr-mst: - shard-mtlp: NOTRUN -> [SKIP][190] ([i915#13749]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-mtlp-2/igt@kms_dp_link_training@uhbr-mst.html - shard-dg2: NOTRUN -> [SKIP][191] ([i915#13748]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-dg2-8/igt@kms_dp_link_training@uhbr-mst.html - shard-rkl: NOTRUN -> [SKIP][192] ([i915#13748]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-rkl-4/igt@kms_dp_link_training@uhbr-mst.html - shard-dg1: NOTRUN -> [SKIP][193] ([i915#13748]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-dg1-17/igt@kms_dp_link_training@uhbr-mst.html * igt@kms_dp_link_training@uhbr-sst: - shard-tglu: NOTRUN -> [SKIP][194] ([i915#13748]) +1 other test skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-tglu-8/igt@kms_dp_link_training@uhbr-sst.html * igt@kms_dp_linktrain_fallback@dp-fallback: - shard-tglu: NOTRUN -> [SKIP][195] ([i915#13707]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-tglu-3/igt@kms_dp_linktrain_fallback@dp-fallback.html * igt@kms_dsc@dsc-basic: - shard-rkl: NOTRUN -> [SKIP][196] ([i915#16361]) +3 other tests skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-rkl-8/igt@kms_dsc@dsc-basic.html * igt@kms_dsc@dsc-fractional-bpp-bigjoiner: - shard-tglu-1: NOTRUN -> [SKIP][197] ([i915#16361]) +2 other tests skip [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-tglu-1/igt@kms_dsc@dsc-fractional-bpp-bigjoiner.html * igt@kms_dsc@dsc-with-formats-ultrajoiner: - shard-dg2: NOTRUN -> [SKIP][198] ([i915#16361]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-dg2-5/igt@kms_dsc@dsc-with-formats-ultrajoiner.html - shard-dg1: NOTRUN -> [SKIP][199] ([i915#16361]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-dg1-19/igt@kms_dsc@dsc-with-formats-ultrajoiner.html - shard-mtlp: NOTRUN -> [SKIP][200] ([i915#16361]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-mtlp-5/igt@kms_dsc@dsc-with-formats-ultrajoiner.html * igt@kms_dsc@dsc-with-output-formats: - shard-tglu: NOTRUN -> [SKIP][201] ([i915#16361]) +2 other tests skip [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-tglu-8/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][202] ([i915#9878]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-glk8/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_fbcon_fbt@psr: - shard-tglu: NOTRUN -> [SKIP][203] ([i915#16680]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-tglu-5/igt@kms_fbcon_fbt@psr.html * igt@kms_fbcon_fbt@psr-suspend: - shard-dg1: NOTRUN -> [SKIP][204] ([i915#16680]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-dg1-14/igt@kms_fbcon_fbt@psr-suspend.html - shard-dg2: NOTRUN -> [SKIP][205] ([i915#16680]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-dg2-8/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_feature_discovery@dp-mst: - shard-tglu: NOTRUN -> [SKIP][206] ([i915#16599]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-tglu-7/igt@kms_feature_discovery@dp-mst.html * igt@kms_feature_discovery@hdr: - shard-dg2: NOTRUN -> [SKIP][207] ([i915#16600]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-dg2-7/igt@kms_feature_discovery@hdr.html * igt@kms_feature_discovery@psr1: - shard-tglu: NOTRUN -> [SKIP][208] ([i915#658]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-tglu-7/igt@kms_feature_discovery@psr1.html - shard-dg2: NOTRUN -> [SKIP][209] ([i915#658]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-dg2-3/igt@kms_feature_discovery@psr1.html - shard-rkl: NOTRUN -> [SKIP][210] ([i915#658]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-rkl-3/igt@kms_feature_discovery@psr1.html - shard-dg1: NOTRUN -> [SKIP][211] ([i915#658]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-dg1-16/igt@kms_feature_discovery@psr1.html * igt@kms_feature_discovery@vrr: - shard-rkl: NOTRUN -> [SKIP][212] ([i915#16600]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-rkl-3/igt@kms_feature_discovery@vrr.html - shard-tglu: NOTRUN -> [SKIP][213] ([i915#16600]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-tglu-2/igt@kms_feature_discovery@vrr.html * igt@kms_flip@2x-blocking-wf_vblank: - shard-dg2: NOTRUN -> [SKIP][214] ([i915#9934]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-dg2-3/igt@kms_flip@2x-blocking-wf_vblank.html * igt@kms_flip@2x-flip-vs-absolute-wf_vblank: - shard-tglu: NOTRUN -> [SKIP][215] ([i915#3637] / [i915#9934]) +4 other tests skip [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-tglu-9/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html * igt@kms_flip@2x-flip-vs-dpms: - shard-rkl: NOTRUN -> [SKIP][216] ([i915#9934]) +5 other tests skip [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-rkl-8/igt@kms_flip@2x-flip-vs-dpms.html * igt@kms_flip@2x-flip-vs-fences: - shard-dg2: NOTRUN -> [SKIP][217] ([i915#8381]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-dg2-5/igt@kms_flip@2x-flip-vs-fences.html - shard-tglu-1: NOTRUN -> [SKIP][218] ([i915#3637] / [i915#9934]) +2 other tests skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-tglu-1/igt@kms_flip@2x-flip-vs-fences.html * igt@kms_flip@2x-nonexisting-fb-interruptible: - shard-dg1: NOTRUN -> [SKIP][219] ([i915#9934]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-dg1-13/igt@kms_flip@2x-nonexisting-fb-interruptible.html * igt@kms_flip@2x-wf_vblank-ts-check-interruptible: - shard-rkl: NOTRUN -> [SKIP][220] ([i915#14544] / [i915#9934]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-rkl-6/igt@kms_flip@2x-wf_vblank-ts-check-interruptible.html * igt@kms_flip@flip-vs-expired-vblank: - shard-mtlp: [PASS][221] -> [FAIL][222] ([i915#13027]) +1 other test fail [221]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19018/shard-mtlp-8/igt@kms_flip@flip-vs-expired-vblank.html [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-mtlp-2/igt@kms_flip@flip-vs-expired-vblank.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling: - shard-tglu-1: NOTRUN -> [SKIP][223] ([i915#15643]) +2 other tests skip [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling: - shard-dg2: NOTRUN -> [SKIP][224] ([i915#15643] / [i915#5190]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-dg2-7/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling: - shard-tglu: NOTRUN -> [SKIP][225] ([i915#15643]) +5 other tests skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-tglu-4/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html - shard-mtlp: NOTRUN -> [SKIP][226] ([i915#3555] / [i915#8810] / [i915#8813]) [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][227] ([i915#8810] / [i915#8813]) [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling: - shard-rkl: NOTRUN -> [SKIP][228] ([i915#15643]) +3 other tests skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-rkl-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling: - shard-dg2: NOTRUN -> [SKIP][229] ([i915#15643]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-dg2-1/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html - shard-mtlp: NOTRUN -> [SKIP][230] ([i915#15643]) [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html * igt@kms_flip_scaled_crc@flip-p010-4tile-to-p016-4tile: - shard-dg1: NOTRUN -> [SKIP][231] ([i915#15643]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-dg1-12/igt@kms_flip_scaled_crc@flip-p010-4tile-to-p016-4tile.html * igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-indfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][232] ([i915#15104] / [i915#15990]) +1 other test skip [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][233] ([i915#15990] / [i915#8708]) +7 other tests skip [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][234] ([i915#10056] / [i915#16593]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-glk9/igt@kms_frontbuffer_tracking@fbc-suspend.html * igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-pri-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][235] ([i915#15989]) +9 other tests skip [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-dg2-1/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-spr-indfb-onoff: - shard-rkl: [PASS][236] -> [SKIP][237] ([i915#15989]) +9 other tests skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19018/shard-rkl-6/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-spr-indfb-onoff.html [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-rkl-2/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbchdr-suspend: - shard-tglu: NOTRUN -> [SKIP][238] ([i915#15989]) +12 other tests skip [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-tglu-7/igt@kms_frontbuffer_tracking@fbchdr-suspend.html * igt@kms_frontbuffer_tracking@fbchdr-tiling-linear: - shard-rkl: NOTRUN -> [SKIP][239] ([i915#15989]) +17 other tests skip [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-rkl-7/igt@kms_frontbuffer_tracking@fbchdr-tiling-linear.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][240] ([i915#15102]) +31 other tests skip [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-rkl-8/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-gtt.html - shard-dg1: NOTRUN -> [SKIP][241] ([i915#15104] / [i915#15990]) +1 other test skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-dg1-13/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-gtt.html - shard-mtlp: NOTRUN -> [SKIP][242] ([i915#15104] / [i915#15990]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-mtlp-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][243] ([i915#15990] / [i915#8708]) +5 other tests skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-dg1-13/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff: - shard-mtlp: NOTRUN -> [SKIP][244] ([i915#15991] / [i915#1825]) +6 other tests skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-mtlp-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-move: - shard-dg2: NOTRUN -> [SKIP][245] ([i915#15991] / [i915#5354]) +15 other tests skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt: - shard-dg1: NOTRUN -> [SKIP][246] ([i915#15102]) +9 other tests skip [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-dg1-13/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][247] ([i915#15990] / [i915#8708]) +3 other tests skip [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-mtlp-1/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-pri-indfb-multidraw: - shard-dg2: NOTRUN -> [SKIP][248] ([i915#15102]) +19 other tests skip [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-cur-indfb-draw-mmap-wc: - shard-glk: NOTRUN -> [SKIP][249] +429 other tests skip [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-glk6/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-indfb-pgflip-blt: - shard-tglu: NOTRUN -> [SKIP][250] ([i915#15102]) +41 other tests skip [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-tglu-2/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-spr-indfb-draw-pwrite: - shard-dg1: NOTRUN -> [SKIP][251] ([i915#15102] / [i915#4423]) [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-dg1-13/igt@kms_frontbuffer_tracking@fbcpsrhdr-1p-primscrn-spr-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-primscrn-cur-indfb-draw-mmap-wc: - shard-glk10: NOTRUN -> [SKIP][252] +222 other tests skip [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-glk10/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-spr-indfb-onoff: - shard-dg1: NOTRUN -> [SKIP][253] +27 other tests skip [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsrhdr-2p-scndscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@hdr-1p-primscrn-spr-indfb-draw-render: - shard-glk: [PASS][254] -> [SKIP][255] +2 other tests skip [254]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19018/shard-glk8/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-spr-indfb-draw-render.html [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-glk4/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@hdr-2p-scndscrn-cur-indfb-move: - shard-mtlp: NOTRUN -> [SKIP][256] ([i915#15991]) +7 other tests skip [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-mtlp-8/igt@kms_frontbuffer_tracking@hdr-2p-scndscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@hdr-rgb101010-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][257] ([i915#15990]) +9 other tests skip [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-dg2-7/igt@kms_frontbuffer_tracking@hdr-rgb101010-draw-mmap-wc.html - shard-dg1: NOTRUN -> [SKIP][258] ([i915#15990]) +8 other tests skip [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-dg1-13/igt@kms_frontbuffer_tracking@hdr-rgb101010-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@hdr-rgb101010-draw-pwrite: - shard-dg1: NOTRUN -> [SKIP][259] ([i915#15989]) +4 other tests skip [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-dg1-19/igt@kms_frontbuffer_tracking@hdr-rgb101010-draw-pwrite.html * igt@kms_frontbuffer_tracking@hdr-shrfb-scaledprimary: - shard-tglu-1: NOTRUN -> [SKIP][260] ([i915#15989]) +10 other tests skip [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-tglu-1/igt@kms_frontbuffer_tracking@hdr-shrfb-scaledprimary.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render: - shard-rkl: NOTRUN -> [SKIP][261] ([i915#14544]) +13 other tests skip [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-wc: - shard-rkl: NOTRUN -> [SKIP][262] ([i915#1825]) +3 other tests skip [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc: - shard-tglu: NOTRUN -> [SKIP][263] +100 other tests skip [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-tglu-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-cur-indfb-move: - shard-rkl: NOTRUN -> [SKIP][264] ([i915#14544] / [i915#15102]) +1 other test skip [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-rkl-6/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-spr-indfb-draw-blt: - shard-mtlp: NOTRUN -> [SKIP][265] ([i915#15989]) +5 other tests skip [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-mtlp-2/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-spr-indfb-move: - shard-tglu-1: NOTRUN -> [SKIP][266] ([i915#15102]) +16 other tests skip [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-tglu-1/igt@kms_frontbuffer_tracking@psrhdr-1p-primscrn-spr-indfb-move.html * igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-pri-shrfb-draw-render: - shard-dg2: NOTRUN -> [SKIP][267] ([i915#15991]) +23 other tests skip [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-dg2-7/igt@kms_frontbuffer_tracking@psrhdr-2p-scndscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@psrhdr-rgb565-draw-mmap-gtt: - shard-glk11: NOTRUN -> [SKIP][268] +143 other tests skip [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-glk11/igt@kms_frontbuffer_tracking@psrhdr-rgb565-draw-mmap-gtt.html - shard-mtlp: NOTRUN -> [SKIP][269] ([i915#15990]) +2 other tests skip [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-mtlp-7/igt@kms_frontbuffer_tracking@psrhdr-rgb565-draw-mmap-gtt.html * igt@kms_hdmi_inject@inject-audio: - shard-mtlp: [PASS][270] -> [SKIP][271] ([i915#15725]) [270]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19018/shard-mtlp-2/igt@kms_hdmi_inject@inject-audio.html [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-mtlp-1/igt@kms_hdmi_inject@inject-audio.html * igt@kms_hdr@bpc-switch-dpms: - shard-rkl: [PASS][272] -> [SKIP][273] ([i915#16644] / [i915#3555] / [i915#8228]) [272]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19018/shard-rkl-1/igt@kms_hdr@bpc-switch-dpms.html [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-rkl-8/igt@kms_hdr@bpc-switch-dpms.html - shard-tglu-1: NOTRUN -> [SKIP][274] ([i915#3555] / [i915#8228]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-tglu-1/igt@kms_hdr@bpc-switch-dpms.html * igt@kms_hdr@brightness-with-hdr: - shard-mtlp: NOTRUN -> [SKIP][275] ([i915#12713] / [i915#16490]) [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-mtlp-6/igt@kms_hdr@brightness-with-hdr.html - shard-dg2: NOTRUN -> [SKIP][276] ([i915#12713] / [i915#16518]) [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-dg2-6/igt@kms_hdr@brightness-with-hdr.html - shard-rkl: NOTRUN -> [SKIP][277] ([i915#12713] / [i915#16644]) [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-rkl-8/igt@kms_hdr@brightness-with-hdr.html - shard-dg1: NOTRUN -> [SKIP][278] ([i915#1187] / [i915#12713]) [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-dg1-13/igt@kms_hdr@brightness-with-hdr.html - shard-tglu: NOTRUN -> [SKIP][279] ([i915#12713]) [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-tglu-7/igt@kms_hdr@brightness-with-hdr.html * igt@kms_hdr@invalid-metadata-sizes: - shard-rkl: NOTRUN -> [SKIP][280] ([i915#16644] / [i915#3555] / [i915#8228]) +1 other test skip [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-rkl-5/igt@kms_hdr@invalid-metadata-sizes.html * igt@kms_joiner@basic-force-big-joiner: - shard-tglu: NOTRUN -> [SKIP][281] ([i915#15459]) [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-tglu-3/igt@kms_joiner@basic-force-big-joiner.html * igt@kms_joiner@basic-max-non-joiner: - shard-tglu: NOTRUN -> [SKIP][282] ([i915#13688]) [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-tglu-4/igt@kms_joiner@basic-max-non-joiner.html * igt@kms_joiner@invalid-modeset-force-ultra-joiner: - shard-dg2: NOTRUN -> [SKIP][283] ([i915#15458]) [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-dg2-8/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html - shard-rkl: NOTRUN -> [SKIP][284] ([i915#14544] / [i915#15458]) [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-rkl-6/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html - shard-dg1: NOTRUN -> [SKIP][285] ([i915#15458]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-dg1-17/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html - shard-tglu: NOTRUN -> [SKIP][286] ([i915#15458]) [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-tglu-3/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html - shard-mtlp: NOTRUN -> [SKIP][287] ([i915#15458]) [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-mtlp-2/igt@kms_joiner@invalid-modeset-force-ultra-joiner.html * igt@kms_panel_fitting@legacy: - shard-tglu: NOTRUN -> [SKIP][288] ([i915#6301]) [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-tglu-5/igt@kms_panel_fitting@legacy.html - shard-dg2: NOTRUN -> [SKIP][289] ([i915#6301]) [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-dg2-7/igt@kms_panel_fitting@legacy.html - shard-rkl: NOTRUN -> [SKIP][290] ([i915#6301]) [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-rkl-2/igt@kms_panel_fitting@legacy.html - shard-dg1: NOTRUN -> [SKIP][291] ([i915#6301]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-dg1-14/igt@kms_panel_fitting@legacy.html * igt@kms_pipe_stress@stress-xrgb8888-yftiled: - shard-tglu: NOTRUN -> [SKIP][292] ([i915#14712]) [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-tglu-3/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html - shard-glk11: NOTRUN -> [DMESG-WARN][293] ([i915#118]) [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-glk11/igt@kms_pipe_stress@stress-xrgb8888-yftiled.html * igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier: - shard-tglu: NOTRUN -> [SKIP][294] ([i915#15709]) +5 other tests skip [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-tglu-3/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier.html * igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier-source-clamping: - shard-tglu-1: NOTRUN -> [SKIP][295] ([i915#15709]) +1 other test skip [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-tglu-1/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-modifier-source-clamping.html * igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier: - shard-rkl: NOTRUN -> [SKIP][296] ([i915#15709]) +2 other tests skip [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-rkl-3/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier.html - shard-dg1: NOTRUN -> [SKIP][297] ([i915#15709]) +1 other test skip [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-dg1-13/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier.html * igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier@pipe-b-plane-5: - shard-mtlp: NOTRUN -> [SKIP][298] ([i915#16386]) +1 other test skip [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-mtlp-1/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier@pipe-b-plane-5.html * igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-5: - shard-dg2: NOTRUN -> [SKIP][299] ([i915#16386]) +1 other test skip [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-dg2-8/igt@kms_plane@pixel-format-x-tiled-modifier@pipe-b-plane-5.html * igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier@pipe-b-plane-7: - shard-tglu-1: NOTRUN -> [SKIP][300] ([i915#16386]) +1 other test skip [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-tglu-1/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-cc-modifier@pipe-b-plane-7.html * igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier-source-clamping: - shard-dg2: NOTRUN -> [SKIP][301] ([i915#15709]) +2 other tests skip [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-dg2-6/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier-source-clamping.html * igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier@pipe-a-plane-7: - shard-tglu: NOTRUN -> [SKIP][302] ([i915#16386]) +1 other test skip [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-tglu-6/igt@kms_plane@pixel-format-y-tiled-gen12-rc-ccs-modifier@pipe-a-plane-7.html * igt@kms_plane@planar-pixel-format-settings@nv12-tile4-src-y: - shard-rkl: NOTRUN -> [SKIP][303] ([i915#16112]) [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-rkl-8/igt@kms_plane@planar-pixel-format-settings@nv12-tile4-src-y.html * igt@kms_plane_alpha_blend@alpha-basic: - shard-glk10: NOTRUN -> [FAIL][304] ([i915#12178]) [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-glk10/igt@kms_plane_alpha_blend@alpha-basic.html * igt@kms_plane_alpha_blend@alpha-basic@pipe-c-hdmi-a-1: - shard-glk10: NOTRUN -> [FAIL][305] ([i915#7862]) +1 other test fail [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-glk10/igt@kms_plane_alpha_blend@alpha-basic@pipe-c-hdmi-a-1.html * igt@kms_plane_lowres@tiling-yf: - shard-dg1: NOTRUN -> [SKIP][306] ([i915#3555]) +2 other tests skip [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-dg1-13/igt@kms_plane_lowres@tiling-yf.html * igt@kms_plane_multiple@2x-tiling-none: - shard-tglu: NOTRUN -> [SKIP][307] ([i915#13958]) [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-tglu-3/igt@kms_plane_multiple@2x-tiling-none.html * igt@kms_plane_multiple@2x-tiling-x: - shard-rkl: NOTRUN -> [SKIP][308] ([i915#13958]) [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-rkl-2/igt@kms_plane_multiple@2x-tiling-x.html * igt@kms_plane_multiple@2x-tiling-y: - shard-tglu-1: NOTRUN -> [SKIP][309] ([i915#13958]) [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-tglu-1/igt@kms_plane_multiple@2x-tiling-y.html * igt@kms_plane_multiple@tiling-4: - shard-tglu-1: NOTRUN -> [SKIP][310] ([i915#14259]) [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-tglu-1/igt@kms_plane_multiple@tiling-4.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b: - shard-rkl: NOTRUN -> [SKIP][311] ([i915#15329]) +3 other tests skip [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-rkl-5/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-b.html * igt@kms_pm_backlight@basic-brightness: - shard-tglu: NOTRUN -> [SKIP][312] ([i915#12343] / [i915#9812]) [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-tglu-4/igt@kms_pm_backlight@basic-brightness.html * igt@kms_pm_backlight@fade-with-dpms: - shard-dg2: NOTRUN -> [SKIP][313] ([i915#12343] / [i915#5354]) [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-dg2-7/igt@kms_pm_backlight@fade-with-dpms.html * igt@kms_pm_dc@dc5-pageflip-negative: - shard-tglu: NOTRUN -> [SKIP][314] ([i915#9685]) [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-tglu-8/igt@kms_pm_dc@dc5-pageflip-negative.html * igt@kms_pm_dc@dc5-retention-flops: - shard-rkl: NOTRUN -> [SKIP][315] ([i915#3828]) +1 other test skip [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-rkl-7/igt@kms_pm_dc@dc5-retention-flops.html * igt@kms_pm_lpsp@screens-disabled: - shard-tglu-1: NOTRUN -> [SKIP][316] ([i915#8430]) [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-tglu-1/igt@kms_pm_lpsp@screens-disabled.html * igt@kms_pm_rpm@dpms-non-lpsp: - shard-tglu: NOTRUN -> [SKIP][317] ([i915#15073]) [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-tglu-6/igt@kms_pm_rpm@dpms-non-lpsp.html * igt@kms_pm_rpm@modeset-lpsp-stress: - shard-rkl: [PASS][318] -> [SKIP][319] ([i915#15073]) +1 other test skip [318]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19018/shard-rkl-8/igt@kms_pm_rpm@modeset-lpsp-stress.html [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-rkl-3/igt@kms_pm_rpm@modeset-lpsp-stress.html - shard-dg1: [PASS][320] -> [SKIP][321] ([i915#15073]) +2 other tests skip [320]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19018/shard-dg1-15/igt@kms_pm_rpm@modeset-lpsp-stress.html [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-dg1-16/igt@kms_pm_rpm@modeset-lpsp-stress.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-tglu-1: NOTRUN -> [SKIP][322] ([i915#15073]) [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-tglu-1/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-dg2: [PASS][323] -> [SKIP][324] ([i915#15073]) +1 other test skip [323]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19018/shard-dg2-6/igt@kms_pm_rpm@modeset-non-lpsp-stress.html [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-dg2-4/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-dg2: NOTRUN -> [SKIP][325] ([i915#15073]) [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-dg2-4/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@kms_pm_rpm@system-suspend-idle: - shard-rkl: [PASS][326] -> [INCOMPLETE][327] ([i915#14419]) [326]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19018/shard-rkl-4/igt@kms_pm_rpm@system-suspend-idle.html [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-rkl-6/igt@kms_pm_rpm@system-suspend-idle.html * igt@kms_pm_rpm@system-suspend-modeset: - shard-glk: NOTRUN -> [INCOMPLETE][328] ([i915#10553]) [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-glk3/igt@kms_pm_rpm@system-suspend-modeset.html - shard-rkl: NOTRUN -> [INCOMPLETE][329] ([i915#14419]) [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-rkl-6/igt@kms_pm_rpm@system-suspend-modeset.html * igt@kms_prime@basic-crc-hybrid: - shard-tglu: NOTRUN -> [SKIP][330] ([i915#6524]) +2 other tests skip [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-tglu-5/igt@kms_prime@basic-crc-hybrid.html * igt@kms_properties@colorop-properties-legacy: - shard-dg1: [PASS][331] -> [DMESG-WARN][332] ([i915#4423]) [331]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19018/shard-dg1-16/igt@kms_properties@colorop-properties-legacy.html [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-dg1-13/igt@kms_properties@colorop-properties-legacy.html * igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf: - shard-dg2: NOTRUN -> [SKIP][333] ([i915#11520]) +5 other tests skip [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-dg2-7/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area: - shard-dg1: NOTRUN -> [SKIP][334] ([i915#11520]) +3 other tests skip [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-dg1-17/igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf: - shard-tglu: NOTRUN -> [SKIP][335] ([i915#11520]) +8 other tests skip [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-tglu-6/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf: - shard-glk: NOTRUN -> [SKIP][336] ([i915#11520]) +9 other tests skip [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-glk4/igt@kms_psr2_sf@pr-cursor-plane-move-continuous-sf.html * igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf: - shard-snb: NOTRUN -> [SKIP][337] ([i915#11520]) +2 other tests skip [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-snb7/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf.html - shard-mtlp: NOTRUN -> [SKIP][338] ([i915#12316]) +2 other tests skip [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-mtlp-1/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf: - shard-glk10: NOTRUN -> [SKIP][339] ([i915#11520]) +7 other tests skip [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-glk10/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-sf.html * igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-sf: - shard-tglu-1: NOTRUN -> [SKIP][340] ([i915#11520]) +4 other tests skip [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-tglu-1/igt@kms_psr2_sf@psr2-cursor-plane-move-continuous-sf.html * igt@kms_psr2_sf@psr2-cursor-plane-update-sf: - shard-glk11: NOTRUN -> [SKIP][341] ([i915#11520]) +2 other tests skip [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-glk11/igt@kms_psr2_sf@psr2-cursor-plane-update-sf.html * igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf: - shard-rkl: NOTRUN -> [SKIP][342] ([i915#11520]) +4 other tests skip [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-rkl-8/igt@kms_psr2_sf@psr2-overlay-plane-update-continuous-sf.html * igt@kms_psr2_su@page_flip-nv12: - shard-dg2: NOTRUN -> [SKIP][343] ([i915#9683]) [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-dg2-8/igt@kms_psr2_su@page_flip-nv12.html - shard-rkl: NOTRUN -> [SKIP][344] ([i915#9683]) [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-rkl-2/igt@kms_psr2_su@page_flip-nv12.html - shard-dg1: NOTRUN -> [SKIP][345] ([i915#9683]) [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-dg1-14/igt@kms_psr2_su@page_flip-nv12.html - shard-tglu: NOTRUN -> [SKIP][346] ([i915#9683]) [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-tglu-6/igt@kms_psr2_su@page_flip-nv12.html - shard-mtlp: NOTRUN -> [SKIP][347] ([i915#4348]) [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-mtlp-6/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr@fbc-psr2-basic: - shard-dg1: NOTRUN -> [SKIP][348] ([i915#1072] / [i915#9732]) +6 other tests skip [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-dg1-16/igt@kms_psr@fbc-psr2-basic.html - shard-tglu: NOTRUN -> [SKIP][349] ([i915#9732]) +16 other tests skip [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-tglu-5/igt@kms_psr@fbc-psr2-basic.html * igt@kms_psr@fbc-psr2-basic@edp-1: - shard-mtlp: NOTRUN -> [SKIP][350] ([i915#9688]) +4 other tests skip [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-mtlp-3/igt@kms_psr@fbc-psr2-basic@edp-1.html * igt@kms_psr@fbc-psr2-cursor-blt: - shard-tglu-1: NOTRUN -> [SKIP][351] ([i915#9732]) +8 other tests skip [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-tglu-1/igt@kms_psr@fbc-psr2-cursor-blt.html * igt@kms_psr@fbc-psr2-primary-blt: - shard-rkl: NOTRUN -> [SKIP][352] ([i915#1072] / [i915#9732]) +14 other tests skip [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-rkl-5/igt@kms_psr@fbc-psr2-primary-blt.html * igt@kms_psr@pr-cursor-blt: - shard-rkl: NOTRUN -> [SKIP][353] ([i915#1072] / [i915#14544] / [i915#9732]) +1 other test skip [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-rkl-6/igt@kms_psr@pr-cursor-blt.html * igt@kms_psr@psr2-primary-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][354] ([i915#1072] / [i915#9732]) +11 other tests skip [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-dg2-4/igt@kms_psr@psr2-primary-mmap-gtt.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-tglu-1: NOTRUN -> [SKIP][355] ([i915#15949]) [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-tglu-1/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-dg1: NOTRUN -> [SKIP][356] ([i915#15949]) [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-dg1-19/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html - shard-tglu: NOTRUN -> [SKIP][357] ([i915#15949]) [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-tglu-3/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html - shard-dg2: NOTRUN -> [SKIP][358] ([i915#15949]) [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-dg2-6/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html - shard-rkl: NOTRUN -> [SKIP][359] ([i915#15949]) [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-rkl-7/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rotation_crc@multiplane-rotation-cropping-top: - shard-glk10: NOTRUN -> [INCOMPLETE][360] ([i915#15492] / [i915#16184]) [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-glk10/igt@kms_rotation_crc@multiplane-rotation-cropping-top.html * igt@kms_rotation_crc@primary-4-tiled-reflect-x-180: - shard-tglu: NOTRUN -> [SKIP][361] ([i915#5289]) +1 other test skip [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-tglu-4/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-0: - shard-mtlp: NOTRUN -> [SKIP][362] ([i915#5289]) [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-mtlp-3/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-tglu-1: NOTRUN -> [SKIP][363] ([i915#5289]) [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-tglu-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-dg2: NOTRUN -> [SKIP][364] ([i915#12755] / [i915#15867] / [i915#5190]) [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-dg2-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-tglu: NOTRUN -> [SKIP][365] ([i915#8623]) [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-tglu-7/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-2: - shard-glk: NOTRUN -> [INCOMPLETE][366] ([i915#12276]) +3 other tests incomplete [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-glk1/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-a-hdmi-a-2.html * igt@kms_vrr@flip-suspend: - shard-dg2: NOTRUN -> [SKIP][367] ([i915#15243] / [i915#3555]) [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-dg2-7/igt@kms_vrr@flip-suspend.html * igt@kms_vrr@lobf: - shard-dg2: NOTRUN -> [SKIP][368] ([i915#11920]) [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-dg2-7/igt@kms_vrr@lobf.html * igt@kms_vrr@seamless-rr-switch-drrs: - shard-tglu: NOTRUN -> [SKIP][369] ([i915#9906]) [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-tglu-7/igt@kms_vrr@seamless-rr-switch-drrs.html * igt@perf@gen8-unprivileged-single-ctx-counters: - shard-dg2: NOTRUN -> [SKIP][370] ([i915#2436]) [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-dg2-8/igt@perf@gen8-unprivileged-single-ctx-counters.html - shard-rkl: NOTRUN -> [SKIP][371] ([i915#2436]) [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-rkl-4/igt@perf@gen8-unprivileged-single-ctx-counters.html * igt@perf_pmu@busy-double-start: - shard-mtlp: [PASS][372] -> [FAIL][373] ([i915#4349]) +1 other test fail [372]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19018/shard-mtlp-1/igt@perf_pmu@busy-double-start.html [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-mtlp-3/igt@perf_pmu@busy-double-start.html * igt@perf_pmu@module-unload: - shard-glk: NOTRUN -> [ABORT][374] ([i915#15778]) [374]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-glk6/igt@perf_pmu@module-unload.html - shard-tglu-1: NOTRUN -> [ABORT][375] ([i915#13029] / [i915#15778]) [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-tglu-1/igt@perf_pmu@module-unload.html * igt@perf_pmu@rc6-all-gts: - shard-tglu: NOTRUN -> [SKIP][376] ([i915#8516]) [376]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-tglu-6/igt@perf_pmu@rc6-all-gts.html * igt@prime_mmap@test_aperture_limit: - shard-dg2: NOTRUN -> [SKIP][377] ([i915#14121]) +1 other test skip [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-dg2-6/igt@prime_mmap@test_aperture_limit.html * igt@prime_udl@share-import: - shard-dg2: NOTRUN -> [SKIP][378] ([i915#16420]) [378]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-dg2-8/igt@prime_udl@share-import.html * igt@prime_udl@share-import-addfb: - shard-dg1: NOTRUN -> [SKIP][379] ([i915#16420]) [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-dg1-17/igt@prime_udl@share-import-addfb.html #### Possible fixes #### * igt@gem_eio@kms: - shard-tglu: [ABORT][380] ([i915#13363] / [i915#16837]) -> [PASS][381] [380]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19018/shard-tglu-4/igt@gem_eio@kms.html [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-tglu-4/igt@gem_eio@kms.html * igt@gem_exec_big@single: - shard-mtlp: [FAIL][382] ([i915#15871]) -> [PASS][383] [382]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19018/shard-mtlp-7/igt@gem_exec_big@single.html [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-mtlp-3/igt@gem_exec_big@single.html * igt@gem_exec_suspend@basic-s0: - shard-dg2: [INCOMPLETE][384] ([i915#13356]) -> [PASS][385] +1 other test pass [384]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19018/shard-dg2-1/igt@gem_exec_suspend@basic-s0.html [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-dg2-1/igt@gem_exec_suspend@basic-s0.html * igt@gem_exec_suspend@basic-s4-devices: - shard-mtlp: [FAIL][386] ([i915#16594]) -> [PASS][387] +1 other test pass [386]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19018/shard-mtlp-7/igt@gem_exec_suspend@basic-s4-devices.html [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-mtlp-2/igt@gem_exec_suspend@basic-s4-devices.html * igt@gem_softpin@noreloc-s3: - shard-rkl: [INCOMPLETE][388] ([i915#13809] / [i915#16226]) -> [PASS][389] [388]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19018/shard-rkl-4/igt@gem_softpin@noreloc-s3.html [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-rkl-2/igt@gem_softpin@noreloc-s3.html * igt@i915_suspend@debugfs-reader: - shard-glk: [INCOMPLETE][390] ([i915#16182] / [i915#4817]) -> [PASS][391] [390]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19018/shard-glk2/igt@i915_suspend@debugfs-reader.html [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-glk4/igt@i915_suspend@debugfs-reader.html * igt@i915_suspend@fence-restore-tiled2untiled: - shard-rkl: [INCOMPLETE][392] ([i915#4817]) -> [PASS][393] +1 other test pass [392]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19018/shard-rkl-6/igt@i915_suspend@fence-restore-tiled2untiled.html [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-rkl-8/igt@i915_suspend@fence-restore-tiled2untiled.html * igt@kms_async_flips@async-flip-suspend-resume: - shard-rkl: [ABORT][394] ([i915#15132]) -> [PASS][395] [394]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19018/shard-rkl-1/igt@kms_async_flips@async-flip-suspend-resume.html [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-rkl-8/igt@kms_async_flips@async-flip-suspend-resume.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs: - shard-mtlp: [FAIL][396] ([i915#12469] / [i915#15733]) -> [PASS][397] [396]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19018/shard-mtlp-2/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs.html [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-mtlp-3/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-a-edp-1: - shard-mtlp: [FAIL][398] ([i915#15733]) -> [PASS][399] +3 other tests pass [398]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19018/shard-mtlp-2/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-a-edp-1.html [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-mtlp-3/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-a-edp-1.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc: - shard-rkl: [INCOMPLETE][400] ([i915#15582]) -> [PASS][401] +1 other test pass [400]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19018/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-rkl-8/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1: - shard-glk: [INCOMPLETE][402] ([i915#15582]) -> [PASS][403] [402]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19018/shard-glk6/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1.html [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-glk2/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-a-hdmi-a-1.html * igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1: - shard-tglu: [FAIL][404] ([i915#13566]) -> [PASS][405] +1 other test pass [404]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19018/shard-tglu-5/igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1.html [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-tglu-2/igt@kms_cursor_crc@cursor-sliding-128x42@pipe-a-hdmi-a-1.html * igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible: - shard-dg2: [FAIL][406] ([i915#10826]) -> [PASS][407] +1 other test pass [406]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19018/shard-dg2-4/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-dg2-4/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html - shard-dg1: [FAIL][408] ([i915#14600]) -> [PASS][409] [408]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19018/shard-dg1-17/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-dg1-15/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html * igt@kms_flip@flip-vs-expired-vblank-interruptible: - shard-tglu: [FAIL][410] ([i915#13027]) -> [PASS][411] +1 other test pass [410]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19018/shard-tglu-5/igt@kms_flip@flip-vs-expired-vblank-interruptible.html [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-tglu-6/igt@kms_flip@flip-vs-expired-vblank-interruptible.html * igt@kms_flip@plain-flip-fb-recreate-interruptible@a-vga1: - shard-snb: [FAIL][412] ([i915#14600]) -> [PASS][413] +1 other test pass [412]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19018/shard-snb7/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-vga1.html [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-snb6/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-vga1.html * igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-pri-shrfb-draw-blt: - shard-glk: [SKIP][414] -> [PASS][415] +9 other tests pass [414]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19018/shard-glk9/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-pri-shrfb-draw-blt.html [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-glk8/igt@kms_frontbuffer_tracking@fbchdr-1p-primscrn-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@hdr-1p-primscrn-indfb-plflip-blt: - shard-rkl: [SKIP][416] ([i915#15989]) -> [PASS][417] +2 other tests pass [416]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19018/shard-rkl-8/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-indfb-plflip-blt.html [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-rkl-6/igt@kms_frontbuffer_tracking@hdr-1p-primscrn-indfb-plflip-blt.html * igt@kms_pm_rpm@dpms-lpsp: - shard-rkl: [SKIP][418] ([i915#14544] / [i915#15073]) -> [PASS][419] +1 other test pass [418]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19018/shard-rkl-6/igt@kms_pm_rpm@dpms-lpsp.html [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-rkl-2/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@dpms-mode-unset-lpsp: - shard-dg1: [SKIP][420] ([i915#15073]) -> [PASS][421] [420]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19018/shard-dg1-18/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html [421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-dg1-14/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-dg2: [SKIP][422] ([i915#15073]) -> [PASS][423] [422]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19018/shard-dg2-4/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html [423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-dg2-8/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@kms_pm_rpm@system-suspend-idle: - shard-dg2: [INCOMPLETE][424] ([i915#14419]) -> [PASS][425] [424]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19018/shard-dg2-6/igt@kms_pm_rpm@system-suspend-idle.html [425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-dg2-8/igt@kms_pm_rpm@system-suspend-idle.html * igt@perf_pmu@busy-idle: - shard-mtlp: [FAIL][426] ([i915#4349]) -> [PASS][427] +2 other tests pass [426]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19018/shard-mtlp-5/igt@perf_pmu@busy-idle.html [427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-mtlp-7/igt@perf_pmu@busy-idle.html * igt@perf_pmu@busy-idle@ccs0: - shard-dg2: [FAIL][428] ([i915#4349]) -> [PASS][429] +1 other test pass [428]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19018/shard-dg2-4/igt@perf_pmu@busy-idle@ccs0.html [429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-dg2-1/igt@perf_pmu@busy-idle@ccs0.html * igt@perf_pmu@rc6-suspend: - shard-rkl: [ABORT][430] ([i915#15131]) -> [PASS][431] [430]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19018/shard-rkl-1/igt@perf_pmu@rc6-suspend.html [431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-rkl-4/igt@perf_pmu@rc6-suspend.html #### Warnings #### * igt@api_intel_bb@crc32: - shard-rkl: [SKIP][432] ([i915#14544] / [i915#6230]) -> [SKIP][433] ([i915#6230]) [432]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19018/shard-rkl-6/igt@api_intel_bb@crc32.html [433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-rkl-3/igt@api_intel_bb@crc32.html * igt@gem_eio@kms: - shard-rkl: [ABORT][434] ([i915#13363] / [i915#16837]) -> [ABORT][435] ([i915#16837]) [434]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19018/shard-rkl-5/igt@gem_eio@kms.html [435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-rkl-6/igt@gem_eio@kms.html - shard-dg1: [ABORT][436] -> [ABORT][437] ([i915#16837]) [436]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19018/shard-dg1-12/igt@gem_eio@kms.html [437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-dg1-13/igt@gem_eio@kms.html * igt@gem_exec_balancer@parallel-dmabuf-import-out-fence: - shard-rkl: [SKIP][438] ([i915#4525]) -> [SKIP][439] ([i915#14544] / [i915#4525]) [438]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19018/shard-rkl-8/igt@gem_exec_balancer@parallel-dmabuf-import-out-fence.html [439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-rkl-6/igt@gem_exec_balancer@parallel-dmabuf-import-out-fence.html * igt@gem_exec_capture@capture-invisible@smem0: - shard-rkl: [SKIP][440] ([i915#6334]) -> [SKIP][441] ([i915#14544] / [i915#6334]) +1 other test skip [440]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19018/shard-rkl-7/igt@gem_exec_capture@capture-invisible@smem0.html [441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-rkl-6/igt@gem_exec_capture@capture-invisible@smem0.html * igt@gem_exec_reloc@basic-write-gtt-active: - shard-rkl: [SKIP][442] ([i915#3281]) -> [SKIP][443] ([i915#14544] / [i915#3281]) +2 other tests skip [442]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19018/shard-rkl-1/igt@gem_exec_reloc@basic-write-gtt-active.html [443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-rkl-6/igt@gem_exec_reloc@basic-write-gtt-active.html * igt@gem_exec_reloc@basic-write-wc-noreloc: - shard-rkl: [SKIP][444] ([i915#14544] / [i915#3281]) -> [SKIP][445] ([i915#3281]) +1 other test skip [444]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19018/shard-rkl-6/igt@gem_exec_reloc@basic-write-wc-noreloc.html [445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-rkl-8/igt@gem_exec_reloc@basic-write-wc-noreloc.html * igt@gem_partial_pwrite_pread@write-snoop: - shard-rkl: [SKIP][446] ([i915#14544] / [i915#3282]) -> [SKIP][447] ([i915#3282]) +2 other tests skip [446]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19018/shard-rkl-6/igt@gem_partial_pwrite_pread@write-snoop.html [447]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-rkl-7/igt@gem_partial_pwrite_pread@write-snoop.html * igt@gem_partial_pwrite_pread@writes-after-reads: - shard-rkl: [SKIP][448] ([i915#3282]) -> [SKIP][449] ([i915#14544] / [i915#3282]) +2 other tests skip [448]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19018/shard-rkl-2/igt@gem_partial_pwrite_pread@writes-after-reads.html [449]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-rkl-6/igt@gem_partial_pwrite_pread@writes-after-reads.html * igt@gem_set_tiling_vs_blt@tiled-to-untiled: - shard-rkl: [SKIP][450] ([i915#8411]) -> [SKIP][451] ([i915#14544] / [i915#8411]) [450]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19018/shard-rkl-2/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html [451]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-rkl-6/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html * igt@gem_userptr_blits@unsync-unmap-after-close: - shard-rkl: [SKIP][452] ([i915#14544] / [i915#3297]) -> [SKIP][453] ([i915#3297]) [452]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19018/shard-rkl-6/igt@gem_userptr_blits@unsync-unmap-after-close.html [453]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-rkl-7/igt@gem_userptr_blits@unsync-unmap-after-close.html * igt@gen9_exec_parse@allowed-all: - shard-rkl: [SKIP][454] ([i915#2527]) -> [SKIP][455] ([i915#14544] / [i915#2527]) [454]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19018/shard-rkl-4/igt@gen9_exec_parse@allowed-all.html [455]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-rkl-6/igt@gen9_exec_parse@allowed-all.html * igt@i915_pm_freq_api@freq-suspend: - shard-rkl: [SKIP][456] ([i915#14544] / [i915#8399]) -> [SKIP][457] ([i915#8399]) [456]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19018/shard-rkl-6/igt@i915_pm_freq_api@freq-suspend.html [457]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-rkl-5/igt@i915_pm_freq_api@freq-suspend.html * igt@i915_pm_freq_mult@media-freq@gt0: - shard-rkl: [SKIP][458] ([i915#14544] / [i915#6590]) -> [SKIP][459] ([i915#6590]) +1 other test skip [458]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19018/shard-rkl-6/igt@i915_pm_freq_mult@media-freq@gt0.html [459]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-rkl-2/igt@i915_pm_freq_mult@media-freq@gt0.html * igt@intel_hwmon@hwmon-write: - shard-rkl: [SKIP][460] ([i915#14544] / [i915#7707]) -> [SKIP][461] ([i915#7707]) [460]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19018/shard-rkl-6/igt@intel_hwmon@hwmon-write.html [461]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-rkl-3/igt@intel_hwmon@hwmon-write.html * igt@kms_big_fb@4-tiled-64bpp-rotate-90: - shard-rkl: [SKIP][462] ([i915#14544] / [i915#5286]) -> [SKIP][463] ([i915#5286]) [462]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19018/shard-rkl-6/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html [463]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-rkl-3/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180: - shard-rkl: [SKIP][464] ([i915#5286]) -> [SKIP][465] ([i915#14544] / [i915#5286]) +2 other tests skip [464]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19018/shard-rkl-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180.html [465]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180.html * igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip: - shard-rkl: [SKIP][466] ([i915#3828]) -> [SKIP][467] ([i915#14544] / [i915#3828]) [466]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19018/shard-rkl-7/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip.html [467]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-rkl-6/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@x-tiled-16bpp-rotate-90: - shard-rkl: [SKIP][468] ([i915#3638]) -> [SKIP][469] ([i915#14544] / [i915#3638]) [468]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19018/shard-rkl-4/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html [469]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-rkl-6/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html * igt@kms_big_fb@y-tiled-64bpp-rotate-90: - shard-rkl: [SKIP][470] ([i915#14544] / [i915#3638]) -> [SKIP][471] ([i915#3638]) +1 other test skip [470]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19018/shard-rkl-6/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html [471]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-rkl-4/igt@kms_big_fb@y-tiled-64bpp-rotate-90.html * igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs@pipe-a-hdmi-a-2: - shard-rkl: [SKIP][472] ([i915#6095]) -> [SKIP][473] ([i915#14544] / [i915#6095]) +1 other test skip [472]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19018/shard-rkl-4/igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs@pipe-a-hdmi-a-2.html [473]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-rkl-6/igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs@pipe-a-hdmi-a-2.html * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2: - shard-rkl: [SKIP][474] ([i915#14544] / [i915#6095]) -> [SKIP][475] ([i915#6095]) [474]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19018/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2.html [475]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-rkl-4/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-2.html * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2: - shard-rkl: [SKIP][476] ([i915#14098] / [i915#14544] / [i915#6095]) -> [SKIP][477] ([i915#14098] / [i915#6095]) +1 other test skip [476]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19018/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2.html [477]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-rkl-4/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs: - shard-rkl: [SKIP][478] ([i915#12313]) -> [SKIP][479] ([i915#12313] / [i915#14544]) [478]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19018/shard-rkl-8/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html [479]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs: - shard-rkl: [SKIP][480] ([i915#14098] / [i915#6095]) -> [SKIP][481] ([i915#14098] / [i915#14544] / [i915#6095]) +3 other tests skip [480]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19018/shard-rkl-5/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs.html [481]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-rkl-6/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs.html * igt@kms_chamelium_color_pipeline@plane-lut1d-post-ctm3x4: - shard-rkl: [SKIP][482] ([i915#14544] / [i915#16471]) -> [SKIP][483] ([i915#16471]) [482]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19018/shard-rkl-6/igt@kms_chamelium_color_pipeline@plane-lut1d-post-ctm3x4.html [483]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-rkl-7/igt@kms_chamelium_color_pipeline@plane-lut1d-post-ctm3x4.html * igt@kms_chamelium_edid@vga-edid-read: - shard-rkl: [SKIP][484] ([i915#11151] / [i915#7828]) -> [SKIP][485] ([i915#11151] / [i915#14544] / [i915#7828]) +2 other tests skip [484]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19018/shard-rkl-7/igt@kms_chamelium_edid@vga-edid-read.html [485]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-rkl-6/igt@kms_chamelium_edid@vga-edid-read.html * igt@kms_chamelium_frames@hdmi-crc-fast: - shard-rkl: [SKIP][486] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][487] ([i915#11151] / [i915#7828]) +4 other tests skip [486]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19018/shard-rkl-6/igt@kms_chamelium_frames@hdmi-crc-fast.html [487]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-rkl-2/igt@kms_chamelium_frames@hdmi-crc-fast.html * igt@kms_content_protection@dp-mst-lic-type-0-hdcp14: - shard-rkl: [SKIP][488] ([i915#14544] / [i915#15330]) -> [SKIP][489] ([i915#15330]) [488]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19018/shard-rkl-6/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html [489]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-rkl-3/igt@kms_content_protection@dp-mst-lic-type-0-hdcp14.html * igt@kms_content_protection@mei-interface: - shard-rkl: [SKIP][490] ([i915#15865]) -> [SKIP][491] ([i915#14544] / [i915#15865]) [490]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19018/shard-rkl-7/igt@kms_content_protection@mei-interface.html [491]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-rkl-6/igt@kms_content_protection@mei-interface.html * igt@kms_cursor_crc@cursor-onscreen-512x170: - shard-rkl: [SKIP][492] ([i915#13049] / [i915#14544]) -> [SKIP][493] ([i915#13049]) [492]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19018/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-512x170.html [493]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-rkl-4/igt@kms_cursor_crc@cursor-onscreen-512x170.html * igt@kms_cursor_crc@cursor-sliding-32x10: - shard-rkl: [SKIP][494] ([i915#3555]) -> [SKIP][495] ([i915#14544] / [i915#3555]) [494]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19018/shard-rkl-1/igt@kms_cursor_crc@cursor-sliding-32x10.html [495]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-rkl-6/igt@kms_cursor_crc@cursor-sliding-32x10.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy: - shard-rkl: [SKIP][496] -> [SKIP][497] ([i915#14544]) +27 other tests skip [496]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19018/shard-rkl-5/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html [497]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-rkl-6/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-rkl: [SKIP][498] ([i915#4103]) -> [SKIP][499] ([i915#14544] / [i915#4103]) [498]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19018/shard-rkl-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html [499]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-rkl-6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt@kms_dp_link_training@non-uhbr-sst: - shard-rkl: [SKIP][500] ([i915#13749]) -> [SKIP][501] ([i915#13749] / [i915#14544]) [500]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19018/shard-rkl-5/igt@kms_dp_link_training@non-uhbr-sst.html [501]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-rkl-6/igt@kms_dp_link_training@non-uhbr-sst.html * igt@kms_dsc@dsc-fractional-bpp-with-bpc: - shard-rkl: [SKIP][502] ([i915#16361]) -> [SKIP][503] ([i915#14544] / [i915#16361]) [502]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19018/shard-rkl-5/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html [503]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-rkl-6/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html * igt@kms_dsc@dsc-with-bpc-ultrajoiner: - shard-rkl: [SKIP][504] ([i915#14544] / [i915#16361]) -> [SKIP][505] ([i915#16361]) +1 other test skip [504]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19018/shard-rkl-6/igt@kms_dsc@dsc-with-bpc-ultrajoiner.html [505]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-rkl-2/igt@kms_dsc@dsc-with-bpc-ultrajoiner.html * igt@kms_feature_discovery@display-4x: - shard-rkl: [SKIP][506] ([i915#16081]) -> [SKIP][507] ([i915#14544] / [i915#16081]) [506]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19018/shard-rkl-3/igt@kms_feature_discovery@display-4x.html [507]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-rkl-6/igt@kms_feature_discovery@display-4x.html * igt@kms_feature_discovery@psr2: - shard-rkl: [SKIP][508] ([i915#14544] / [i915#658]) -> [SKIP][509] ([i915#658]) [508]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19018/shard-rkl-6/igt@kms_feature_discovery@psr2.html [509]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-rkl-7/igt@kms_feature_discovery@psr2.html * igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset: - shard-rkl: [SKIP][510] ([i915#9934]) -> [SKIP][511] ([i915#14544] / [i915#9934]) [510]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19018/shard-rkl-8/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html [511]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-rkl-6/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html * igt@kms_flip@2x-flip-vs-dpms-on-nop: - shard-rkl: [SKIP][512] ([i915#14544] / [i915#9934]) -> [SKIP][513] ([i915#9934]) +3 other tests skip [512]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19018/shard-rkl-6/igt@kms_flip@2x-flip-vs-dpms-on-nop.html [513]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-rkl-4/igt@kms_flip@2x-flip-vs-dpms-on-nop.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt: - shard-rkl: [SKIP][514] ([i915#14544]) -> [SKIP][515] +29 other tests skip [514]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19018/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html [515]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc: - shard-rkl: [SKIP][516] ([i915#1825]) -> [SKIP][517] ([i915#14544] / [i915#1825]) +1 other test skip [516]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19018/shard-rkl-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc.html [517]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbchdr-tiling-4: - shard-rkl: [SKIP][518] ([i915#5439]) -> [SKIP][519] ([i915#14544] / [i915#5439]) [518]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19018/shard-rkl-7/igt@kms_frontbuffer_tracking@fbchdr-tiling-4.html [519]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-rkl-6/igt@kms_frontbuffer_tracking@fbchdr-tiling-4.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw: - shard-rkl: [SKIP][520] ([i915#14544] / [i915#15102]) -> [SKIP][521] ([i915#15102]) +7 other tests skip [520]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19018/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html [521]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-1p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt: - shard-rkl: [SKIP][522] ([i915#14544] / [i915#1825]) -> [SKIP][523] ([i915#1825]) +3 other tests skip [522]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19018/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt.html [523]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-gtt: - shard-rkl: [SKIP][524] ([i915#15102]) -> [SKIP][525] ([i915#14544] / [i915#15102]) +10 other tests skip [524]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19018/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-gtt.html [525]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@hdr-2p-scndscrn-pri-indfb-draw-render: - shard-dg1: [SKIP][526] ([i915#4423]) -> [SKIP][527] +1 other test skip [526]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19018/shard-dg1-12/igt@kms_frontbuffer_tracking@hdr-2p-scndscrn-pri-indfb-draw-render.html [527]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-dg1-15/igt@kms_frontbuffer_tracking@hdr-2p-scndscrn-pri-indfb-draw-render.html * igt@kms_joiner@basic-force-big-joiner: - shard-rkl: [SKIP][528] ([i915#15459]) -> [SKIP][529] ([i915#14544] / [i915#15459]) [528]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19018/shard-rkl-7/igt@kms_joiner@basic-force-big-joiner.html [529]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-rkl-6/igt@kms_joiner@basic-force-big-joiner.html * igt@kms_joiner@basic-ultra-joiner: - shard-rkl: [SKIP][530] ([i915#14544] / [i915#15458]) -> [SKIP][531] ([i915#15458]) [530]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19018/shard-rkl-6/igt@kms_joiner@basic-ultra-joiner.html [531]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-rkl-2/igt@kms_joiner@basic-ultra-joiner.html * igt@kms_plane@pixel-format-4-tiled-modifier: - shard-rkl: [SKIP][532] ([i915#15709]) -> [SKIP][533] ([i915#14544] / [i915#15709]) +1 other test skip [532]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19018/shard-rkl-8/igt@kms_plane@pixel-format-4-tiled-modifier.html [533]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-modifier.html * igt@kms_plane@pixel-format-yf-tiled-modifier: - shard-rkl: [SKIP][534] ([i915#14544] / [i915#15709]) -> [SKIP][535] ([i915#15709]) [534]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19018/shard-rkl-6/igt@kms_plane@pixel-format-yf-tiled-modifier.html [535]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-rkl-5/igt@kms_plane@pixel-format-yf-tiled-modifier.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-b: - shard-rkl: [SKIP][536] ([i915#15329]) -> [SKIP][537] ([i915#14544] / [i915#15329]) +3 other tests skip [536]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19018/shard-rkl-1/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-b.html [537]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-rkl-6/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-b.html * igt@kms_pm_dc@dc9-dpms: - shard-tglu: [SKIP][538] ([i915#15128]) -> [SKIP][539] ([i915#15739]) [538]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19018/shard-tglu-6/igt@kms_pm_dc@dc9-dpms.html [539]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-tglu-8/igt@kms_pm_dc@dc9-dpms.html * igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf: - shard-dg1: [SKIP][540] ([i915#11520] / [i915#4423]) -> [SKIP][541] ([i915#11520]) [540]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19018/shard-dg1-13/igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf.html [541]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-dg1-12/igt@kms_psr2_sf@fbc-pr-cursor-plane-update-sf.html * igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area: - shard-rkl: [SKIP][542] ([i915#11520]) -> [SKIP][543] ([i915#11520] / [i915#14544]) +3 other tests skip [542]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19018/shard-rkl-4/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html [543]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-rkl-6/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_sf@pr-plane-move-sf-dmg-area: - shard-rkl: [SKIP][544] ([i915#11520] / [i915#14544]) -> [SKIP][545] ([i915#11520]) +1 other test skip [544]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19018/shard-rkl-6/igt@kms_psr2_sf@pr-plane-move-sf-dmg-area.html [545]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-rkl-5/igt@kms_psr2_sf@pr-plane-move-sf-dmg-area.html * igt@kms_psr@fbc-psr-cursor-plane-move: - shard-rkl: [SKIP][546] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][547] ([i915#1072] / [i915#9732]) +10 other tests skip [546]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19018/shard-rkl-6/igt@kms_psr@fbc-psr-cursor-plane-move.html [547]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-rkl-3/igt@kms_psr@fbc-psr-cursor-plane-move.html * igt@kms_psr@fbc-psr-no-drrs: - shard-dg1: [SKIP][548] ([i915#1072] / [i915#4423] / [i915#9732]) -> [SKIP][549] ([i915#1072] / [i915#9732]) [548]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19018/shard-dg1-13/igt@kms_psr@fbc-psr-no-drrs.html [549]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-dg1-12/igt@kms_psr@fbc-psr-no-drrs.html * igt@kms_psr@psr-sprite-render: - shard-rkl: [SKIP][550] ([i915#1072] / [i915#9732]) -> [SKIP][551] ([i915#1072] / [i915#14544] / [i915#9732]) +4 other tests skip [550]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19018/shard-rkl-8/igt@kms_psr@psr-sprite-render.html [551]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-rkl-6/igt@kms_psr@psr-sprite-render.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-rkl: [SKIP][552] ([i915#14544] / [i915#15949]) -> [SKIP][553] ([i915#15949]) [552]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19018/shard-rkl-6/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html [553]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-rkl-8/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_scaling_modes@scaling-mode-none: - shard-rkl: [SKIP][554] ([i915#14544] / [i915#3555]) -> [SKIP][555] ([i915#3555]) +2 other tests skip [554]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19018/shard-rkl-6/igt@kms_scaling_modes@scaling-mode-none.html [555]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-rkl-8/igt@kms_scaling_modes@scaling-mode-none.html * igt@prime_vgem@basic-write: - shard-rkl: [SKIP][556] ([i915#3291] / [i915#3708]) -> [SKIP][557] ([i915#14544] / [i915#3291] / [i915#3708]) [556]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19018/shard-rkl-4/igt@prime_vgem@basic-write.html [557]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-rkl-6/igt@prime_vgem@basic-write.html * igt@prime_vgem@coherency-gtt: - shard-rkl: [SKIP][558] ([i915#3708]) -> [SKIP][559] ([i915#14544] / [i915#3708]) [558]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_19018/shard-rkl-7/igt@prime_vgem@coherency-gtt.html [559]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/shard-rkl-6/igt@prime_vgem@coherency-gtt.html [i915#10056]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10056 [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307 [i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434 [i915#10553]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10553 [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#10826]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10826 [i915#1099]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1099 [i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078 [i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151 [i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520 [i915#11681]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11681 [i915#118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/118 [i915#1187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1187 [i915#11920]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11920 [i915#11965]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11965 [i915#12178]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12178 [i915#12276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12276 [i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313 [i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316 [i915#12343]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12343 [i915#12358]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12358 [i915#12454]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12454 [i915#12469]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12469 [i915#12655]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12655 [i915#12712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12712 [i915#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713 [i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755 [i915#12805]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12805 [i915#13008]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13008 [i915#13027]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13027 [i915#13029]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13029 [i915#13046]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13046 [i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049 [i915#13196]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13196 [i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356 [i915#13363]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13363 [i915#13390]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13390 [i915#13398]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13398 [i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566 [i915#13688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13688 [i915#13707]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13707 [i915#13717]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13717 [i915#13748]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748 [i915#13749]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749 [i915#13781]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13781 [i915#13809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13809 [i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958 [i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098 [i915#14121]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14121 [i915#14123]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14123 [i915#14152]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14152 [i915#14259]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14259 [i915#14419]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14419 [i915#14498]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14498 [i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544 [i915#14545]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14545 [i915#14586]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14586 [i915#14600]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14600 [i915#14712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14712 [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#15128]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15128 [i915#15131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15131 [i915#15132]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15132 [i915#15243]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15243 [i915#15329]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15329 [i915#15330]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330 [i915#15342]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15342 [i915#15365]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15365 [i915#15458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15458 [i915#15459]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15459 [i915#15479]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15479 [i915#15481]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15481 [i915#15492]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15492 [i915#15582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15582 [i915#15643]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643 [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#15733]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15733 [i915#15739]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15739 [i915#15778]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15778 [i915#15804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15804 [i915#15865]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15865 [i915#15867]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15867 [i915#15871]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15871 [i915#15949]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15949 [i915#15989]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15989 [i915#15990]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15990 [i915#15991]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15991 [i915#16081]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16081 [i915#16112]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16112 [i915#16182]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16182 [i915#16184]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16184 [i915#16226]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16226 [i915#16348]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16348 [i915#16361]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16361 [i915#16386]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16386 [i915#16420]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16420 [i915#16471]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16471 [i915#16490]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16490 [i915#16518]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16518 [i915#16593]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16593 [i915#16594]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16594 [i915#16599]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16599 [i915#16600]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16600 [i915#16644]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16644 [i915#16680]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16680 [i915#16837]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/16837 [i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769 [i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825 [i915#2436]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2436 [i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527 [i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856 [i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297 [i915#3323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3323 [i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638 [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708 [i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742 [i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828 [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077 [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083 [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212 [i915#4215]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4215 [i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270 [i915#4348]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4348 [i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349 [i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423 [i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525 [i915#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537 [i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#4771]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4771 [i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812 [i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817 [i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852 [i915#4879]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4879 [i915#4880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4880 [i915#5138]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5138 [i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190 [i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289 [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354 [i915#5439]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439 [i915#5723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5723 [i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095 [i915#6230]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6230 [i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301 [i915#6334]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6334 [i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335 [i915#6412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6412 [i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658 [i915#6590]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6590 [i915#6621]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6621 [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#7862]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7862 [i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228 [i915#8381]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381 [i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399 [i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411 [i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428 [i915#8430]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8430 [i915#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516 [i915#8623]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8623 [i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708 [i915#8810]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8810 [i915#8813]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8813 [i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814 [i915#9067]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9067 [i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323 [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#9833]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9833 [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_9063 -> IGTPW_15708 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_19018: 8aa5d62d83ea79c3dae24446614ea31453bc2ca6 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_15708: 15708 IGT_9063: 9063 piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_15708/index.html [-- Attachment #2: Type: text/html, Size: 185679 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH i-g-t v2] tests/intel/gem_exec_params: add invalid-offset-multiple-buffers test 2026-08-19 15:21 [PATCH i-g-t v2] tests/intel/gem_exec_params: add invalid-offset-multiple-buffers test Krzysztof Niemiec ` (3 preceding siblings ...) 2026-08-20 2:36 ` ✗ i915.CI.Full: " Patchwork @ 2026-08-20 7:15 ` Krzysztof Karas 2026-08-20 13:17 ` Krzysztof Niemiec 2026-08-20 8:26 ` Sebastian Brzezinka 5 siblings, 1 reply; 8+ messages in thread From: Krzysztof Karas @ 2026-08-20 7:15 UTC (permalink / raw) To: Krzysztof Niemiec Cc: igt-dev, Kamil Konieczny, Sebastian Brzezinka, Janusz Krzysztofik, Andi Shyti Hi Krzysztof, On 2026-08-19 at 17:21:09 +0200, Krzysztof Niemiec wrote: > Add coverage for the case where the batch start offset is invalid with > multiple BOs submitted, which was buggy in the kernel until 4fe2bd195435 > ("drm/i915/gem: Zero-initialize the eb.vma array in i915_gem_do_execbuffer") > > Signed-off-by: Krzysztof Niemiec <krzysztof.niemiec@intel.com> > --- > > v2: > - Reword comments to be more specific (Krzysztof K, Sebastian) > - Get rid of the context id parameter (previously set in rsvd2, which > should have been rsvd1) - which turns out isn't actually required to > trigger the correct error path (Sebastian) > - Capitalize sentences (Andi, off-list) > > tests/intel/gem_exec_params.c | 50 +++++++++++++++++++++++++++++++++++ > 1 file changed, 50 insertions(+) > > diff --git a/tests/intel/gem_exec_params.c b/tests/intel/gem_exec_params.c > index 3ba4c530b..c405190a0 100644 > --- a/tests/intel/gem_exec_params.c > +++ b/tests/intel/gem_exec_params.c > @@ -85,6 +85,8 @@ > * > * SUBTEST: invalid-flag > * > + * SUBTEST: invalid-offset-multiple-buffers > + * > * SUBTEST: invalid-ring > * > * SUBTEST: invalid-ring2 > @@ -404,6 +406,51 @@ static void test_invalid_batch_start(int fd) > gem_close(fd, exec.handle); > } > > +/* > + * This test is checking for a NULL deref in eb_release_vmas() > + * (see 4fe2bd195435 for kernel fix), which happens when multiple buffers > + * are submitted to the execbuf ioctl and some of them are invalid. > + * > + * The __gem_execbuf() call is always expected to fail with an -EINVAL, > + * because the bug mentioned above is in the error path, which is > + * deliberately triggered. Affected systems, however, will not handle it > + * cleanly and will crash with a NULL deref. > + */ > + > +static void test_invalid_offset_multiple_buffers(int fd) > +{ > + struct drm_i915_gem_exec_object2 exec[2]; > + struct drm_i915_gem_execbuffer2 execbuf; > + uint32_t size = 0x1000; Why this particular size? > + > + memset(exec, 0, sizeof(exec)); > + memset(&execbuf, 0, sizeof(execbuf)); > + > + exec[0].handle = batch_create_size(fd, size); > + exec[1].handle = batch_create_size(fd, size); > + > + /* > + * To test 4fe2bd195435, we need multiple buffers submitted and > + * eb_add_vma() to fail. eb_add_vma() checks whether > + * batch_start_offset + batch_len is smaller than the vma size, and > + * fails with -EINVAL if it isn't. Submitting two buffers and setting > + * the offset to the size of the first batch will trigger this > + * error path. > + */ > + > + execbuf.buffers_ptr = to_user_pointer(exec); > + execbuf.buffer_count = 2; > + execbuf.batch_start_offset = size; Would setting any large value as offset trigger the desired error path? Is using "size" here significant? > + > + igt_assert_eq(__gem_execbuf(fd, &execbuf), -EINVAL); > + > + gem_sync(fd, exec[0].handle); > + gem_sync(fd, exec[1].handle); > + > + gem_close(fd, exec[0].handle); > + gem_close(fd, exec[1].handle); > +} > + > static void test_larger_than_life_batch(int fd) > { > const struct intel_execution_engine2 *e; > @@ -705,6 +752,9 @@ int igt_main() > igt_subtest("larger-than-life-batch") > test_larger_than_life_batch(fd); > > + igt_subtest("invalid-offset-multiple-buffers") > + test_invalid_offset_multiple_buffers(fd); > + > #define DIRT(name) \ > igt_subtest(#name "-dirt") { \ > execbuf.flags = 0; \ > -- > 2.55.0 > -- Best Regards, Krzysztof ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH i-g-t v2] tests/intel/gem_exec_params: add invalid-offset-multiple-buffers test 2026-08-20 7:15 ` [PATCH i-g-t v2] tests/intel/gem_exec_params: add invalid-offset-multiple-buffers test Krzysztof Karas @ 2026-08-20 13:17 ` Krzysztof Niemiec 0 siblings, 0 replies; 8+ messages in thread From: Krzysztof Niemiec @ 2026-08-20 13:17 UTC (permalink / raw) To: Krzysztof Karas Cc: igt-dev, Kamil Konieczny, Sebastian Brzezinka, Janusz Krzysztofik, Andi Shyti Hi Krzysztof On 2026-08-20 at 07:15:23 +0000, Krzysztof Karas wrote: > Hi Krzysztof, > > On 2026-08-19 at 17:21:09 +0200, Krzysztof Niemiec wrote: > > Add coverage for the case where the batch start offset is invalid with > > multiple BOs submitted, which was buggy in the kernel until 4fe2bd195435 > > ("drm/i915/gem: Zero-initialize the eb.vma array in i915_gem_do_execbuffer") > > > > Signed-off-by: Krzysztof Niemiec <krzysztof.niemiec@intel.com> > > --- > > > > v2: > > - Reword comments to be more specific (Krzysztof K, Sebastian) > > - Get rid of the context id parameter (previously set in rsvd2, which > > should have been rsvd1) - which turns out isn't actually required to > > trigger the correct error path (Sebastian) > > - Capitalize sentences (Andi, off-list) > > > > tests/intel/gem_exec_params.c | 50 +++++++++++++++++++++++++++++++++++ > > 1 file changed, 50 insertions(+) > > > > diff --git a/tests/intel/gem_exec_params.c b/tests/intel/gem_exec_params.c > > index 3ba4c530b..c405190a0 100644 > > --- a/tests/intel/gem_exec_params.c > > +++ b/tests/intel/gem_exec_params.c > > @@ -85,6 +85,8 @@ > > * > > * SUBTEST: invalid-flag > > * > > + * SUBTEST: invalid-offset-multiple-buffers > > + * > > * SUBTEST: invalid-ring > > * > > * SUBTEST: invalid-ring2 > > @@ -404,6 +406,51 @@ static void test_invalid_batch_start(int fd) > > gem_close(fd, exec.handle); > > } > > > > +/* > > + * This test is checking for a NULL deref in eb_release_vmas() > > + * (see 4fe2bd195435 for kernel fix), which happens when multiple buffers > > + * are submitted to the execbuf ioctl and some of them are invalid. > > + * > > + * The __gem_execbuf() call is always expected to fail with an -EINVAL, > > + * because the bug mentioned above is in the error path, which is > > + * deliberately triggered. Affected systems, however, will not handle it > > + * cleanly and will crash with a NULL deref. > > + */ > > + > > +static void test_invalid_offset_multiple_buffers(int fd) > > +{ > > + struct drm_i915_gem_exec_object2 exec[2]; > > + struct drm_i915_gem_execbuffer2 execbuf; > > + uint32_t size = 0x1000; > Why this particular size? > gem_create ioctl rounds up size to "the largest of minimum page sizes in the specified memory regions" (in this case simply PAGE_SIZE), then checks the alignment to PAGE_SIZE anyway. So this can be anything as long as it is not 0, and most of the tests I see default to 4096 byte objects with no additional explanation. If 0x1000 is less readable than 4096 then I can change it > > + > > + memset(exec, 0, sizeof(exec)); > > + memset(&execbuf, 0, sizeof(execbuf)); > > + > > + exec[0].handle = batch_create_size(fd, size); > > + exec[1].handle = batch_create_size(fd, size); > > + > > + /* > > + * To test 4fe2bd195435, we need multiple buffers submitted and > > + * eb_add_vma() to fail. eb_add_vma() checks whether > > + * batch_start_offset + batch_len is smaller than the vma size, and > > + * fails with -EINVAL if it isn't. Submitting two buffers and setting > > + * the offset to the size of the first batch will trigger this > > + * error path. > > + */ > > + > > + execbuf.buffers_ptr = to_user_pointer(exec); > > + execbuf.buffer_count = 2; > > + execbuf.batch_start_offset = size; > Would setting any large value as offset trigger the desired > error path? Is using "size" here significant? > batch_start_offset >= size triggers the error path. The actual check I'm targeting [1] uses range_overflows_t() to check the interval [batch_start_offset, batch_start_offset + batch_len), if it lies in [0, size) (both right-open). AKA it checks if what we say is the batch is within the batch's vma. Any value of batch_start_offset >= size will fail the range_overflows() check, triggering the failure (see [2], "Any range starting at or beyond @max is considered an overflow", batch_len needn't be set with start_offset >= size). I think this is the most straightforward way to fail eb_add_vma() [1] https://elixir.bootlin.com/linux/v7.2/source/drivers/gpu/drm/i915/gem/i915_gem_execbuffer.c#L608-L614 [2] https://elixir.bootlin.com/linux/v7.2/source/include/linux/overflow.h#L235-L268 Thanks Krzysztof > > + > > + igt_assert_eq(__gem_execbuf(fd, &execbuf), -EINVAL); > > + > > + gem_sync(fd, exec[0].handle); > > + gem_sync(fd, exec[1].handle); > > + > > + gem_close(fd, exec[0].handle); > > + gem_close(fd, exec[1].handle); > > +} > > + > > static void test_larger_than_life_batch(int fd) > > { > > const struct intel_execution_engine2 *e; > > @@ -705,6 +752,9 @@ int igt_main() > > igt_subtest("larger-than-life-batch") > > test_larger_than_life_batch(fd); > > > > + igt_subtest("invalid-offset-multiple-buffers") > > + test_invalid_offset_multiple_buffers(fd); > > + > > #define DIRT(name) \ > > igt_subtest(#name "-dirt") { \ > > execbuf.flags = 0; \ > > -- > > 2.55.0 > > > > -- > Best Regards, > Krzysztof ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH i-g-t v2] tests/intel/gem_exec_params: add invalid-offset-multiple-buffers test 2026-08-19 15:21 [PATCH i-g-t v2] tests/intel/gem_exec_params: add invalid-offset-multiple-buffers test Krzysztof Niemiec ` (4 preceding siblings ...) 2026-08-20 7:15 ` [PATCH i-g-t v2] tests/intel/gem_exec_params: add invalid-offset-multiple-buffers test Krzysztof Karas @ 2026-08-20 8:26 ` Sebastian Brzezinka 5 siblings, 0 replies; 8+ messages in thread From: Sebastian Brzezinka @ 2026-08-20 8:26 UTC (permalink / raw) To: Krzysztof Niemiec, igt-dev Cc: Kamil Konieczny, Krzysztof Karas, Sebastian Brzezinka, Janusz Krzysztofik, Andi Shyti Hi Krzsztof, On Wed Aug 19, 2026 at 5:21 PM CEST, Krzysztof Niemiec wrote: > Add coverage for the case where the batch start offset is invalid with > multiple BOs submitted, which was buggy in the kernel until 4fe2bd195435 > ("drm/i915/gem: Zero-initialize the eb.vma array in i915_gem_do_execbuffer") > > Signed-off-by: Krzysztof Niemiec <krzysztof.niemiec@intel.com> > --- Reviewed-by: Sebastian Brzezinka <sebastian.brzezinka@intel.com> -- Best regards, Sebastian ^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2026-08-20 13:18 UTC | newest] Thread overview: 8+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2026-08-19 15:21 [PATCH i-g-t v2] tests/intel/gem_exec_params: add invalid-offset-multiple-buffers test Krzysztof Niemiec 2026-08-19 20:04 ` ✓ Xe.CI.BAT: success for tests/intel/gem_exec_params: add invalid-offset-multiple-buffers test (rev2) Patchwork 2026-08-19 20:45 ` ✓ i915.CI.BAT: " Patchwork 2026-08-20 0:14 ` ✗ Xe.CI.FULL: failure " Patchwork 2026-08-20 2:36 ` ✗ i915.CI.Full: " Patchwork 2026-08-20 7:15 ` [PATCH i-g-t v2] tests/intel/gem_exec_params: add invalid-offset-multiple-buffers test Krzysztof Karas 2026-08-20 13:17 ` Krzysztof Niemiec 2026-08-20 8:26 ` Sebastian Brzezinka
This is an external index of several public inboxes, see mirroring instructions on how to clone and mirror all data and code used by this external index.