* [igt-dev] [PATCH] tests/amd_deadlock: add reset subtest
@ 2023-09-25 2:05 Jesse Zhang
2023-09-25 2:46 ` [igt-dev] ✗ CI.xeBAT: failure for " Patchwork
` (3 more replies)
0 siblings, 4 replies; 5+ messages in thread
From: Jesse Zhang @ 2023-09-25 2:05 UTC (permalink / raw)
To: igt-dev; +Cc: Tim Huang, Luben Tuikov, Alex Deucher, Christian Koenig
Add an amdgpu reset test to the suite
V2:
- improve subject and description (Kamil,Luben)
- sort the include alphabetically (Kamil)
- Optimize some code (Luben)
Signed-off-by: Jesse Zhang <Jesse.Zhang@amd.com>
Signed-off-by: Tim Huang <tim.huang@amd.com>
---
tests/amdgpu/amd_deadlock.c | 39 +++++++++++++++++++++++++++++++++++++
1 file changed, 39 insertions(+)
diff --git a/tests/amdgpu/amd_deadlock.c b/tests/amdgpu/amd_deadlock.c
index d805b8d18..4063ac61b 100644
--- a/tests/amdgpu/amd_deadlock.c
+++ b/tests/amdgpu/amd_deadlock.c
@@ -23,6 +23,9 @@
* Based on libdrm/tests/amdgpu/deadlock_tests.c
*/
+#include <fcntl.h>
+#include <sys/stat.h>
+#include <sys/sysmacros.h>
#include "lib/amdgpu/amd_memory.h"
#include "lib/amdgpu/amd_command_submission.h"
#include "lib/amdgpu/amd_dispatch.h"
@@ -70,6 +73,40 @@ amdgpu_gfx_illegal_mem_access(amdgpu_device_handle device_handle)
bad_access_helper(device_handle, 0, AMDGPU_HW_IP_GFX);
}
+static void
+amdgpu_gpu_reset_test(amdgpu_device_handle device_handle, int drm_amdgpu)
+{
+ amdgpu_context_handle context_handle;
+ char debugfs_path[256], tmp[10];
+ uint32_t hang_state, hangs;
+ struct stat sbuf;
+ int r, fd;
+
+ r = amdgpu_cs_ctx_create(device_handle, &context_handle);
+ igt_assert_eq(r, 0);
+
+ r = fstat(drm_amdgpu, &sbuf);
+ igt_assert_eq(r, 0);
+
+ sprintf(debugfs_path, "/sys/kernel/debug/dri/%d/amdgpu_gpu_recover", minor(sbuf.st_rdev));
+ fd = open(debugfs_path, O_RDONLY);
+ igt_assert_fd(fd);
+
+ r = read(fd, tmp, ARRAY_SIZE(tmp));
+ igt_assert_lt(0,r);
+
+ r = amdgpu_cs_query_reset_state(context_handle, &hang_state, &hangs);
+ igt_assert_eq(r, 0);
+ igt_assert_eq(hang_state, AMDGPU_CTX_UNKNOWN_RESET);
+
+ close(fd);
+ r = amdgpu_cs_ctx_free(context_handle);
+ igt_assert_eq(r, 0);
+
+ amdgpu_gfx_dispatch_test(device_handle, AMDGPU_HW_IP_GFX);
+ amdgpu_gfx_dispatch_test(device_handle, AMDGPU_HW_IP_COMPUTE);
+}
+
igt_main
{
amdgpu_device_handle device;
@@ -116,6 +153,8 @@ igt_main
igt_subtest("dispatch_hang_slow_gfx")
amdgpu_dispatch_hang_slow_gfx(device);
+ igt_subtest("amdgpu-reset-test")
+ amdgpu_gpu_reset_test(device,fd);
igt_fixture {
amdgpu_device_deinitialize(device);
drm_close_driver(fd);
--
2.25.1
^ permalink raw reply related [flat|nested] 5+ messages in thread* [igt-dev] ✗ CI.xeBAT: failure for tests/amd_deadlock: add reset subtest 2023-09-25 2:05 [igt-dev] [PATCH] tests/amd_deadlock: add reset subtest Jesse Zhang @ 2023-09-25 2:46 ` Patchwork 2023-09-25 2:49 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork ` (2 subsequent siblings) 3 siblings, 0 replies; 5+ messages in thread From: Patchwork @ 2023-09-25 2:46 UTC (permalink / raw) To: Jesse Zhang; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 1812 bytes --] == Series Details == Series: tests/amd_deadlock: add reset subtest URL : https://patchwork.freedesktop.org/series/124171/ State : failure == Summary == CI Bug Log - changes from XEIGT_7499_BAT -> XEIGTPW_9861_BAT ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_9861_BAT absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_9861_BAT, please notify your bug team (lgci.bug.filing@intel.com) to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (4 -> 4) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_9861_BAT: ### IGT changes ### #### Possible regressions #### * igt@xe_waitfence@reltime: - bat-dg2-oem2: [PASS][1] -> [FAIL][2] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7499/bat-dg2-oem2/igt@xe_waitfence@reltime.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9861/bat-dg2-oem2/igt@xe_waitfence@reltime.html Build changes ------------- * IGT: IGT_7499 -> IGTPW_9861 * Linux: xe-390-6149acb947f2f8b65ee1a058982a5d6fce3124ec -> xe-392-16e2c940ef53f81b2c68e16ec39cf5772894a625 IGTPW_9861: 9861 IGT_7499: d991240f6c6751e9480456c20de785cfc6e6ff15 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-390-6149acb947f2f8b65ee1a058982a5d6fce3124ec: 6149acb947f2f8b65ee1a058982a5d6fce3124ec xe-392-16e2c940ef53f81b2c68e16ec39cf5772894a625: 16e2c940ef53f81b2c68e16ec39cf5772894a625 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9861/index.html [-- Attachment #2: Type: text/html, Size: 2407 bytes --] ^ permalink raw reply [flat|nested] 5+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for tests/amd_deadlock: add reset subtest 2023-09-25 2:05 [igt-dev] [PATCH] tests/amd_deadlock: add reset subtest Jesse Zhang 2023-09-25 2:46 ` [igt-dev] ✗ CI.xeBAT: failure for " Patchwork @ 2023-09-25 2:49 ` Patchwork 2023-09-25 4:10 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 2023-09-26 1:36 ` [igt-dev] [PATCH] " vitaly prosyak 3 siblings, 0 replies; 5+ messages in thread From: Patchwork @ 2023-09-25 2:49 UTC (permalink / raw) To: Jesse Zhang; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 9612 bytes --] == Series Details == Series: tests/amd_deadlock: add reset subtest URL : https://patchwork.freedesktop.org/series/124171/ State : success == Summary == CI Bug Log - changes from IGT_7499 -> IGTPW_9861 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/index.html Participating hosts (39 -> 39) ------------------------------ Additional (1): bat-dg2-8 Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_9861 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_exec_suspend@basic-s0@smem: - bat-mtlp-8: NOTRUN -> [ABORT][1] ([i915#9262]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/bat-mtlp-8/igt@gem_exec_suspend@basic-s0@smem.html * igt@gem_mmap@basic: - bat-dg2-8: NOTRUN -> [SKIP][2] ([i915#4083]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/bat-dg2-8/igt@gem_mmap@basic.html * igt@gem_mmap_gtt@basic: - bat-dg2-8: NOTRUN -> [SKIP][3] ([i915#4077]) +2 other tests skip [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/bat-dg2-8/igt@gem_mmap_gtt@basic.html * igt@gem_tiled_pread_basic: - bat-dg2-8: NOTRUN -> [SKIP][4] ([i915#4079]) +1 other test skip [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/bat-dg2-8/igt@gem_tiled_pread_basic.html * igt@i915_pm_rps@basic-api: - bat-dg2-8: NOTRUN -> [SKIP][5] ([i915#6621]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/bat-dg2-8/igt@i915_pm_rps@basic-api.html * igt@i915_suspend@basic-s3-without-i915: - bat-mtlp-8: NOTRUN -> [SKIP][6] ([i915#6645]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/bat-mtlp-8/igt@i915_suspend@basic-s3-without-i915.html - bat-dg2-8: NOTRUN -> [SKIP][7] ([i915#6645]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/bat-dg2-8/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - bat-dg2-8: NOTRUN -> [SKIP][8] ([i915#5190]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/bat-dg2-8/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_addfb_basic@basic-y-tiled-legacy: - bat-dg2-8: NOTRUN -> [SKIP][9] ([i915#4215] / [i915#5190]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/bat-dg2-8/igt@kms_addfb_basic@basic-y-tiled-legacy.html * igt@kms_addfb_basic@framebuffer-vs-set-tiling: - bat-dg2-8: NOTRUN -> [SKIP][10] ([i915#4212]) +6 other tests skip [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/bat-dg2-8/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html * igt@kms_addfb_basic@tile-pitch-mismatch: - bat-dg2-8: NOTRUN -> [SKIP][11] ([i915#4212] / [i915#5608]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/bat-dg2-8/igt@kms_addfb_basic@tile-pitch-mismatch.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - bat-dg2-8: NOTRUN -> [SKIP][12] ([i915#4103] / [i915#4213] / [i915#5608]) +1 other test skip [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/bat-dg2-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_force_connector_basic@force-load-detect: - bat-dg2-8: NOTRUN -> [SKIP][13] ([fdo#109285]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/bat-dg2-8/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_force_connector_basic@prune-stale-modes: - bat-dg2-8: NOTRUN -> [SKIP][14] ([i915#5274]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/bat-dg2-8/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_psr@cursor_plane_move: - bat-dg2-8: NOTRUN -> [SKIP][15] ([i915#1072]) +3 other tests skip [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/bat-dg2-8/igt@kms_psr@cursor_plane_move.html * igt@kms_setmode@basic-clone-single-crtc: - bat-dg2-8: NOTRUN -> [SKIP][16] ([i915#3555]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/bat-dg2-8/igt@kms_setmode@basic-clone-single-crtc.html * igt@prime_vgem@basic-fence-flip: - bat-dg2-8: NOTRUN -> [SKIP][17] ([i915#3708]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/bat-dg2-8/igt@prime_vgem@basic-fence-flip.html * igt@prime_vgem@basic-fence-mmap: - bat-dg2-8: NOTRUN -> [SKIP][18] ([i915#3708] / [i915#4077]) +1 other test skip [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/bat-dg2-8/igt@prime_vgem@basic-fence-mmap.html * igt@prime_vgem@basic-write: - bat-dg2-8: NOTRUN -> [SKIP][19] ([i915#3291] / [i915#3708]) +2 other tests skip [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/bat-dg2-8/igt@prime_vgem@basic-write.html #### Possible fixes #### * igt@i915_selftest@live@requests: - bat-mtlp-8: [ABORT][20] ([i915#9262]) -> [PASS][21] [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7499/bat-mtlp-8/igt@i915_selftest@live@requests.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/bat-mtlp-8/igt@i915_selftest@live@requests.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [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#5608]: https://gitlab.freedesktop.org/drm/intel/issues/5608 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6645]: https://gitlab.freedesktop.org/drm/intel/issues/6645 [i915#7952]: https://gitlab.freedesktop.org/drm/intel/issues/7952 [i915#9262]: https://gitlab.freedesktop.org/drm/intel/issues/9262 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7499 -> IGTPW_9861 CI-20190529: 20190529 CI_DRM_13671: e1973de2c4516e9130157e538014e79c8aa57b41 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9861: 9861 IGT_7499: d991240f6c6751e9480456c20de785cfc6e6ff15 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Testlist changes ---------------- +igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-5 +igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25 +igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-75 +igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-5 +igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25 +igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-75 +igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-5 +igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25 +igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-75 +igt@kms_plane_scaling@plane-scaler-with-modifiers-unity-scaling +igt@kms_plane_scaling@plane-scaler-with-pixel-format-unity-scaling +igt@kms_plane_scaling@plane-scaler-with-rotation-unity-scaling +igt@kms_plane_scaling@plane-upscale-with-modifiers-20x20 +igt@kms_plane_scaling@plane-upscale-with-modifiers-factor-0-25 +igt@kms_plane_scaling@plane-upscale-with-pixel-format-20x20 +igt@kms_plane_scaling@plane-upscale-with-pixel-format-factor-0-25 +igt@kms_plane_scaling@plane-upscale-with-rotation-20x20 +igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25 -igt@kms_plane_scaling@plane-downscale-factor-0-5-with-modifiers -igt@kms_plane_scaling@plane-downscale-factor-0-5-with-pixel-format -igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation -igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers -igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format -igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation -igt@kms_plane_scaling@plane-downscale-factor-0-75-with-modifiers -igt@kms_plane_scaling@plane-downscale-factor-0-75-with-pixel-format -igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation -igt@kms_plane_scaling@plane-scaler-unity-scaling-with-modifiers -igt@kms_plane_scaling@plane-scaler-unity-scaling-with-pixel-format -igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation -igt@kms_plane_scaling@plane-upscale-20x20-with-modifiers -igt@kms_plane_scaling@plane-upscale-20x20-with-pixel-format -igt@kms_plane_scaling@plane-upscale-20x20-with-rotation -igt@kms_plane_scaling@plane-upscale-factor-0-25-with-modifiers -igt@kms_plane_scaling@plane-upscale-factor-0-25-with-pixel-format -igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/index.html [-- Attachment #2: Type: text/html, Size: 11317 bytes --] ^ permalink raw reply [flat|nested] 5+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for tests/amd_deadlock: add reset subtest 2023-09-25 2:05 [igt-dev] [PATCH] tests/amd_deadlock: add reset subtest Jesse Zhang 2023-09-25 2:46 ` [igt-dev] ✗ CI.xeBAT: failure for " Patchwork 2023-09-25 2:49 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork @ 2023-09-25 4:10 ` Patchwork 2023-09-26 1:36 ` [igt-dev] [PATCH] " vitaly prosyak 3 siblings, 0 replies; 5+ messages in thread From: Patchwork @ 2023-09-25 4:10 UTC (permalink / raw) To: Jesse Zhang; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 82905 bytes --] == Series Details == Series: tests/amd_deadlock: add reset subtest URL : https://patchwork.freedesktop.org/series/124171/ State : failure == Summary == CI Bug Log - changes from IGT_7499_full -> IGTPW_9861_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_9861_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_9861_full, please notify your bug team (lgci.bug.filing@intel.com) 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_9861/index.html Participating hosts (9 -> 9) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_9861_full: ### IGT changes ### #### Possible regressions #### * igt@i915_pm_rpm@modeset-non-lpsp-stress: - shard-apl: [PASS][1] -> [TIMEOUT][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7499/shard-apl6/igt@i915_pm_rpm@modeset-non-lpsp-stress.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-apl2/igt@i915_pm_rpm@modeset-non-lpsp-stress.html * igt@prime_vgem@basic-fence-blt: - shard-mtlp: NOTRUN -> [FAIL][3] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-mtlp-5/igt@prime_vgem@basic-fence-blt.html Known issues ------------ Here are the changes found in IGTPW_9861_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@device_reset@unbind-cold-reset-rebind: - shard-mtlp: NOTRUN -> [SKIP][4] ([i915#7701]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-mtlp-6/igt@device_reset@unbind-cold-reset-rebind.html * igt@drm_fdinfo@busy-check-all@vecs1: - shard-dg2: NOTRUN -> [SKIP][5] ([i915#8414]) +20 other tests skip [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-dg2-6/igt@drm_fdinfo@busy-check-all@vecs1.html * igt@drm_fdinfo@busy-idle-check-all@ccs0: - shard-mtlp: NOTRUN -> [SKIP][6] ([i915#8414]) +14 other tests skip [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-mtlp-7/igt@drm_fdinfo@busy-idle-check-all@ccs0.html * igt@drm_fdinfo@most-busy-check-all@rcs0: - shard-rkl: [PASS][7] -> [FAIL][8] ([i915#7742]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7499/shard-rkl-4/igt@drm_fdinfo@most-busy-check-all@rcs0.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-rkl-6/igt@drm_fdinfo@most-busy-check-all@rcs0.html * igt@gem_busy@semaphore: - shard-dg2: NOTRUN -> [SKIP][9] ([i915#3936]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-dg2-10/igt@gem_busy@semaphore.html * igt@gem_ccs@ctrl-surf-copy-new-ctx: - shard-mtlp: NOTRUN -> [SKIP][10] ([i915#9323]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-mtlp-3/igt@gem_ccs@ctrl-surf-copy-new-ctx.html * igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0: - shard-dg2: [PASS][11] -> [INCOMPLETE][12] ([i915#7297]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7499/shard-dg2-3/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-dg2-7/igt@gem_ccs@suspend-resume@linear-compressed-compfmt0-lmem0-lmem0.html * igt@gem_ctx_persistence@heartbeat-hostile: - shard-dg2: NOTRUN -> [SKIP][13] ([i915#8555]) +1 other test skip [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-dg2-6/igt@gem_ctx_persistence@heartbeat-hostile.html * igt@gem_ctx_persistence@heartbeat-many: - shard-mtlp: NOTRUN -> [SKIP][14] ([i915#8555]) +1 other test skip [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-mtlp-8/igt@gem_ctx_persistence@heartbeat-many.html * igt@gem_eio@hibernate: - shard-dg1: [PASS][15] -> [ABORT][16] ([i915#7975] / [i915#8213]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7499/shard-dg1-16/igt@gem_eio@hibernate.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-dg1-14/igt@gem_eio@hibernate.html * igt@gem_exec_balancer@bonded-dual: - shard-mtlp: NOTRUN -> [SKIP][17] ([i915#4771]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-mtlp-8/igt@gem_exec_balancer@bonded-dual.html * igt@gem_exec_balancer@bonded-semaphore: - shard-dg2: NOTRUN -> [SKIP][18] ([i915#4812]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-dg2-11/igt@gem_exec_balancer@bonded-semaphore.html * igt@gem_exec_balancer@bonded-true-hang: - shard-mtlp: NOTRUN -> [SKIP][19] ([i915#4812]) +1 other test skip [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-mtlp-5/igt@gem_exec_balancer@bonded-true-hang.html * igt@gem_exec_balancer@parallel: - shard-rkl: NOTRUN -> [SKIP][20] ([i915#4525]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-rkl-6/igt@gem_exec_balancer@parallel.html * igt@gem_exec_fair@basic-deadline: - shard-rkl: [PASS][21] -> [FAIL][22] ([i915#2846]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7499/shard-rkl-4/igt@gem_exec_fair@basic-deadline.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-rkl-2/igt@gem_exec_fair@basic-deadline.html * igt@gem_exec_fair@basic-none-solo: - shard-mtlp: NOTRUN -> [SKIP][23] ([i915#4473]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-mtlp-3/igt@gem_exec_fair@basic-none-solo.html * igt@gem_exec_fair@basic-pace@bcs0: - shard-rkl: [PASS][24] -> [FAIL][25] ([i915#2842]) +1 other test fail [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7499/shard-rkl-4/igt@gem_exec_fair@basic-pace@bcs0.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-rkl-6/igt@gem_exec_fair@basic-pace@bcs0.html * igt@gem_exec_fair@basic-throttle: - shard-mtlp: NOTRUN -> [SKIP][26] ([i915#4473] / [i915#4771]) +2 other tests skip [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-mtlp-8/igt@gem_exec_fair@basic-throttle.html * igt@gem_exec_flush@basic-uc-ro-default: - shard-dg2: NOTRUN -> [SKIP][27] ([i915#3539] / [i915#4852]) +3 other tests skip [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-dg2-2/igt@gem_exec_flush@basic-uc-ro-default.html * igt@gem_exec_flush@basic-uc-set-default: - shard-dg2: NOTRUN -> [SKIP][28] ([i915#3539]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-dg2-10/igt@gem_exec_flush@basic-uc-set-default.html * igt@gem_exec_gttfill@multigpu-basic: - shard-dg2: NOTRUN -> [SKIP][29] ([i915#7697]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-dg2-11/igt@gem_exec_gttfill@multigpu-basic.html * igt@gem_exec_reloc@basic-cpu-gtt: - shard-dg2: NOTRUN -> [SKIP][30] ([i915#3281]) +10 other tests skip [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-dg2-11/igt@gem_exec_reloc@basic-cpu-gtt.html * igt@gem_exec_reloc@basic-gtt-noreloc: - shard-mtlp: NOTRUN -> [SKIP][31] ([i915#3281]) +8 other tests skip [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-mtlp-2/igt@gem_exec_reloc@basic-gtt-noreloc.html * igt@gem_exec_reloc@basic-gtt-read-noreloc: - shard-rkl: NOTRUN -> [SKIP][32] ([i915#3281]) +1 other test skip [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-rkl-6/igt@gem_exec_reloc@basic-gtt-read-noreloc.html * igt@gem_exec_schedule@reorder-wide: - shard-dg2: NOTRUN -> [SKIP][33] ([i915#4537] / [i915#4812]) +2 other tests skip [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-dg2-10/igt@gem_exec_schedule@reorder-wide.html * igt@gem_exec_suspend@basic-s3-devices@smem: - shard-snb: NOTRUN -> [DMESG-WARN][34] ([i915#8841]) +2 other tests dmesg-warn [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-snb2/igt@gem_exec_suspend@basic-s3-devices@smem.html * igt@gem_fenced_exec_thrash@no-spare-fences-busy: - shard-dg2: NOTRUN -> [SKIP][35] ([i915#4860]) +1 other test skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-dg2-11/igt@gem_fenced_exec_thrash@no-spare-fences-busy.html * igt@gem_lmem_evict@dontneed-evict-race: - shard-mtlp: NOTRUN -> [SKIP][36] ([i915#4613]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-mtlp-8/igt@gem_lmem_evict@dontneed-evict-race.html * igt@gem_lmem_swapping@heavy-verify-multi: - shard-tglu: NOTRUN -> [SKIP][37] ([i915#4613]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-tglu-9/igt@gem_lmem_swapping@heavy-verify-multi.html * igt@gem_lmem_swapping@verify-random: - shard-rkl: NOTRUN -> [SKIP][38] ([i915#4613]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-rkl-4/igt@gem_lmem_swapping@verify-random.html * igt@gem_media_vme: - shard-dg2: NOTRUN -> [SKIP][39] ([i915#284]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-dg2-6/igt@gem_media_vme.html - shard-mtlp: NOTRUN -> [SKIP][40] ([i915#284]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-mtlp-8/igt@gem_media_vme.html * igt@gem_mmap_gtt@cpuset-big-copy: - shard-dg2: NOTRUN -> [SKIP][41] ([i915#4077]) +17 other tests skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-dg2-6/igt@gem_mmap_gtt@cpuset-big-copy.html * igt@gem_mmap_gtt@fault-concurrent: - shard-dg1: NOTRUN -> [SKIP][42] ([i915#4077]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-dg1-17/igt@gem_mmap_gtt@fault-concurrent.html * igt@gem_mmap_wc@copy: - shard-dg2: NOTRUN -> [SKIP][43] ([i915#4083]) +6 other tests skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-dg2-10/igt@gem_mmap_wc@copy.html - shard-mtlp: NOTRUN -> [SKIP][44] ([i915#4083]) +4 other tests skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-mtlp-6/igt@gem_mmap_wc@copy.html * igt@gem_partial_pwrite_pread@writes-after-reads-display: - shard-rkl: NOTRUN -> [SKIP][45] ([i915#3282]) +1 other test skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-rkl-1/igt@gem_partial_pwrite_pread@writes-after-reads-display.html * igt@gem_pread@snoop: - shard-dg2: NOTRUN -> [SKIP][46] ([i915#3282]) +9 other tests skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-dg2-6/igt@gem_pread@snoop.html * igt@gem_pxp@regular-baseline-src-copy-readible: - shard-dg2: NOTRUN -> [SKIP][47] ([i915#4270]) +2 other tests skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-dg2-6/igt@gem_pxp@regular-baseline-src-copy-readible.html - shard-rkl: NOTRUN -> [SKIP][48] ([i915#4270]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-rkl-1/igt@gem_pxp@regular-baseline-src-copy-readible.html * igt@gem_pxp@reject-modify-context-protection-on: - shard-mtlp: NOTRUN -> [SKIP][49] ([i915#4270]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-mtlp-8/igt@gem_pxp@reject-modify-context-protection-on.html * igt@gem_readwrite@read-bad-handle: - shard-mtlp: NOTRUN -> [SKIP][50] ([i915#3282]) +4 other tests skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-mtlp-5/igt@gem_readwrite@read-bad-handle.html * igt@gem_render_copy@linear-to-vebox-y-tiled: - shard-mtlp: NOTRUN -> [SKIP][51] ([i915#8428]) +4 other tests skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-mtlp-1/igt@gem_render_copy@linear-to-vebox-y-tiled.html * igt@gem_softpin@evict-snoop: - shard-mtlp: NOTRUN -> [SKIP][52] ([i915#4885]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-mtlp-3/igt@gem_softpin@evict-snoop.html - shard-dg2: NOTRUN -> [SKIP][53] ([i915#4885]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-dg2-2/igt@gem_softpin@evict-snoop.html * igt@gem_spin_batch@spin-all-new: - shard-dg2: NOTRUN -> [FAIL][54] ([i915#5889]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-dg2-3/igt@gem_spin_batch@spin-all-new.html * igt@gem_spin_batch@spin-each: - shard-mtlp: [PASS][55] -> [DMESG-FAIL][56] ([i915#8962]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7499/shard-mtlp-8/igt@gem_spin_batch@spin-each.html [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-mtlp-4/igt@gem_spin_batch@spin-each.html * igt@gem_tiled_pread_pwrite: - shard-dg2: NOTRUN -> [SKIP][57] ([i915#4079]) +1 other test skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-dg2-10/igt@gem_tiled_pread_pwrite.html * igt@gem_userptr_blits@coherency-unsync: - shard-rkl: NOTRUN -> [SKIP][58] ([i915#3297]) +2 other tests skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-rkl-1/igt@gem_userptr_blits@coherency-unsync.html * igt@gem_userptr_blits@dmabuf-unsync: - shard-dg2: NOTRUN -> [SKIP][59] ([i915#3297]) +3 other tests skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-dg2-2/igt@gem_userptr_blits@dmabuf-unsync.html - shard-dg1: NOTRUN -> [SKIP][60] ([i915#3297]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-dg1-16/igt@gem_userptr_blits@dmabuf-unsync.html - shard-mtlp: NOTRUN -> [SKIP][61] ([i915#3297]) +3 other tests skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-mtlp-4/igt@gem_userptr_blits@dmabuf-unsync.html * igt@gem_userptr_blits@vma-merge: - shard-dg2: NOTRUN -> [FAIL][62] ([i915#3318]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-dg2-11/igt@gem_userptr_blits@vma-merge.html * igt@gem_workarounds@suspend-resume-context: - shard-mtlp: [PASS][63] -> [ABORT][64] ([i915#9262]) +1 other test abort [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7499/shard-mtlp-6/igt@gem_workarounds@suspend-resume-context.html [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-mtlp-2/igt@gem_workarounds@suspend-resume-context.html * igt@gen7_exec_parse@basic-allowed: - shard-mtlp: NOTRUN -> [SKIP][65] ([fdo#109289]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-mtlp-3/igt@gen7_exec_parse@basic-allowed.html * igt@gen7_exec_parse@chained-batch: - shard-tglu: NOTRUN -> [SKIP][66] ([fdo#109289]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-tglu-3/igt@gen7_exec_parse@chained-batch.html * igt@gen9_exec_parse@bb-start-cmd: - shard-mtlp: NOTRUN -> [SKIP][67] ([i915#2856]) +3 other tests skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-mtlp-6/igt@gen9_exec_parse@bb-start-cmd.html * igt@gen9_exec_parse@bb-start-far: - shard-dg2: NOTRUN -> [SKIP][68] ([i915#2856]) +4 other tests skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-dg2-10/igt@gen9_exec_parse@bb-start-far.html * igt@i915_fb_tiling: - shard-mtlp: NOTRUN -> [SKIP][69] ([i915#4881]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-mtlp-6/igt@i915_fb_tiling.html - shard-dg2: NOTRUN -> [SKIP][70] ([i915#4881]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-dg2-10/igt@i915_fb_tiling.html * igt@i915_module_load@load: - shard-mtlp: NOTRUN -> [SKIP][71] ([i915#6227]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-mtlp-6/igt@i915_module_load@load.html * igt@i915_module_load@reload-with-fault-injection: - shard-dg2: [PASS][72] -> [DMESG-WARN][73] ([i915#8617]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7499/shard-dg2-7/igt@i915_module_load@reload-with-fault-injection.html [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-dg2-2/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_freq_api@freq-suspend: - shard-tglu: NOTRUN -> [SKIP][74] ([i915#8399]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-tglu-7/igt@i915_pm_freq_api@freq-suspend.html * igt@i915_pm_rc6_residency@rc6-idle@rcs0: - shard-dg1: [PASS][75] -> [FAIL][76] ([i915#3591]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7499/shard-dg1-18/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-dg1-16/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html * igt@i915_pm_rpm@dpms-lpsp: - shard-dg2: NOTRUN -> [SKIP][77] ([i915#1397]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-dg2-6/igt@i915_pm_rpm@dpms-lpsp.html * igt@i915_pm_rpm@dpms-non-lpsp: - shard-mtlp: NOTRUN -> [SKIP][78] ([i915#1397]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-mtlp-8/igt@i915_pm_rpm@dpms-non-lpsp.html * igt@i915_pm_rpm@modeset-non-lpsp: - shard-tglu: NOTRUN -> [SKIP][79] ([fdo#111644] / [i915#1397]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-tglu-3/igt@i915_pm_rpm@modeset-non-lpsp.html * igt@i915_pm_rpm@pc8-residency: - shard-rkl: NOTRUN -> [SKIP][80] ([fdo#109506]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-rkl-1/igt@i915_pm_rpm@pc8-residency.html * igt@i915_pm_rps@min-max-config-idle: - shard-dg2: NOTRUN -> [SKIP][81] ([i915#6621]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-dg2-10/igt@i915_pm_rps@min-max-config-idle.html * igt@i915_pm_rps@reset: - shard-snb: [PASS][82] -> [INCOMPLETE][83] ([i915#7790]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7499/shard-snb5/igt@i915_pm_rps@reset.html [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-snb4/igt@i915_pm_rps@reset.html * igt@i915_pm_rps@thresholds@gt0: - shard-dg2: NOTRUN -> [SKIP][84] ([i915#8925]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-dg2-11/igt@i915_pm_rps@thresholds@gt0.html * igt@i915_pm_sseu@full-enable: - shard-mtlp: NOTRUN -> [SKIP][85] ([i915#8437]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-mtlp-8/igt@i915_pm_sseu@full-enable.html * igt@i915_query@query-topology-unsupported: - shard-mtlp: NOTRUN -> [SKIP][86] ([fdo#109302]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-mtlp-6/igt@i915_query@query-topology-unsupported.html * igt@i915_suspend@fence-restore-tiled2untiled: - shard-mtlp: NOTRUN -> [SKIP][87] ([i915#4077]) +7 other tests skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-mtlp-8/igt@i915_suspend@fence-restore-tiled2untiled.html * igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy: - shard-mtlp: NOTRUN -> [SKIP][88] ([i915#4212]) +1 other test skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-mtlp-3/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html * igt@kms_addfb_basic@clobberred-modifier: - shard-dg2: NOTRUN -> [SKIP][89] ([i915#4212]) +1 other test skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-dg2-1/igt@kms_addfb_basic@clobberred-modifier.html * igt@kms_async_flips@crc@pipe-c-hdmi-a-1: - shard-dg1: NOTRUN -> [FAIL][90] ([i915#8247]) +3 other tests fail [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-dg1-19/igt@kms_async_flips@crc@pipe-c-hdmi-a-1.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing: - shard-mtlp: NOTRUN -> [SKIP][91] ([i915#1769] / [i915#3555]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-mtlp-5/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-snb: NOTRUN -> [SKIP][92] ([fdo#109271] / [i915#1769]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-snb1/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_big_fb@4-tiled-64bpp-rotate-90: - shard-tglu: NOTRUN -> [SKIP][93] ([fdo#111615] / [i915#5286]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-tglu-3/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html * igt@kms_big_fb@4-tiled-8bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][94] ([i915#5286]) +1 other test skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-rkl-4/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html * igt@kms_big_fb@linear-32bpp-rotate-270: - shard-dg2: NOTRUN -> [SKIP][95] ([fdo#111614]) +5 other tests skip [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-dg2-6/igt@kms_big_fb@linear-32bpp-rotate-270.html * igt@kms_big_fb@x-tiled-64bpp-rotate-90: - shard-mtlp: NOTRUN -> [SKIP][96] ([fdo#111614]) +2 other tests skip [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-mtlp-7/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html - shard-dg1: NOTRUN -> [SKIP][97] ([i915#3638]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-dg1-15/igt@kms_big_fb@x-tiled-64bpp-rotate-90.html * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-tglu: [PASS][98] -> [FAIL][99] ([i915#3743]) +2 other tests fail [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7499/shard-tglu-9/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-tglu-9/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@y-tiled-8bpp-rotate-270: - shard-dg2: NOTRUN -> [SKIP][100] ([i915#5190]) +15 other tests skip [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-dg2-11/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-0: - shard-mtlp: NOTRUN -> [SKIP][101] ([fdo#111615]) +10 other tests skip [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-mtlp-7/igt@kms_big_fb@yf-tiled-32bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-180: - shard-dg2: NOTRUN -> [SKIP][102] ([i915#4538] / [i915#5190]) +5 other tests skip [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-dg2-11/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html - shard-dg1: NOTRUN -> [SKIP][103] ([i915#4538]) +1 other test skip [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-dg1-13/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-rkl: NOTRUN -> [SKIP][104] ([fdo#110723]) +1 other test skip [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-rkl-7/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180: - shard-tglu: NOTRUN -> [SKIP][105] ([fdo#111615]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-tglu-3/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180.html * igt@kms_big_joiner@basic: - shard-dg2: NOTRUN -> [SKIP][106] ([i915#2705]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-dg2-6/igt@kms_big_joiner@basic.html - shard-rkl: NOTRUN -> [SKIP][107] ([i915#2705]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-rkl-2/igt@kms_big_joiner@basic.html - shard-mtlp: NOTRUN -> [SKIP][108] ([i915#2705]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-mtlp-8/igt@kms_big_joiner@basic.html * igt@kms_ccs@pipe-a-crc-sprite-planes-basic-4_tiled_dg2_mc_ccs: - shard-mtlp: NOTRUN -> [SKIP][109] ([i915#5354] / [i915#6095]) +41 other tests skip [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-mtlp-3/igt@kms_ccs@pipe-a-crc-sprite-planes-basic-4_tiled_dg2_mc_ccs.html * igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_gen12_mc_ccs: - shard-dg2: NOTRUN -> [SKIP][110] ([i915#3689] / [i915#3886] / [i915#5354]) +10 other tests skip [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-dg2-2/igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-b-bad-rotation-90-4_tiled_dg2_rc_ccs_cc: - shard-tglu: NOTRUN -> [SKIP][111] ([i915#5354] / [i915#6095]) +3 other tests skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-tglu-10/igt@kms_ccs@pipe-b-bad-rotation-90-4_tiled_dg2_rc_ccs_cc.html * igt@kms_ccs@pipe-b-crc-primary-basic-4_tiled_mtl_mc_ccs: - shard-rkl: NOTRUN -> [SKIP][112] ([i915#5354] / [i915#6095]) +2 other tests skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-rkl-4/igt@kms_ccs@pipe-b-crc-primary-basic-4_tiled_mtl_mc_ccs.html * igt@kms_ccs@pipe-b-crc-primary-basic-y_tiled_gen12_mc_ccs: - shard-dg1: NOTRUN -> [SKIP][113] ([i915#3689] / [i915#3886] / [i915#5354] / [i915#6095]) +1 other test skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-dg1-17/igt@kms_ccs@pipe-b-crc-primary-basic-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_mc_ccs: - shard-mtlp: NOTRUN -> [SKIP][114] ([i915#3886] / [i915#5354] / [i915#6095]) +8 other tests skip [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-mtlp-3/igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_rc_ccs_cc: - shard-apl: NOTRUN -> [SKIP][115] ([fdo#109271] / [i915#3886]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-apl6/igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_rc_ccs_cc.html - shard-glk: NOTRUN -> [SKIP][116] ([fdo#109271] / [i915#3886]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-glk1/igt@kms_ccs@pipe-b-random-ccs-data-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-b-random-ccs-data-yf_tiled_ccs: - shard-rkl: NOTRUN -> [SKIP][117] ([i915#3734] / [i915#5354] / [i915#6095]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-rkl-7/igt@kms_ccs@pipe-b-random-ccs-data-yf_tiled_ccs.html * igt@kms_ccs@pipe-c-bad-rotation-90-4_tiled_dg2_rc_ccs_cc: - shard-dg1: NOTRUN -> [SKIP][118] ([i915#5354] / [i915#6095]) +1 other test skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-dg1-13/igt@kms_ccs@pipe-c-bad-rotation-90-4_tiled_dg2_rc_ccs_cc.html * igt@kms_ccs@pipe-c-crc-primary-rotation-180-yf_tiled_ccs: - shard-tglu: NOTRUN -> [SKIP][119] ([fdo#111615] / [i915#3689] / [i915#5354] / [i915#6095]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-tglu-7/igt@kms_ccs@pipe-c-crc-primary-rotation-180-yf_tiled_ccs.html * igt@kms_ccs@pipe-c-crc-sprite-planes-basic-4_tiled_dg2_rc_ccs: - shard-dg1: NOTRUN -> [SKIP][120] ([i915#3689] / [i915#5354] / [i915#6095]) +1 other test skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-dg1-15/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-4_tiled_dg2_rc_ccs.html * igt@kms_ccs@pipe-c-random-ccs-data-4_tiled_dg2_rc_ccs: - shard-tglu: NOTRUN -> [SKIP][121] ([i915#3689] / [i915#5354] / [i915#6095]) +1 other test skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-tglu-8/igt@kms_ccs@pipe-c-random-ccs-data-4_tiled_dg2_rc_ccs.html * igt@kms_ccs@pipe-d-bad-aux-stride-y_tiled_ccs: - shard-dg2: NOTRUN -> [SKIP][122] ([i915#3689] / [i915#5354]) +24 other tests skip [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-dg2-11/igt@kms_ccs@pipe-d-bad-aux-stride-y_tiled_ccs.html - shard-rkl: NOTRUN -> [SKIP][123] ([i915#5354]) +6 other tests skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-rkl-6/igt@kms_ccs@pipe-d-bad-aux-stride-y_tiled_ccs.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-dg2: NOTRUN -> [SKIP][124] ([i915#4087] / [i915#7213]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-dg2-10/igt@kms_cdclk@mode-transition-all-outputs.html - shard-rkl: NOTRUN -> [SKIP][125] ([i915#3742]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-rkl-6/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_cdclk@plane-scaling@pipe-b-dp-4: - shard-dg2: NOTRUN -> [SKIP][126] ([i915#4087]) +3 other tests skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-dg2-11/igt@kms_cdclk@plane-scaling@pipe-b-dp-4.html * igt@kms_chamelium_color@ctm-blue-to-red: - shard-mtlp: NOTRUN -> [SKIP][127] ([fdo#111827]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-mtlp-2/igt@kms_chamelium_color@ctm-blue-to-red.html * igt@kms_chamelium_color@ctm-green-to-red: - shard-dg2: NOTRUN -> [SKIP][128] ([fdo#111827]) +1 other test skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-dg2-6/igt@kms_chamelium_color@ctm-green-to-red.html * igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k: - shard-dg2: NOTRUN -> [SKIP][129] ([i915#7828]) +9 other tests skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-dg2-11/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html * igt@kms_chamelium_frames@dp-crc-single: - shard-tglu: NOTRUN -> [SKIP][130] ([i915#7828]) +1 other test skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-tglu-9/igt@kms_chamelium_frames@dp-crc-single.html * igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode: - shard-rkl: NOTRUN -> [SKIP][131] ([i915#7828]) +2 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-rkl-1/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html * igt@kms_chamelium_hpd@vga-hpd-for-each-pipe: - shard-mtlp: NOTRUN -> [SKIP][132] ([i915#7828]) +7 other tests skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-mtlp-4/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html * igt@kms_content_protection@content_type_change: - shard-tglu: NOTRUN -> [SKIP][133] ([i915#6944] / [i915#7116] / [i915#7118]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-tglu-8/igt@kms_content_protection@content_type_change.html * igt@kms_content_protection@dp-mst-type-1: - shard-mtlp: NOTRUN -> [SKIP][134] ([i915#3299]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-mtlp-3/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@lic: - shard-mtlp: NOTRUN -> [SKIP][135] ([i915#6944]) +1 other test skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-mtlp-8/igt@kms_content_protection@lic.html * igt@kms_content_protection@uevent: - shard-dg2: NOTRUN -> [SKIP][136] ([i915#7118]) +1 other test skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-dg2-3/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-onscreen-512x512: - shard-dg2: NOTRUN -> [SKIP][137] ([i915#3359]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-dg2-11/igt@kms_cursor_crc@cursor-onscreen-512x512.html * igt@kms_cursor_crc@cursor-random-32x10: - shard-rkl: NOTRUN -> [SKIP][138] ([i915#3555]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-rkl-4/igt@kms_cursor_crc@cursor-random-32x10.html * igt@kms_cursor_crc@cursor-sliding-512x170: - shard-mtlp: NOTRUN -> [SKIP][139] ([i915#3359]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-mtlp-8/igt@kms_cursor_crc@cursor-sliding-512x170.html * igt@kms_cursor_crc@cursor-sliding-max-size: - shard-mtlp: NOTRUN -> [SKIP][140] ([i915#3555] / [i915#8814]) +1 other test skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-mtlp-6/igt@kms_cursor_crc@cursor-sliding-max-size.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic: - shard-dg2: NOTRUN -> [SKIP][141] ([fdo#109274] / [fdo#111767] / [i915#5354]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-dg2-7/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-mtlp: NOTRUN -> [SKIP][142] ([i915#4213]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-mtlp-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-tglu: NOTRUN -> [SKIP][143] ([i915#4103]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-tglu-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html - shard-dg2: NOTRUN -> [SKIP][144] ([i915#4103] / [i915#4213]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-dg2-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt@kms_cursor_legacy@cursor-vs-flip-legacy: - shard-mtlp: [PASS][145] -> [DMESG-WARN][146] ([i915#1982]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7499/shard-mtlp-1/igt@kms_cursor_legacy@cursor-vs-flip-legacy.html [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-mtlp-3/igt@kms_cursor_legacy@cursor-vs-flip-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipa-legacy: - shard-dg1: NOTRUN -> [SKIP][147] ([fdo#111825]) +4 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-dg1-19/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html - shard-mtlp: NOTRUN -> [SKIP][148] ([i915#3546]) +3 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-mtlp-5/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipb-legacy: - shard-dg2: NOTRUN -> [SKIP][149] ([fdo#109274] / [i915#5354]) +5 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-dg2-2/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipb-toggle: - shard-apl: NOTRUN -> [SKIP][150] ([fdo#109271] / [fdo#111767]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-apl2/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html - shard-rkl: NOTRUN -> [SKIP][151] ([fdo#111767] / [fdo#111825]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-rkl-1/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-apl: [PASS][152] -> [FAIL][153] ([i915#2346]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7499/shard-apl6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-apl4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][154] ([i915#3804]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-rkl-1/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html * igt@kms_dither@fb-8bpc-vs-panel-8bpc: - shard-dg2: NOTRUN -> [SKIP][155] ([i915#3555]) +6 other tests skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-dg2-1/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html * igt@kms_dsc@dsc-with-formats: - shard-dg2: NOTRUN -> [SKIP][156] ([i915#3555] / [i915#3840]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-dg2-11/igt@kms_dsc@dsc-with-formats.html * igt@kms_fbcon_fbt@psr: - shard-dg2: NOTRUN -> [SKIP][157] ([i915#3469]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-dg2-6/igt@kms_fbcon_fbt@psr.html * igt@kms_flip@2x-flip-vs-dpms: - shard-mtlp: NOTRUN -> [SKIP][158] ([i915#3637]) +7 other tests skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-mtlp-6/igt@kms_flip@2x-flip-vs-dpms.html * igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset: - shard-tglu: NOTRUN -> [SKIP][159] ([fdo#109274] / [i915#3637]) +1 other test skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-tglu-9/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible: - shard-snb: NOTRUN -> [SKIP][160] ([fdo#109271] / [fdo#111767]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-snb2/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html * igt@kms_flip@2x-flip-vs-fences-interruptible: - shard-dg2: NOTRUN -> [SKIP][161] ([i915#8381]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-dg2-6/igt@kms_flip@2x-flip-vs-fences-interruptible.html * igt@kms_flip@2x-flip-vs-modeset: - shard-dg2: NOTRUN -> [SKIP][162] ([fdo#109274]) +6 other tests skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-dg2-2/igt@kms_flip@2x-flip-vs-modeset.html * igt@kms_flip@2x-nonexisting-fb: - shard-rkl: NOTRUN -> [SKIP][163] ([fdo#111825]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-rkl-4/igt@kms_flip@2x-nonexisting-fb.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][164] ([i915#2587] / [i915#2672]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-tglu-2/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][165] ([i915#2672]) +1 other test skip [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-dg2-6/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][166] ([i915#2672]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-rkl-2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][167] ([i915#2672]) +3 other tests skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-mtlp-3/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][168] ([i915#3555] / [i915#8810]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-64bpp-linear-to-32bpp-linear-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][169] ([i915#2672] / [i915#3555]) +2 other tests skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][170] ([i915#2672] / [i915#3555]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-dg2-10/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-dg2: NOTRUN -> [SKIP][171] ([fdo#109285]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-dg2-1/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_force_connector_basic@prune-stale-modes: - shard-mtlp: NOTRUN -> [SKIP][172] ([i915#5274]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-mtlp-6/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render: - shard-snb: [PASS][173] -> [ABORT][174] ([i915#8865]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7499/shard-snb5/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render.html [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-snb7/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][175] ([i915#5354]) +54 other tests skip [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen: - shard-tglu: NOTRUN -> [SKIP][176] ([fdo#109280]) +5 other tests skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-tglu-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbc-tiling-y: - shard-mtlp: NOTRUN -> [SKIP][177] ([i915#5460]) +1 other test skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbc-tiling-y.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][178] ([i915#8708]) +1 other test skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][179] ([i915#8708]) +26 other tests skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt: - shard-apl: NOTRUN -> [SKIP][180] ([fdo#109271]) +52 other tests skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-apl4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-onoff: - shard-mtlp: NOTRUN -> [SKIP][181] ([i915#1825]) +32 other tests skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-mtlp-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc: - shard-rkl: NOTRUN -> [SKIP][182] ([i915#3023]) +5 other tests skip [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-dg2: NOTRUN -> [SKIP][183] ([i915#5460]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-cpu: - shard-tglu: NOTRUN -> [SKIP][184] ([fdo#110189]) +5 other tests skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-tglu-9/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-1p-rte: - shard-dg2: NOTRUN -> [SKIP][185] ([i915#3458]) +22 other tests skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-dg2-6/igt@kms_frontbuffer_tracking@psr-1p-rte.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-blt: - shard-rkl: NOTRUN -> [SKIP][186] ([fdo#111825] / [i915#1825]) +7 other tests skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][187] ([i915#8708]) +10 other tests skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-mtlp-8/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt.html * igt@kms_hdr@bpc-switch-suspend: - shard-dg1: NOTRUN -> [SKIP][188] ([i915#3555] / [i915#8228]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-dg1-13/igt@kms_hdr@bpc-switch-suspend.html * igt@kms_hdr@static-swap: - shard-rkl: NOTRUN -> [SKIP][189] ([i915#3555] / [i915#8228]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-rkl-1/igt@kms_hdr@static-swap.html - shard-mtlp: NOTRUN -> [SKIP][190] ([i915#3555] / [i915#8228]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-mtlp-4/igt@kms_hdr@static-swap.html * igt@kms_hdr@static-toggle: - shard-dg2: NOTRUN -> [SKIP][191] ([i915#3555] / [i915#8228]) +2 other tests skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-dg2-2/igt@kms_hdr@static-toggle.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-mtlp: NOTRUN -> [SKIP][192] ([i915#4816]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-mtlp-8/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes: - shard-dg2: NOTRUN -> [SKIP][193] ([fdo#109289]) +6 other tests skip [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-dg2-10/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html * igt@kms_pipe_b_c_ivb@pipe-b-double-modeset-then-modeset-pipe-c: - shard-rkl: NOTRUN -> [SKIP][194] ([fdo#109289]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-rkl-2/igt@kms_pipe_b_c_ivb@pipe-b-double-modeset-then-modeset-pipe-c.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-dp-1: - shard-apl: [PASS][195] -> [INCOMPLETE][196] ([i915#1982] / [i915#9392]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7499/shard-apl3/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-dp-1.html [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-apl6/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-dp-1.html * igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a-planes: - shard-mtlp: NOTRUN -> [ABORT][197] ([i915#9262]) +5 other tests abort [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-mtlp-6/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a-planes.html * igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b-planes: - shard-mtlp: NOTRUN -> [DMESG-WARN][198] ([i915#9262]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-mtlp-6/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b-planes.html * igt@kms_plane_lowres@tiling-none@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][199] ([i915#3582]) +3 other tests skip [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-mtlp-7/igt@kms_plane_lowres@tiling-none@pipe-b-edp-1.html * igt@kms_plane_lowres@tiling-y: - shard-dg2: NOTRUN -> [SKIP][200] ([i915#8821]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-dg2-11/igt@kms_plane_lowres@tiling-y.html * igt@kms_plane_scaling@intel-max-src-size: - shard-dg2: NOTRUN -> [SKIP][201] ([i915#6953]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-dg2-2/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-b-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][202] ([i915#5176]) +3 other tests skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-tglu-5/igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-b-hdmi-a-1.html * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-b-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][203] ([i915#5176]) +7 other tests skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-dg2-10/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-b-hdmi-a-1.html * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-5@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][204] ([i915#5176]) +5 other tests skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-mtlp-7/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-5@pipe-c-edp-1.html * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-75@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][205] ([i915#5176]) +5 other tests skip [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-rkl-7/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-75@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][206] ([i915#5176]) +3 other tests skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/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-factor-0-25@pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][207] ([i915#5235]) +19 other tests skip [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-dg2-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-hdmi-a-3.html * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][208] ([i915#5235]) +15 other tests skip [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-dg1-13/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-3.html * igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-b-vga-1: - shard-snb: NOTRUN -> [SKIP][209] ([fdo#109271]) +99 other tests skip [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-snb5/igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-b-vga-1.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][210] ([i915#5235]) +7 other tests skip [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-mtlp-8/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-edp-1.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][211] ([i915#5235]) +9 other tests skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-rkl-2/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-2.html * igt@kms_prime@d3hot: - shard-dg2: NOTRUN -> [SKIP][212] ([i915#6524] / [i915#6805]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-dg2-1/igt@kms_prime@d3hot.html * igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-fully-sf: - shard-tglu: NOTRUN -> [SKIP][213] ([i915#658]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-tglu-8/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_su@page_flip-nv12: - shard-dg2: NOTRUN -> [SKIP][214] ([i915#658]) +3 other tests skip [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-dg2-7/igt@kms_psr2_su@page_flip-nv12.html - shard-mtlp: NOTRUN -> [SKIP][215] ([i915#4348]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-mtlp-7/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr@primary_blt: - shard-dg2: NOTRUN -> [SKIP][216] ([i915#1072]) +6 other tests skip [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-dg2-11/igt@kms_psr@primary_blt.html * igt@kms_psr@psr2_primary_blt: - shard-rkl: NOTRUN -> [SKIP][217] ([i915#1072]) +1 other test skip [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-rkl-6/igt@kms_psr@psr2_primary_blt.html * igt@kms_rotation_crc@primary-4-tiled-reflect-x-180: - shard-rkl: NOTRUN -> [SKIP][218] ([i915#5289]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-rkl-4/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-180: - shard-mtlp: NOTRUN -> [SKIP][219] ([i915#5289]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-mtlp-6/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html * igt@kms_rotation_crc@sprite-rotation-90-pos-100-0: - shard-dg2: NOTRUN -> [SKIP][220] ([i915#4235]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-dg2-6/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html * igt@kms_scaling_modes@scaling-mode-none@edp-1-pipe-d: - shard-mtlp: NOTRUN -> [SKIP][221] ([i915#5030]) +3 other tests skip [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-mtlp-1/igt@kms_scaling_modes@scaling-mode-none@edp-1-pipe-d.html * igt@kms_setmode@basic-clone-single-crtc: - shard-mtlp: NOTRUN -> [SKIP][222] ([i915#3555] / [i915#8809]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-mtlp-3/igt@kms_setmode@basic-clone-single-crtc.html * igt@kms_tiled_display@basic-test-pattern: - shard-mtlp: NOTRUN -> [SKIP][223] ([i915#8623]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-mtlp-8/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_tv_load_detect@load-detect: - shard-mtlp: NOTRUN -> [SKIP][224] ([fdo#109309]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-mtlp-1/igt@kms_tv_load_detect@load-detect.html - shard-dg2: NOTRUN -> [SKIP][225] ([fdo#109309]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-dg2-1/igt@kms_tv_load_detect@load-detect.html * igt@kms_universal_plane@cursor-fb-leak-pipe-a: - shard-tglu: NOTRUN -> [FAIL][226] ([i915#9196]) [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-tglu-9/igt@kms_universal_plane@cursor-fb-leak-pipe-a.html * igt@kms_universal_plane@cursor-fb-leak-pipe-c: - shard-mtlp: NOTRUN -> [FAIL][227] ([i915#9196]) [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-mtlp-1/igt@kms_universal_plane@cursor-fb-leak-pipe-c.html * igt@kms_vblank@pipe-b-query-idle-hang: - shard-glk: [PASS][228] -> [SKIP][229] ([fdo#109271]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7499/shard-glk3/igt@kms_vblank@pipe-b-query-idle-hang.html [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-glk3/igt@kms_vblank@pipe-b-query-idle-hang.html - shard-apl: [PASS][230] -> [SKIP][231] ([fdo#109271]) [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7499/shard-apl6/igt@kms_vblank@pipe-b-query-idle-hang.html [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-apl2/igt@kms_vblank@pipe-b-query-idle-hang.html * igt@kms_vblank@pipe-d-ts-continuation-modeset-hang: - shard-rkl: NOTRUN -> [SKIP][232] ([i915#4070] / [i915#533] / [i915#6768]) +1 other test skip [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-rkl-4/igt@kms_vblank@pipe-d-ts-continuation-modeset-hang.html * igt@kms_vrr@flip-suspend: - shard-tglu: NOTRUN -> [SKIP][233] ([i915#3555]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-tglu-8/igt@kms_vrr@flip-suspend.html * igt@kms_writeback@writeback-check-output: - shard-dg2: NOTRUN -> [SKIP][234] ([i915#2437]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-dg2-7/igt@kms_writeback@writeback-check-output.html * igt@perf@global-sseu-config-invalid: - shard-dg2: NOTRUN -> [SKIP][235] ([i915#7387]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-dg2-6/igt@perf@global-sseu-config-invalid.html * igt@perf@mi-rpc: - shard-dg2: NOTRUN -> [SKIP][236] ([i915#2434]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-dg2-11/igt@perf@mi-rpc.html * igt@perf_pmu@frequency@gt0: - shard-dg2: NOTRUN -> [FAIL][237] ([i915#6806]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-dg2-11/igt@perf_pmu@frequency@gt0.html * igt@perf_pmu@most-busy-idle-check-all@rcs0: - shard-dg1: [PASS][238] -> [FAIL][239] ([i915#5234]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7499/shard-dg1-16/igt@perf_pmu@most-busy-idle-check-all@rcs0.html [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-dg1-19/igt@perf_pmu@most-busy-idle-check-all@rcs0.html * igt@perf_pmu@rc6@other-idle-gt0: - shard-dg2: NOTRUN -> [SKIP][240] ([i915#8516]) [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-dg2-7/igt@perf_pmu@rc6@other-idle-gt0.html - shard-rkl: NOTRUN -> [SKIP][241] ([i915#8516]) [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-rkl-2/igt@perf_pmu@rc6@other-idle-gt0.html * igt@perf_pmu@render-node-busy@vcs0: - shard-mtlp: NOTRUN -> [FAIL][242] ([i915#4349]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-mtlp-4/igt@perf_pmu@render-node-busy@vcs0.html * igt@prime_vgem@fence-flip-hang: - shard-mtlp: NOTRUN -> [SKIP][243] ([i915#3708]) [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-mtlp-8/igt@prime_vgem@fence-flip-hang.html * igt@v3d/v3d_perfmon@destroy-invalid-perfmon: - shard-glk: NOTRUN -> [SKIP][244] ([fdo#109271]) +30 other tests skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-glk8/igt@v3d/v3d_perfmon@destroy-invalid-perfmon.html - shard-rkl: NOTRUN -> [SKIP][245] ([fdo#109315]) +3 other tests skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-rkl-2/igt@v3d/v3d_perfmon@destroy-invalid-perfmon.html * igt@v3d/v3d_perfmon@destroy-valid-perfmon: - shard-tglu: NOTRUN -> [SKIP][246] ([fdo#109315] / [i915#2575]) +2 other tests skip [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-tglu-3/igt@v3d/v3d_perfmon@destroy-valid-perfmon.html * igt@v3d/v3d_submit_cl@bad-flag: - shard-dg1: NOTRUN -> [SKIP][247] ([i915#2575]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-dg1-18/igt@v3d/v3d_submit_cl@bad-flag.html * igt@v3d/v3d_submit_csd@single-out-sync: - shard-dg2: NOTRUN -> [SKIP][248] ([i915#2575]) +15 other tests skip [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-dg2-10/igt@v3d/v3d_submit_csd@single-out-sync.html * igt@v3d/v3d_wait_bo@map-bo-0ns: - shard-mtlp: NOTRUN -> [SKIP][249] ([i915#2575]) +10 other tests skip [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-mtlp-8/igt@v3d/v3d_wait_bo@map-bo-0ns.html * igt@vc4/vc4_create_bo@create-bo-4096: - shard-dg1: NOTRUN -> [SKIP][250] ([i915#7711]) +1 other test skip [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-dg1-19/igt@vc4/vc4_create_bo@create-bo-4096.html * igt@vc4/vc4_lookup_fail@bad-color-write: - shard-tglu: NOTRUN -> [SKIP][251] ([i915#2575]) +1 other test skip [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-tglu-8/igt@vc4/vc4_lookup_fail@bad-color-write.html * igt@vc4/vc4_purgeable_bo@free-purged-bo: - shard-mtlp: NOTRUN -> [SKIP][252] ([i915#7711]) +5 other tests skip [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-mtlp-4/igt@vc4/vc4_purgeable_bo@free-purged-bo.html * igt@vc4/vc4_tiling@get-bad-handle: - shard-dg2: NOTRUN -> [SKIP][253] ([i915#7711]) +11 other tests skip [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-dg2-3/igt@vc4/vc4_tiling@get-bad-handle.html * igt@vc4/vc4_wait_bo@unused-bo-1ns: - shard-rkl: NOTRUN -> [SKIP][254] ([i915#7711]) +1 other test skip [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-rkl-4/igt@vc4/vc4_wait_bo@unused-bo-1ns.html #### Possible fixes #### * igt@device_reset@unbind-reset-rebind: - shard-dg2: [ABORT][255] ([i915#5507] / [i915#8260]) -> [PASS][256] [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7499/shard-dg2-3/igt@device_reset@unbind-reset-rebind.html [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-dg2-11/igt@device_reset@unbind-reset-rebind.html * igt@gem_ctx_persistence@engines-hang@vcs0: - shard-mtlp: [FAIL][257] ([i915#2410]) -> [PASS][258] [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7499/shard-mtlp-7/igt@gem_ctx_persistence@engines-hang@vcs0.html [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-mtlp-8/igt@gem_ctx_persistence@engines-hang@vcs0.html * igt@gem_eio@kms: - shard-dg2: [FAIL][259] ([i915#5784]) -> [PASS][260] [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7499/shard-dg2-10/igt@gem_eio@kms.html [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-dg2-3/igt@gem_eio@kms.html * igt@gem_eio@unwedge-stress: - shard-dg1: [FAIL][261] ([i915#5784]) -> [PASS][262] +1 other test pass [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7499/shard-dg1-15/igt@gem_eio@unwedge-stress.html [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-dg1-13/igt@gem_eio@unwedge-stress.html * igt@gem_exec_capture@pi@vcs0: - shard-mtlp: [FAIL][263] ([i915#4475]) -> [PASS][264] [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7499/shard-mtlp-2/igt@gem_exec_capture@pi@vcs0.html [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-mtlp-5/igt@gem_exec_capture@pi@vcs0.html * igt@gem_exec_fair@basic-none-share@rcs0: - shard-glk: [FAIL][265] ([i915#2842]) -> [PASS][266] [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7499/shard-glk3/igt@gem_exec_fair@basic-none-share@rcs0.html [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-glk5/igt@gem_exec_fair@basic-none-share@rcs0.html * igt@gem_exec_fair@basic-pace@rcs0: - shard-rkl: [FAIL][267] ([i915#2842]) -> [PASS][268] [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7499/shard-rkl-4/igt@gem_exec_fair@basic-pace@rcs0.html [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-rkl-6/igt@gem_exec_fair@basic-pace@rcs0.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg2: [DMESG-WARN][269] ([i915#4936] / [i915#5493]) -> [PASS][270] [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7499/shard-dg2-6/igt@gem_lmem_swapping@smem-oom@lmem0.html [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-dg2-6/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@gen9_exec_parse@allowed-single: - shard-apl: [INCOMPLETE][271] ([i915#5566]) -> [PASS][272] [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7499/shard-apl1/igt@gen9_exec_parse@allowed-single.html [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-apl3/igt@gen9_exec_parse@allowed-single.html - shard-glk: [INCOMPLETE][273] -> [PASS][274] [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7499/shard-glk8/igt@gen9_exec_parse@allowed-single.html [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-glk9/igt@gen9_exec_parse@allowed-single.html * igt@i915_hangman@engine-engine-error@vcs0: - shard-mtlp: [FAIL][275] ([i915#7069]) -> [PASS][276] +1 other test pass [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7499/shard-mtlp-7/igt@i915_hangman@engine-engine-error@vcs0.html [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-mtlp-2/igt@i915_hangman@engine-engine-error@vcs0.html * igt@i915_pm_rpm@modeset-lpsp: - shard-rkl: [SKIP][277] ([i915#1397]) -> [PASS][278] +1 other test pass [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7499/shard-rkl-1/igt@i915_pm_rpm@modeset-lpsp.html [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-rkl-7/igt@i915_pm_rpm@modeset-lpsp.html * igt@i915_pm_rpm@modeset-non-lpsp: - shard-dg2: [SKIP][279] ([i915#1397]) -> [PASS][280] [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7499/shard-dg2-10/igt@i915_pm_rpm@modeset-non-lpsp.html [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-dg2-11/igt@i915_pm_rpm@modeset-non-lpsp.html * igt@i915_pm_rpm@modeset-non-lpsp-stress: - shard-dg1: [SKIP][281] ([i915#1397]) -> [PASS][282] +1 other test pass [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7499/shard-dg1-19/igt@i915_pm_rpm@modeset-non-lpsp-stress.html [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-dg1-15/igt@i915_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-glk: [FAIL][283] ([i915#2346]) -> [PASS][284] [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7499/shard-glk5/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-glk5/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-apl: [FAIL][285] ([i915#2346]) -> [PASS][286] [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7499/shard-apl6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-apl3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * {igt@kms_pm_backlight@fade-with-suspend@edp-1}: - shard-mtlp: [ABORT][287] ([i915#9262]) -> [PASS][288] [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7499/shard-mtlp-4/igt@kms_pm_backlight@fade-with-suspend@edp-1.html [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-mtlp-7/igt@kms_pm_backlight@fade-with-suspend@edp-1.html * {igt@kms_pm_dc@dc5-dpms}: - shard-rkl: [FAIL][289] -> [PASS][290] [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7499/shard-rkl-1/igt@kms_pm_dc@dc5-dpms.html [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-rkl-6/igt@kms_pm_dc@dc5-dpms.html * {igt@kms_pm_dc@dc9-dpms}: - shard-apl: [SKIP][291] ([fdo#109271]) -> [PASS][292] +1 other test pass [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7499/shard-apl1/igt@kms_pm_dc@dc9-dpms.html [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-apl6/igt@kms_pm_dc@dc9-dpms.html * igt@kms_sysfs_edid_timing: - shard-dg2: [FAIL][293] ([IGT#2]) -> [PASS][294] [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7499/shard-dg2-3/igt@kms_sysfs_edid_timing.html [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-dg2-11/igt@kms_sysfs_edid_timing.html * igt@kms_vblank@pipe-b-query-forked-hang: - shard-glk: [SKIP][295] ([fdo#109271]) -> [PASS][296] [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7499/shard-glk8/igt@kms_vblank@pipe-b-query-forked-hang.html [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-glk4/igt@kms_vblank@pipe-b-query-forked-hang.html * igt@perf@enable-disable@0-rcs0: - shard-dg2: [FAIL][297] ([i915#8724]) -> [PASS][298] [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7499/shard-dg2-11/igt@perf@enable-disable@0-rcs0.html [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-dg2-3/igt@perf@enable-disable@0-rcs0.html * igt@perf_pmu@semaphore-busy@vcs1: - shard-dg1: [FAIL][299] ([i915#4349]) -> [PASS][300] +2 other tests pass [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7499/shard-dg1-15/igt@perf_pmu@semaphore-busy@vcs1.html [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-dg1-19/igt@perf_pmu@semaphore-busy@vcs1.html #### Warnings #### * igt@kms_content_protection@mei_interface: - shard-dg2: [SKIP][301] ([i915#7118]) -> [SKIP][302] ([i915#7118] / [i915#7162]) [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7499/shard-dg2-7/igt@kms_content_protection@mei_interface.html [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-dg2-11/igt@kms_content_protection@mei_interface.html - shard-dg1: [SKIP][303] ([i915#7116]) -> [SKIP][304] ([fdo#109300]) [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7499/shard-dg1-14/igt@kms_content_protection@mei_interface.html [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-dg1-13/igt@kms_content_protection@mei_interface.html * igt@kms_content_protection@type1: - shard-dg2: [SKIP][305] ([i915#7118] / [i915#7162]) -> [SKIP][306] ([i915#7118]) [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7499/shard-dg2-11/igt@kms_content_protection@type1.html [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-dg2-1/igt@kms_content_protection@type1.html * igt@kms_fbcon_fbt@psr: - shard-rkl: [SKIP][307] ([i915#3955]) -> [SKIP][308] ([fdo#110189] / [i915#3955]) [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7499/shard-rkl-6/igt@kms_fbcon_fbt@psr.html [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-rkl-1/igt@kms_fbcon_fbt@psr.html * igt@kms_force_connector_basic@force-load-detect: - shard-rkl: [SKIP][309] ([fdo#109285] / [i915#4098]) -> [SKIP][310] ([fdo#109285]) [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7499/shard-rkl-2/igt@kms_force_connector_basic@force-load-detect.html [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-rkl-7/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_psr@sprite_plane_onoff: - shard-dg1: [SKIP][311] ([i915#1072]) -> [SKIP][312] ([i915#1072] / [i915#4078]) [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7499/shard-dg1-14/igt@kms_psr@sprite_plane_onoff.html [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/shard-dg1-16/igt@kms_psr@sprite_plane_onoff.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [IGT#2]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2 [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#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300 [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#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111644]: https://bugs.freedesktop.org/show_bug.cgi?id=111644 [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#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 [i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1937]: https://gitlab.freedesktop.org/drm/intel/issues/1937 [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2410]: https://gitlab.freedesktop.org/drm/intel/issues/2410 [i915#2434]: https://gitlab.freedesktop.org/drm/intel/issues/2434 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705 [i915#284]: https://gitlab.freedesktop.org/drm/intel/issues/284 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846 [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#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299 [i915#3318]: https://gitlab.freedesktop.org/drm/intel/issues/3318 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546 [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#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734 [i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742 [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743 [i915#3804]: https://gitlab.freedesktop.org/drm/intel/issues/3804 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [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#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4087]: https://gitlab.freedesktop.org/drm/intel/issues/4087 [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098 [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#4348]: https://gitlab.freedesktop.org/drm/intel/issues/4348 [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 [i915#4473]: https://gitlab.freedesktop.org/drm/intel/issues/4473 [i915#4475]: https://gitlab.freedesktop.org/drm/intel/issues/4475 [i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525 [i915#4537]: https://gitlab.freedesktop.org/drm/intel/issues/4537 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771 [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#4881]: https://gitlab.freedesktop.org/drm/intel/issues/4881 [i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885 [i915#4936]: https://gitlab.freedesktop.org/drm/intel/issues/4936 [i915#5030]: https://gitlab.freedesktop.org/drm/intel/issues/5030 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 [i915#5234]: https://gitlab.freedesktop.org/drm/intel/issues/5234 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289 [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5460]: https://gitlab.freedesktop.org/drm/intel/issues/5460 [i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493 [i915#5507]: https://gitlab.freedesktop.org/drm/intel/issues/5507 [i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#5889]: https://gitlab.freedesktop.org/drm/intel/issues/5889 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6227]: https://gitlab.freedesktop.org/drm/intel/issues/6227 [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768 [i915#6805]: https://gitlab.freedesktop.org/drm/intel/issues/6805 [i915#6806]: https://gitlab.freedesktop.org/drm/intel/issues/6806 [i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944 [i915#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953 [i915#7069]: https://gitlab.freedesktop.org/drm/intel/issues/7069 [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7162]: https://gitlab.freedesktop.org/drm/intel/issues/7162 [i915#7213]: https://gitlab.freedesktop.org/drm/intel/issues/7213 [i915#7297]: https://gitlab.freedesktop.org/drm/intel/issues/7297 [i915#7387]: https://gitlab.freedesktop.org/drm/intel/issues/7387 [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#7790]: https://gitlab.freedesktop.org/drm/intel/issues/7790 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [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#8260]: https://gitlab.freedesktop.org/drm/intel/issues/8260 [i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381 [i915#8399]: https://gitlab.freedesktop.org/drm/intel/issues/8399 [i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414 [i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428 [i915#8437]: https://gitlab.freedesktop.org/drm/intel/issues/8437 [i915#8516]: https://gitlab.freedesktop.org/drm/intel/issues/8516 [i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555 [i915#8617]: https://gitlab.freedesktop.org/drm/intel/issues/8617 [i915#8623]: https://gitlab.freedesktop.org/drm/intel/issues/8623 [i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708 [i915#8724]: https://gitlab.freedesktop.org/drm/intel/issues/8724 [i915#8809]: https://gitlab.freedesktop.org/drm/intel/issues/8809 [i915#8810]: https://gitlab.freedesktop.org/drm/intel/issues/8810 [i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814 [i915#8821]: https://gitlab.freedesktop.org/drm/intel/issues/8821 [i915#8841]: https://gitlab.freedesktop.org/drm/intel/issues/8841 [i915#8865]: https://gitlab.freedesktop.org/drm/intel/issues/8865 [i915#8925]: https://gitlab.freedesktop.org/drm/intel/issues/8925 [i915#8962]: https://gitlab.freedesktop.org/drm/intel/issues/8962 [i915#9067]: https://gitlab.freedesktop.org/drm/intel/issues/9067 [i915#9196]: https://gitlab.freedesktop.org/drm/intel/issues/9196 [i915#9226]: https://gitlab.freedesktop.org/drm/intel/issues/9226 [i915#9227]: https://gitlab.freedesktop.org/drm/intel/issues/9227 [i915#9261]: https://gitlab.freedesktop.org/drm/intel/issues/9261 [i915#9262]: https://gitlab.freedesktop.org/drm/intel/issues/9262 [i915#9295]: https://gitlab.freedesktop.org/drm/intel/issues/9295 [i915#9310]: https://gitlab.freedesktop.org/drm/intel/issues/9310 [i915#9323]: https://gitlab.freedesktop.org/drm/intel/issues/9323 [i915#9392]: https://gitlab.freedesktop.org/drm/intel/issues/9392 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7499 -> IGTPW_9861 CI-20190529: 20190529 CI_DRM_13671: e1973de2c4516e9130157e538014e79c8aa57b41 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9861: 9861 IGT_7499: d991240f6c6751e9480456c20de785cfc6e6ff15 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9861/index.html [-- Attachment #2: Type: text/html, Size: 100990 bytes --] ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [igt-dev] [PATCH] tests/amd_deadlock: add reset subtest 2023-09-25 2:05 [igt-dev] [PATCH] tests/amd_deadlock: add reset subtest Jesse Zhang ` (2 preceding siblings ...) 2023-09-25 4:10 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork @ 2023-09-26 1:36 ` vitaly prosyak 3 siblings, 0 replies; 5+ messages in thread From: vitaly prosyak @ 2023-09-26 1:36 UTC (permalink / raw) To: Jesse Zhang, igt-dev Cc: Alex Deucher, Tim Huang, Luben Tuikov, Christian Koenig Hi Jesse, Sorry for the wrong suggestion to put the 'amdgpu gpu reset test' into amd deadlock.c . In the following https://patchwork.freedesktop.org/series/124230/ i did : " Split GPU reset (known as deadlock) tests into command-based (deadlock) and the other using binary shaders (dispatch).The one of primary reasons for splitting is to use new functions like 'amdgpu_cs_query_reset_state2' in next commits." So your patch would be related to new dispatch_test. Please, make your patch after i merge the https://patchwork.freedesktop.org/series/124230/. There is dependency . The patch below looks good to me, but, please, add a similar 'description' , for example, igt_describe("Test-GPU-reset-using-a-binary-shader-to-hang-the-job-on-compute-ring"); igt_subtest_with_dynamic("amdgpu-dispatch-test-compute-with-IP-COMPUTE") { if (arr_cap[AMD_IP_COMPUTE]) { igt_dynamic_f("amdgpu-dispatch-test-compute") amdgpu_dispatch_hang_slow_compute(device); } } After the above fix , please, use: Reviewed-by: Vitaly Prosyak <vitaly.prosyak@amd.com> Thanks Vitaly > Add an amdgpu reset test to the suite > > V2: > - improve subject and description (Kamil,Luben) > - sort the include alphabetically (Kamil) > - Optimize some code (Luben) > > Signed-off-by: Jesse Zhang <Jesse.Zhang@amd.com> > Signed-off-by: Tim Huang <tim.huang@amd.com> > --- > tests/amdgpu/amd_deadlock.c | 39 +++++++++++++++++++++++++++++++++++++ > 1 file changed, 39 insertions(+) > > diff --git a/tests/amdgpu/amd_deadlock.c b/tests/amdgpu/amd_deadlock.c > index d805b8d18..4063ac61b 100644 > --- a/tests/amdgpu/amd_deadlock.c > +++ b/tests/amdgpu/amd_deadlock.c > @@ -23,6 +23,9 @@ > * Based on libdrm/tests/amdgpu/deadlock_tests.c > */ > > +#include <fcntl.h> > +#include <sys/stat.h> > +#include <sys/sysmacros.h> > #include "lib/amdgpu/amd_memory.h" > #include "lib/amdgpu/amd_command_submission.h" > #include "lib/amdgpu/amd_dispatch.h" > @@ -70,6 +73,40 @@ amdgpu_gfx_illegal_mem_access(amdgpu_device_handle device_handle) > bad_access_helper(device_handle, 0, AMDGPU_HW_IP_GFX); > } > > +static void > +amdgpu_gpu_reset_test(amdgpu_device_handle device_handle, int drm_amdgpu) > +{ > + amdgpu_context_handle context_handle; > + char debugfs_path[256], tmp[10]; > + uint32_t hang_state, hangs; > + struct stat sbuf; > + int r, fd; > + > + r = amdgpu_cs_ctx_create(device_handle, &context_handle); > + igt_assert_eq(r, 0); > + > + r = fstat(drm_amdgpu, &sbuf); > + igt_assert_eq(r, 0); > + > + sprintf(debugfs_path, "/sys/kernel/debug/dri/%d/amdgpu_gpu_recover", minor(sbuf.st_rdev)); > + fd = open(debugfs_path, O_RDONLY); > + igt_assert_fd(fd); > + > + r = read(fd, tmp, ARRAY_SIZE(tmp)); > + igt_assert_lt(0,r); > + > + r = amdgpu_cs_query_reset_state(context_handle, &hang_state, &hangs); > + igt_assert_eq(r, 0); > + igt_assert_eq(hang_state, AMDGPU_CTX_UNKNOWN_RESET); > + > + close(fd); > + r = amdgpu_cs_ctx_free(context_handle); > + igt_assert_eq(r, 0); > + > + amdgpu_gfx_dispatch_test(device_handle, AMDGPU_HW_IP_GFX); > + amdgpu_gfx_dispatch_test(device_handle, AMDGPU_HW_IP_COMPUTE); > +} > + > igt_main > { > amdgpu_device_handle device; > @@ -116,6 +153,8 @@ igt_main > igt_subtest("dispatch_hang_slow_gfx") > amdgpu_dispatch_hang_slow_gfx(device); > > + igt_subtest("amdgpu-reset-test") > + amdgpu_gpu_reset_test(device,fd); > igt_fixture { > amdgpu_device_deinitialize(device); > drm_close_driver(fd); ^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2023-09-26 1:36 UTC | newest] Thread overview: 5+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-09-25 2:05 [igt-dev] [PATCH] tests/amd_deadlock: add reset subtest Jesse Zhang 2023-09-25 2:46 ` [igt-dev] ✗ CI.xeBAT: failure for " Patchwork 2023-09-25 2:49 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork 2023-09-25 4:10 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 2023-09-26 1:36 ` [igt-dev] [PATCH] " vitaly prosyak
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox