* [PATCH] tests/msm: Add parallel recovery test
@ 2024-01-08 21:59 Rob Clark
2024-01-09 0:57 ` ✓ Fi.CI.BAT: success for " Patchwork
` (3 more replies)
0 siblings, 4 replies; 5+ messages in thread
From: Rob Clark @ 2024-01-08 21:59 UTC (permalink / raw)
To: igt-dev; +Cc: Rob Clark
From: Rob Clark <robdclark@chromium.org>
Add parallel recovery test to validate that the kernel does actually
manage to recover the gpu and successfully run unrelated (not hanging)
submits.
Signed-off-by: Rob Clark <robdclark@chromium.org>
---
tests/msm/msm_recovery.c | 53 ++++++++++++++++++++++++++++++++++++++++
1 file changed, 53 insertions(+)
diff --git a/tests/msm/msm_recovery.c b/tests/msm/msm_recovery.c
index 05c89948bf9a..6088368660f4 100644
--- a/tests/msm/msm_recovery.c
+++ b/tests/msm/msm_recovery.c
@@ -148,6 +148,49 @@ do_hang_test(struct msm_pipe *pipe)
read_and_clear_devcore();
}
+/**
+ * SUBTEST: gpu-fault-parallel
+ *
+ * Description: does a bunch of submits in parallel threads, a subset of
+ * which trigger GPU hangs. For the submits which do not trigger hangs,
+ * validate that they executed properly by checking that they were able
+ * to write to the scratch buffer, so that we can see that the kernel
+ * properly re-plays the non-faulting submits.
+ */
+static void
+do_parallel_test(struct msm_pipe *pipe, int child)
+{
+ struct msm_cmd *cmd = igt_msm_cmd_new(pipe, 0x1000);
+ bool hang = child == 5;
+ int fence_fd;
+
+ msm_cmd_pkt7(cmd, CP_NOP, 0);
+
+ if (hang) {
+ msm_cmd_emit(cmd, 0xdeaddead);
+ } else {
+ /* Each forked thread writes/reads offset of child idx dwords: */
+ msm_cmd_pkt7(cmd, CP_MEM_WRITE, 3);
+ msm_cmd_bo (cmd, scratch_bo, child * 4); /* ADDR_LO/HI */
+ msm_cmd_emit(cmd, child + 1); /* VAL */
+ }
+
+ igt_until_timeout(15) {
+ scratch[child] = 0;
+ fence_fd = igt_msm_cmd_submit(cmd);
+ igt_wait_and_close(fence_fd);
+
+ if (hang) {
+ read_and_clear_devcore();
+ } else {
+ /* verify that non-crashing submits succeeded: */
+ igt_assert_eq(scratch[child], child + 1);
+ }
+ }
+
+ igt_msm_cmd_free(cmd);
+}
+
/*
* Tests for drm/msm hangcheck, recovery, and fault handling
*/
@@ -183,6 +226,16 @@ igt_main
do_hang_test(pipe);
}
+ igt_describe("Parallel fault handling");
+ igt_subtest("gpu-fault-parallel") {
+ igt_require(dev->gen >= 6);
+
+ igt_fork(child, 20) {
+ do_parallel_test(pipe, child);
+ }
+ igt_waitchildren();
+ }
+
igt_describe("Test iova fault handling");
igt_subtest("iova-fault") {
struct msm_cmd *cmd;
--
2.43.0
^ permalink raw reply related [flat|nested] 5+ messages in thread* ✓ Fi.CI.BAT: success for tests/msm: Add parallel recovery test 2024-01-08 21:59 [PATCH] tests/msm: Add parallel recovery test Rob Clark @ 2024-01-09 0:57 ` Patchwork 2024-01-09 0:59 ` ✓ CI.xeBAT: " Patchwork ` (2 subsequent siblings) 3 siblings, 0 replies; 5+ messages in thread From: Patchwork @ 2024-01-09 0:57 UTC (permalink / raw) To: Rob Clark; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 9092 bytes --] == Series Details == Series: tests/msm: Add parallel recovery test URL : https://patchwork.freedesktop.org/series/128336/ State : success == Summary == CI Bug Log - changes from CI_DRM_14098 -> IGTPW_10487 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/index.html Participating hosts (35 -> 36) ------------------------------ Additional (2): bat-dg2-9 fi-pnv-d510 Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_10487 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_exec_suspend@basic-s0@smem: - bat-jsl-3: [PASS][1] -> [INCOMPLETE][2] ([i915#9883]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14098/bat-jsl-3/igt@gem_exec_suspend@basic-s0@smem.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/bat-jsl-3/igt@gem_exec_suspend@basic-s0@smem.html * igt@gem_lmem_swapping@basic: - fi-pnv-d510: NOTRUN -> [SKIP][3] ([fdo#109271]) +31 other tests skip [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/fi-pnv-d510/igt@gem_lmem_swapping@basic.html * igt@gem_mmap@basic: - bat-dg2-9: NOTRUN -> [SKIP][4] ([i915#4083]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/bat-dg2-9/igt@gem_mmap@basic.html * igt@gem_mmap_gtt@basic: - bat-dg2-9: NOTRUN -> [SKIP][5] ([i915#4077]) +2 other tests skip [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/bat-dg2-9/igt@gem_mmap_gtt@basic.html * igt@gem_render_tiled_blits@basic: - bat-dg2-9: NOTRUN -> [SKIP][6] ([i915#4079]) +1 other test skip [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/bat-dg2-9/igt@gem_render_tiled_blits@basic.html * igt@i915_pm_rps@basic-api: - bat-dg2-9: NOTRUN -> [SKIP][7] ([i915#6621]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/bat-dg2-9/igt@i915_pm_rps@basic-api.html * igt@i915_suspend@basic-s3-without-i915: - bat-jsl-3: [PASS][8] -> [FAIL][9] ([i915#10031]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14098/bat-jsl-3/igt@i915_suspend@basic-s3-without-i915.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/bat-jsl-3/igt@i915_suspend@basic-s3-without-i915.html - bat-mtlp-6: NOTRUN -> [SKIP][10] ([i915#6645]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/bat-mtlp-6/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - bat-dg2-9: NOTRUN -> [SKIP][11] ([i915#5190]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/bat-dg2-9/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_addfb_basic@basic-y-tiled-legacy: - bat-dg2-9: NOTRUN -> [SKIP][12] ([i915#4215] / [i915#5190]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/bat-dg2-9/igt@kms_addfb_basic@basic-y-tiled-legacy.html * igt@kms_addfb_basic@framebuffer-vs-set-tiling: - bat-dg2-9: NOTRUN -> [SKIP][13] ([i915#4212]) +7 other tests skip [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/bat-dg2-9/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - bat-dg2-9: NOTRUN -> [SKIP][14] ([i915#4103] / [i915#4213]) +1 other test skip [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/bat-dg2-9/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_force_connector_basic@force-load-detect: - bat-dg2-9: NOTRUN -> [SKIP][15] ([fdo#109285]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/bat-dg2-9/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_force_connector_basic@prune-stale-modes: - bat-dg2-9: NOTRUN -> [SKIP][16] ([i915#5274]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/bat-dg2-9/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_pipe_crc_basic@nonblocking-crc: - bat-dg2-11: NOTRUN -> [SKIP][17] ([i915#9197]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc.html * igt@kms_pipe_crc_basic@suspend-read-crc: - bat-mtlp-6: NOTRUN -> [SKIP][18] ([i915#9792]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/bat-mtlp-6/igt@kms_pipe_crc_basic@suspend-read-crc.html * igt@kms_pm_backlight@basic-brightness: - bat-dg2-9: NOTRUN -> [SKIP][19] ([i915#5354]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/bat-dg2-9/igt@kms_pm_backlight@basic-brightness.html * igt@kms_setmode@basic-clone-single-crtc: - bat-dg2-9: NOTRUN -> [SKIP][20] ([i915#3555]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/bat-dg2-9/igt@kms_setmode@basic-clone-single-crtc.html * igt@prime_vgem@basic-fence-flip: - bat-dg2-9: NOTRUN -> [SKIP][21] ([i915#3708]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/bat-dg2-9/igt@prime_vgem@basic-fence-flip.html * igt@prime_vgem@basic-fence-mmap: - bat-dg2-9: NOTRUN -> [SKIP][22] ([i915#3708] / [i915#4077]) +1 other test skip [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/bat-dg2-9/igt@prime_vgem@basic-fence-mmap.html * igt@prime_vgem@basic-write: - bat-dg2-9: NOTRUN -> [SKIP][23] ([i915#3291] / [i915#3708]) +2 other tests skip [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/bat-dg2-9/igt@prime_vgem@basic-write.html #### Possible fixes #### * igt@i915_selftest@live@ring_submission: - bat-mtlp-6: [INCOMPLETE][24] -> [PASS][25] [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14098/bat-mtlp-6/igt@i915_selftest@live@ring_submission.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/bat-mtlp-6/igt@i915_selftest@live@ring_submission.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [i915#10031]: https://gitlab.freedesktop.org/drm/intel/issues/10031 [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213 [i915#4215]: https://gitlab.freedesktop.org/drm/intel/issues/4215 [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 [i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6645]: https://gitlab.freedesktop.org/drm/intel/issues/6645 [i915#9197]: https://gitlab.freedesktop.org/drm/intel/issues/9197 [i915#9673]: https://gitlab.freedesktop.org/drm/intel/issues/9673 [i915#9732]: https://gitlab.freedesktop.org/drm/intel/issues/9732 [i915#9792]: https://gitlab.freedesktop.org/drm/intel/issues/9792 [i915#9883]: https://gitlab.freedesktop.org/drm/intel/issues/9883 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7663 -> IGTPW_10487 CI-20190529: 20190529 CI_DRM_14098: 33069fe3dece485caa21cc0870afec427877b105 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_10487: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/index.html IGT_7663: b5eca7b97430309e320874594feaeaa8e770e25e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Testlist changes ---------------- +igt@msm_recovery@gpu-fault-parallel -igt@kms_bw@linear-tiling-1-displays-2160x1440p -igt@kms_bw@linear-tiling-2-displays-2160x1440p -igt@kms_bw@linear-tiling-3-displays-2160x1440p -igt@kms_bw@linear-tiling-4-displays-2160x1440p -igt@kms_bw@linear-tiling-5-displays-2160x1440p -igt@kms_bw@linear-tiling-6-displays-2160x1440p -igt@kms_bw@linear-tiling-7-displays-2160x1440p -igt@kms_bw@linear-tiling-8-displays-2160x1440p -igt@kms_bw@linear-tiling-9-displays-2160x1440p -igt@kms_bw@linear-tiling-10-displays-2160x1440p -igt@kms_bw@linear-tiling-11-displays-2160x1440p -igt@kms_bw@linear-tiling-12-displays-2160x1440p -igt@kms_bw@linear-tiling-13-displays-2160x1440p -igt@kms_bw@linear-tiling-14-displays-2160x1440p -igt@kms_bw@linear-tiling-15-displays-2160x1440p -igt@kms_bw@linear-tiling-16-displays-2160x1440p == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/index.html [-- Attachment #2: Type: text/html, Size: 10451 bytes --] ^ permalink raw reply [flat|nested] 5+ messages in thread
* ✓ CI.xeBAT: success for tests/msm: Add parallel recovery test 2024-01-08 21:59 [PATCH] tests/msm: Add parallel recovery test Rob Clark 2024-01-09 0:57 ` ✓ Fi.CI.BAT: success for " Patchwork @ 2024-01-09 0:59 ` Patchwork 2024-01-09 11:28 ` ✗ Fi.CI.IGT: failure " Patchwork 2024-01-09 15:05 ` [PATCH] " Kamil Konieczny 3 siblings, 0 replies; 5+ messages in thread From: Patchwork @ 2024-01-09 0:59 UTC (permalink / raw) To: Rob Clark; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 3464 bytes --] == Series Details == Series: tests/msm: Add parallel recovery test URL : https://patchwork.freedesktop.org/series/128336/ State : success == Summary == CI Bug Log - changes from XEIGT_7663_BAT -> XEIGTPW_10487_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (4 -> 4) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_10487_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_frontbuffer_tracking@basic: - bat-adlp-7: [PASS][1] -> [DMESG-FAIL][2] ([Intel XE#1033]) [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7663/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10487/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html #### Possible fixes #### * igt@kms_flip@basic-flip-vs-wf_vblank@a-edp1: - bat-adlp-7: [FAIL][3] ([Intel XE#480]) -> [PASS][4] +1 other test pass [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7663/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@a-edp1.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10487/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@a-edp1.html * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12: - bat-dg2-oem2: [FAIL][5] ([Intel XE#400] / [Intel XE#616]) -> [PASS][6] +2 other tests pass [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7663/bat-dg2-oem2/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10487/bat-dg2-oem2/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12.html * igt@xe_prime_self_import@basic-with_one_bo: - bat-atsm-2: [FAIL][7] ([Intel XE#999]) -> [PASS][8] +1 other test pass [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7663/bat-atsm-2/igt@xe_prime_self_import@basic-with_one_bo.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10487/bat-atsm-2/igt@xe_prime_self_import@basic-with_one_bo.html - bat-pvc-2: [FAIL][9] ([Intel XE#999]) -> [PASS][10] +1 other test pass [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7663/bat-pvc-2/igt@xe_prime_self_import@basic-with_one_bo.html [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10487/bat-pvc-2/igt@xe_prime_self_import@basic-with_one_bo.html [Intel XE#1033]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1033 [Intel XE#400]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/400 [Intel XE#480]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/480 [Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616 [Intel XE#999]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/999 Build changes ------------- * IGT: IGT_7663 -> IGTPW_10487 * Linux: xe-604-a3e6b7b90ce1ff725d7585cbd2c9279e6e39b914 -> xe-607-eacbcdb537a2774959d012206aba22848fdade26 IGTPW_10487: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/index.html IGT_7663: b5eca7b97430309e320874594feaeaa8e770e25e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-604-a3e6b7b90ce1ff725d7585cbd2c9279e6e39b914: a3e6b7b90ce1ff725d7585cbd2c9279e6e39b914 xe-607-eacbcdb537a2774959d012206aba22848fdade26: eacbcdb537a2774959d012206aba22848fdade26 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10487/index.html [-- Attachment #2: Type: text/html, Size: 4192 bytes --] ^ permalink raw reply [flat|nested] 5+ messages in thread
* ✗ Fi.CI.IGT: failure for tests/msm: Add parallel recovery test 2024-01-08 21:59 [PATCH] tests/msm: Add parallel recovery test Rob Clark 2024-01-09 0:57 ` ✓ Fi.CI.BAT: success for " Patchwork 2024-01-09 0:59 ` ✓ CI.xeBAT: " Patchwork @ 2024-01-09 11:28 ` Patchwork 2024-01-09 15:05 ` [PATCH] " Kamil Konieczny 3 siblings, 0 replies; 5+ messages in thread From: Patchwork @ 2024-01-09 11:28 UTC (permalink / raw) To: Rob Clark; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 89360 bytes --] == Series Details == Series: tests/msm: Add parallel recovery test URL : https://patchwork.freedesktop.org/series/128336/ State : failure == Summary == CI Bug Log - changes from CI_DRM_14098_full -> IGTPW_10487_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_10487_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_10487_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_10487/index.html Participating hosts (8 -> 8) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_10487_full: ### IGT changes ### #### Possible regressions #### * igt@gem_eio@in-flight-internal-immediate: - shard-mtlp: [PASS][1] -> [ABORT][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14098/shard-mtlp-2/igt@gem_eio@in-flight-internal-immediate.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-mtlp-4/igt@gem_eio@in-flight-internal-immediate.html * igt@kms_flip@2x-flip-vs-modeset-vs-hang@ac-hdmi-a1-hdmi-a2: - shard-glk: [PASS][3] -> [INCOMPLETE][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14098/shard-glk4/igt@kms_flip@2x-flip-vs-modeset-vs-hang@ac-hdmi-a1-hdmi-a2.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-glk7/igt@kms_flip@2x-flip-vs-modeset-vs-hang@ac-hdmi-a1-hdmi-a2.html * igt@kms_frontbuffer_tracking@plane-fbc-rte: - shard-dg2: NOTRUN -> [SKIP][5] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-dg2-1/igt@kms_frontbuffer_tracking@plane-fbc-rte.html Known issues ------------ Here are the changes found in IGTPW_10487_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@device_reset@cold-reset-bound: - shard-dg1: NOTRUN -> [SKIP][6] ([i915#7701]) +1 other test skip [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-dg1-16/igt@device_reset@cold-reset-bound.html - shard-mtlp: NOTRUN -> [SKIP][7] ([i915#7701]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-mtlp-4/igt@device_reset@cold-reset-bound.html - shard-dg2: NOTRUN -> [SKIP][8] ([i915#7701]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-dg2-11/igt@device_reset@cold-reset-bound.html - shard-rkl: NOTRUN -> [SKIP][9] ([i915#7701]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-rkl-6/igt@device_reset@cold-reset-bound.html * igt@drm_fdinfo@busy-idle-check-all@ccs3: - shard-dg2: NOTRUN -> [SKIP][10] ([i915#8414]) +19 other tests skip [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-dg2-6/igt@drm_fdinfo@busy-idle-check-all@ccs3.html * igt@drm_fdinfo@isolation@vecs0: - shard-dg1: NOTRUN -> [SKIP][11] ([i915#8414]) +4 other tests skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-dg1-13/igt@drm_fdinfo@isolation@vecs0.html * igt@drm_fdinfo@most-busy-check-all@rcs0: - shard-rkl: [PASS][12] -> [FAIL][13] ([i915#7742]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14098/shard-rkl-4/igt@drm_fdinfo@most-busy-check-all@rcs0.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-rkl-7/igt@drm_fdinfo@most-busy-check-all@rcs0.html * igt@gem_bad_reloc@negative-reloc: - shard-rkl: NOTRUN -> [SKIP][14] ([i915#3281]) +5 other tests skip [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-rkl-6/igt@gem_bad_reloc@negative-reloc.html * igt@gem_bad_reloc@negative-reloc-lut: - shard-dg1: NOTRUN -> [SKIP][15] ([i915#3281]) +9 other tests skip [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-dg1-16/igt@gem_bad_reloc@negative-reloc-lut.html * igt@gem_basic@multigpu-create-close: - shard-dg2: NOTRUN -> [SKIP][16] ([i915#7697]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-dg2-1/igt@gem_basic@multigpu-create-close.html * igt@gem_busy@semaphore: - shard-dg2: NOTRUN -> [SKIP][17] ([i915#3936]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-dg2-1/igt@gem_busy@semaphore.html * igt@gem_close_race@multigpu-basic-process: - shard-dg1: NOTRUN -> [SKIP][18] ([i915#7697]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-dg1-18/igt@gem_close_race@multigpu-basic-process.html * igt@gem_create@create-ext-cpu-access-sanity-check: - shard-tglu: NOTRUN -> [SKIP][19] ([i915#6335]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-tglu-4/igt@gem_create@create-ext-cpu-access-sanity-check.html - shard-rkl: NOTRUN -> [SKIP][20] ([i915#6335]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-rkl-2/igt@gem_create@create-ext-cpu-access-sanity-check.html * igt@gem_create@create-ext-set-pat: - shard-dg2: NOTRUN -> [SKIP][21] ([i915#8562]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-dg2-2/igt@gem_create@create-ext-set-pat.html * igt@gem_ctx_persistence@heartbeat-close: - shard-dg2: NOTRUN -> [SKIP][22] ([i915#8555]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-dg2-10/igt@gem_ctx_persistence@heartbeat-close.html * igt@gem_ctx_persistence@legacy-engines-mixed-process: - shard-snb: NOTRUN -> [SKIP][23] ([fdo#109271] / [i915#1099]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-snb2/igt@gem_ctx_persistence@legacy-engines-mixed-process.html * igt@gem_ctx_sseu@engines: - shard-dg2: NOTRUN -> [SKIP][24] ([i915#280]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-dg2-5/igt@gem_ctx_sseu@engines.html * igt@gem_eio@unwedge-stress: - shard-dg1: [PASS][25] -> [FAIL][26] ([i915#5784]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14098/shard-dg1-18/igt@gem_eio@unwedge-stress.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-dg1-13/igt@gem_eio@unwedge-stress.html * igt@gem_exec_balancer@bonded-true-hang: - shard-dg2: NOTRUN -> [SKIP][27] ([i915#4812]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-dg2-1/igt@gem_exec_balancer@bonded-true-hang.html * igt@gem_exec_balancer@parallel-out-fence: - shard-rkl: NOTRUN -> [SKIP][28] ([i915#4525]) +1 other test skip [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-rkl-6/igt@gem_exec_balancer@parallel-out-fence.html * igt@gem_exec_capture@many-4k-zero: - shard-glk: NOTRUN -> [FAIL][29] ([i915#9606]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-glk9/igt@gem_exec_capture@many-4k-zero.html - shard-rkl: NOTRUN -> [FAIL][30] ([i915#9606]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-rkl-1/igt@gem_exec_capture@many-4k-zero.html * igt@gem_exec_fair@basic-none-share@rcs0: - shard-glk: NOTRUN -> [FAIL][31] ([i915#2842]) +1 other test fail [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-glk4/igt@gem_exec_fair@basic-none-share@rcs0.html * igt@gem_exec_fair@basic-pace: - shard-dg2: NOTRUN -> [SKIP][32] ([i915#3539]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-dg2-10/igt@gem_exec_fair@basic-pace.html * igt@gem_exec_fair@basic-pace@vecs0: - shard-rkl: [PASS][33] -> [FAIL][34] ([i915#2842]) +1 other test fail [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14098/shard-rkl-4/igt@gem_exec_fair@basic-pace@vecs0.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-rkl-4/igt@gem_exec_fair@basic-pace@vecs0.html * igt@gem_exec_flush@basic-wb-ro-before-default: - shard-dg1: NOTRUN -> [SKIP][35] ([i915#3539] / [i915#4852]) +1 other test skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-dg1-13/igt@gem_exec_flush@basic-wb-ro-before-default.html * igt@gem_exec_params@rsvd2-dirt: - shard-tglu: NOTRUN -> [SKIP][36] ([fdo#109283]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-tglu-7/igt@gem_exec_params@rsvd2-dirt.html * igt@gem_exec_reloc@basic-write-gtt: - shard-dg2: NOTRUN -> [SKIP][37] ([i915#3281]) +10 other tests skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-dg2-10/igt@gem_exec_reloc@basic-write-gtt.html * igt@gem_exec_reloc@basic-write-wc-active: - shard-mtlp: NOTRUN -> [SKIP][38] ([i915#3281]) +4 other tests skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-mtlp-4/igt@gem_exec_reloc@basic-write-wc-active.html * igt@gem_exec_schedule@reorder-wide: - shard-dg1: NOTRUN -> [SKIP][39] ([i915#4812]) +1 other test skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-dg1-12/igt@gem_exec_schedule@reorder-wide.html * igt@gem_fence_thrash@bo-copy: - shard-dg2: NOTRUN -> [SKIP][40] ([i915#4860]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-dg2-5/igt@gem_fence_thrash@bo-copy.html - shard-mtlp: NOTRUN -> [SKIP][41] ([i915#4860]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-mtlp-8/igt@gem_fence_thrash@bo-copy.html * igt@gem_fenced_exec_thrash@no-spare-fences: - shard-dg1: NOTRUN -> [SKIP][42] ([i915#4860]) +2 other tests skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-dg1-14/igt@gem_fenced_exec_thrash@no-spare-fences.html * igt@gem_lmem_swapping@heavy-verify-multi-ccs: - shard-glk: NOTRUN -> [SKIP][43] ([fdo#109271] / [i915#4613]) +3 other tests skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-glk1/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html * igt@gem_lmem_swapping@heavy-verify-random: - shard-rkl: NOTRUN -> [SKIP][44] ([i915#4613]) +1 other test skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-rkl-7/igt@gem_lmem_swapping@heavy-verify-random.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg1: [PASS][45] -> [TIMEOUT][46] ([i915#5493]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14098/shard-dg1-12/igt@gem_lmem_swapping@smem-oom@lmem0.html [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-dg1-18/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@gem_lmem_swapping@verify: - shard-mtlp: NOTRUN -> [SKIP][47] ([i915#4613]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-mtlp-5/igt@gem_lmem_swapping@verify.html * igt@gem_mmap@pf-nonblock: - shard-dg2: NOTRUN -> [SKIP][48] ([i915#4083]) +4 other tests skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-dg2-2/igt@gem_mmap@pf-nonblock.html * igt@gem_mmap_gtt@basic-small-bo: - shard-dg2: NOTRUN -> [SKIP][49] ([i915#4077]) +13 other tests skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-dg2-7/igt@gem_mmap_gtt@basic-small-bo.html * igt@gem_mmap_gtt@fault-concurrent-y: - shard-mtlp: NOTRUN -> [SKIP][50] ([i915#4077]) +1 other test skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-mtlp-2/igt@gem_mmap_gtt@fault-concurrent-y.html * igt@gem_mmap_gtt@medium-copy-odd: - shard-dg1: NOTRUN -> [SKIP][51] ([i915#4077]) +5 other tests skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-dg1-18/igt@gem_mmap_gtt@medium-copy-odd.html * igt@gem_partial_pwrite_pread@reads: - shard-dg2: NOTRUN -> [SKIP][52] ([i915#3282]) +8 other tests skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-dg2-6/igt@gem_partial_pwrite_pread@reads.html * igt@gem_pread@exhaustion: - shard-glk: NOTRUN -> [INCOMPLETE][53] ([i915#10042]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-glk7/igt@gem_pread@exhaustion.html * igt@gem_pxp@create-protected-buffer: - shard-rkl: NOTRUN -> [SKIP][54] ([i915#4270]) +1 other test skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-rkl-6/igt@gem_pxp@create-protected-buffer.html * igt@gem_pxp@reject-modify-context-protection-on: - shard-mtlp: NOTRUN -> [SKIP][55] ([i915#4270]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-mtlp-8/igt@gem_pxp@reject-modify-context-protection-on.html * igt@gem_pxp@verify-pxp-stale-buf-execution: - shard-dg2: NOTRUN -> [SKIP][56] ([i915#4270]) +4 other tests skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-dg2-6/igt@gem_pxp@verify-pxp-stale-buf-execution.html * igt@gem_pxp@verify-pxp-stale-ctx-execution: - shard-dg1: NOTRUN -> [SKIP][57] ([i915#4270]) +4 other tests skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-dg1-18/igt@gem_pxp@verify-pxp-stale-ctx-execution.html - shard-tglu: NOTRUN -> [SKIP][58] ([i915#4270]) +1 other test skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-tglu-4/igt@gem_pxp@verify-pxp-stale-ctx-execution.html * igt@gem_readwrite@new-obj: - shard-mtlp: NOTRUN -> [SKIP][59] ([i915#3282]) +1 other test skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-mtlp-2/igt@gem_readwrite@new-obj.html - shard-dg1: NOTRUN -> [SKIP][60] ([i915#3282]) +1 other test skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-dg1-13/igt@gem_readwrite@new-obj.html * igt@gem_readwrite@read-bad-handle: - shard-rkl: NOTRUN -> [SKIP][61] ([i915#3282]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-rkl-1/igt@gem_readwrite@read-bad-handle.html * igt@gem_render_copy@y-tiled-to-vebox-yf-tiled: - shard-dg2: NOTRUN -> [SKIP][62] ([i915#5190]) +14 other tests skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-dg2-1/igt@gem_render_copy@y-tiled-to-vebox-yf-tiled.html - shard-mtlp: NOTRUN -> [SKIP][63] ([i915#8428]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-mtlp-7/igt@gem_render_copy@y-tiled-to-vebox-yf-tiled.html * igt@gem_set_tiling_vs_blt@tiled-to-tiled: - shard-rkl: NOTRUN -> [SKIP][64] ([i915#8411]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-rkl-7/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html * igt@gem_tiled_pread_basic: - shard-dg2: NOTRUN -> [SKIP][65] ([i915#4079]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-dg2-1/igt@gem_tiled_pread_basic.html * igt@gem_userptr_blits@coherency-sync: - shard-rkl: NOTRUN -> [SKIP][66] ([fdo#110542]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-rkl-6/igt@gem_userptr_blits@coherency-sync.html * igt@gem_userptr_blits@coherency-unsync: - shard-rkl: NOTRUN -> [SKIP][67] ([i915#3297]) +1 other test skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-rkl-1/igt@gem_userptr_blits@coherency-unsync.html * igt@gem_userptr_blits@create-destroy-unsync: - shard-tglu: NOTRUN -> [SKIP][68] ([i915#3297]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-tglu-10/igt@gem_userptr_blits@create-destroy-unsync.html * igt@gem_userptr_blits@dmabuf-sync: - shard-glk: NOTRUN -> [SKIP][69] ([fdo#109271] / [i915#3323]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-glk1/igt@gem_userptr_blits@dmabuf-sync.html - shard-rkl: NOTRUN -> [SKIP][70] ([i915#3323]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-rkl-6/igt@gem_userptr_blits@dmabuf-sync.html * igt@gem_userptr_blits@invalid-mmap-offset-unsync: - shard-dg2: NOTRUN -> [SKIP][71] ([i915#3297]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-dg2-1/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html * igt@gem_userptr_blits@map-fixed-invalidate-busy: - shard-dg2: NOTRUN -> [SKIP][72] ([i915#3297] / [i915#4880]) +1 other test skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-dg2-7/igt@gem_userptr_blits@map-fixed-invalidate-busy.html * igt@gem_userptr_blits@unsync-unmap-after-close: - shard-dg1: NOTRUN -> [SKIP][73] ([i915#3297]) +1 other test skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-dg1-17/igt@gem_userptr_blits@unsync-unmap-after-close.html * igt@gen3_mixed_blits: - shard-dg2: NOTRUN -> [SKIP][74] ([fdo#109289]) +3 other tests skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-dg2-2/igt@gen3_mixed_blits.html - shard-dg1: NOTRUN -> [SKIP][75] ([fdo#109289]) +1 other test skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-dg1-13/igt@gen3_mixed_blits.html * igt@gen3_render_linear_blits: - shard-rkl: NOTRUN -> [SKIP][76] ([fdo#109289]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-rkl-2/igt@gen3_render_linear_blits.html * igt@gen9_exec_parse@allowed-single: - shard-glk: [PASS][77] -> [INCOMPLETE][78] ([i915#5566]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14098/shard-glk4/igt@gen9_exec_parse@allowed-single.html [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-glk3/igt@gen9_exec_parse@allowed-single.html * igt@gen9_exec_parse@basic-rejected: - shard-tglu: NOTRUN -> [SKIP][79] ([i915#2527] / [i915#2856]) +1 other test skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-tglu-3/igt@gen9_exec_parse@basic-rejected.html * igt@gen9_exec_parse@batch-invalid-length: - shard-rkl: NOTRUN -> [SKIP][80] ([i915#2527]) +1 other test skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-rkl-7/igt@gen9_exec_parse@batch-invalid-length.html - shard-dg1: NOTRUN -> [SKIP][81] ([i915#2527]) +2 other tests skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-dg1-12/igt@gen9_exec_parse@batch-invalid-length.html * igt@gen9_exec_parse@shadow-peek: - shard-dg2: NOTRUN -> [SKIP][82] ([i915#2856]) +3 other tests skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-dg2-2/igt@gen9_exec_parse@shadow-peek.html - shard-mtlp: NOTRUN -> [SKIP][83] ([i915#2856]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-mtlp-2/igt@gen9_exec_parse@shadow-peek.html * igt@i915_module_load@load: - shard-dg1: NOTRUN -> [SKIP][84] ([i915#6227]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-dg1-17/igt@i915_module_load@load.html - shard-dg2: NOTRUN -> [SKIP][85] ([i915#6227]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-dg2-6/igt@i915_module_load@load.html - shard-rkl: NOTRUN -> [SKIP][86] ([i915#6227]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-rkl-1/igt@i915_module_load@load.html * igt@i915_module_load@reload-with-fault-injection: - shard-rkl: [PASS][87] -> [ABORT][88] ([i915#9820]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14098/shard-rkl-6/igt@i915_module_load@reload-with-fault-injection.html [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-rkl-6/igt@i915_module_load@reload-with-fault-injection.html - shard-snb: [PASS][89] -> [INCOMPLETE][90] ([i915#9200] / [i915#9849]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14098/shard-snb7/igt@i915_module_load@reload-with-fault-injection.html [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-snb1/igt@i915_module_load@reload-with-fault-injection.html - shard-tglu: [PASS][91] -> [INCOMPLETE][92] ([i915#9200]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14098/shard-tglu-5/igt@i915_module_load@reload-with-fault-injection.html [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-tglu-7/igt@i915_module_load@reload-with-fault-injection.html - shard-mtlp: NOTRUN -> [ABORT][93] ([i915#9820]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-mtlp-5/igt@i915_module_load@reload-with-fault-injection.html - shard-dg2: NOTRUN -> [INCOMPLETE][94] ([i915#9820] / [i915#9849]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-dg2-6/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pipe_stress@stress-xrgb8888-ytiled: - shard-dg2: NOTRUN -> [SKIP][95] ([i915#7091]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-dg2-5/igt@i915_pipe_stress@stress-xrgb8888-ytiled.html * igt@i915_pm_freq_api@freq-reset: - shard-tglu: NOTRUN -> [SKIP][96] ([i915#8399]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-tglu-4/igt@i915_pm_freq_api@freq-reset.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0: - shard-tglu: NOTRUN -> [WARN][97] ([i915#2681]) +3 other tests warn [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-tglu-4/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html * igt@i915_pm_rpm@gem-execbuf-stress-pc8: - shard-dg1: NOTRUN -> [SKIP][98] ([fdo#109293] / [fdo#109506]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-dg1-12/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html * igt@i915_pm_rps@thresholds-idle@gt0: - shard-dg2: NOTRUN -> [SKIP][99] ([i915#8925]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-dg2-11/igt@i915_pm_rps@thresholds-idle@gt0.html * igt@i915_pm_rps@thresholds@gt0: - shard-dg1: NOTRUN -> [SKIP][100] ([i915#8925]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-dg1-18/igt@i915_pm_rps@thresholds@gt0.html * igt@i915_query@query-topology-unsupported: - shard-dg1: NOTRUN -> [SKIP][101] ([fdo#109302]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-dg1-14/igt@i915_query@query-topology-unsupported.html * igt@i915_query@test-query-geometry-subslices: - shard-rkl: NOTRUN -> [SKIP][102] ([i915#5723]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-rkl-5/igt@i915_query@test-query-geometry-subslices.html * igt@kms_addfb_basic@basic-x-tiled-legacy: - shard-dg2: NOTRUN -> [SKIP][103] ([i915#4212]) +1 other test skip [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-dg2-5/igt@kms_addfb_basic@basic-x-tiled-legacy.html * igt@kms_addfb_basic@bo-too-small-due-to-tiling: - shard-dg1: NOTRUN -> [SKIP][104] ([i915#4212]) +1 other test skip [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-dg1-18/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html - shard-mtlp: NOTRUN -> [SKIP][105] ([i915#4212]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-mtlp-7/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-1-4-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][106] ([i915#8709]) +11 other tests skip [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-dg2-10/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-1-4-mc-ccs.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-tglu: NOTRUN -> [SKIP][107] ([i915#1769] / [i915#3555]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-tglu-6/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_big_fb@4-tiled-16bpp-rotate-180: - shard-rkl: NOTRUN -> [SKIP][108] ([i915#5286]) +4 other tests skip [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-rkl-6/igt@kms_big_fb@4-tiled-16bpp-rotate-180.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180: - shard-tglu: NOTRUN -> [SKIP][109] ([fdo#111615] / [i915#5286]) +3 other tests skip [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-tglu-9/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-dg1: NOTRUN -> [SKIP][110] ([i915#4538] / [i915#5286]) +5 other tests skip [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-dg1-12/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@linear-8bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][111] ([fdo#111614] / [i915#3638]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-rkl-5/igt@kms_big_fb@linear-8bpp-rotate-270.html - shard-dg1: NOTRUN -> [SKIP][112] ([i915#3638]) +2 other tests skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-dg1-19/igt@kms_big_fb@linear-8bpp-rotate-270.html * igt@kms_big_fb@x-tiled-32bpp-rotate-270: - shard-dg2: NOTRUN -> [SKIP][113] ([fdo#111614]) +6 other tests skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-dg2-10/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html * igt@kms_big_fb@x-tiled-8bpp-rotate-270: - shard-mtlp: NOTRUN -> [SKIP][114] ([fdo#111614]) +1 other test skip [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-mtlp-4/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip: - shard-tglu: [PASS][115] -> [FAIL][116] ([i915#3743]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14098/shard-tglu-10/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-tglu-8/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-mtlp: NOTRUN -> [SKIP][117] ([fdo#111615]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-mtlp-7/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][118] ([i915#4538]) +2 other tests skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-dg1-16/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-8bpp-rotate-0: - shard-dg2: NOTRUN -> [SKIP][119] ([i915#4538] / [i915#5190]) +6 other tests skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-dg2-2/igt@kms_big_fb@yf-tiled-8bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-8bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][120] ([fdo#110723]) +2 other tests skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-rkl-1/igt@kms_big_fb@yf-tiled-8bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-tglu: NOTRUN -> [SKIP][121] ([fdo#111615]) +2 other tests skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-tglu-7/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_ccs@pipe-a-bad-aux-stride-y-tiled-ccs: - shard-mtlp: NOTRUN -> [SKIP][122] ([i915#5354] / [i915#6095]) +7 other tests skip [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-mtlp-2/igt@kms_ccs@pipe-a-bad-aux-stride-y-tiled-ccs.html * igt@kms_ccs@pipe-a-crc-primary-basic-y-tiled-gen12-rc-ccs: - shard-snb: NOTRUN -> [SKIP][123] ([fdo#109271]) +8 other tests skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-snb2/igt@kms_ccs@pipe-a-crc-primary-basic-y-tiled-gen12-rc-ccs.html * igt@kms_ccs@pipe-b-bad-rotation-90-y-tiled-gen12-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][124] ([i915#5354]) +92 other tests skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-dg2-1/igt@kms_ccs@pipe-b-bad-rotation-90-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@pipe-b-missing-ccs-buffer-4-tiled-mtl-rc-ccs-cc: - shard-tglu: NOTRUN -> [SKIP][125] ([i915#5354] / [i915#6095]) +27 other tests skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-tglu-8/igt@kms_ccs@pipe-b-missing-ccs-buffer-4-tiled-mtl-rc-ccs-cc.html * igt@kms_ccs@pipe-b-missing-ccs-buffer-y-tiled-gen12-mc-ccs: - shard-rkl: NOTRUN -> [SKIP][126] ([i915#5354] / [i915#6095]) +17 other tests skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-rkl-5/igt@kms_ccs@pipe-b-missing-ccs-buffer-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@pipe-b-random-ccs-data-y-tiled-gen12-mc-ccs: - shard-dg1: NOTRUN -> [SKIP][127] ([i915#5354] / [i915#6095]) +39 other tests skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-dg1-17/igt@kms_ccs@pipe-b-random-ccs-data-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@pipe-d-ccs-on-another-bo-y-tiled-gen12-rc-ccs: - shard-rkl: NOTRUN -> [SKIP][128] ([i915#5354]) +20 other tests skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-rkl-4/igt@kms_ccs@pipe-d-ccs-on-another-bo-y-tiled-gen12-rc-ccs.html * igt@kms_cdclk@plane-scaling: - shard-rkl: NOTRUN -> [SKIP][129] ([i915#3742]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-rkl-6/igt@kms_cdclk@plane-scaling.html * igt@kms_chamelium_color@ctm-0-50: - shard-dg1: NOTRUN -> [SKIP][130] ([fdo#111827]) +2 other tests skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-dg1-12/igt@kms_chamelium_color@ctm-0-50.html * igt@kms_chamelium_color@ctm-limited-range: - shard-tglu: NOTRUN -> [SKIP][131] ([fdo#111827]) +1 other test skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-tglu-8/igt@kms_chamelium_color@ctm-limited-range.html * igt@kms_chamelium_color@ctm-max: - shard-mtlp: NOTRUN -> [SKIP][132] ([fdo#111827]) [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-mtlp-5/igt@kms_chamelium_color@ctm-max.html * igt@kms_chamelium_color@ctm-negative: - shard-dg2: NOTRUN -> [SKIP][133] ([fdo#111827]) +2 other tests skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-dg2-10/igt@kms_chamelium_color@ctm-negative.html * igt@kms_chamelium_color@degamma: - shard-rkl: NOTRUN -> [SKIP][134] ([fdo#111827]) +2 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-rkl-4/igt@kms_chamelium_color@degamma.html * igt@kms_chamelium_frames@dp-crc-multiple: - shard-tglu: NOTRUN -> [SKIP][135] ([i915#7828]) +1 other test skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-tglu-6/igt@kms_chamelium_frames@dp-crc-multiple.html * igt@kms_chamelium_frames@hdmi-cmp-planar-formats: - shard-dg2: NOTRUN -> [SKIP][136] ([i915#7828]) +10 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-dg2-1/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html * igt@kms_chamelium_frames@hdmi-crc-multiple: - shard-rkl: NOTRUN -> [SKIP][137] ([i915#7828]) +3 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-rkl-6/igt@kms_chamelium_frames@hdmi-crc-multiple.html * igt@kms_chamelium_hpd@hdmi-hpd-storm-disable: - shard-dg1: NOTRUN -> [SKIP][138] ([i915#7828]) +3 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-dg1-12/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html - shard-mtlp: NOTRUN -> [SKIP][139] ([i915#7828]) +1 other test skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-mtlp-5/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html * igt@kms_content_protection@dp-mst-type-1: - shard-mtlp: NOTRUN -> [SKIP][140] ([i915#3299]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-mtlp-4/igt@kms_content_protection@dp-mst-type-1.html - shard-dg2: NOTRUN -> [SKIP][141] ([i915#3299]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-dg2-11/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@lic: - shard-dg2: NOTRUN -> [SKIP][142] ([i915#7118]) +1 other test skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-dg2-6/igt@kms_content_protection@lic.html * igt@kms_content_protection@type1: - shard-rkl: NOTRUN -> [SKIP][143] ([i915#7118]) +1 other test skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-rkl-5/igt@kms_content_protection@type1.html * igt@kms_cursor_crc@cursor-onscreen-32x10: - shard-rkl: NOTRUN -> [SKIP][144] ([i915#3555]) +2 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-rkl-6/igt@kms_cursor_crc@cursor-onscreen-32x10.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-dg2: NOTRUN -> [SKIP][145] ([i915#3359]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-dg2-2/igt@kms_cursor_crc@cursor-random-512x170.html - shard-rkl: NOTRUN -> [SKIP][146] ([i915#3359]) +1 other test skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-rkl-7/igt@kms_cursor_crc@cursor-random-512x170.html - shard-dg1: NOTRUN -> [SKIP][147] ([i915#3359]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-dg1-18/igt@kms_cursor_crc@cursor-random-512x170.html - shard-tglu: NOTRUN -> [SKIP][148] ([i915#3359]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-tglu-6/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_crc@cursor-rapid-movement-32x10: - shard-dg1: NOTRUN -> [SKIP][149] ([i915#3555]) +4 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-dg1-14/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html - shard-mtlp: NOTRUN -> [SKIP][150] ([i915#3555] / [i915#8814]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-mtlp-8/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html * igt@kms_cursor_crc@cursor-rapid-movement-32x32: - shard-dg2: NOTRUN -> [SKIP][151] ([i915#3555]) +10 other tests skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-dg2-1/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy: - shard-tglu: NOTRUN -> [SKIP][152] ([fdo#109274]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-tglu-5/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-mtlp: NOTRUN -> [SKIP][153] ([i915#4213]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-mtlp-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html - shard-dg2: NOTRUN -> [SKIP][154] ([i915#4103] / [i915#4213]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-dg2-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html - shard-dg1: NOTRUN -> [SKIP][155] ([i915#4103] / [i915#4213]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-dg1-13/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-rkl: NOTRUN -> [SKIP][156] ([i915#4103]) +1 other test skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-rkl-7/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic: - shard-dg2: NOTRUN -> [SKIP][157] ([fdo#109274] / [i915#5354]) +5 other tests skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-dg2-11/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions: - shard-dg2: NOTRUN -> [SKIP][158] ([fdo#109274] / [fdo#111767] / [i915#5354]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-dg2-1/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html - shard-rkl: NOTRUN -> [SKIP][159] ([fdo#111767] / [fdo#111825]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-rkl-1/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html - shard-dg1: NOTRUN -> [SKIP][160] ([fdo#111767] / [fdo#111825]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-dg1-17/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html * igt@kms_cursor_legacy@single-bo@all-pipes: - shard-mtlp: [PASS][161] -> [DMESG-WARN][162] ([i915#2017]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14098/shard-mtlp-2/igt@kms_cursor_legacy@single-bo@all-pipes.html [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-mtlp-4/igt@kms_cursor_legacy@single-bo@all-pipes.html * igt@kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-dg2: NOTRUN -> [SKIP][163] ([i915#9833]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-dg2-2/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][164] ([i915#9723]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-rkl-2/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1.html * igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][165] ([i915#9227]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-dg2-6/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-3.html * igt@kms_display_modes@mst-extended-mode-negative: - shard-dg2: NOTRUN -> [SKIP][166] ([i915#8588]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-dg2-11/igt@kms_display_modes@mst-extended-mode-negative.html - shard-rkl: NOTRUN -> [SKIP][167] ([i915#8588]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-rkl-6/igt@kms_display_modes@mst-extended-mode-negative.html - shard-dg1: NOTRUN -> [SKIP][168] ([i915#8588]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-dg1-16/igt@kms_display_modes@mst-extended-mode-negative.html - shard-tglu: NOTRUN -> [SKIP][169] ([i915#8588]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-tglu-8/igt@kms_display_modes@mst-extended-mode-negative.html * igt@kms_draw_crc@draw-method-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][170] ([i915#8812]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-dg1-17/igt@kms_draw_crc@draw-method-mmap-gtt.html - shard-mtlp: NOTRUN -> [SKIP][171] ([i915#3555] / [i915#8812]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-mtlp-7/igt@kms_draw_crc@draw-method-mmap-gtt.html - shard-dg2: NOTRUN -> [SKIP][172] ([i915#8812]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-dg2-1/igt@kms_draw_crc@draw-method-mmap-gtt.html * igt@kms_dsc@dsc-fractional-bpp: - shard-dg2: NOTRUN -> [SKIP][173] ([i915#3840] / [i915#9688]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-dg2-11/igt@kms_dsc@dsc-fractional-bpp.html * igt@kms_dsc@dsc-with-output-formats-with-bpc: - shard-dg1: NOTRUN -> [SKIP][174] ([i915#3840] / [i915#9053]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-dg1-18/igt@kms_dsc@dsc-with-output-formats-with-bpc.html * igt@kms_feature_discovery@display-2x: - shard-mtlp: NOTRUN -> [SKIP][175] ([i915#1839]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-mtlp-4/igt@kms_feature_discovery@display-2x.html - shard-dg2: NOTRUN -> [SKIP][176] ([i915#1839]) +1 other test skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-dg2-7/igt@kms_feature_discovery@display-2x.html - shard-dg1: NOTRUN -> [SKIP][177] ([i915#1839]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-dg1-19/igt@kms_feature_discovery@display-2x.html * igt@kms_feature_discovery@psr2: - shard-dg1: NOTRUN -> [SKIP][178] ([i915#658]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-dg1-16/igt@kms_feature_discovery@psr2.html - shard-tglu: NOTRUN -> [SKIP][179] ([i915#658]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-tglu-8/igt@kms_feature_discovery@psr2.html - shard-dg2: NOTRUN -> [SKIP][180] ([i915#658]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-dg2-11/igt@kms_feature_discovery@psr2.html - shard-rkl: NOTRUN -> [SKIP][181] ([i915#658]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-rkl-6/igt@kms_feature_discovery@psr2.html * igt@kms_fence_pin_leak: - shard-dg2: NOTRUN -> [SKIP][182] ([i915#4881]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-dg2-6/igt@kms_fence_pin_leak.html * igt@kms_flip@2x-absolute-wf_vblank: - shard-dg2: NOTRUN -> [SKIP][183] ([fdo#109274]) +6 other tests skip [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-dg2-6/igt@kms_flip@2x-absolute-wf_vblank.html * igt@kms_flip@2x-flip-vs-absolute-wf_vblank: - shard-mtlp: NOTRUN -> [SKIP][184] ([i915#3637]) +1 other test skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-mtlp-5/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible: - shard-dg2: NOTRUN -> [SKIP][185] ([fdo#109274] / [fdo#111767]) +1 other test skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-dg2-2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html * igt@kms_flip@2x-flip-vs-modeset-vs-hang: - shard-dg1: NOTRUN -> [SKIP][186] ([fdo#111825] / [i915#9934]) +5 other tests skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-dg1-19/igt@kms_flip@2x-flip-vs-modeset-vs-hang.html * igt@kms_flip@2x-nonexisting-fb: - shard-tglu: NOTRUN -> [SKIP][187] ([fdo#109274] / [i915#3637]) +2 other tests skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-tglu-8/igt@kms_flip@2x-nonexisting-fb.html * igt@kms_flip@flip-vs-expired-vblank@d-dp4: - shard-dg2: NOTRUN -> [FAIL][188] ([i915#79]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-dg2-11/igt@kms_flip@flip-vs-expired-vblank@d-dp4.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][189] ([i915#2587] / [i915#2672]) +1 other test skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-tglu-4/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][190] ([i915#2672] / [i915#3555]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][191] ([i915#2672]) +3 other tests skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-dg2-6/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][192] ([i915#2672]) +2 other tests skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-rkl-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html - shard-dg1: NOTRUN -> [SKIP][193] ([i915#2587] / [i915#2672]) +1 other test skip [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-dg1-14/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][194] ([i915#2672] / [i915#3555]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-dg2-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html * igt@kms_force_connector_basic@force-load-detect: - shard-dg1: NOTRUN -> [SKIP][195] ([fdo#109285]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-dg1-15/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-pwrite: - shard-dg2: [PASS][196] -> [FAIL][197] ([i915#6880]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14098/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-pwrite.html [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff: - shard-snb: [PASS][198] -> [SKIP][199] ([fdo#109271]) +10 other tests skip [198]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14098/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-snb6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-pwrite: - shard-dg2: NOTRUN -> [SKIP][200] ([i915#3458]) +15 other tests skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-dg2-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][201] ([fdo#111825]) +9 other tests skip [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt.html - shard-mtlp: NOTRUN -> [SKIP][202] ([i915#8708]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-cpu: - shard-mtlp: NOTRUN -> [SKIP][203] ([i915#1825]) +6 other tests skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-cpu: - shard-dg1: NOTRUN -> [SKIP][204] ([fdo#111825]) +31 other tests skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-dg1-19/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][205] ([i915#8708]) +23 other tests skip [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-dg2-10/igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt: - shard-dg1: NOTRUN -> [SKIP][206] ([i915#3458]) +9 other tests skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][207] ([i915#8708]) +10 other tests skip [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-pwrite: - shard-tglu: NOTRUN -> [SKIP][208] ([fdo#110189]) +7 other tests skip [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-tglu-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt: - shard-glk: NOTRUN -> [SKIP][209] ([fdo#109271]) +210 other tests skip [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-glk9/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-1p-rte: - shard-rkl: NOTRUN -> [SKIP][210] ([i915#3023]) +10 other tests skip [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-1p-rte.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc: - shard-rkl: NOTRUN -> [SKIP][211] ([fdo#111825] / [i915#1825]) +17 other tests skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-move: - shard-tglu: NOTRUN -> [SKIP][212] ([fdo#109280]) +9 other tests skip [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-tglu-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-move.html * igt@kms_hdr@bpc-switch-suspend: - shard-tglu: NOTRUN -> [SKIP][213] ([i915#3555] / [i915#8228]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-tglu-4/igt@kms_hdr@bpc-switch-suspend.html - shard-dg2: NOTRUN -> [SKIP][214] ([i915#3555] / [i915#8228]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-dg2-5/igt@kms_hdr@bpc-switch-suspend.html - shard-rkl: NOTRUN -> [SKIP][215] ([i915#3555] / [i915#8228]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-rkl-2/igt@kms_hdr@bpc-switch-suspend.html - shard-dg1: NOTRUN -> [SKIP][216] ([i915#3555] / [i915#8228]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-dg1-14/igt@kms_hdr@bpc-switch-suspend.html * igt@kms_panel_fitting@legacy: - shard-dg2: NOTRUN -> [SKIP][217] ([i915#6301]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-dg2-6/igt@kms_panel_fitting@legacy.html * igt@kms_pipe_b_c_ivb@pipe-b-double-modeset-then-modeset-pipe-c: - shard-mtlp: NOTRUN -> [SKIP][218] ([fdo#109289]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-mtlp-8/igt@kms_pipe_b_c_ivb@pipe-b-double-modeset-then-modeset-pipe-c.html * igt@kms_plane_lowres@tiling-4@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][219] ([i915#3582]) +3 other tests skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-mtlp-5/igt@kms_plane_lowres@tiling-4@pipe-b-edp-1.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][220] ([i915#9423]) +9 other tests skip [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-rkl-1/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-a-hdmi-a-2.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-d-dp-4: - shard-dg2: NOTRUN -> [SKIP][221] ([i915#9423]) +3 other tests skip [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-dg2-11/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation@pipe-d-dp-4.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][222] ([i915#9423]) +11 other tests skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-dg1-18/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a-hdmi-a-4.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][223] ([i915#5176] / [i915#9423]) +3 other tests skip [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-dg1-13/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-3.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][224] ([i915#5235]) +7 other tests skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-rkl-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b-hdmi-a-2.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][225] ([i915#5235]) +2 other tests skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-mtlp-2/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a-edp-1.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][226] ([i915#3555] / [i915#5235]) [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-mtlp-2/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d-edp-1.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][227] ([i915#5235] / [i915#9423]) +23 other tests skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-dg2-6/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-3.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][228] ([i915#5235]) +19 other tests skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-dg1-17/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-4.html * igt@kms_pm_backlight@bad-brightness: - shard-dg1: NOTRUN -> [SKIP][229] ([i915#5354]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-dg1-18/igt@kms_pm_backlight@bad-brightness.html * igt@kms_pm_dc@dc3co-vpb-simulation: - shard-dg2: NOTRUN -> [SKIP][230] ([i915#9685]) +1 other test skip [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-dg2-2/igt@kms_pm_dc@dc3co-vpb-simulation.html * igt@kms_pm_dc@dc6-dpms: - shard-rkl: NOTRUN -> [SKIP][231] ([i915#3361]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-rkl-6/igt@kms_pm_dc@dc6-dpms.html - shard-tglu: [PASS][232] -> [FAIL][233] ([i915#9295]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14098/shard-tglu-9/igt@kms_pm_dc@dc6-dpms.html [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-tglu-7/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_dc@dc9-dpms: - shard-tglu: [PASS][234] -> [SKIP][235] ([i915#4281]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14098/shard-tglu-4/igt@kms_pm_dc@dc9-dpms.html [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-tglu-6/igt@kms_pm_dc@dc9-dpms.html * igt@kms_pm_lpsp@kms-lpsp: - shard-rkl: NOTRUN -> [SKIP][236] ([i915#9340]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-rkl-1/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_lpsp@screens-disabled: - shard-tglu: NOTRUN -> [SKIP][237] ([i915#8430]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-tglu-5/igt@kms_pm_lpsp@screens-disabled.html * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-rkl: NOTRUN -> [SKIP][238] ([i915#9519]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-rkl-4/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html - shard-tglu: NOTRUN -> [SKIP][239] ([i915#9519]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-tglu-9/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@kms_pm_rpm@modeset-lpsp: - shard-dg2: NOTRUN -> [SKIP][240] ([i915#9519]) [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-dg2-7/igt@kms_pm_rpm@modeset-lpsp.html - shard-rkl: [PASS][241] -> [SKIP][242] ([i915#9519]) +1 other test skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14098/shard-rkl-7/igt@kms_pm_rpm@modeset-lpsp.html [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-rkl-6/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-dg2: [PASS][243] -> [SKIP][244] ([i915#9519]) [243]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14098/shard-dg2-11/igt@kms_pm_rpm@modeset-non-lpsp.html [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-dg2-10/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-mtlp: NOTRUN -> [SKIP][245] ([i915#9519]) [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-mtlp-4/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_prime@d3hot: - shard-rkl: NOTRUN -> [SKIP][246] ([i915#6524]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-rkl-5/igt@kms_prime@d3hot.html - shard-dg1: NOTRUN -> [SKIP][247] ([i915#6524]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-dg1-16/igt@kms_prime@d3hot.html - shard-tglu: NOTRUN -> [SKIP][248] ([i915#6524]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-tglu-6/igt@kms_prime@d3hot.html * igt@kms_psr2_sf@overlay-plane-move-continuous-sf: - shard-rkl: NOTRUN -> [SKIP][249] ([i915#9683]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-rkl-5/igt@kms_psr2_sf@overlay-plane-move-continuous-sf.html * igt@kms_psr2_sf@plane-move-sf-dmg-area: - shard-dg1: NOTRUN -> [SKIP][250] ([fdo#111068] / [i915#9683]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-dg1-18/igt@kms_psr2_sf@plane-move-sf-dmg-area.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-dg2: NOTRUN -> [SKIP][251] ([i915#9683]) +2 other tests skip [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-dg2-5/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr2_su@page_flip-nv12: - shard-tglu: NOTRUN -> [SKIP][252] ([fdo#109642] / [fdo#111068] / [i915#9683]) [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-tglu-4/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr2_su@page_flip-p010: - shard-rkl: NOTRUN -> [SKIP][253] ([fdo#111068] / [i915#9683]) [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-rkl-1/igt@kms_psr2_su@page_flip-p010.html * igt@kms_rotation_crc@bad-pixel-format: - shard-dg2: NOTRUN -> [SKIP][254] ([i915#4235]) +1 other test skip [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-dg2-5/igt@kms_rotation_crc@bad-pixel-format.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-dg1: NOTRUN -> [SKIP][255] ([fdo#111615] / [i915#5289]) [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-dg1-15/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-rkl: NOTRUN -> [SKIP][256] ([fdo#111615] / [i915#5289]) [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-rkl-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_rotation_crc@sprite-rotation-270: - shard-rkl: [PASS][257] -> [INCOMPLETE][258] ([i915#8875] / [i915#9569]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14098/shard-rkl-4/igt@kms_rotation_crc@sprite-rotation-270.html [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-rkl-1/igt@kms_rotation_crc@sprite-rotation-270.html * igt@kms_setmode@basic-clone-single-crtc: - shard-mtlp: NOTRUN -> [SKIP][259] ([i915#3555] / [i915#8809]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-mtlp-7/igt@kms_setmode@basic-clone-single-crtc.html * igt@kms_tiled_display@basic-test-pattern: - shard-dg2: NOTRUN -> [SKIP][260] ([i915#8623]) [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-dg2-5/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_tv_load_detect@load-detect: - shard-tglu: NOTRUN -> [SKIP][261] ([fdo#109309]) [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-tglu-6/igt@kms_tv_load_detect@load-detect.html - shard-dg2: NOTRUN -> [SKIP][262] ([fdo#109309]) [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-dg2-2/igt@kms_tv_load_detect@load-detect.html - shard-rkl: NOTRUN -> [SKIP][263] ([fdo#109309]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-rkl-7/igt@kms_tv_load_detect@load-detect.html - shard-dg1: NOTRUN -> [SKIP][264] ([fdo#109309]) [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-dg1-18/igt@kms_tv_load_detect@load-detect.html * igt@kms_vrr@flip-basic-fastset: - shard-dg2: NOTRUN -> [SKIP][265] ([i915#9906]) [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-dg2-5/igt@kms_vrr@flip-basic-fastset.html * igt@kms_vrr@flip-dpms: - shard-mtlp: NOTRUN -> [SKIP][266] ([i915#3555] / [i915#8808]) [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-mtlp-2/igt@kms_vrr@flip-dpms.html * igt@kms_writeback@writeback-check-output: - shard-rkl: NOTRUN -> [SKIP][267] ([i915#2437]) [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-rkl-4/igt@kms_writeback@writeback-check-output.html - shard-glk: NOTRUN -> [SKIP][268] ([fdo#109271] / [i915#2437]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-glk4/igt@kms_writeback@writeback-check-output.html * igt@kms_writeback@writeback-fb-id: - shard-tglu: NOTRUN -> [SKIP][269] ([i915#2437]) [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-tglu-9/igt@kms_writeback@writeback-fb-id.html - shard-dg1: NOTRUN -> [SKIP][270] ([i915#2437]) [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-dg1-15/igt@kms_writeback@writeback-fb-id.html * igt@kms_writeback@writeback-fb-id-xrgb2101010: - shard-tglu: NOTRUN -> [SKIP][271] ([i915#2437] / [i915#9412]) +1 other test skip [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-tglu-5/igt@kms_writeback@writeback-fb-id-xrgb2101010.html * igt@perf@gen8-unprivileged-single-ctx-counters: - shard-rkl: NOTRUN -> [SKIP][272] ([i915#2436]) [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-rkl-4/igt@perf@gen8-unprivileged-single-ctx-counters.html * igt@perf@per-context-mode-unprivileged: - shard-rkl: NOTRUN -> [SKIP][273] ([i915#2435]) [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-rkl-4/igt@perf@per-context-mode-unprivileged.html - shard-dg1: NOTRUN -> [SKIP][274] ([fdo#109289] / [i915#2433]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-dg1-16/igt@perf@per-context-mode-unprivileged.html - shard-tglu: NOTRUN -> [SKIP][275] ([fdo#109289]) [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-tglu-4/igt@perf@per-context-mode-unprivileged.html * igt@perf_pmu@busy-double-start@rcs0: - shard-mtlp: [PASS][276] -> [FAIL][277] ([i915#4349]) [276]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14098/shard-mtlp-2/igt@perf_pmu@busy-double-start@rcs0.html [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-mtlp-7/igt@perf_pmu@busy-double-start@rcs0.html - shard-dg1: NOTRUN -> [FAIL][278] ([i915#4349]) [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-dg1-17/igt@perf_pmu@busy-double-start@rcs0.html * igt@perf_pmu@busy-double-start@vecs1: - shard-dg2: NOTRUN -> [FAIL][279] ([i915#4349]) +3 other tests fail [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-dg2-1/igt@perf_pmu@busy-double-start@vecs1.html * igt@prime_udl: - shard-dg2: NOTRUN -> [SKIP][280] ([fdo#109291]) [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-dg2-10/igt@prime_udl.html * igt@prime_vgem@basic-write: - shard-dg2: NOTRUN -> [SKIP][281] ([i915#3291] / [i915#3708]) +1 other test skip [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-dg2-11/igt@prime_vgem@basic-write.html * igt@prime_vgem@coherency-gtt: - shard-dg1: NOTRUN -> [SKIP][282] ([i915#3708] / [i915#4077]) [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-dg1-18/igt@prime_vgem@coherency-gtt.html * igt@prime_vgem@fence-flip-hang: - shard-tglu: NOTRUN -> [SKIP][283] ([fdo#109295]) [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-tglu-8/igt@prime_vgem@fence-flip-hang.html * igt@prime_vgem@fence-write-hang: - shard-rkl: NOTRUN -> [SKIP][284] ([fdo#109295] / [i915#3708]) [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-rkl-4/igt@prime_vgem@fence-write-hang.html * igt@sriov_basic@enable-vfs-autoprobe-on: - shard-dg2: NOTRUN -> [SKIP][285] ([i915#9917]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-dg2-1/igt@sriov_basic@enable-vfs-autoprobe-on.html * igt@v3d/v3d_perfmon@get-values-invalid-pad: - shard-dg1: NOTRUN -> [SKIP][286] ([i915#2575]) +9 other tests skip [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-dg1-15/igt@v3d/v3d_perfmon@get-values-invalid-pad.html - shard-mtlp: NOTRUN -> [SKIP][287] ([i915#2575]) +2 other tests skip [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-mtlp-7/igt@v3d/v3d_perfmon@get-values-invalid-pad.html * igt@v3d/v3d_submit_cl@simple-flush-cache: - shard-dg2: NOTRUN -> [SKIP][288] ([i915#2575]) +13 other tests skip [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-dg2-2/igt@v3d/v3d_submit_cl@simple-flush-cache.html * igt@v3d/v3d_submit_csd@single-out-sync: - shard-rkl: NOTRUN -> [SKIP][289] ([fdo#109315]) +5 other tests skip [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-rkl-1/igt@v3d/v3d_submit_csd@single-out-sync.html * igt@v3d/v3d_wait_bo@unused-bo-1ns: - shard-tglu: NOTRUN -> [SKIP][290] ([fdo#109315] / [i915#2575]) +4 other tests skip [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-tglu-8/igt@v3d/v3d_wait_bo@unused-bo-1ns.html * igt@vc4/vc4_dmabuf_poll@poll-write-waits-until-write-done: - shard-dg1: NOTRUN -> [SKIP][291] ([i915#7711]) +7 other tests skip [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-dg1-13/igt@vc4/vc4_dmabuf_poll@poll-write-waits-until-write-done.html - shard-mtlp: NOTRUN -> [SKIP][292] ([i915#7711]) +1 other test skip [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-mtlp-2/igt@vc4/vc4_dmabuf_poll@poll-write-waits-until-write-done.html * igt@vc4/vc4_label_bo@set-kernel-name: - shard-dg2: NOTRUN -> [SKIP][293] ([i915#7711]) +11 other tests skip [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-dg2-5/igt@vc4/vc4_label_bo@set-kernel-name.html * igt@vc4/vc4_perfmon@get-values-invalid-pointer: - shard-tglu: NOTRUN -> [SKIP][294] ([i915#2575]) +2 other tests skip [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-tglu-9/igt@vc4/vc4_perfmon@get-values-invalid-pointer.html * igt@vc4/vc4_tiling@get-bad-flags: - shard-rkl: NOTRUN -> [SKIP][295] ([i915#7711]) +5 other tests skip [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-rkl-7/igt@vc4/vc4_tiling@get-bad-flags.html #### Possible fixes #### * igt@fbdev@pan: - shard-snb: [FAIL][296] ([i915#4435]) -> [PASS][297] [296]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14098/shard-snb7/igt@fbdev@pan.html [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-snb6/igt@fbdev@pan.html * igt@gem_create@create-ext-cpu-access-big: - shard-dg2: [INCOMPLETE][298] ([i915#9364]) -> [PASS][299] [298]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14098/shard-dg2-11/igt@gem_create@create-ext-cpu-access-big.html [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-dg2-11/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_exec_fair@basic-none@vcs0: - shard-rkl: [FAIL][300] ([i915#2842]) -> [PASS][301] [300]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14098/shard-rkl-1/igt@gem_exec_fair@basic-none@vcs0.html [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-rkl-7/igt@gem_exec_fair@basic-none@vcs0.html * igt@gem_exec_fair@basic-pace@rcs0: - shard-tglu: [FAIL][302] ([i915#2842]) -> [PASS][303] +1 other test pass [302]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14098/shard-tglu-9/igt@gem_exec_fair@basic-pace@rcs0.html [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-tglu-5/igt@gem_exec_fair@basic-pace@rcs0.html * igt@gem_exec_suspend@basic-s4-devices@smem: - shard-tglu: [ABORT][304] ([i915#7975] / [i915#8213]) -> [PASS][305] [304]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14098/shard-tglu-10/igt@gem_exec_suspend@basic-s4-devices@smem.html [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-tglu-5/igt@gem_exec_suspend@basic-s4-devices@smem.html * igt@i915_module_load@reload-with-fault-injection: - shard-dg1: [INCOMPLETE][306] ([i915#9820] / [i915#9849]) -> [PASS][307] [306]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14098/shard-dg1-12/igt@i915_module_load@reload-with-fault-injection.html [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-dg1-17/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0: - shard-dg1: [FAIL][308] ([i915#3591]) -> [PASS][309] +1 other test pass [308]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14098/shard-dg1-12/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-dg1-16/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html * igt@kms_big_fb@4-tiled-64bpp-rotate-180: - shard-mtlp: [FAIL][310] ([i915#5138]) -> [PASS][311] +1 other test pass [310]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14098/shard-mtlp-5/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-mtlp-6/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip: - shard-tglu: [FAIL][312] ([i915#3743]) -> [PASS][313] [312]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14098/shard-tglu-2/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-tglu-3/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-glk: [FAIL][314] ([i915#2346]) -> [PASS][315] [314]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14098/shard-glk6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-glk4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-cpu: - shard-dg2: [FAIL][316] ([i915#6880]) -> [PASS][317] [316]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14098/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-cpu.html [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-gtt: - shard-snb: [SKIP][318] ([fdo#109271]) -> [PASS][319] +11 other tests pass [318]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14098/shard-snb6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-gtt.html [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-gtt.html * igt@kms_pm_rpm@modeset-lpsp-stress: - shard-rkl: [SKIP][320] ([i915#9519]) -> [PASS][321] +1 other test pass [320]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14098/shard-rkl-6/igt@kms_pm_rpm@modeset-lpsp-stress.html [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-rkl-7/igt@kms_pm_rpm@modeset-lpsp-stress.html * igt@perf_pmu@busy-double-start@ccs0: - shard-mtlp: [FAIL][322] ([i915#4349]) -> [PASS][323] [322]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14098/shard-mtlp-2/igt@perf_pmu@busy-double-start@ccs0.html [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-mtlp-7/igt@perf_pmu@busy-double-start@ccs0.html #### Warnings #### * igt@device_reset@unbind-reset-rebind: - shard-dg1: [ABORT][324] ([i915#9618]) -> [INCOMPLETE][325] ([i915#9408] / [i915#9618]) [324]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14098/shard-dg1-13/igt@device_reset@unbind-reset-rebind.html [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-dg1-15/igt@device_reset@unbind-reset-rebind.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg2: [DMESG-WARN][326] ([i915#4936] / [i915#5493]) -> [TIMEOUT][327] ([i915#5493]) [326]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14098/shard-dg2-6/igt@gem_lmem_swapping@smem-oom@lmem0.html [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-dg2-1/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@gem_pread@exhaustion: - shard-tglu: [INCOMPLETE][328] ([i915#10042]) -> [WARN][329] ([i915#2658]) [328]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14098/shard-tglu-3/igt@gem_pread@exhaustion.html [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-tglu-5/igt@gem_pread@exhaustion.html * igt@gem_pwrite@basic-exhaustion: - shard-glk: [WARN][330] ([i915#2658]) -> [INCOMPLETE][331] ([i915#10042]) [330]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14098/shard-glk7/igt@gem_pwrite@basic-exhaustion.html [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-glk3/igt@gem_pwrite@basic-exhaustion.html * igt@kms_async_flips@crc@pipe-b-edp-1: - shard-mtlp: [FAIL][332] ([i915#8247]) -> [DMESG-FAIL][333] ([i915#8561]) +1 other test dmesg-fail [332]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14098/shard-mtlp-6/igt@kms_async_flips@crc@pipe-b-edp-1.html [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-mtlp-5/igt@kms_async_flips@crc@pipe-b-edp-1.html * igt@kms_content_protection@atomic-dpms: - shard-snb: [INCOMPLETE][334] ([i915#8816]) -> [SKIP][335] ([fdo#109271]) [334]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14098/shard-snb7/igt@kms_content_protection@atomic-dpms.html [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-snb6/igt@kms_content_protection@atomic-dpms.html * igt@kms_fbcon_fbt@psr: - shard-rkl: [SKIP][336] ([fdo#110189] / [i915#3955]) -> [SKIP][337] ([i915#3955]) [336]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14098/shard-rkl-5/igt@kms_fbcon_fbt@psr.html [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-rkl-4/igt@kms_fbcon_fbt@psr.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-rkl: [SKIP][338] ([i915#4816]) -> [SKIP][339] ([i915#4070] / [i915#4816]) [338]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14098/shard-rkl-4/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-rkl-2/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem: - shard-dg2: [INCOMPLETE][340] ([i915#5493]) -> [CRASH][341] ([i915#9351]) [340]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14098/shard-dg2-1/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/shard-dg2-10/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291 [fdo#109293]: https://bugs.freedesktop.org/show_bug.cgi?id=109293 [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [fdo#109302]: https://bugs.freedesktop.org/show_bug.cgi?id=109302 [fdo#109309]: https://bugs.freedesktop.org/show_bug.cgi?id=109309 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506 [fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#110542]: https://bugs.freedesktop.org/show_bug.cgi?id=110542 [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [i915#10042]: https://gitlab.freedesktop.org/drm/intel/issues/10042 [i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099 [i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 [i915#2017]: https://gitlab.freedesktop.org/drm/intel/issues/2017 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2433]: https://gitlab.freedesktop.org/drm/intel/issues/2433 [i915#2435]: https://gitlab.freedesktop.org/drm/intel/issues/2435 [i915#2436]: https://gitlab.freedesktop.org/drm/intel/issues/2436 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 [i915#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681 [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023 [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299 [i915#3323]: https://gitlab.freedesktop.org/drm/intel/issues/3323 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3361]: https://gitlab.freedesktop.org/drm/intel/issues/3361 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3582]: https://gitlab.freedesktop.org/drm/intel/issues/3582 [i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742 [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#3936]: https://gitlab.freedesktop.org/drm/intel/issues/3936 [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955 [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213 [i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4281]: https://gitlab.freedesktop.org/drm/intel/issues/4281 [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 [i915#4435]: https://gitlab.freedesktop.org/drm/intel/issues/4435 [i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#4816]: https://gitlab.freedesktop.org/drm/intel/issues/4816 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880 [i915#4881]: https://gitlab.freedesktop.org/drm/intel/issues/4881 [i915#4936]: https://gitlab.freedesktop.org/drm/intel/issues/4936 [i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493 [i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566 [i915#5723]: https://gitlab.freedesktop.org/drm/intel/issues/5723 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6227]: https://gitlab.freedesktop.org/drm/intel/issues/6227 [i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301 [i915#6335]: https://gitlab.freedesktop.org/drm/intel/issues/6335 [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880 [i915#7091]: https://gitlab.freedesktop.org/drm/intel/issues/7091 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697 [i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79 [i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975 [i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213 [i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228 [i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247 [i915#8399]: https://gitlab.freedesktop.org/drm/intel/issues/8399 [i915#8411]: https://gitlab.freedesktop.org/drm/intel/issues/8411 [i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414 [i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428 [i915#8430]: https://gitlab.freedesktop.org/drm/intel/issues/8430 [i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555 [i915#8561]: https://gitlab.freedesktop.org/drm/intel/issues/8561 [i915#8562]: https://gitlab.freedesktop.org/drm/intel/issues/8562 [i915#8588]: https://gitlab.freedesktop.org/drm/intel/issues/8588 [i915#8623]: https://gitlab.freedesktop.org/drm/intel/issues/8623 [i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708 [i915#8709]: https://gitlab.freedesktop.org/drm/intel/issues/8709 [i915#8808]: https://gitlab.freedesktop.org/drm/intel/issues/8808 [i915#8809]: https://gitlab.freedesktop.org/drm/intel/issues/8809 [i915#8812]: https://gitlab.freedesktop.org/drm/intel/issues/8812 [i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814 [i915#8816]: https://gitlab.freedesktop.org/drm/intel/issues/8816 [i915#8875]: https://gitlab.freedesktop.org/drm/intel/issues/8875 [i915#8925]: https://gitlab.freedesktop.org/drm/intel/issues/8925 [i915#9053]: https://gitlab.freedesktop.org/drm/intel/issues/9053 [i915#9200]: https://gitlab.freedesktop.org/drm/intel/issues/9200 [i915#9227]: https://gitlab.freedesktop.org/drm/intel/issues/9227 [i915#9295]: https://gitlab.freedesktop.org/drm/intel/issues/9295 [i915#9340]: https://gitlab.freedesktop.org/drm/intel/issues/9340 [i915#9351]: https://gitlab.freedesktop.org/drm/intel/issues/9351 [i915#9364]: https://gitlab.freedesktop.org/drm/intel/issues/9364 [i915#9408]: https://gitlab.freedesktop.org/drm/intel/issues/9408 [i915#9412]: https://gitlab.freedesktop.org/drm/intel/issues/9412 [i915#9423]: https://gitlab.freedesktop.org/drm/intel/issues/9423 [i915#9519]: https://gitlab.freedesktop.org/drm/intel/issues/9519 [i915#9569]: https://gitlab.freedesktop.org/drm/intel/issues/9569 [i915#9606]: https://gitlab.freedesktop.org/drm/intel/issues/9606 [i915#9618]: https://gitlab.freedesktop.org/drm/intel/issues/9618 [i915#9673]: https://gitlab.freedesktop.org/drm/intel/issues/9673 [i915#9683]: https://gitlab.freedesktop.org/drm/intel/issues/9683 [i915#9685]: https://gitlab.freedesktop.org/drm/intel/issues/9685 [i915#9688]: https://gitlab.freedesktop.org/drm/intel/issues/9688 [i915#9723]: https://gitlab.freedesktop.org/drm/intel/issues/9723 [i915#9732]: https://gitlab.freedesktop.org/drm/intel/issues/9732 [i915#9808]: https://gitlab.freedesktop.org/drm/intel/issues/9808 [i915#9820]: https://gitlab.freedesktop.org/drm/intel/issues/9820 [i915#9833]: https://gitlab.freedesktop.org/drm/intel/issues/9833 [i915#9849]: https://gitlab.freedesktop.org/drm/intel/issues/9849 [i915#9906]: https://gitlab.freedesktop.org/drm/intel/issues/9906 [i915#9917]: https://gitlab.freedesktop.org/drm/intel/issues/9917 [i915#9934]: https://gitlab.freedesktop.org/drm/intel/issues/9934 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7663 -> IGTPW_10487 CI-20190529: 20190529 CI_DRM_14098: 33069fe3dece485caa21cc0870afec427877b105 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_10487: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/index.html IGT_7663: b5eca7b97430309e320874594feaeaa8e770e25e @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10487/index.html [-- Attachment #2: Type: text/html, Size: 109537 bytes --] ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] tests/msm: Add parallel recovery test 2024-01-08 21:59 [PATCH] tests/msm: Add parallel recovery test Rob Clark ` (2 preceding siblings ...) 2024-01-09 11:28 ` ✗ Fi.CI.IGT: failure " Patchwork @ 2024-01-09 15:05 ` Kamil Konieczny 3 siblings, 0 replies; 5+ messages in thread From: Kamil Konieczny @ 2024-01-09 15:05 UTC (permalink / raw) To: igt-dev; +Cc: Rob Clark Hi Rob, On 2024-01-08 at 13:59:06 -0800, Rob Clark wrote: > From: Rob Clark <robdclark@chromium.org> > > Add parallel recovery test to validate that the kernel does actually > manage to recover the gpu and successfully run unrelated (not hanging) > submits. > > Signed-off-by: Rob Clark <robdclark@chromium.org> Acked-by: Kamil Konieczny <kamil.konieczny@linux.intel.com> Regards, Kamil > --- > tests/msm/msm_recovery.c | 53 ++++++++++++++++++++++++++++++++++++++++ > 1 file changed, 53 insertions(+) > > diff --git a/tests/msm/msm_recovery.c b/tests/msm/msm_recovery.c > index 05c89948bf9a..6088368660f4 100644 > --- a/tests/msm/msm_recovery.c > +++ b/tests/msm/msm_recovery.c > @@ -148,6 +148,49 @@ do_hang_test(struct msm_pipe *pipe) > read_and_clear_devcore(); > } > > +/** > + * SUBTEST: gpu-fault-parallel > + * > + * Description: does a bunch of submits in parallel threads, a subset of > + * which trigger GPU hangs. For the submits which do not trigger hangs, > + * validate that they executed properly by checking that they were able > + * to write to the scratch buffer, so that we can see that the kernel > + * properly re-plays the non-faulting submits. > + */ > +static void > +do_parallel_test(struct msm_pipe *pipe, int child) > +{ > + struct msm_cmd *cmd = igt_msm_cmd_new(pipe, 0x1000); > + bool hang = child == 5; > + int fence_fd; > + > + msm_cmd_pkt7(cmd, CP_NOP, 0); > + > + if (hang) { > + msm_cmd_emit(cmd, 0xdeaddead); > + } else { > + /* Each forked thread writes/reads offset of child idx dwords: */ > + msm_cmd_pkt7(cmd, CP_MEM_WRITE, 3); > + msm_cmd_bo (cmd, scratch_bo, child * 4); /* ADDR_LO/HI */ > + msm_cmd_emit(cmd, child + 1); /* VAL */ > + } > + > + igt_until_timeout(15) { > + scratch[child] = 0; > + fence_fd = igt_msm_cmd_submit(cmd); > + igt_wait_and_close(fence_fd); > + > + if (hang) { > + read_and_clear_devcore(); > + } else { > + /* verify that non-crashing submits succeeded: */ > + igt_assert_eq(scratch[child], child + 1); > + } > + } > + > + igt_msm_cmd_free(cmd); > +} > + > /* > * Tests for drm/msm hangcheck, recovery, and fault handling > */ > @@ -183,6 +226,16 @@ igt_main > do_hang_test(pipe); > } > > + igt_describe("Parallel fault handling"); > + igt_subtest("gpu-fault-parallel") { > + igt_require(dev->gen >= 6); > + > + igt_fork(child, 20) { > + do_parallel_test(pipe, child); > + } > + igt_waitchildren(); > + } > + > igt_describe("Test iova fault handling"); > igt_subtest("iova-fault") { > struct msm_cmd *cmd; > -- > 2.43.0 > ^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2024-01-09 15:05 UTC | newest] Thread overview: 5+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-01-08 21:59 [PATCH] tests/msm: Add parallel recovery test Rob Clark 2024-01-09 0:57 ` ✓ Fi.CI.BAT: success for " Patchwork 2024-01-09 0:59 ` ✓ CI.xeBAT: " Patchwork 2024-01-09 11:28 ` ✗ Fi.CI.IGT: failure " Patchwork 2024-01-09 15:05 ` [PATCH] " Kamil Konieczny
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox