* [PATCH i-g-t] tests/intel/xe_exec_atomic: fix basic-inc-all
@ 2024-01-29 18:54 Kamil Konieczny
2024-01-29 19:26 ` ✓ CI.xeBAT: success for " Patchwork
` (6 more replies)
0 siblings, 7 replies; 12+ messages in thread
From: Kamil Konieczny @ 2024-01-29 18:54 UTC (permalink / raw)
To: igt-dev; +Cc: Nirmoy Das
Previous test removed skips on unsupported system memory on dGPU
but did it only for basic-dec-all. Fix it for second test
basic-inc-all. Also while at this, use drm_open_driver and
drm_close_driver which takes care of xe device get/put.
Cc: Nirmoy Das <nirmoy.das@intel.com>
Signed-off-by: Kamil Konieczny <kamil.konieczny@linux.intel.com>
---
tests/intel/xe_exec_atomic.c | 14 +++++---------
1 file changed, 5 insertions(+), 9 deletions(-)
diff --git a/tests/intel/xe_exec_atomic.c b/tests/intel/xe_exec_atomic.c
index 48c70ec72..d9790da78 100644
--- a/tests/intel/xe_exec_atomic.c
+++ b/tests/intel/xe_exec_atomic.c
@@ -124,10 +124,8 @@ igt_main
struct drm_xe_engine_class_instance *hwe;
int fd;
- igt_fixture {
+ igt_fixture
fd = drm_open_driver(DRIVER_XE);
- xe_device_get(fd);
- }
igt_subtest_with_dynamic("basic-dec-all") {
xe_for_each_engine(fd, hwe) {
@@ -152,8 +150,8 @@ igt_main
uint64_t memreg = all_memory_regions(fd), region;
xe_for_each_mem_region(fd, memreg, region) {
-
- igt_skip_on(!has_atomics(fd, region));
+ if (!has_atomics(fd, region))
+ continue;
igt_dynamic_f("Engine-%s-Instance-%d-Tile-%d-%s-memory",
xe_engine_class_string(hwe->engine_class),
@@ -165,8 +163,6 @@ igt_main
}
}
- igt_fixture {
- xe_device_put(fd);
- close(fd);
- }
+ igt_fixture
+ drm_close_driver(fd);
}
--
2.42.0
^ permalink raw reply related [flat|nested] 12+ messages in thread* ✓ CI.xeBAT: success for tests/intel/xe_exec_atomic: fix basic-inc-all 2024-01-29 18:54 [PATCH i-g-t] tests/intel/xe_exec_atomic: fix basic-inc-all Kamil Konieczny @ 2024-01-29 19:26 ` Patchwork 2024-01-29 19:40 ` ✓ Fi.CI.BAT: " Patchwork ` (5 subsequent siblings) 6 siblings, 0 replies; 12+ messages in thread From: Patchwork @ 2024-01-29 19:26 UTC (permalink / raw) To: Kamil Konieczny; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 2312 bytes --] == Series Details == Series: tests/intel/xe_exec_atomic: fix basic-inc-all URL : https://patchwork.freedesktop.org/series/129279/ State : success == Summary == CI Bug Log - changes from XEIGT_7698_BAT -> XEIGTPW_10600_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (4 -> 4) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_10600_BAT that come from known issues: ### IGT changes ### #### Possible fixes #### * {igt@xe_exec_atomic@basic-inc-all}: - bat-pvc-2: [SKIP][1] ([Intel XE#1172]) -> [PASS][2] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7698/bat-pvc-2/igt@xe_exec_atomic@basic-inc-all.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10600/bat-pvc-2/igt@xe_exec_atomic@basic-inc-all.html - bat-dg2-oem2: [SKIP][3] ([Intel XE#1172]) -> [PASS][4] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7698/bat-dg2-oem2/igt@xe_exec_atomic@basic-inc-all.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10600/bat-dg2-oem2/igt@xe_exec_atomic@basic-inc-all.html - bat-atsm-2: [SKIP][5] ([Intel XE#1172]) -> [PASS][6] [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7698/bat-atsm-2/igt@xe_exec_atomic@basic-inc-all.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10600/bat-atsm-2/igt@xe_exec_atomic@basic-inc-all.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [Intel XE#1172]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1172 Build changes ------------- * IGT: IGT_7698 -> IGTPW_10600 * Linux: xe-696-a0325b172ae7077c52b074d9b531f4e3aa585d82 -> xe-698-f4c0dac89bd3cd02a1afe5e7a91ed4bf8de4afc6 IGTPW_10600: 10600 IGT_7698: af750f5e7eaad98d40d8c924eb5f05e99d3c668b @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-696-a0325b172ae7077c52b074d9b531f4e3aa585d82: a0325b172ae7077c52b074d9b531f4e3aa585d82 xe-698-f4c0dac89bd3cd02a1afe5e7a91ed4bf8de4afc6: f4c0dac89bd3cd02a1afe5e7a91ed4bf8de4afc6 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10600/index.html [-- Attachment #2: Type: text/html, Size: 3052 bytes --] ^ permalink raw reply [flat|nested] 12+ messages in thread
* ✓ Fi.CI.BAT: success for tests/intel/xe_exec_atomic: fix basic-inc-all 2024-01-29 18:54 [PATCH i-g-t] tests/intel/xe_exec_atomic: fix basic-inc-all Kamil Konieczny 2024-01-29 19:26 ` ✓ CI.xeBAT: success for " Patchwork @ 2024-01-29 19:40 ` Patchwork 2024-01-30 2:28 ` ✗ Fi.CI.IGT: failure " Patchwork ` (4 subsequent siblings) 6 siblings, 0 replies; 12+ messages in thread From: Patchwork @ 2024-01-29 19:40 UTC (permalink / raw) To: Kamil Konieczny; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 2228 bytes --] == Series Details == Series: tests/intel/xe_exec_atomic: fix basic-inc-all URL : https://patchwork.freedesktop.org/series/129279/ State : success == Summary == CI Bug Log - changes from CI_DRM_14192 -> IGTPW_10600 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/index.html Participating hosts (37 -> 33) ------------------------------ Missing (4): bat-adlp-9 bat-rpls-2 fi-snb-2520m bat-mtlp-8 Known issues ------------ Here are the changes found in IGTPW_10600 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_selftest@live@hugepages: - bat-adlm-1: [PASS][1] -> [INCOMPLETE][2] ([i915#10137] / [i915#9527]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/bat-adlm-1/igt@i915_selftest@live@hugepages.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/bat-adlm-1/igt@i915_selftest@live@hugepages.html #### Possible fixes #### * igt@i915_selftest@live@execlists: - fi-bsw-nick: [ABORT][3] ([i915#7911]) -> [PASS][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/fi-bsw-nick/igt@i915_selftest@live@execlists.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/fi-bsw-nick/igt@i915_selftest@live@execlists.html [i915#10137]: https://gitlab.freedesktop.org/drm/intel/issues/10137 [i915#7911]: https://gitlab.freedesktop.org/drm/intel/issues/7911 [i915#9527]: https://gitlab.freedesktop.org/drm/intel/issues/9527 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7698 -> IGTPW_10600 CI-20190529: 20190529 CI_DRM_14192: f4c0dac89bd3cd02a1afe5e7a91ed4bf8de4afc6 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_10600: 10600 IGT_7698: af750f5e7eaad98d40d8c924eb5f05e99d3c668b @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Testlist changes ---------------- +igt@kms_feature_discovery@display-1x +igt@kms_feature_discovery@display-2x +igt@kms_feature_discovery@display-3x +igt@kms_feature_discovery@display-4x == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/index.html [-- Attachment #2: Type: text/html, Size: 2851 bytes --] ^ permalink raw reply [flat|nested] 12+ messages in thread
* ✗ Fi.CI.IGT: failure for tests/intel/xe_exec_atomic: fix basic-inc-all 2024-01-29 18:54 [PATCH i-g-t] tests/intel/xe_exec_atomic: fix basic-inc-all Kamil Konieczny 2024-01-29 19:26 ` ✓ CI.xeBAT: success for " Patchwork 2024-01-29 19:40 ` ✓ Fi.CI.BAT: " Patchwork @ 2024-01-30 2:28 ` Patchwork 2024-01-30 9:01 ` Kamil Konieczny 2024-01-30 8:57 ` [PATCH i-g-t] " Kamil Konieczny ` (3 subsequent siblings) 6 siblings, 1 reply; 12+ messages in thread From: Patchwork @ 2024-01-30 2:28 UTC (permalink / raw) To: Kamil Konieczny; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 95480 bytes --] == Series Details == Series: tests/intel/xe_exec_atomic: fix basic-inc-all URL : https://patchwork.freedesktop.org/series/129279/ State : failure == Summary == CI Bug Log - changes from CI_DRM_14192_full -> IGTPW_10600_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_10600_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_10600_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/index.html Participating hosts (8 -> 8) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_10600_full: ### IGT changes ### #### Possible regressions #### * igt@gem_exec_suspend@basic-s3-devices@smem: - shard-tglu: [PASS][1] -> [ABORT][2] +1 other test abort [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-tglu-5/igt@gem_exec_suspend@basic-s3-devices@smem.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-tglu-9/igt@gem_exec_suspend@basic-s3-devices@smem.html * igt@kms_flip@blocking-absolute-wf_vblank@d-hdmi-a2: - shard-dg2: NOTRUN -> [INCOMPLETE][3] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-3/igt@kms_flip@blocking-absolute-wf_vblank@d-hdmi-a2.html * igt@kms_pm_rpm@cursor: - shard-tglu: [PASS][4] -> [INCOMPLETE][5] [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-tglu-7/igt@kms_pm_rpm@cursor.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-tglu-8/igt@kms_pm_rpm@cursor.html * igt@sysfs_heartbeat_interval@nopreempt@vcs0: - shard-glk: [PASS][6] -> [FAIL][7] [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-glk3/igt@sysfs_heartbeat_interval@nopreempt@vcs0.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-glk8/igt@sysfs_heartbeat_interval@nopreempt@vcs0.html Known issues ------------ Here are the changes found in IGTPW_10600_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@crc32: - shard-tglu: NOTRUN -> [SKIP][8] ([i915#6230]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-tglu-6/igt@api_intel_bb@crc32.html * igt@device_reset@unbind-cold-reset-rebind: - shard-dg2: NOTRUN -> [SKIP][9] ([i915#7701]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-1/igt@device_reset@unbind-cold-reset-rebind.html * igt@drm_fdinfo@all-busy-check-all: - shard-mtlp: NOTRUN -> [SKIP][10] ([i915#8414]) +7 other tests skip [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-2/igt@drm_fdinfo@all-busy-check-all.html - shard-dg1: NOTRUN -> [SKIP][11] ([i915#8414]) +1 other test skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-17/igt@drm_fdinfo@all-busy-check-all.html * igt@drm_fdinfo@busy-hang@bcs0: - shard-dg2: NOTRUN -> [SKIP][12] ([i915#8414]) +11 other tests skip [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-10/igt@drm_fdinfo@busy-hang@bcs0.html * igt@drm_fdinfo@most-busy-idle-check-all@rcs0: - shard-rkl: [PASS][13] -> [FAIL][14] ([i915#7742]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-rkl-4/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-rkl-5/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html * igt@gem_caching@read-writes: - shard-mtlp: NOTRUN -> [SKIP][15] ([i915#4873]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-8/igt@gem_caching@read-writes.html * igt@gem_ccs@suspend-resume: - shard-dg1: NOTRUN -> [SKIP][16] ([i915#9323]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-19/igt@gem_ccs@suspend-resume.html * igt@gem_close_race@multigpu-basic-threads: - shard-dg2: NOTRUN -> [SKIP][17] ([i915#7697]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-1/igt@gem_close_race@multigpu-basic-threads.html - shard-dg1: NOTRUN -> [SKIP][18] ([i915#7697]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-16/igt@gem_close_race@multigpu-basic-threads.html - shard-mtlp: NOTRUN -> [SKIP][19] ([i915#7697]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-4/igt@gem_close_race@multigpu-basic-threads.html * igt@gem_create@create-ext-set-pat: - shard-dg2: NOTRUN -> [SKIP][20] ([i915#8562]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-6/igt@gem_create@create-ext-set-pat.html * igt@gem_ctx_exec@basic-nohangcheck: - shard-rkl: [PASS][21] -> [FAIL][22] ([i915#6268]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-rkl-1/igt@gem_ctx_exec@basic-nohangcheck.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-rkl-7/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_ctx_persistence@heartbeat-many: - shard-dg2: NOTRUN -> [SKIP][23] ([i915#8555]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-3/igt@gem_ctx_persistence@heartbeat-many.html * igt@gem_ctx_persistence@heartbeat-stop: - shard-mtlp: NOTRUN -> [SKIP][24] ([i915#8555]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-5/igt@gem_ctx_persistence@heartbeat-stop.html * igt@gem_ctx_persistence@saturated-hostile-nopreempt@ccs0: - shard-dg2: NOTRUN -> [SKIP][25] ([i915#5882]) +9 other tests skip [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-5/igt@gem_ctx_persistence@saturated-hostile-nopreempt@ccs0.html * igt@gem_ctx_sseu@engines: - shard-tglu: NOTRUN -> [SKIP][26] ([i915#280]) +1 other test skip [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-tglu-8/igt@gem_ctx_sseu@engines.html * igt@gem_ctx_sseu@invalid-sseu: - shard-dg2: NOTRUN -> [SKIP][27] ([i915#280]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-2/igt@gem_ctx_sseu@invalid-sseu.html * igt@gem_eio@hibernate: - shard-dg1: [PASS][28] -> [ABORT][29] ([i915#7975] / [i915#8213]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-dg1-15/igt@gem_eio@hibernate.html [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-14/igt@gem_eio@hibernate.html - shard-dg2: NOTRUN -> [ABORT][30] ([i915#10030] / [i915#7975] / [i915#8213]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-10/igt@gem_eio@hibernate.html * igt@gem_exec_balancer@bonded-dual: - shard-dg2: NOTRUN -> [SKIP][31] ([i915#4771]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-10/igt@gem_exec_balancer@bonded-dual.html * igt@gem_exec_balancer@parallel-keep-submit-fence: - shard-rkl: NOTRUN -> [SKIP][32] ([i915#4525]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-rkl-5/igt@gem_exec_balancer@parallel-keep-submit-fence.html * igt@gem_exec_capture@many-4k-incremental: - shard-glk: NOTRUN -> [FAIL][33] ([i915#9606]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-glk8/igt@gem_exec_capture@many-4k-incremental.html - shard-dg2: NOTRUN -> [FAIL][34] ([i915#9606]) +1 other test fail [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-3/igt@gem_exec_capture@many-4k-incremental.html - shard-dg1: NOTRUN -> [FAIL][35] ([i915#9606]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-12/igt@gem_exec_capture@many-4k-incremental.html * igt@gem_exec_capture@many-4k-zero: - shard-rkl: NOTRUN -> [FAIL][36] ([i915#9606]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-rkl-1/igt@gem_exec_capture@many-4k-zero.html * igt@gem_exec_fair@basic-deadline: - shard-glk: NOTRUN -> [FAIL][37] ([i915#2846]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-glk4/igt@gem_exec_fair@basic-deadline.html * igt@gem_exec_fair@basic-none-rrul: - shard-dg2: NOTRUN -> [SKIP][38] ([i915#3539] / [i915#4852]) +5 other tests skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-1/igt@gem_exec_fair@basic-none-rrul.html * igt@gem_exec_fair@basic-none-rrul@rcs0: - shard-glk: NOTRUN -> [FAIL][39] ([i915#2842]) +3 other tests fail [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-glk3/igt@gem_exec_fair@basic-none-rrul@rcs0.html * igt@gem_exec_fair@basic-none-vip@rcs0: - shard-glk: [PASS][40] -> [FAIL][41] ([i915#2842]) +2 other tests fail [40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-glk5/igt@gem_exec_fair@basic-none-vip@rcs0.html [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-glk4/igt@gem_exec_fair@basic-none-vip@rcs0.html * igt@gem_exec_fair@basic-none@vcs0: - shard-rkl: [PASS][42] -> [FAIL][43] ([i915#2842]) +1 other test fail [42]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-rkl-6/igt@gem_exec_fair@basic-none@vcs0.html [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-rkl-4/igt@gem_exec_fair@basic-none@vcs0.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-tglu: [PASS][44] -> [FAIL][45] ([i915#2842]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-tglu-2/igt@gem_exec_fair@basic-pace-share@rcs0.html [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-tglu-6/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_fence@concurrent: - shard-mtlp: NOTRUN -> [SKIP][46] ([i915#4812]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-5/igt@gem_exec_fence@concurrent.html * igt@gem_exec_flush@basic-batch-kernel-default-wb: - shard-dg1: NOTRUN -> [SKIP][47] ([i915#3539] / [i915#4852]) +1 other test skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-12/igt@gem_exec_flush@basic-batch-kernel-default-wb.html * igt@gem_exec_reloc@basic-gtt-read: - shard-dg2: NOTRUN -> [SKIP][48] ([i915#3281]) +16 other tests skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-1/igt@gem_exec_reloc@basic-gtt-read.html * igt@gem_exec_reloc@basic-wc-cpu-noreloc: - shard-dg1: NOTRUN -> [SKIP][49] ([i915#3281]) +4 other tests skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-12/igt@gem_exec_reloc@basic-wc-cpu-noreloc.html * igt@gem_exec_reloc@basic-write-read: - shard-rkl: NOTRUN -> [SKIP][50] ([i915#3281]) +3 other tests skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-rkl-1/igt@gem_exec_reloc@basic-write-read.html * igt@gem_exec_schedule@reorder-wide: - shard-dg2: NOTRUN -> [SKIP][51] ([i915#4537] / [i915#4812]) +2 other tests skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-1/igt@gem_exec_schedule@reorder-wide.html - shard-dg1: NOTRUN -> [SKIP][52] ([i915#4812]) +2 other tests skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-15/igt@gem_exec_schedule@reorder-wide.html - shard-mtlp: NOTRUN -> [SKIP][53] ([i915#4537] / [i915#4812]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-8/igt@gem_exec_schedule@reorder-wide.html * igt@gem_fence_thrash@bo-write-verify-threaded-none: - shard-dg1: NOTRUN -> [SKIP][54] ([i915#4860]) +2 other tests skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-18/igt@gem_fence_thrash@bo-write-verify-threaded-none.html - shard-mtlp: NOTRUN -> [SKIP][55] ([i915#4860]) +1 other test skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-6/igt@gem_fence_thrash@bo-write-verify-threaded-none.html * igt@gem_lmem_swapping@heavy-random: - shard-tglu: NOTRUN -> [SKIP][56] ([i915#4613]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-tglu-5/igt@gem_lmem_swapping@heavy-random.html * igt@gem_lmem_swapping@heavy-verify-multi: - shard-mtlp: NOTRUN -> [SKIP][57] ([i915#4613]) +1 other test skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-5/igt@gem_lmem_swapping@heavy-verify-multi.html * igt@gem_lmem_swapping@random-engines: - shard-glk: NOTRUN -> [SKIP][58] ([fdo#109271] / [i915#4613]) +2 other tests skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-glk3/igt@gem_lmem_swapping@random-engines.html * igt@gem_mmap@bad-size: - shard-mtlp: NOTRUN -> [SKIP][59] ([i915#4083]) +2 other tests skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-6/igt@gem_mmap@bad-size.html * igt@gem_mmap_gtt@big-bo: - shard-dg1: NOTRUN -> [SKIP][60] ([i915#4077]) +5 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-18/igt@gem_mmap_gtt@big-bo.html * igt@gem_mmap_gtt@coherency: - shard-rkl: NOTRUN -> [SKIP][61] ([fdo#111656]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-rkl-7/igt@gem_mmap_gtt@coherency.html * igt@gem_mmap_gtt@hang-user: - shard-mtlp: NOTRUN -> [SKIP][62] ([i915#4077]) +4 other tests skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-7/igt@gem_mmap_gtt@hang-user.html * igt@gem_mmap_wc@invalid-flags: - shard-dg2: NOTRUN -> [SKIP][63] ([i915#4083]) +6 other tests skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-2/igt@gem_mmap_wc@invalid-flags.html * igt@gem_mmap_wc@write: - shard-dg1: NOTRUN -> [SKIP][64] ([i915#4083]) +3 other tests skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-16/igt@gem_mmap_wc@write.html * igt@gem_partial_pwrite_pread@reads-snoop: - shard-mtlp: NOTRUN -> [SKIP][65] ([i915#3282]) +3 other tests skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-8/igt@gem_partial_pwrite_pread@reads-snoop.html * igt@gem_partial_pwrite_pread@write-uncached: - shard-dg2: NOTRUN -> [SKIP][66] ([i915#3282]) +10 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-6/igt@gem_partial_pwrite_pread@write-uncached.html * igt@gem_pread@bench: - shard-dg1: NOTRUN -> [SKIP][67] ([i915#3282]) +3 other tests skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-14/igt@gem_pread@bench.html * igt@gem_pwrite@basic-exhaustion: - shard-tglu: NOTRUN -> [INCOMPLETE][68] ([i915#10042] / [i915#10137]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-tglu-8/igt@gem_pwrite@basic-exhaustion.html * igt@gem_pxp@regular-baseline-src-copy-readible: - shard-dg2: NOTRUN -> [SKIP][69] ([i915#4270]) +5 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-1/igt@gem_pxp@regular-baseline-src-copy-readible.html - shard-tglu: NOTRUN -> [SKIP][70] ([i915#4270]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-tglu-9/igt@gem_pxp@regular-baseline-src-copy-readible.html * igt@gem_pxp@reject-modify-context-protection-off-2: - shard-rkl: NOTRUN -> [SKIP][71] ([i915#4270]) +1 other test skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-rkl-5/igt@gem_pxp@reject-modify-context-protection-off-2.html * igt@gem_pxp@reject-modify-context-protection-on: - shard-dg1: NOTRUN -> [SKIP][72] ([i915#4270]) +2 other tests skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-18/igt@gem_pxp@reject-modify-context-protection-on.html * igt@gem_pxp@verify-pxp-stale-buf-execution: - shard-mtlp: NOTRUN -> [SKIP][73] ([i915#4270]) +2 other tests skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-4/igt@gem_pxp@verify-pxp-stale-buf-execution.html * igt@gem_render_copy@y-tiled-ccs-to-y-tiled-ccs: - shard-mtlp: NOTRUN -> [SKIP][74] ([i915#8428]) +2 other tests skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-4/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-ccs.html * igt@gem_set_tiling_vs_blt@untiled-to-tiled: - shard-dg1: NOTRUN -> [SKIP][75] ([i915#4079]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-17/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html * igt@gem_softpin@evict-snoop: - shard-dg1: NOTRUN -> [SKIP][76] ([i915#4885]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-12/igt@gem_softpin@evict-snoop.html - shard-dg2: NOTRUN -> [SKIP][77] ([i915#4885]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-6/igt@gem_softpin@evict-snoop.html * igt@gem_tiled_partial_pwrite_pread@writes: - shard-dg2: NOTRUN -> [SKIP][78] ([i915#4077]) +17 other tests skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-2/igt@gem_tiled_partial_pwrite_pread@writes.html * igt@gem_tiled_pread_pwrite: - shard-dg2: NOTRUN -> [SKIP][79] ([i915#4079]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-6/igt@gem_tiled_pread_pwrite.html * igt@gem_userptr_blits@create-destroy-unsync: - shard-dg2: NOTRUN -> [SKIP][80] ([i915#3297]) +2 other tests skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-2/igt@gem_userptr_blits@create-destroy-unsync.html * igt@gem_userptr_blits@dmabuf-sync: - shard-dg1: NOTRUN -> [SKIP][81] ([i915#3297]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-18/igt@gem_userptr_blits@dmabuf-sync.html * igt@gem_userptr_blits@map-fixed-invalidate-busy: - shard-mtlp: NOTRUN -> [SKIP][82] ([i915#3297]) +1 other test skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-6/igt@gem_userptr_blits@map-fixed-invalidate-busy.html * igt@gem_userptr_blits@map-fixed-invalidate-overlap: - shard-dg2: NOTRUN -> [SKIP][83] ([i915#3297] / [i915#4880]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-3/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html * igt@gem_userptr_blits@relocations: - shard-mtlp: NOTRUN -> [SKIP][84] ([i915#3281]) +3 other tests skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-2/igt@gem_userptr_blits@relocations.html * igt@gen7_exec_parse@batch-without-end: - shard-rkl: NOTRUN -> [SKIP][85] ([fdo#109289]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-rkl-7/igt@gen7_exec_parse@batch-without-end.html * igt@gen7_exec_parse@bitmasks: - shard-dg2: NOTRUN -> [SKIP][86] ([fdo#109289]) +7 other tests skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-2/igt@gen7_exec_parse@bitmasks.html * igt@gen9_exec_parse@allowed-single: - shard-glk: NOTRUN -> [INCOMPLETE][87] ([i915#10137] / [i915#5566]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-glk8/igt@gen9_exec_parse@allowed-single.html * igt@gen9_exec_parse@batch-without-end: - shard-mtlp: NOTRUN -> [SKIP][88] ([i915#2856]) +3 other tests skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-6/igt@gen9_exec_parse@batch-without-end.html - shard-rkl: NOTRUN -> [SKIP][89] ([i915#2527]) +1 other test skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-rkl-7/igt@gen9_exec_parse@batch-without-end.html * igt@gen9_exec_parse@batch-zero-length: - shard-tglu: NOTRUN -> [SKIP][90] ([i915#2527] / [i915#2856]) +2 other tests skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-tglu-8/igt@gen9_exec_parse@batch-zero-length.html * igt@gen9_exec_parse@bb-chained: - shard-dg1: NOTRUN -> [SKIP][91] ([i915#2527]) +2 other tests skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-15/igt@gen9_exec_parse@bb-chained.html * igt@gen9_exec_parse@unaligned-access: - shard-dg2: NOTRUN -> [SKIP][92] ([i915#2856]) +6 other tests skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-1/igt@gen9_exec_parse@unaligned-access.html * igt@i915_module_load@reload-with-fault-injection: - shard-rkl: [PASS][93] -> [INCOMPLETE][94] ([i915#10137] / [i915#9820] / [i915#9849]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-rkl-7/igt@i915_module_load@reload-with-fault-injection.html [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-rkl-4/igt@i915_module_load@reload-with-fault-injection.html - shard-tglu: [PASS][95] -> [INCOMPLETE][96] ([i915#10137] / [i915#9200]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-tglu-3/igt@i915_module_load@reload-with-fault-injection.html [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-tglu-10/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_freq_mult@media-freq@gt0: - shard-dg1: NOTRUN -> [SKIP][97] ([i915#6590]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-17/igt@i915_pm_freq_mult@media-freq@gt0.html * igt@i915_pm_rc6_residency@media-rc6-accuracy: - shard-dg1: NOTRUN -> [SKIP][98] ([fdo#109289]) +1 other test skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-15/igt@i915_pm_rc6_residency@media-rc6-accuracy.html - shard-mtlp: NOTRUN -> [SKIP][99] ([fdo#109289]) +2 other tests skip [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-8/igt@i915_pm_rc6_residency@media-rc6-accuracy.html * igt@i915_pm_rpm@gem-execbuf-stress-pc8: - shard-mtlp: NOTRUN -> [SKIP][100] ([fdo#109293]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-8/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html - shard-rkl: NOTRUN -> [SKIP][101] ([fdo#109293] / [fdo#109506]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-rkl-4/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html * igt@i915_pm_rps@min-max-config-loaded: - shard-dg2: NOTRUN -> [SKIP][102] ([i915#6621]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-5/igt@i915_pm_rps@min-max-config-loaded.html * igt@i915_pm_rps@waitboost: - shard-mtlp: NOTRUN -> [FAIL][103] ([i915#8346]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-7/igt@i915_pm_rps@waitboost.html * igt@i915_pm_sseu@full-enable: - shard-dg2: NOTRUN -> [SKIP][104] ([i915#4387]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-6/igt@i915_pm_sseu@full-enable.html * igt@i915_query@query-topology-coherent-slice-mask: - shard-mtlp: NOTRUN -> [SKIP][105] ([i915#6188]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-2/igt@i915_query@query-topology-coherent-slice-mask.html * igt@i915_query@query-topology-unsupported: - shard-rkl: NOTRUN -> [SKIP][106] ([fdo#109302]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-rkl-4/igt@i915_query@query-topology-unsupported.html * igt@i915_suspend@basic-s3-without-i915: - shard-rkl: [PASS][107] -> [FAIL][108] ([i915#10031]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-rkl-7/igt@i915_suspend@basic-s3-without-i915.html [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-rkl-5/igt@i915_suspend@basic-s3-without-i915.html - shard-mtlp: NOTRUN -> [SKIP][109] ([i915#6645]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-7/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_addfb_basic@clobberred-modifier: - shard-dg2: NOTRUN -> [SKIP][110] ([i915#4212]) +1 other test skip [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-6/igt@kms_addfb_basic@clobberred-modifier.html * igt@kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-tglu: NOTRUN -> [SKIP][111] ([i915#3826]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-tglu-6/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-4-y-rc-ccs: - shard-dg1: NOTRUN -> [SKIP][112] ([i915#8709]) +7 other tests skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-19/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-4-y-rc-ccs.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-vga-1-linear: - shard-snb: NOTRUN -> [SKIP][113] ([fdo#109271]) +1 other test skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-snb7/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-vga-1-linear.html * igt@kms_async_flips@invalid-async-flip: - shard-dg2: NOTRUN -> [SKIP][114] ([i915#6228]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-2/igt@kms_async_flips@invalid-async-flip.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-glk: NOTRUN -> [SKIP][115] ([fdo#109271] / [i915#1769]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-glk3/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html - shard-dg2: NOTRUN -> [SKIP][116] ([i915#1769] / [i915#3555]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_big_fb@4-tiled-16bpp-rotate-270: - shard-mtlp: NOTRUN -> [SKIP][117] ([fdo#111614]) +1 other test skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-4/igt@kms_big_fb@4-tiled-16bpp-rotate-270.html * igt@kms_big_fb@4-tiled-32bpp-rotate-180: - shard-tglu: NOTRUN -> [SKIP][118] ([fdo#111615] / [i915#5286]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-tglu-3/igt@kms_big_fb@4-tiled-32bpp-rotate-180.html * igt@kms_big_fb@4-tiled-8bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][119] ([i915#5286]) +3 other tests skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-rkl-7/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-dg1: NOTRUN -> [SKIP][120] ([i915#4538] / [i915#5286]) +3 other tests skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-15/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-mtlp: NOTRUN -> [FAIL][121] ([i915#5138]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@linear-32bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][122] ([i915#3638]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-14/igt@kms_big_fb@linear-32bpp-rotate-90.html * igt@kms_big_fb@x-tiled-32bpp-rotate-90: - shard-tglu: NOTRUN -> [SKIP][123] ([fdo#111614]) +1 other test skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-tglu-7/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html * igt@kms_big_fb@x-tiled-64bpp-rotate-270: - shard-dg2: NOTRUN -> [SKIP][124] ([fdo#111614]) +4 other tests skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-1/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html * igt@kms_big_fb@x-tiled-8bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][125] ([fdo#111614] / [i915#3638]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-rkl-5/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-dg2: NOTRUN -> [SKIP][126] ([i915#5190]) +20 other tests skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-3/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-270: - shard-dg1: NOTRUN -> [SKIP][127] ([i915#4538]) +3 other tests skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-18/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][128] ([i915#4538] / [i915#5190]) +7 other tests skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-2/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-180: - shard-mtlp: NOTRUN -> [SKIP][129] ([fdo#111615]) +8 other tests skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-7/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html - shard-rkl: NOTRUN -> [SKIP][130] ([fdo#110723]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-rkl-1/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-tglu: NOTRUN -> [SKIP][131] ([fdo#111615]) +4 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-tglu-8/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_big_joiner@basic: - shard-dg1: NOTRUN -> [SKIP][132] ([i915#2705]) [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-19/igt@kms_big_joiner@basic.html * igt@kms_big_joiner@invalid-modeset: - shard-mtlp: NOTRUN -> [SKIP][133] ([i915#2705]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-4/igt@kms_big_joiner@invalid-modeset.html - shard-rkl: NOTRUN -> [SKIP][134] ([i915#2705]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-rkl-7/igt@kms_big_joiner@invalid-modeset.html * igt@kms_ccs@pipe-a-bad-pixel-format-4-tiled-mtl-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][135] ([i915#5354]) +112 other tests skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-6/igt@kms_ccs@pipe-a-bad-pixel-format-4-tiled-mtl-mc-ccs.html * igt@kms_ccs@pipe-b-crc-sprite-planes-basic-y-tiled-gen12-mc-ccs: - shard-rkl: NOTRUN -> [SKIP][136] ([i915#5354] / [i915#6095]) +6 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-rkl-5/igt@kms_ccs@pipe-b-crc-sprite-planes-basic-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@pipe-b-random-ccs-data-y-tiled-gen12-mc-ccs: - shard-dg1: NOTRUN -> [SKIP][137] ([i915#5354] / [i915#6095]) +28 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-15/igt@kms_ccs@pipe-b-random-ccs-data-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@pipe-c-missing-ccs-buffer-y-tiled-gen12-mc-ccs: - shard-tglu: NOTRUN -> [SKIP][138] ([i915#5354] / [i915#6095]) +19 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-tglu-6/igt@kms_ccs@pipe-c-missing-ccs-buffer-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@pipe-d-ccs-on-another-bo-yf-tiled-ccs: - shard-mtlp: NOTRUN -> [SKIP][139] ([i915#5354] / [i915#6095]) +28 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-3/igt@kms_ccs@pipe-d-ccs-on-another-bo-yf-tiled-ccs.html * igt@kms_ccs@pipe-d-crc-primary-rotation-180-4-tiled-mtl-mc-ccs: - shard-rkl: NOTRUN -> [SKIP][140] ([i915#5354]) +12 other tests skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-rkl-5/igt@kms_ccs@pipe-d-crc-primary-rotation-180-4-tiled-mtl-mc-ccs.html * igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][141] ([i915#4087]) +3 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-2/igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-2.html * igt@kms_chamelium_audio@dp-audio: - shard-tglu: NOTRUN -> [SKIP][142] ([i915#7828]) +3 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-tglu-3/igt@kms_chamelium_audio@dp-audio.html * igt@kms_chamelium_audio@hdmi-audio-edid: - shard-dg1: NOTRUN -> [SKIP][143] ([i915#7828]) +4 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-16/igt@kms_chamelium_audio@hdmi-audio-edid.html * igt@kms_chamelium_color@ctm-blue-to-red: - shard-glk: NOTRUN -> [SKIP][144] ([fdo#109271]) +329 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-glk5/igt@kms_chamelium_color@ctm-blue-to-red.html * igt@kms_chamelium_color@degamma: - shard-dg2: NOTRUN -> [SKIP][145] ([fdo#111827]) +2 other tests skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-2/igt@kms_chamelium_color@degamma.html - shard-tglu: NOTRUN -> [SKIP][146] ([fdo#111827]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-tglu-6/igt@kms_chamelium_color@degamma.html * igt@kms_chamelium_edid@hdmi-edid-change-during-suspend: - shard-rkl: NOTRUN -> [SKIP][147] ([i915#7828]) +1 other test skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-rkl-4/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html * igt@kms_chamelium_frames@dp-crc-fast: - shard-dg2: NOTRUN -> [SKIP][148] ([i915#7828]) +12 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-6/igt@kms_chamelium_frames@dp-crc-fast.html * igt@kms_chamelium_hpd@vga-hpd-without-ddc: - shard-mtlp: NOTRUN -> [SKIP][149] ([i915#7828]) +7 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-8/igt@kms_chamelium_hpd@vga-hpd-without-ddc.html * igt@kms_color@deep-color: - shard-dg1: NOTRUN -> [SKIP][150] ([i915#3555]) +2 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-13/igt@kms_color@deep-color.html * igt@kms_content_protection@atomic: - shard-dg2: NOTRUN -> [SKIP][151] ([i915#7118]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-5/igt@kms_content_protection@atomic.html * igt@kms_content_protection@content-type-change: - shard-dg2: NOTRUN -> [SKIP][152] ([i915#9424]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-10/igt@kms_content_protection@content-type-change.html - shard-rkl: NOTRUN -> [SKIP][153] ([i915#9424]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-rkl-1/igt@kms_content_protection@content-type-change.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-dg2: NOTRUN -> [SKIP][154] ([i915#3299]) +1 other test skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-6/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@dp-mst-type-0: - shard-dg1: NOTRUN -> [SKIP][155] ([i915#3299]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-13/igt@kms_content_protection@dp-mst-type-0.html - shard-mtlp: NOTRUN -> [SKIP][156] ([i915#3299]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-8/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_cursor_crc@cursor-offscreen-128x42: - shard-mtlp: NOTRUN -> [SKIP][157] ([i915#8814]) +1 other test skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-6/igt@kms_cursor_crc@cursor-offscreen-128x42.html * igt@kms_cursor_crc@cursor-random-512x512: - shard-dg2: NOTRUN -> [SKIP][158] ([i915#3359]) +2 other tests skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-2/igt@kms_cursor_crc@cursor-random-512x512.html - shard-dg1: NOTRUN -> [SKIP][159] ([i915#3359]) +4 other tests skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-18/igt@kms_cursor_crc@cursor-random-512x512.html * igt@kms_cursor_crc@cursor-sliding-512x170: - shard-mtlp: NOTRUN -> [SKIP][160] ([i915#3359]) +2 other tests skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-4/igt@kms_cursor_crc@cursor-sliding-512x170.html * igt@kms_cursor_crc@cursor-sliding-512x512: - shard-rkl: NOTRUN -> [SKIP][161] ([i915#3359]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-rkl-7/igt@kms_cursor_crc@cursor-sliding-512x512.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy: - shard-mtlp: NOTRUN -> [SKIP][162] ([i915#9809]) +3 other tests skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-8/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic: - shard-tglu: NOTRUN -> [SKIP][163] ([fdo#109274]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-tglu-8/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@cursora-vs-flipb-toggle: - shard-dg2: NOTRUN -> [SKIP][164] ([fdo#109274] / [i915#5354]) +9 other tests skip [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-3/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions: - shard-dg2: NOTRUN -> [SKIP][165] ([fdo#109274] / [fdo#111767] / [i915#5354]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-6/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size: - shard-snb: [PASS][166] -> [SKIP][167] ([fdo#109271]) +7 other tests skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-snb7/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-snb2/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-glk: NOTRUN -> [FAIL][168] ([i915#2346]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-glk9/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-mtlp: NOTRUN -> [SKIP][169] ([i915#4213]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-7/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html - shard-dg1: NOTRUN -> [SKIP][170] ([i915#4103] / [i915#4213]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-13/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-dg2: NOTRUN -> [SKIP][171] ([i915#4103] / [i915#4213]) +1 other test skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][172] ([fdo#110189] / [i915#9227]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-10/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1.html * igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][173] ([fdo#110189] / [i915#9723]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-rkl-1/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-2.html * igt@kms_dirtyfb@psr-dirtyfb-ioctl: - shard-tglu: NOTRUN -> [SKIP][174] ([i915#9723]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-tglu-2/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html * igt@kms_display_modes@extended-mode-basic: - shard-dg2: NOTRUN -> [SKIP][175] ([i915#3555]) +6 other tests skip [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-6/igt@kms_display_modes@extended-mode-basic.html * igt@kms_dp_aux_dev: - shard-dg2: NOTRUN -> [SKIP][176] ([i915#1257]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-1/igt@kms_dp_aux_dev.html * igt@kms_draw_crc@draw-method-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][177] ([i915#8812]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-5/igt@kms_draw_crc@draw-method-mmap-wc.html * igt@kms_dsc@dsc-fractional-bpp: - shard-dg2: NOTRUN -> [SKIP][178] ([i915#3840] / [i915#9688]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-5/igt@kms_dsc@dsc-fractional-bpp.html - shard-dg1: NOTRUN -> [SKIP][179] ([i915#3840]) +1 other test skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-17/igt@kms_dsc@dsc-fractional-bpp.html - shard-mtlp: NOTRUN -> [SKIP][180] ([i915#3840] / [i915#9688]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-2/igt@kms_dsc@dsc-fractional-bpp.html * igt@kms_fbcon_fbt@psr: - shard-dg2: NOTRUN -> [SKIP][181] ([i915#3469]) +1 other test skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-6/igt@kms_fbcon_fbt@psr.html - shard-tglu: NOTRUN -> [SKIP][182] ([i915#3469]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-tglu-2/igt@kms_fbcon_fbt@psr.html * igt@kms_feature_discovery@chamelium: - shard-dg2: NOTRUN -> [SKIP][183] ([i915#4854]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-1/igt@kms_feature_discovery@chamelium.html - shard-dg1: NOTRUN -> [SKIP][184] ([i915#4854]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-19/igt@kms_feature_discovery@chamelium.html * igt@kms_feature_discovery@display-2x: - shard-dg2: NOTRUN -> [SKIP][185] ([i915#1839]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-1/igt@kms_feature_discovery@display-2x.html * igt@kms_fence_pin_leak: - shard-dg2: NOTRUN -> [SKIP][186] ([i915#4881]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-6/igt@kms_fence_pin_leak.html * igt@kms_flip@2x-absolute-wf_vblank: - shard-tglu: NOTRUN -> [SKIP][187] ([fdo#109274] / [i915#3637] / [i915#3966]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-tglu-8/igt@kms_flip@2x-absolute-wf_vblank.html * igt@kms_flip@2x-blocking-absolute-wf_vblank: - shard-mtlp: NOTRUN -> [SKIP][188] ([i915#3637]) +4 other tests skip [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-2/igt@kms_flip@2x-blocking-absolute-wf_vblank.html * igt@kms_flip@2x-blocking-wf_vblank: - shard-rkl: NOTRUN -> [SKIP][189] ([fdo#111825]) +1 other test skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-rkl-1/igt@kms_flip@2x-blocking-wf_vblank.html * igt@kms_flip@2x-flip-vs-modeset-vs-hang: - shard-dg2: NOTRUN -> [SKIP][190] ([fdo#109274]) +7 other tests skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-1/igt@kms_flip@2x-flip-vs-modeset-vs-hang.html * igt@kms_flip@2x-plain-flip-ts-check-interruptible: - shard-dg1: NOTRUN -> [SKIP][191] ([fdo#111825] / [i915#9934]) +7 other tests skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-15/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html * igt@kms_flip@flip-vs-fences-interruptible: - shard-dg2: NOTRUN -> [SKIP][192] ([i915#8381]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-6/igt@kms_flip@flip-vs-fences-interruptible.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][193] ([i915#2587] / [i915#2672]) +2 other tests skip [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-tglu-8/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][194] ([i915#2587] / [i915#2672]) +3 other tests skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-12/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-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][195] ([i915#2672] / [i915#3555]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][196] ([i915#2672]) +1 other test skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-rkl-4/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@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][197] ([i915#2672]) +4 other tests skip [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][198] ([i915#2672]) +7 other tests skip [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-5/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode.html * igt@kms_force_connector_basic@force-load-detect: - shard-rkl: NOTRUN -> [SKIP][199] ([fdo#109285]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-rkl-5/igt@kms_force_connector_basic@force-load-detect.html - shard-dg2: NOTRUN -> [SKIP][200] ([fdo#109285]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-6/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-blt: - shard-mtlp: NOTRUN -> [SKIP][201] ([fdo#111767] / [i915#1825]) +1 other test skip [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-pwrite: - shard-rkl: NOTRUN -> [SKIP][202] ([fdo#111825] / [i915#1825]) +15 other tests skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-move: - shard-tglu: NOTRUN -> [SKIP][203] ([fdo#109280]) +17 other tests skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-tglu-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-move.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render: - shard-mtlp: NOTRUN -> [SKIP][204] ([i915#1825]) +20 other tests skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][205] ([i915#8708]) +34 other tests skip [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-pwrite: - shard-dg1: NOTRUN -> [SKIP][206] ([fdo#111825]) +19 other tests skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][207] ([i915#8708]) +15 other tests skip [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-render: - shard-tglu: NOTRUN -> [SKIP][208] ([fdo#110189]) +9 other tests skip [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-tglu-7/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render: - shard-rkl: NOTRUN -> [SKIP][209] ([i915#3023]) +8 other tests skip [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-pgflip-blt: - shard-dg1: NOTRUN -> [SKIP][210] ([i915#3458]) +10 other tests skip [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-15/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][211] ([i915#8708]) +5 other tests skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-7/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-pwrite: - shard-dg2: NOTRUN -> [SKIP][212] ([fdo#111767] / [i915#5354]) +3 other tests skip [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-pwrite.html - shard-tglu: NOTRUN -> [SKIP][213] ([fdo#109280] / [fdo#111767]) +2 other tests skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-tglu-3/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary: - shard-dg2: NOTRUN -> [SKIP][214] ([i915#3458]) +25 other tests skip [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html * igt@kms_hdr@invalid-metadata-sizes: - shard-dg2: NOTRUN -> [SKIP][215] ([i915#3555] / [i915#8228]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-3/igt@kms_hdr@invalid-metadata-sizes.html - shard-dg1: NOTRUN -> [SKIP][216] ([i915#3555] / [i915#8228]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-13/igt@kms_hdr@invalid-metadata-sizes.html * igt@kms_panel_fitting@atomic-fastset: - shard-dg1: NOTRUN -> [SKIP][217] ([i915#6301]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-13/igt@kms_panel_fitting@atomic-fastset.html * igt@kms_panel_fitting@legacy: - shard-dg2: NOTRUN -> [SKIP][218] ([i915#6301]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-1/igt@kms_panel_fitting@legacy.html - shard-rkl: NOTRUN -> [SKIP][219] ([i915#6301]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-rkl-7/igt@kms_panel_fitting@legacy.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][220] ([i915#9423]) +3 other tests skip [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a-hdmi-a-2.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][221] ([i915#9423]) +15 other tests skip [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-18/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a-hdmi-a-4.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][222] ([i915#5176]) +1 other test skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-6/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b-edp-1.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][223] ([i915#5176] / [i915#9423]) +1 other test skip [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-rkl-4/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@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][224] ([i915#5176] / [i915#9423]) +3 other tests skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-13/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-3.html * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][225] ([i915#9423]) +1 other test skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-rkl-7/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][226] ([i915#5235]) +1 other test skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-rkl-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b-hdmi-a-2.html * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-c-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][227] ([i915#5235]) +11 other tests skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-19/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-c-hdmi-a-4.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][228] ([i915#3555] / [i915#5235]) +1 other test skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-6/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d-edp-1.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][229] ([i915#5235]) +5 other tests skip [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-6/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-c-edp-1.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][230] ([i915#5235] / [i915#9423]) +19 other tests skip [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-5/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-3.html * igt@kms_pm_dc@dc6-dpms: - shard-dg2: NOTRUN -> [SKIP][231] ([i915#5978]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-6/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_rpm@dpms-lpsp: - shard-dg2: NOTRUN -> [SKIP][232] ([i915#9519]) +1 other test skip [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-6/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@dpms-non-lpsp: - shard-mtlp: NOTRUN -> [SKIP][233] ([i915#9519]) +1 other test skip [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-3/igt@kms_pm_rpm@dpms-non-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-tglu: NOTRUN -> [SKIP][234] ([i915#9519]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-tglu-2/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-rkl: NOTRUN -> [SKIP][235] ([i915#9519]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-rkl-7/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-rkl: [PASS][236] -> [SKIP][237] ([i915#9519]) +3 other tests skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-rkl-6/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-rkl-7/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@kms_prime@basic-modeset-hybrid: - shard-dg1: NOTRUN -> [SKIP][238] ([i915#6524]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-12/igt@kms_prime@basic-modeset-hybrid.html - shard-mtlp: NOTRUN -> [SKIP][239] ([i915#6524]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-5/igt@kms_prime@basic-modeset-hybrid.html * igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-fully-sf: - shard-tglu: NOTRUN -> [SKIP][240] ([i915#9683]) [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-tglu-2/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf: - shard-dg2: NOTRUN -> [SKIP][241] ([i915#9683]) +4 other tests skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-2/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html - shard-rkl: NOTRUN -> [SKIP][242] ([i915#9683]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-rkl-5/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area: - shard-rkl: NOTRUN -> [SKIP][243] ([fdo#111068] / [i915#9683]) +1 other test skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-rkl-5/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area: - shard-dg1: NOTRUN -> [SKIP][244] ([fdo#111068] / [i915#9683]) +1 other test skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-15/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html * igt@kms_rotation_crc@primary-4-tiled-reflect-x-0: - shard-dg1: NOTRUN -> [SKIP][245] ([i915#5289]) [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-13/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-90: - shard-mtlp: NOTRUN -> [SKIP][246] ([i915#4235]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-7/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html - shard-dg2: NOTRUN -> [SKIP][247] ([i915#4235] / [i915#5190]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-2/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-dg1: NOTRUN -> [SKIP][248] ([fdo#111615] / [i915#5289]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-18/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_rotation_crc@sprite-rotation-90-pos-100-0: - shard-dg2: NOTRUN -> [SKIP][249] ([i915#4235]) +1 other test skip [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-6/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html * igt@kms_scaling_modes@scaling-mode-full-aspect: - shard-tglu: NOTRUN -> [SKIP][250] ([i915#3555]) +4 other tests skip [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-tglu-5/igt@kms_scaling_modes@scaling-mode-full-aspect.html * igt@kms_scaling_modes@scaling-mode-none: - shard-rkl: NOTRUN -> [SKIP][251] ([i915#3555]) +2 other tests skip [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-rkl-7/igt@kms_scaling_modes@scaling-mode-none.html * igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_build_fourcc_list: - shard-rkl: NOTRUN -> [FAIL][252] ([i915#10136]) [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-rkl-1/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_build_fourcc_list.html - shard-mtlp: NOTRUN -> [DMESG-FAIL][253] ([i915#10143]) [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-7/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_build_fourcc_list.html * igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_clip_offset: - shard-mtlp: NOTRUN -> [DMESG-WARN][254] ([i915#10143]) +1 other test dmesg-warn [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-7/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_clip_offset.html * igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_swab: - shard-dg2: [PASS][255] -> [DMESG-WARN][256] ([i915#10143]) +1 other test dmesg-warn [255]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-dg2-10/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_swab.html [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-5/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_swab.html - shard-rkl: NOTRUN -> [DMESG-WARN][257] ([i915#10143]) +1 other test dmesg-warn [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-rkl-1/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_swab.html - shard-tglu: [PASS][258] -> [DMESG-WARN][259] ([i915#10143]) [258]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-tglu-10/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_swab.html [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-tglu-3/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_swab.html * igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_xrgb8888_to_abgr8888: - shard-glk: [PASS][260] -> [DMESG-WARN][261] ([i915#10143] / [i915#10165]) +1 other test dmesg-warn [260]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-glk9/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_xrgb8888_to_abgr8888.html [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-glk8/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_xrgb8888_to_abgr8888.html * igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_xrgb8888_to_argb2101010: - shard-dg1: [PASS][262] -> [DMESG-WARN][263] ([i915#10143]) +1 other test dmesg-warn [262]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-dg1-12/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_xrgb8888_to_argb2101010.html [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-14/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_xrgb8888_to_argb2101010.html * igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_xrgb8888_to_argb8888: - shard-snb: [PASS][264] -> [DMESG-WARN][265] ([i915#10143]) +1 other test dmesg-warn [264]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-snb5/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_xrgb8888_to_argb8888.html [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-snb1/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_xrgb8888_to_argb8888.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-tglu: NOTRUN -> [SKIP][266] ([i915#8623]) [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-tglu-3/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html - shard-mtlp: NOTRUN -> [SKIP][267] ([i915#8623]) [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-2/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html - shard-dg2: NOTRUN -> [SKIP][268] ([i915#8623]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-5/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_tv_load_detect@load-detect: - shard-mtlp: NOTRUN -> [SKIP][269] ([fdo#109309]) [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-4/igt@kms_tv_load_detect@load-detect.html - shard-dg2: NOTRUN -> [SKIP][270] ([fdo#109309]) [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-6/igt@kms_tv_load_detect@load-detect.html - shard-dg1: NOTRUN -> [SKIP][271] ([fdo#109309]) [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-12/igt@kms_tv_load_detect@load-detect.html * igt@kms_vrr@flip-suspend: - shard-mtlp: NOTRUN -> [SKIP][272] ([i915#3555] / [i915#8808]) [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-7/igt@kms_vrr@flip-suspend.html * igt@kms_writeback@writeback-check-output: - shard-tglu: NOTRUN -> [SKIP][273] ([i915#2437]) [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-tglu-8/igt@kms_writeback@writeback-check-output.html * igt@kms_writeback@writeback-fb-id: - shard-glk: NOTRUN -> [SKIP][274] ([fdo#109271] / [i915#2437]) +1 other test skip [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-glk9/igt@kms_writeback@writeback-fb-id.html * igt@kms_writeback@writeback-fb-id-xrgb2101010: - shard-dg2: NOTRUN -> [SKIP][275] ([i915#2437] / [i915#9412]) [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-2/igt@kms_writeback@writeback-fb-id-xrgb2101010.html * igt@perf@per-context-mode-unprivileged: - shard-tglu: NOTRUN -> [SKIP][276] ([fdo#109289]) +2 other tests skip [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-tglu-8/igt@perf@per-context-mode-unprivileged.html * igt@perf_pmu@cpu-hotplug: - shard-dg2: NOTRUN -> [SKIP][277] ([i915#8850]) [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-1/igt@perf_pmu@cpu-hotplug.html - shard-rkl: NOTRUN -> [SKIP][278] ([i915#8850]) [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-rkl-7/igt@perf_pmu@cpu-hotplug.html * igt@perf_pmu@event-wait@rcs0: - shard-dg2: NOTRUN -> [SKIP][279] ([fdo#112283]) [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-6/igt@perf_pmu@event-wait@rcs0.html * igt@perf_pmu@faulting-read@gtt: - shard-mtlp: NOTRUN -> [SKIP][280] ([i915#8440]) [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-7/igt@perf_pmu@faulting-read@gtt.html * igt@perf_pmu@rc6@other-idle-gt0: - shard-dg1: NOTRUN -> [SKIP][281] ([i915#8516]) [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-15/igt@perf_pmu@rc6@other-idle-gt0.html * igt@prime_vgem@basic-fence-mmap: - shard-mtlp: NOTRUN -> [SKIP][282] ([i915#3708] / [i915#4077]) [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-6/igt@prime_vgem@basic-fence-mmap.html - shard-dg2: NOTRUN -> [SKIP][283] ([i915#3708] / [i915#4077]) [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-6/igt@prime_vgem@basic-fence-mmap.html - shard-dg1: NOTRUN -> [SKIP][284] ([i915#3708] / [i915#4077]) [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-19/igt@prime_vgem@basic-fence-mmap.html * igt@prime_vgem@basic-read: - shard-dg2: NOTRUN -> [SKIP][285] ([i915#3291] / [i915#3708]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-3/igt@prime_vgem@basic-read.html * igt@runner@aborted: - shard-snb: NOTRUN -> [FAIL][286] ([i915#7812]) [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-snb2/igt@runner@aborted.html * igt@sriov_basic@enable-vfs-autoprobe-off: - shard-tglu: NOTRUN -> [SKIP][287] ([i915#9917]) [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-tglu-2/igt@sriov_basic@enable-vfs-autoprobe-off.html * igt@tools_test@sysfs_l3_parity: - shard-dg2: NOTRUN -> [SKIP][288] ([i915#4818]) [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-10/igt@tools_test@sysfs_l3_parity.html * igt@v3d/v3d_get_bo_offset@create-get-offsets: - shard-dg1: NOTRUN -> [SKIP][289] ([i915#2575]) +7 other tests skip [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-19/igt@v3d/v3d_get_bo_offset@create-get-offsets.html * igt@v3d/v3d_perfmon@get-values-valid-perfmon: - shard-rkl: NOTRUN -> [SKIP][290] ([fdo#109315]) +5 other tests skip [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-rkl-5/igt@v3d/v3d_perfmon@get-values-valid-perfmon.html * igt@v3d/v3d_submit_cl@bad-multisync-pad: - shard-mtlp: NOTRUN -> [SKIP][291] ([i915#2575]) +6 other tests skip [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-7/igt@v3d/v3d_submit_cl@bad-multisync-pad.html * igt@v3d/v3d_submit_cl@single-out-sync: - shard-tglu: NOTRUN -> [SKIP][292] ([fdo#109315] / [i915#2575]) +6 other tests skip [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-tglu-3/igt@v3d/v3d_submit_cl@single-out-sync.html * igt@v3d/v3d_submit_csd@single-out-sync: - shard-dg2: NOTRUN -> [SKIP][293] ([i915#2575]) +25 other tests skip [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-1/igt@v3d/v3d_submit_csd@single-out-sync.html * igt@vc4/vc4_create_bo@create-bo-zeroed: - shard-rkl: NOTRUN -> [SKIP][294] ([i915#7711]) +1 other test skip [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-rkl-4/igt@vc4/vc4_create_bo@create-bo-zeroed.html * igt@vc4/vc4_mmap@mmap-bad-handle: - shard-dg1: NOTRUN -> [SKIP][295] ([i915#7711]) +7 other tests skip [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-15/igt@vc4/vc4_mmap@mmap-bad-handle.html * igt@vc4/vc4_perfmon@create-perfmon-0: - shard-tglu: NOTRUN -> [SKIP][296] ([i915#2575]) +1 other test skip [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-tglu-6/igt@vc4/vc4_perfmon@create-perfmon-0.html * igt@vc4/vc4_purgeable_bo@access-purged-bo-mem: - shard-mtlp: NOTRUN -> [SKIP][297] ([i915#7711]) +4 other tests skip [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-2/igt@vc4/vc4_purgeable_bo@access-purged-bo-mem.html * igt@vc4/vc4_wait_bo@bad-bo: - shard-dg2: NOTRUN -> [SKIP][298] ([i915#7711]) +11 other tests skip [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-1/igt@vc4/vc4_wait_bo@bad-bo.html #### Possible fixes #### * igt@fbdev@pan: - shard-snb: [FAIL][299] ([i915#4435]) -> [PASS][300] [299]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-snb7/igt@fbdev@pan.html [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-snb4/igt@fbdev@pan.html * igt@gem_ctx_persistence@many-contexts: - shard-dg2: [INCOMPLETE][301] ([i915#10137]) -> [PASS][302] [301]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-dg2-6/igt@gem_ctx_persistence@many-contexts.html [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-6/igt@gem_ctx_persistence@many-contexts.html * igt@gem_exec_fair@basic-none-vip@rcs0: - shard-rkl: [FAIL][303] ([i915#2842]) -> [PASS][304] [303]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-rkl-7/igt@gem_exec_fair@basic-none-vip@rcs0.html [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-rkl-2/igt@gem_exec_fair@basic-none-vip@rcs0.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-glk: [FAIL][305] ([i915#2842]) -> [PASS][306] [305]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-glk8/igt@gem_exec_fair@basic-pace-share@rcs0.html [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-glk9/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_fair@basic-pace-solo@rcs0: - shard-tglu: [FAIL][307] ([i915#2842]) -> [PASS][308] [307]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-tglu-8/igt@gem_exec_fair@basic-pace-solo@rcs0.html [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-tglu-8/igt@gem_exec_fair@basic-pace-solo@rcs0.html * igt@gem_softpin@allocator-evict@bcs0: - shard-rkl: [INCOMPLETE][309] ([i915#10137]) -> [PASS][310] [309]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-rkl-6/igt@gem_softpin@allocator-evict@bcs0.html [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-rkl-1/igt@gem_softpin@allocator-evict@bcs0.html * igt@gem_workarounds@suspend-resume-fd: - shard-tglu: [ABORT][311] -> [PASS][312] [311]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-tglu-9/igt@gem_workarounds@suspend-resume-fd.html [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-tglu-6/igt@gem_workarounds@suspend-resume-fd.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0: - shard-dg1: [FAIL][313] ([i915#3591]) -> [PASS][314] [313]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html * igt@kms_big_fb@4-tiled-64bpp-rotate-180: - shard-mtlp: [FAIL][315] ([i915#5138]) -> [PASS][316] [315]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-mtlp-8/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-7/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-tglu: [FAIL][317] ([i915#3743]) -> [PASS][318] [317]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-tglu-7/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-tglu-8/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_ccs@pipe-c-bad-pixel-format-4-tiled-dg2-rc-ccs-cc: - shard-dg2: [TIMEOUT][319] -> [PASS][320] [319]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-dg2-6/igt@kms_ccs@pipe-c-bad-pixel-format-4-tiled-dg2-rc-ccs-cc.html [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-1/igt@kms_ccs@pipe-c-bad-pixel-format-4-tiled-dg2-rc-ccs-cc.html * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy: - shard-snb: [SKIP][321] ([fdo#109271]) -> [PASS][322] +10 other tests pass [321]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-snb4/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-snb7/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt: - shard-snb: [SKIP][323] ([fdo#109271] / [fdo#111767]) -> [PASS][324] [323]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-snb2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt.html [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-dg2: [SKIP][325] -> [PASS][326] [325]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-dg2-6/igt@kms_pm_rpm@modeset-non-lpsp.html [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-6/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_clip_offset: - shard-dg2: [DMESG-WARN][327] ([i915#10143]) -> [PASS][328] [327]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-dg2-10/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_clip_offset.html [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-5/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_clip_offset.html - shard-snb: [DMESG-WARN][329] ([i915#10143]) -> [PASS][330] +1 other test pass [329]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-snb5/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_clip_offset.html [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-snb1/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_clip_offset.html - shard-tglu: [DMESG-WARN][331] ([i915#10143]) -> [PASS][332] +1 other test pass [331]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-tglu-10/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_clip_offset.html [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-tglu-3/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_clip_offset.html * igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_swab: - shard-dg1: [DMESG-WARN][333] ([i915#10143]) -> [PASS][334] +2 other tests pass [333]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-dg1-12/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_swab.html [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-14/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_swab.html * igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_xrgb8888_to_mono: - shard-glk: [DMESG-WARN][335] ([i915#10143] / [i915#10165]) -> [PASS][336] [335]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-glk9/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_xrgb8888_to_mono.html [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-glk8/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_xrgb8888_to_mono.html * igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1: - shard-tglu: [FAIL][337] ([i915#9196]) -> [PASS][338] +1 other test pass [337]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-tglu-2/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1.html [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-tglu-2/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1.html * igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1: - shard-mtlp: [FAIL][339] ([i915#9196]) -> [PASS][340] +1 other test pass [339]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-mtlp-5/igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1.html [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-4/igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1.html #### Warnings #### * igt@i915_module_load@reload-with-fault-injection: - shard-dg1: [INCOMPLETE][341] ([i915#10137] / [i915#9849]) -> [INCOMPLETE][342] ([i915#10137] / [i915#9820] / [i915#9849]) [341]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-dg1-19/igt@i915_module_load@reload-with-fault-injection.html [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-18/igt@i915_module_load@reload-with-fault-injection.html - shard-dg2: [INCOMPLETE][343] ([i915#10137] / [i915#9820] / [i915#9849]) -> [WARN][344] ([i915#7356]) [343]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-dg2-5/igt@i915_module_load@reload-with-fault-injection.html [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-6/igt@i915_module_load@reload-with-fault-injection.html * igt@kms_content_protection@mei-interface: - shard-dg1: [SKIP][345] ([i915#9424]) -> [SKIP][346] ([i915#9433]) [345]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-dg1-14/igt@kms_content_protection@mei-interface.html [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-12/igt@kms_content_protection@mei-interface.html - shard-snb: [INCOMPLETE][347] ([i915#9878]) -> [SKIP][348] ([fdo#109271]) [347]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-snb7/igt@kms_content_protection@mei-interface.html [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-snb1/igt@kms_content_protection@mei-interface.html * igt@kms_content_protection@srm: - shard-snb: [SKIP][349] ([fdo#109271]) -> [INCOMPLETE][350] ([i915#8816]) [349]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-snb1/igt@kms_content_protection@srm.html [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-snb7/igt@kms_content_protection@srm.html * igt@kms_fbcon_fbt@psr-suspend: - shard-rkl: [SKIP][351] ([i915#3955]) -> [SKIP][352] ([fdo#110189] / [i915#3955]) [351]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-rkl-6/igt@kms_fbcon_fbt@psr-suspend.html [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-rkl-1/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc: - shard-snb: [SKIP][353] ([fdo#109271]) -> [SKIP][354] ([fdo#109271] / [fdo#111767]) [353]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-snb7/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc.html [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-snb5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-onoff: - shard-dg2: [TIMEOUT][355] -> [SKIP][356] ([i915#5354]) [355]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-dg2-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-onoff.html [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-onoff.html * igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_build_fourcc_list: - shard-dg2: [DMESG-FAIL][357] ([i915#10143]) -> [FAIL][358] ([i915#10136]) [357]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-dg2-10/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_build_fourcc_list.html [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-5/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_build_fourcc_list.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109293]: https://bugs.freedesktop.org/show_bug.cgi?id=109293 [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#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111656]: https://bugs.freedesktop.org/show_bug.cgi?id=111656 [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 [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283 [i915#10030]: https://gitlab.freedesktop.org/drm/intel/issues/10030 [i915#10031]: https://gitlab.freedesktop.org/drm/intel/issues/10031 [i915#10042]: https://gitlab.freedesktop.org/drm/intel/issues/10042 [i915#10136]: https://gitlab.freedesktop.org/drm/intel/issues/10136 [i915#10137]: https://gitlab.freedesktop.org/drm/intel/issues/10137 [i915#10143]: https://gitlab.freedesktop.org/drm/intel/issues/10143 [i915#10165]: https://gitlab.freedesktop.org/drm/intel/issues/10165 [i915#1257]: https://gitlab.freedesktop.org/drm/intel/issues/1257 [i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705 [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 [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#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299 [i915#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#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743 [i915#3826]: https://gitlab.freedesktop.org/drm/intel/issues/3826 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955 [i915#3966]: https://gitlab.freedesktop.org/drm/intel/issues/3966 [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#4087]: https://gitlab.freedesktop.org/drm/intel/issues/4087 [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#4387]: https://gitlab.freedesktop.org/drm/intel/issues/4387 [i915#4435]: https://gitlab.freedesktop.org/drm/intel/issues/4435 [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#4818]: https://gitlab.freedesktop.org/drm/intel/issues/4818 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4854]: https://gitlab.freedesktop.org/drm/intel/issues/4854 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4873]: https://gitlab.freedesktop.org/drm/intel/issues/4873 [i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880 [i915#4881]: https://gitlab.freedesktop.org/drm/intel/issues/4881 [i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885 [i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566 [i915#5882]: https://gitlab.freedesktop.org/drm/intel/issues/5882 [i915#5978]: https://gitlab.freedesktop.org/drm/intel/issues/5978 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6188]: https://gitlab.freedesktop.org/drm/intel/issues/6188 [i915#6228]: https://gitlab.freedesktop.org/drm/intel/issues/6228 [i915#6230]: https://gitlab.freedesktop.org/drm/intel/issues/6230 [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268 [i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301 [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 [i915#6590]: https://gitlab.freedesktop.org/drm/intel/issues/6590 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6645]: https://gitlab.freedesktop.org/drm/intel/issues/6645 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7356]: https://gitlab.freedesktop.org/drm/intel/issues/7356 [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#7812]: https://gitlab.freedesktop.org/drm/intel/issues/7812 [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#8346]: https://gitlab.freedesktop.org/drm/intel/issues/8346 [i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381 [i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414 [i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428 [i915#8440]: https://gitlab.freedesktop.org/drm/intel/issues/8440 [i915#8516]: https://gitlab.freedesktop.org/drm/intel/issues/8516 [i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555 [i915#8562]: https://gitlab.freedesktop.org/drm/intel/issues/8562 [i915#8623]: https://gitlab.freedesktop.org/drm/intel/issues/8623 [i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708 [i915#8709]: https://gitlab.freedesktop.org/drm/intel/issues/8709 [i915#8808]: https://gitlab.freedesktop.org/drm/intel/issues/8808 [i915#8812]: https://gitlab.freedesktop.org/drm/intel/issues/8812 [i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814 [i915#8816]: https://gitlab.freedesktop.org/drm/intel/issues/8816 [i915#8850]: https://gitlab.freedesktop.org/drm/intel/issues/8850 [i915#9196]: https://gitlab.freedesktop.org/drm/intel/issues/9196 [i915#9200]: https://gitlab.freedesktop.org/drm/intel/issues/9200 [i915#9227]: https://gitlab.freedesktop.org/drm/intel/issues/9227 [i915#9323]: https://gitlab.freedesktop.org/drm/intel/issues/9323 [i915#9412]: https://gitlab.freedesktop.org/drm/intel/issues/9412 [i915#9423]: https://gitlab.freedesktop.org/drm/intel/issues/9423 [i915#9424]: https://gitlab.freedesktop.org/drm/intel/issues/9424 [i915#9433]: https://gitlab.freedesktop.org/drm/intel/issues/9433 [i915#9519]: https://gitlab.freedesktop.org/drm/intel/issues/9519 [i915#9606]: https://gitlab.freedesktop.org/drm/intel/issues/9606 [i915#9683]: https://gitlab.freedesktop.org/drm/intel/issues/9683 [i915#9688]: https://gitlab.freedesktop.org/drm/intel/issues/9688 [i915#9723]: https://gitlab.freedesktop.org/drm/intel/issues/9723 [i915#9732]: https://gitlab.freedesktop.org/drm/intel/issues/9732 [i915#9808]: https://gitlab.freedesktop.org/drm/intel/issues/9808 [i915#9809]: https://gitlab.freedesktop.org/drm/intel/issues/9809 [i915#9820]: https://gitlab.freedesktop.org/drm/intel/issues/9820 [i915#9849]: https://gitlab.freedesktop.org/drm/intel/issues/9849 [i915#9878]: https://gitlab.freedesktop.org/drm/intel/issues/9878 [i915#9906]: https://gitlab.freedesktop.org/drm/intel/issues/9906 [i915#9917]: https://gitlab.freedesktop.org/drm/intel/issues/9917 [i915#9934]: https://gitlab.freedesktop.org/drm/intel/issues/9934 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7698 -> IGTPW_10600 CI-20190529: 20190529 CI_DRM_14192: f4c0dac89bd3cd02a1afe5e7a91ed4bf8de4afc6 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_10600: 10600 IGT_7698: af750f5e7eaad98d40d8c924eb5f05e99d3c668b @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/index.html [-- Attachment #2: Type: text/html, Size: 117562 bytes --] ^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: ✗ Fi.CI.IGT: failure for tests/intel/xe_exec_atomic: fix basic-inc-all 2024-01-30 2:28 ` ✗ Fi.CI.IGT: failure " Patchwork @ 2024-01-30 9:01 ` Kamil Konieczny 0 siblings, 0 replies; 12+ messages in thread From: Kamil Konieczny @ 2024-01-30 9:01 UTC (permalink / raw) To: igt-dev; +Cc: lgci.bug.filing, I915-ci-infra Hi igt-dev, On 2024-01-30 at 02:28:53 -0000, Patchwork wrote: > == Series Details == > > Series: tests/intel/xe_exec_atomic: fix basic-inc-all > URL : https://patchwork.freedesktop.org/series/129279/ > State : failure > > == Summary == > > CI Bug Log - changes from CI_DRM_14192_full -> IGTPW_10600_full > ==================================================== > > Summary > ------- > > **FAILURE** > > Serious unknown changes coming with IGTPW_10600_full absolutely need to be > verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in IGTPW_10600_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them > to document this new failure mode, which will reduce false positives in CI. > > External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/index.html > > Participating hosts (8 -> 8) > ------------------------------ > > No changes in participating hosts > > Possible new issues > ------------------- > > Here are the unknown changes that may have been introduced in IGTPW_10600_full: > > ### IGT changes ### > > #### Possible regressions #### > > * igt@gem_exec_suspend@basic-s3-devices@smem: > - shard-tglu: [PASS][1] -> [ABORT][2] +1 other test abort > [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-tglu-5/igt@gem_exec_suspend@basic-s3-devices@smem.html > [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-tglu-9/igt@gem_exec_suspend@basic-s3-devices@smem.html > > * igt@kms_flip@blocking-absolute-wf_vblank@d-hdmi-a2: > - shard-dg2: NOTRUN -> [INCOMPLETE][3] > [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-3/igt@kms_flip@blocking-absolute-wf_vblank@d-hdmi-a2.html > > * igt@kms_pm_rpm@cursor: > - shard-tglu: [PASS][4] -> [INCOMPLETE][5] > [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-tglu-7/igt@kms_pm_rpm@cursor.html > [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-tglu-8/igt@kms_pm_rpm@cursor.html > > * igt@sysfs_heartbeat_interval@nopreempt@vcs0: > - shard-glk: [PASS][6] -> [FAIL][7] > [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-glk3/igt@sysfs_heartbeat_interval@nopreempt@vcs0.html > [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-glk8/igt@sysfs_heartbeat_interval@nopreempt@vcs0.html > Unrelated to Xe test, no need for respin, Regards, Kamil ...cut... > [i915#9878]: https://gitlab.freedesktop.org/drm/intel/issues/9878 > [i915#9906]: https://gitlab.freedesktop.org/drm/intel/issues/9906 > [i915#9917]: https://gitlab.freedesktop.org/drm/intel/issues/9917 > [i915#9934]: https://gitlab.freedesktop.org/drm/intel/issues/9934 > > > Build changes > ------------- > > * CI: CI-20190529 -> None > * IGT: IGT_7698 -> IGTPW_10600 > > CI-20190529: 20190529 > CI_DRM_14192: f4c0dac89bd3cd02a1afe5e7a91ed4bf8de4afc6 @ git://anongit.freedesktop.org/gfx-ci/linux > IGTPW_10600: 10600 > IGT_7698: af750f5e7eaad98d40d8c924eb5f05e99d3c668b @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git > > == Logs == > > For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/index.html ^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH i-g-t] tests/intel/xe_exec_atomic: fix basic-inc-all 2024-01-29 18:54 [PATCH i-g-t] tests/intel/xe_exec_atomic: fix basic-inc-all Kamil Konieczny ` (2 preceding siblings ...) 2024-01-30 2:28 ` ✗ Fi.CI.IGT: failure " Patchwork @ 2024-01-30 8:57 ` Kamil Konieczny 2024-01-30 9:05 ` Mauro Carvalho Chehab 2024-01-30 9:33 ` Nirmoy Das ` (2 subsequent siblings) 6 siblings, 1 reply; 12+ messages in thread From: Kamil Konieczny @ 2024-01-30 8:57 UTC (permalink / raw) To: igt-dev; +Cc: Nirmoy Das Hi, On 2024-01-29 at 19:54:12 +0100, Kamil Konieczny wrote: > Previous test removed skips on unsupported system memory on dGPU - ^^^^^^^^^^^^^ This should be: Commit af750f5e7 ("tests/intel/xe_exec_atomic: don't test unsupported config") removed skip on unsupported system memory on dGPU but did it only for basic-dec-all. Fix it for second test basic-inc-all. Also while at this, use drm_open_driver and drm_close_driver which takes care of xe device get/put. +cc Mauro > > Cc: Nirmoy Das <nirmoy.das@intel.com> > Signed-off-by: Kamil Konieczny <kamil.konieczny@linux.intel.com> > --- > tests/intel/xe_exec_atomic.c | 14 +++++--------- > 1 file changed, 5 insertions(+), 9 deletions(-) > > diff --git a/tests/intel/xe_exec_atomic.c b/tests/intel/xe_exec_atomic.c > index 48c70ec72..d9790da78 100644 > --- a/tests/intel/xe_exec_atomic.c > +++ b/tests/intel/xe_exec_atomic.c > @@ -124,10 +124,8 @@ igt_main > struct drm_xe_engine_class_instance *hwe; > int fd; > > - igt_fixture { > + igt_fixture > fd = drm_open_driver(DRIVER_XE); > - xe_device_get(fd); > - } > > igt_subtest_with_dynamic("basic-dec-all") { > xe_for_each_engine(fd, hwe) { > @@ -152,8 +150,8 @@ igt_main > uint64_t memreg = all_memory_regions(fd), region; > > xe_for_each_mem_region(fd, memreg, region) { > - > - igt_skip_on(!has_atomics(fd, region)); > + if (!has_atomics(fd, region)) > + continue; > > igt_dynamic_f("Engine-%s-Instance-%d-Tile-%d-%s-memory", > xe_engine_class_string(hwe->engine_class), > @@ -165,8 +163,6 @@ igt_main > } > } > > - igt_fixture { > - xe_device_put(fd); > - close(fd); > - } > + igt_fixture > + drm_close_driver(fd); > } > -- > 2.42.0 > ^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH i-g-t] tests/intel/xe_exec_atomic: fix basic-inc-all 2024-01-30 8:57 ` [PATCH i-g-t] " Kamil Konieczny @ 2024-01-30 9:05 ` Mauro Carvalho Chehab 0 siblings, 0 replies; 12+ messages in thread From: Mauro Carvalho Chehab @ 2024-01-30 9:05 UTC (permalink / raw) To: Kamil Konieczny; +Cc: igt-dev, Nirmoy Das On Tue, 30 Jan 2024 09:57:38 +0100 Kamil Konieczny <kamil.konieczny@linux.intel.com> wrote: > Hi, > On 2024-01-29 at 19:54:12 +0100, Kamil Konieczny wrote: > > Previous test removed skips on unsupported system memory on dGPU > - ^^^^^^^^^^^^^ > This should be: > > Commit af750f5e7 ("tests/intel/xe_exec_atomic: don't test unsupported config") > removed skip on unsupported system memory on dGPU but did it > only for basic-dec-all. Fix it for second test basic-inc-all. > Also while at this, use drm_open_driver and drm_close_driver > which takes care of xe device get/put. > > +cc Mauro LGTM after change previous test -> commit af750f5e7. Reviewed-by: Mauro Carvalho Chehab <mchehab@kernel.org> > > > > Cc: Nirmoy Das <nirmoy.das@intel.com> > > Signed-off-by: Kamil Konieczny <kamil.konieczny@linux.intel.com> > > --- > > tests/intel/xe_exec_atomic.c | 14 +++++--------- > > 1 file changed, 5 insertions(+), 9 deletions(-) > > > > diff --git a/tests/intel/xe_exec_atomic.c b/tests/intel/xe_exec_atomic.c > > index 48c70ec72..d9790da78 100644 > > --- a/tests/intel/xe_exec_atomic.c > > +++ b/tests/intel/xe_exec_atomic.c > > @@ -124,10 +124,8 @@ igt_main > > struct drm_xe_engine_class_instance *hwe; > > int fd; > > > > - igt_fixture { > > + igt_fixture > > fd = drm_open_driver(DRIVER_XE); > > - xe_device_get(fd); > > - } > > > > igt_subtest_with_dynamic("basic-dec-all") { > > xe_for_each_engine(fd, hwe) { > > @@ -152,8 +150,8 @@ igt_main > > uint64_t memreg = all_memory_regions(fd), region; > > > > xe_for_each_mem_region(fd, memreg, region) { > > - > > - igt_skip_on(!has_atomics(fd, region)); > > + if (!has_atomics(fd, region)) > > + continue; > > > > igt_dynamic_f("Engine-%s-Instance-%d-Tile-%d-%s-memory", > > xe_engine_class_string(hwe->engine_class), > > @@ -165,8 +163,6 @@ igt_main > > } > > } > > > > - igt_fixture { > > - xe_device_put(fd); > > - close(fd); > > - } > > + igt_fixture > > + drm_close_driver(fd); > > } > > -- > > 2.42.0 > > ^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH i-g-t] tests/intel/xe_exec_atomic: fix basic-inc-all 2024-01-29 18:54 [PATCH i-g-t] tests/intel/xe_exec_atomic: fix basic-inc-all Kamil Konieczny ` (3 preceding siblings ...) 2024-01-30 8:57 ` [PATCH i-g-t] " Kamil Konieczny @ 2024-01-30 9:33 ` Nirmoy Das 2024-02-01 5:31 ` ✗ Fi.CI.IGT: failure for " Patchwork 2024-02-02 8:16 ` ✓ Fi.CI.IGT: success " Patchwork 6 siblings, 0 replies; 12+ messages in thread From: Nirmoy Das @ 2024-01-30 9:33 UTC (permalink / raw) To: Kamil Konieczny, igt-dev On 1/30/2024 12:24 AM, Kamil Konieczny wrote: > Previous test removed skips on unsupported system memory on dGPU > but did it only for basic-dec-all. Fix it for second test > basic-inc-all. Also while at this, use drm_open_driver and > drm_close_driver which takes care of xe device get/put. > > Cc: Nirmoy Das <nirmoy.das@intel.com> > Signed-off-by: Kamil Konieczny <kamil.konieczny@linux.intel.com> Reviewed-by: Nirmoy Das <nirmoy.das@intel.com> Thanks completely missed that. > --- > tests/intel/xe_exec_atomic.c | 14 +++++--------- > 1 file changed, 5 insertions(+), 9 deletions(-) > > diff --git a/tests/intel/xe_exec_atomic.c b/tests/intel/xe_exec_atomic.c > index 48c70ec72..d9790da78 100644 > --- a/tests/intel/xe_exec_atomic.c > +++ b/tests/intel/xe_exec_atomic.c > @@ -124,10 +124,8 @@ igt_main > struct drm_xe_engine_class_instance *hwe; > int fd; > > - igt_fixture { > + igt_fixture > fd = drm_open_driver(DRIVER_XE); > - xe_device_get(fd); > - } > > igt_subtest_with_dynamic("basic-dec-all") { > xe_for_each_engine(fd, hwe) { > @@ -152,8 +150,8 @@ igt_main > uint64_t memreg = all_memory_regions(fd), region; > > xe_for_each_mem_region(fd, memreg, region) { > - > - igt_skip_on(!has_atomics(fd, region)); > + if (!has_atomics(fd, region)) > + continue; > > igt_dynamic_f("Engine-%s-Instance-%d-Tile-%d-%s-memory", > xe_engine_class_string(hwe->engine_class), > @@ -165,8 +163,6 @@ igt_main > } > } > > - igt_fixture { > - xe_device_put(fd); > - close(fd); > - } > + igt_fixture > + drm_close_driver(fd); > } ^ permalink raw reply [flat|nested] 12+ messages in thread
* ✗ Fi.CI.IGT: failure for tests/intel/xe_exec_atomic: fix basic-inc-all 2024-01-29 18:54 [PATCH i-g-t] tests/intel/xe_exec_atomic: fix basic-inc-all Kamil Konieczny ` (4 preceding siblings ...) 2024-01-30 9:33 ` Nirmoy Das @ 2024-02-01 5:31 ` Patchwork 2024-02-01 12:23 ` Kamil Konieczny 2024-02-02 8:16 ` ✓ Fi.CI.IGT: success " Patchwork 6 siblings, 1 reply; 12+ messages in thread From: Patchwork @ 2024-02-01 5:31 UTC (permalink / raw) To: Kamil Konieczny; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 95494 bytes --] == Series Details == Series: tests/intel/xe_exec_atomic: fix basic-inc-all URL : https://patchwork.freedesktop.org/series/129279/ State : failure == Summary == CI Bug Log - changes from CI_DRM_14192_full -> IGTPW_10600_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_10600_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_10600_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/index.html Participating hosts (8 -> 8) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_10600_full: ### IGT changes ### #### Possible regressions #### * igt@gem_exec_suspend@basic-s3-devices@smem: - shard-tglu: [PASS][1] -> [ABORT][2] +1 other test abort [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-tglu-5/igt@gem_exec_suspend@basic-s3-devices@smem.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-tglu-9/igt@gem_exec_suspend@basic-s3-devices@smem.html * igt@kms_flip@blocking-absolute-wf_vblank@d-hdmi-a2: - shard-dg2: NOTRUN -> [INCOMPLETE][3] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-3/igt@kms_flip@blocking-absolute-wf_vblank@d-hdmi-a2.html * igt@kms_pm_rpm@cursor: - shard-tglu: [PASS][4] -> [INCOMPLETE][5] [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-tglu-7/igt@kms_pm_rpm@cursor.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-tglu-8/igt@kms_pm_rpm@cursor.html * igt@sysfs_heartbeat_interval@nopreempt@vcs0: - shard-glk: [PASS][6] -> [FAIL][7] [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-glk3/igt@sysfs_heartbeat_interval@nopreempt@vcs0.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-glk8/igt@sysfs_heartbeat_interval@nopreempt@vcs0.html Known issues ------------ Here are the changes found in IGTPW_10600_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@crc32: - shard-tglu: NOTRUN -> [SKIP][8] ([i915#6230]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-tglu-6/igt@api_intel_bb@crc32.html * igt@device_reset@unbind-cold-reset-rebind: - shard-dg2: NOTRUN -> [SKIP][9] ([i915#7701]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-1/igt@device_reset@unbind-cold-reset-rebind.html * igt@drm_fdinfo@all-busy-check-all: - shard-mtlp: NOTRUN -> [SKIP][10] ([i915#8414]) +7 other tests skip [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-2/igt@drm_fdinfo@all-busy-check-all.html - shard-dg1: NOTRUN -> [SKIP][11] ([i915#8414]) +1 other test skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-17/igt@drm_fdinfo@all-busy-check-all.html * igt@drm_fdinfo@busy-hang@bcs0: - shard-dg2: NOTRUN -> [SKIP][12] ([i915#8414]) +11 other tests skip [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-10/igt@drm_fdinfo@busy-hang@bcs0.html * igt@drm_fdinfo@most-busy-idle-check-all@rcs0: - shard-rkl: [PASS][13] -> [FAIL][14] ([i915#7742]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-rkl-4/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-rkl-5/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html * igt@gem_caching@read-writes: - shard-mtlp: NOTRUN -> [SKIP][15] ([i915#4873]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-8/igt@gem_caching@read-writes.html * igt@gem_ccs@suspend-resume: - shard-dg1: NOTRUN -> [SKIP][16] ([i915#9323]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-19/igt@gem_ccs@suspend-resume.html * igt@gem_close_race@multigpu-basic-threads: - shard-dg2: NOTRUN -> [SKIP][17] ([i915#7697]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-1/igt@gem_close_race@multigpu-basic-threads.html - shard-dg1: NOTRUN -> [SKIP][18] ([i915#7697]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-16/igt@gem_close_race@multigpu-basic-threads.html - shard-mtlp: NOTRUN -> [SKIP][19] ([i915#7697]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-4/igt@gem_close_race@multigpu-basic-threads.html * igt@gem_create@create-ext-set-pat: - shard-dg2: NOTRUN -> [SKIP][20] ([i915#8562]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-6/igt@gem_create@create-ext-set-pat.html * igt@gem_ctx_exec@basic-nohangcheck: - shard-rkl: [PASS][21] -> [FAIL][22] ([i915#6268]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-rkl-1/igt@gem_ctx_exec@basic-nohangcheck.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-rkl-7/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_ctx_persistence@heartbeat-many: - shard-dg2: NOTRUN -> [SKIP][23] ([i915#8555]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-3/igt@gem_ctx_persistence@heartbeat-many.html * igt@gem_ctx_persistence@heartbeat-stop: - shard-mtlp: NOTRUN -> [SKIP][24] ([i915#8555]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-5/igt@gem_ctx_persistence@heartbeat-stop.html * igt@gem_ctx_persistence@saturated-hostile-nopreempt@ccs0: - shard-dg2: NOTRUN -> [SKIP][25] ([i915#5882]) +9 other tests skip [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-5/igt@gem_ctx_persistence@saturated-hostile-nopreempt@ccs0.html * igt@gem_ctx_sseu@engines: - shard-tglu: NOTRUN -> [SKIP][26] ([i915#280]) +1 other test skip [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-tglu-8/igt@gem_ctx_sseu@engines.html * igt@gem_ctx_sseu@invalid-sseu: - shard-dg2: NOTRUN -> [SKIP][27] ([i915#280]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-2/igt@gem_ctx_sseu@invalid-sseu.html * igt@gem_eio@hibernate: - shard-dg1: [PASS][28] -> [ABORT][29] ([i915#7975] / [i915#8213]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-dg1-15/igt@gem_eio@hibernate.html [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-14/igt@gem_eio@hibernate.html - shard-dg2: NOTRUN -> [ABORT][30] ([i915#10030] / [i915#7975] / [i915#8213]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-10/igt@gem_eio@hibernate.html * igt@gem_exec_balancer@bonded-dual: - shard-dg2: NOTRUN -> [SKIP][31] ([i915#4771]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-10/igt@gem_exec_balancer@bonded-dual.html * igt@gem_exec_balancer@parallel-keep-submit-fence: - shard-rkl: NOTRUN -> [SKIP][32] ([i915#4525]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-rkl-5/igt@gem_exec_balancer@parallel-keep-submit-fence.html * igt@gem_exec_capture@many-4k-incremental: - shard-glk: NOTRUN -> [FAIL][33] ([i915#9606]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-glk8/igt@gem_exec_capture@many-4k-incremental.html - shard-dg2: NOTRUN -> [FAIL][34] ([i915#9606]) +1 other test fail [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-3/igt@gem_exec_capture@many-4k-incremental.html - shard-dg1: NOTRUN -> [FAIL][35] ([i915#9606]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-12/igt@gem_exec_capture@many-4k-incremental.html * igt@gem_exec_capture@many-4k-zero: - shard-rkl: NOTRUN -> [FAIL][36] ([i915#9606]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-rkl-1/igt@gem_exec_capture@many-4k-zero.html * igt@gem_exec_fair@basic-deadline: - shard-glk: NOTRUN -> [FAIL][37] ([i915#2846]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-glk4/igt@gem_exec_fair@basic-deadline.html * igt@gem_exec_fair@basic-none-rrul: - shard-dg2: NOTRUN -> [SKIP][38] ([i915#3539] / [i915#4852]) +5 other tests skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-1/igt@gem_exec_fair@basic-none-rrul.html * igt@gem_exec_fair@basic-none-rrul@rcs0: - shard-glk: NOTRUN -> [FAIL][39] ([i915#2842]) +3 other tests fail [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-glk3/igt@gem_exec_fair@basic-none-rrul@rcs0.html * igt@gem_exec_fair@basic-none-vip@rcs0: - shard-glk: [PASS][40] -> [FAIL][41] ([i915#2842]) +2 other tests fail [40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-glk5/igt@gem_exec_fair@basic-none-vip@rcs0.html [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-glk4/igt@gem_exec_fair@basic-none-vip@rcs0.html * igt@gem_exec_fair@basic-none@vcs0: - shard-rkl: [PASS][42] -> [FAIL][43] ([i915#2842]) +1 other test fail [42]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-rkl-6/igt@gem_exec_fair@basic-none@vcs0.html [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-rkl-4/igt@gem_exec_fair@basic-none@vcs0.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-tglu: [PASS][44] -> [FAIL][45] ([i915#2842]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-tglu-2/igt@gem_exec_fair@basic-pace-share@rcs0.html [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-tglu-6/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_fence@concurrent: - shard-mtlp: NOTRUN -> [SKIP][46] ([i915#4812]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-5/igt@gem_exec_fence@concurrent.html * igt@gem_exec_flush@basic-batch-kernel-default-wb: - shard-dg1: NOTRUN -> [SKIP][47] ([i915#3539] / [i915#4852]) +1 other test skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-12/igt@gem_exec_flush@basic-batch-kernel-default-wb.html * igt@gem_exec_reloc@basic-gtt-read: - shard-dg2: NOTRUN -> [SKIP][48] ([i915#3281]) +16 other tests skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-1/igt@gem_exec_reloc@basic-gtt-read.html * igt@gem_exec_reloc@basic-wc-cpu-noreloc: - shard-dg1: NOTRUN -> [SKIP][49] ([i915#3281]) +4 other tests skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-12/igt@gem_exec_reloc@basic-wc-cpu-noreloc.html * igt@gem_exec_reloc@basic-write-read: - shard-rkl: NOTRUN -> [SKIP][50] ([i915#3281]) +3 other tests skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-rkl-1/igt@gem_exec_reloc@basic-write-read.html * igt@gem_exec_schedule@reorder-wide: - shard-dg2: NOTRUN -> [SKIP][51] ([i915#4537] / [i915#4812]) +2 other tests skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-1/igt@gem_exec_schedule@reorder-wide.html - shard-dg1: NOTRUN -> [SKIP][52] ([i915#4812]) +2 other tests skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-15/igt@gem_exec_schedule@reorder-wide.html - shard-mtlp: NOTRUN -> [SKIP][53] ([i915#4537] / [i915#4812]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-8/igt@gem_exec_schedule@reorder-wide.html * igt@gem_fence_thrash@bo-write-verify-threaded-none: - shard-dg1: NOTRUN -> [SKIP][54] ([i915#4860]) +2 other tests skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-18/igt@gem_fence_thrash@bo-write-verify-threaded-none.html - shard-mtlp: NOTRUN -> [SKIP][55] ([i915#4860]) +1 other test skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-6/igt@gem_fence_thrash@bo-write-verify-threaded-none.html * igt@gem_lmem_swapping@heavy-random: - shard-tglu: NOTRUN -> [SKIP][56] ([i915#4613]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-tglu-5/igt@gem_lmem_swapping@heavy-random.html * igt@gem_lmem_swapping@heavy-verify-multi: - shard-mtlp: NOTRUN -> [SKIP][57] ([i915#4613]) +1 other test skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-5/igt@gem_lmem_swapping@heavy-verify-multi.html * igt@gem_lmem_swapping@random-engines: - shard-glk: NOTRUN -> [SKIP][58] ([fdo#109271] / [i915#4613]) +2 other tests skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-glk3/igt@gem_lmem_swapping@random-engines.html * igt@gem_mmap@bad-size: - shard-mtlp: NOTRUN -> [SKIP][59] ([i915#4083]) +2 other tests skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-6/igt@gem_mmap@bad-size.html * igt@gem_mmap_gtt@big-bo: - shard-dg1: NOTRUN -> [SKIP][60] ([i915#4077]) +5 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-18/igt@gem_mmap_gtt@big-bo.html * igt@gem_mmap_gtt@coherency: - shard-rkl: NOTRUN -> [SKIP][61] ([fdo#111656]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-rkl-7/igt@gem_mmap_gtt@coherency.html * igt@gem_mmap_gtt@hang-user: - shard-mtlp: NOTRUN -> [SKIP][62] ([i915#4077]) +4 other tests skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-7/igt@gem_mmap_gtt@hang-user.html * igt@gem_mmap_wc@invalid-flags: - shard-dg2: NOTRUN -> [SKIP][63] ([i915#4083]) +6 other tests skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-2/igt@gem_mmap_wc@invalid-flags.html * igt@gem_mmap_wc@write: - shard-dg1: NOTRUN -> [SKIP][64] ([i915#4083]) +3 other tests skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-16/igt@gem_mmap_wc@write.html * igt@gem_partial_pwrite_pread@reads-snoop: - shard-mtlp: NOTRUN -> [SKIP][65] ([i915#3282]) +3 other tests skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-8/igt@gem_partial_pwrite_pread@reads-snoop.html * igt@gem_partial_pwrite_pread@write-uncached: - shard-dg2: NOTRUN -> [SKIP][66] ([i915#3282]) +10 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-6/igt@gem_partial_pwrite_pread@write-uncached.html * igt@gem_pread@bench: - shard-dg1: NOTRUN -> [SKIP][67] ([i915#3282]) +3 other tests skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-14/igt@gem_pread@bench.html * igt@gem_pwrite@basic-exhaustion: - shard-tglu: NOTRUN -> [INCOMPLETE][68] ([i915#10042] / [i915#10137]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-tglu-8/igt@gem_pwrite@basic-exhaustion.html * igt@gem_pxp@regular-baseline-src-copy-readible: - shard-dg2: NOTRUN -> [SKIP][69] ([i915#4270]) +5 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-1/igt@gem_pxp@regular-baseline-src-copy-readible.html - shard-tglu: NOTRUN -> [SKIP][70] ([i915#4270]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-tglu-9/igt@gem_pxp@regular-baseline-src-copy-readible.html * igt@gem_pxp@reject-modify-context-protection-off-2: - shard-rkl: NOTRUN -> [SKIP][71] ([i915#4270]) +1 other test skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-rkl-5/igt@gem_pxp@reject-modify-context-protection-off-2.html * igt@gem_pxp@reject-modify-context-protection-on: - shard-dg1: NOTRUN -> [SKIP][72] ([i915#4270]) +2 other tests skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-18/igt@gem_pxp@reject-modify-context-protection-on.html * igt@gem_pxp@verify-pxp-stale-buf-execution: - shard-mtlp: NOTRUN -> [SKIP][73] ([i915#4270]) +2 other tests skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-4/igt@gem_pxp@verify-pxp-stale-buf-execution.html * igt@gem_render_copy@y-tiled-ccs-to-y-tiled-ccs: - shard-mtlp: NOTRUN -> [SKIP][74] ([i915#8428]) +2 other tests skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-4/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-ccs.html * igt@gem_set_tiling_vs_blt@untiled-to-tiled: - shard-dg1: NOTRUN -> [SKIP][75] ([i915#4079]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-17/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html * igt@gem_softpin@evict-snoop: - shard-dg1: NOTRUN -> [SKIP][76] ([i915#4885]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-12/igt@gem_softpin@evict-snoop.html - shard-dg2: NOTRUN -> [SKIP][77] ([i915#4885]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-6/igt@gem_softpin@evict-snoop.html * igt@gem_tiled_partial_pwrite_pread@writes: - shard-dg2: NOTRUN -> [SKIP][78] ([i915#4077]) +17 other tests skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-2/igt@gem_tiled_partial_pwrite_pread@writes.html * igt@gem_tiled_pread_pwrite: - shard-dg2: NOTRUN -> [SKIP][79] ([i915#4079]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-6/igt@gem_tiled_pread_pwrite.html * igt@gem_userptr_blits@create-destroy-unsync: - shard-dg2: NOTRUN -> [SKIP][80] ([i915#3297]) +2 other tests skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-2/igt@gem_userptr_blits@create-destroy-unsync.html * igt@gem_userptr_blits@dmabuf-sync: - shard-dg1: NOTRUN -> [SKIP][81] ([i915#3297]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-18/igt@gem_userptr_blits@dmabuf-sync.html * igt@gem_userptr_blits@map-fixed-invalidate-busy: - shard-mtlp: NOTRUN -> [SKIP][82] ([i915#3297]) +1 other test skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-6/igt@gem_userptr_blits@map-fixed-invalidate-busy.html * igt@gem_userptr_blits@map-fixed-invalidate-overlap: - shard-dg2: NOTRUN -> [SKIP][83] ([i915#3297] / [i915#4880]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-3/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html * igt@gem_userptr_blits@relocations: - shard-mtlp: NOTRUN -> [SKIP][84] ([i915#3281]) +3 other tests skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-2/igt@gem_userptr_blits@relocations.html * igt@gen7_exec_parse@batch-without-end: - shard-rkl: NOTRUN -> [SKIP][85] ([fdo#109289]) [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-rkl-7/igt@gen7_exec_parse@batch-without-end.html * igt@gen7_exec_parse@bitmasks: - shard-dg2: NOTRUN -> [SKIP][86] ([fdo#109289]) +7 other tests skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-2/igt@gen7_exec_parse@bitmasks.html * igt@gen9_exec_parse@allowed-single: - shard-glk: NOTRUN -> [INCOMPLETE][87] ([i915#10137] / [i915#5566]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-glk8/igt@gen9_exec_parse@allowed-single.html * igt@gen9_exec_parse@batch-without-end: - shard-mtlp: NOTRUN -> [SKIP][88] ([i915#2856]) +3 other tests skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-6/igt@gen9_exec_parse@batch-without-end.html - shard-rkl: NOTRUN -> [SKIP][89] ([i915#2527]) +1 other test skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-rkl-7/igt@gen9_exec_parse@batch-without-end.html * igt@gen9_exec_parse@batch-zero-length: - shard-tglu: NOTRUN -> [SKIP][90] ([i915#2527] / [i915#2856]) +2 other tests skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-tglu-8/igt@gen9_exec_parse@batch-zero-length.html * igt@gen9_exec_parse@bb-chained: - shard-dg1: NOTRUN -> [SKIP][91] ([i915#2527]) +2 other tests skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-15/igt@gen9_exec_parse@bb-chained.html * igt@gen9_exec_parse@unaligned-access: - shard-dg2: NOTRUN -> [SKIP][92] ([i915#2856]) +6 other tests skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-1/igt@gen9_exec_parse@unaligned-access.html * igt@i915_module_load@reload-with-fault-injection: - shard-rkl: [PASS][93] -> [INCOMPLETE][94] ([i915#10137] / [i915#9820] / [i915#9849]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-rkl-7/igt@i915_module_load@reload-with-fault-injection.html [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-rkl-4/igt@i915_module_load@reload-with-fault-injection.html - shard-tglu: [PASS][95] -> [INCOMPLETE][96] ([i915#10137] / [i915#9200]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-tglu-3/igt@i915_module_load@reload-with-fault-injection.html [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-tglu-10/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_freq_mult@media-freq@gt0: - shard-dg1: NOTRUN -> [SKIP][97] ([i915#6590]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-17/igt@i915_pm_freq_mult@media-freq@gt0.html * igt@i915_pm_rc6_residency@media-rc6-accuracy: - shard-dg1: NOTRUN -> [SKIP][98] ([fdo#109289]) +1 other test skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-15/igt@i915_pm_rc6_residency@media-rc6-accuracy.html - shard-mtlp: NOTRUN -> [SKIP][99] ([fdo#109289]) +2 other tests skip [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-8/igt@i915_pm_rc6_residency@media-rc6-accuracy.html * igt@i915_pm_rpm@gem-execbuf-stress-pc8: - shard-mtlp: NOTRUN -> [SKIP][100] ([fdo#109293]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-8/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html - shard-rkl: NOTRUN -> [SKIP][101] ([fdo#109293] / [fdo#109506]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-rkl-4/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html * igt@i915_pm_rps@min-max-config-loaded: - shard-dg2: NOTRUN -> [SKIP][102] ([i915#6621]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-5/igt@i915_pm_rps@min-max-config-loaded.html * igt@i915_pm_rps@waitboost: - shard-mtlp: NOTRUN -> [FAIL][103] ([i915#8346]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-7/igt@i915_pm_rps@waitboost.html * igt@i915_pm_sseu@full-enable: - shard-dg2: NOTRUN -> [SKIP][104] ([i915#4387]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-6/igt@i915_pm_sseu@full-enable.html * igt@i915_query@query-topology-coherent-slice-mask: - shard-mtlp: NOTRUN -> [SKIP][105] ([i915#6188]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-2/igt@i915_query@query-topology-coherent-slice-mask.html * igt@i915_query@query-topology-unsupported: - shard-rkl: NOTRUN -> [SKIP][106] ([fdo#109302]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-rkl-4/igt@i915_query@query-topology-unsupported.html * igt@i915_suspend@basic-s3-without-i915: - shard-rkl: [PASS][107] -> [FAIL][108] ([i915#10031]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-rkl-7/igt@i915_suspend@basic-s3-without-i915.html [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-rkl-5/igt@i915_suspend@basic-s3-without-i915.html - shard-mtlp: NOTRUN -> [SKIP][109] ([i915#6645]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-7/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_addfb_basic@clobberred-modifier: - shard-dg2: NOTRUN -> [SKIP][110] ([i915#4212]) +1 other test skip [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-6/igt@kms_addfb_basic@clobberred-modifier.html * igt@kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-tglu: NOTRUN -> [SKIP][111] ([i915#3826]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-tglu-6/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-4-y-rc-ccs: - shard-dg1: NOTRUN -> [SKIP][112] ([i915#8709]) +7 other tests skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-19/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-4-y-rc-ccs.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-vga-1-linear: - shard-snb: NOTRUN -> [SKIP][113] ([fdo#109271]) +1 other test skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-snb7/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-vga-1-linear.html * igt@kms_async_flips@invalid-async-flip: - shard-dg2: NOTRUN -> [SKIP][114] ([i915#6228]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-2/igt@kms_async_flips@invalid-async-flip.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-glk: NOTRUN -> [SKIP][115] ([fdo#109271] / [i915#1769]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-glk3/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html - shard-dg2: NOTRUN -> [SKIP][116] ([i915#1769] / [i915#3555]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_big_fb@4-tiled-16bpp-rotate-270: - shard-mtlp: NOTRUN -> [SKIP][117] ([fdo#111614]) +1 other test skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-4/igt@kms_big_fb@4-tiled-16bpp-rotate-270.html * igt@kms_big_fb@4-tiled-32bpp-rotate-180: - shard-tglu: NOTRUN -> [SKIP][118] ([fdo#111615] / [i915#5286]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-tglu-3/igt@kms_big_fb@4-tiled-32bpp-rotate-180.html * igt@kms_big_fb@4-tiled-8bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][119] ([i915#5286]) +3 other tests skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-rkl-7/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-dg1: NOTRUN -> [SKIP][120] ([i915#4538] / [i915#5286]) +3 other tests skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-15/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-mtlp: NOTRUN -> [FAIL][121] ([i915#5138]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@linear-32bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][122] ([i915#3638]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-14/igt@kms_big_fb@linear-32bpp-rotate-90.html * igt@kms_big_fb@x-tiled-32bpp-rotate-90: - shard-tglu: NOTRUN -> [SKIP][123] ([fdo#111614]) +1 other test skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-tglu-7/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html * igt@kms_big_fb@x-tiled-64bpp-rotate-270: - shard-dg2: NOTRUN -> [SKIP][124] ([fdo#111614]) +4 other tests skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-1/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html * igt@kms_big_fb@x-tiled-8bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][125] ([fdo#111614] / [i915#3638]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-rkl-5/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-dg2: NOTRUN -> [SKIP][126] ([i915#5190]) +20 other tests skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-3/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-270: - shard-dg1: NOTRUN -> [SKIP][127] ([i915#4538]) +3 other tests skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-18/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][128] ([i915#4538] / [i915#5190]) +7 other tests skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-2/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-180: - shard-mtlp: NOTRUN -> [SKIP][129] ([fdo#111615]) +8 other tests skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-7/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html - shard-rkl: NOTRUN -> [SKIP][130] ([fdo#110723]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-rkl-1/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-tglu: NOTRUN -> [SKIP][131] ([fdo#111615]) +4 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-tglu-8/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_big_joiner@basic: - shard-dg1: NOTRUN -> [SKIP][132] ([i915#2705]) [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-19/igt@kms_big_joiner@basic.html * igt@kms_big_joiner@invalid-modeset: - shard-mtlp: NOTRUN -> [SKIP][133] ([i915#2705]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-4/igt@kms_big_joiner@invalid-modeset.html - shard-rkl: NOTRUN -> [SKIP][134] ([i915#2705]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-rkl-7/igt@kms_big_joiner@invalid-modeset.html * igt@kms_ccs@pipe-a-bad-pixel-format-4-tiled-mtl-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][135] ([i915#5354]) +112 other tests skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-6/igt@kms_ccs@pipe-a-bad-pixel-format-4-tiled-mtl-mc-ccs.html * igt@kms_ccs@pipe-b-crc-sprite-planes-basic-y-tiled-gen12-mc-ccs: - shard-rkl: NOTRUN -> [SKIP][136] ([i915#5354] / [i915#6095]) +6 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-rkl-5/igt@kms_ccs@pipe-b-crc-sprite-planes-basic-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@pipe-b-random-ccs-data-y-tiled-gen12-mc-ccs: - shard-dg1: NOTRUN -> [SKIP][137] ([i915#5354] / [i915#6095]) +28 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-15/igt@kms_ccs@pipe-b-random-ccs-data-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@pipe-c-missing-ccs-buffer-y-tiled-gen12-mc-ccs: - shard-tglu: NOTRUN -> [SKIP][138] ([i915#5354] / [i915#6095]) +19 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-tglu-6/igt@kms_ccs@pipe-c-missing-ccs-buffer-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@pipe-d-ccs-on-another-bo-yf-tiled-ccs: - shard-mtlp: NOTRUN -> [SKIP][139] ([i915#5354] / [i915#6095]) +28 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-3/igt@kms_ccs@pipe-d-ccs-on-another-bo-yf-tiled-ccs.html * igt@kms_ccs@pipe-d-crc-primary-rotation-180-4-tiled-mtl-mc-ccs: - shard-rkl: NOTRUN -> [SKIP][140] ([i915#5354]) +12 other tests skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-rkl-5/igt@kms_ccs@pipe-d-crc-primary-rotation-180-4-tiled-mtl-mc-ccs.html * igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][141] ([i915#4087]) +3 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-2/igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-2.html * igt@kms_chamelium_audio@dp-audio: - shard-tglu: NOTRUN -> [SKIP][142] ([i915#7828]) +3 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-tglu-3/igt@kms_chamelium_audio@dp-audio.html * igt@kms_chamelium_audio@hdmi-audio-edid: - shard-dg1: NOTRUN -> [SKIP][143] ([i915#7828]) +4 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-16/igt@kms_chamelium_audio@hdmi-audio-edid.html * igt@kms_chamelium_color@ctm-blue-to-red: - shard-glk: NOTRUN -> [SKIP][144] ([fdo#109271]) +329 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-glk5/igt@kms_chamelium_color@ctm-blue-to-red.html * igt@kms_chamelium_color@degamma: - shard-dg2: NOTRUN -> [SKIP][145] ([fdo#111827]) +2 other tests skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-2/igt@kms_chamelium_color@degamma.html - shard-tglu: NOTRUN -> [SKIP][146] ([fdo#111827]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-tglu-6/igt@kms_chamelium_color@degamma.html * igt@kms_chamelium_edid@hdmi-edid-change-during-suspend: - shard-rkl: NOTRUN -> [SKIP][147] ([i915#7828]) +1 other test skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-rkl-4/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html * igt@kms_chamelium_frames@dp-crc-fast: - shard-dg2: NOTRUN -> [SKIP][148] ([i915#7828]) +12 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-6/igt@kms_chamelium_frames@dp-crc-fast.html * igt@kms_chamelium_hpd@vga-hpd-without-ddc: - shard-mtlp: NOTRUN -> [SKIP][149] ([i915#7828]) +7 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-8/igt@kms_chamelium_hpd@vga-hpd-without-ddc.html * igt@kms_color@deep-color: - shard-dg1: NOTRUN -> [SKIP][150] ([i915#3555]) +2 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-13/igt@kms_color@deep-color.html * igt@kms_content_protection@atomic: - shard-dg2: NOTRUN -> [SKIP][151] ([i915#7118]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-5/igt@kms_content_protection@atomic.html * igt@kms_content_protection@content-type-change: - shard-dg2: NOTRUN -> [SKIP][152] ([i915#9424]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-10/igt@kms_content_protection@content-type-change.html - shard-rkl: NOTRUN -> [SKIP][153] ([i915#9424]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-rkl-1/igt@kms_content_protection@content-type-change.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-dg2: NOTRUN -> [SKIP][154] ([i915#3299]) +1 other test skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-6/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@dp-mst-type-0: - shard-dg1: NOTRUN -> [SKIP][155] ([i915#3299]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-13/igt@kms_content_protection@dp-mst-type-0.html - shard-mtlp: NOTRUN -> [SKIP][156] ([i915#3299]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-8/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_cursor_crc@cursor-offscreen-128x42: - shard-mtlp: NOTRUN -> [SKIP][157] ([i915#8814]) +1 other test skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-6/igt@kms_cursor_crc@cursor-offscreen-128x42.html * igt@kms_cursor_crc@cursor-random-512x512: - shard-dg2: NOTRUN -> [SKIP][158] ([i915#3359]) +2 other tests skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-2/igt@kms_cursor_crc@cursor-random-512x512.html - shard-dg1: NOTRUN -> [SKIP][159] ([i915#3359]) +4 other tests skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-18/igt@kms_cursor_crc@cursor-random-512x512.html * igt@kms_cursor_crc@cursor-sliding-512x170: - shard-mtlp: NOTRUN -> [SKIP][160] ([i915#3359]) +2 other tests skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-4/igt@kms_cursor_crc@cursor-sliding-512x170.html * igt@kms_cursor_crc@cursor-sliding-512x512: - shard-rkl: NOTRUN -> [SKIP][161] ([i915#3359]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-rkl-7/igt@kms_cursor_crc@cursor-sliding-512x512.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy: - shard-mtlp: NOTRUN -> [SKIP][162] ([i915#9809]) +3 other tests skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-8/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic: - shard-tglu: NOTRUN -> [SKIP][163] ([fdo#109274]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-tglu-8/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@cursora-vs-flipb-toggle: - shard-dg2: NOTRUN -> [SKIP][164] ([fdo#109274] / [i915#5354]) +9 other tests skip [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-3/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions: - shard-dg2: NOTRUN -> [SKIP][165] ([fdo#109274] / [fdo#111767] / [i915#5354]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-6/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size: - shard-snb: [PASS][166] -> [SKIP][167] ([fdo#109271]) +7 other tests skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-snb7/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-snb2/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-glk: NOTRUN -> [FAIL][168] ([i915#2346]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-glk9/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-mtlp: NOTRUN -> [SKIP][169] ([i915#4213]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-7/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html - shard-dg1: NOTRUN -> [SKIP][170] ([i915#4103] / [i915#4213]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-13/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-dg2: NOTRUN -> [SKIP][171] ([i915#4103] / [i915#4213]) +1 other test skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][172] ([fdo#110189] / [i915#9227]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-10/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1.html * igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][173] ([fdo#110189] / [i915#9723]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-rkl-1/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-2.html * igt@kms_dirtyfb@psr-dirtyfb-ioctl: - shard-tglu: NOTRUN -> [SKIP][174] ([i915#9723]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-tglu-2/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html * igt@kms_display_modes@extended-mode-basic: - shard-dg2: NOTRUN -> [SKIP][175] ([i915#3555]) +6 other tests skip [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-6/igt@kms_display_modes@extended-mode-basic.html * igt@kms_dp_aux_dev: - shard-dg2: NOTRUN -> [SKIP][176] ([i915#1257]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-1/igt@kms_dp_aux_dev.html * igt@kms_draw_crc@draw-method-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][177] ([i915#8812]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-5/igt@kms_draw_crc@draw-method-mmap-wc.html * igt@kms_dsc@dsc-fractional-bpp: - shard-dg2: NOTRUN -> [SKIP][178] ([i915#3840] / [i915#9688]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-5/igt@kms_dsc@dsc-fractional-bpp.html - shard-dg1: NOTRUN -> [SKIP][179] ([i915#3840]) +1 other test skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-17/igt@kms_dsc@dsc-fractional-bpp.html - shard-mtlp: NOTRUN -> [SKIP][180] ([i915#3840] / [i915#9688]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-2/igt@kms_dsc@dsc-fractional-bpp.html * igt@kms_fbcon_fbt@psr: - shard-dg2: NOTRUN -> [SKIP][181] ([i915#3469]) +1 other test skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-6/igt@kms_fbcon_fbt@psr.html - shard-tglu: NOTRUN -> [SKIP][182] ([i915#3469]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-tglu-2/igt@kms_fbcon_fbt@psr.html * igt@kms_feature_discovery@chamelium: - shard-dg2: NOTRUN -> [SKIP][183] ([i915#4854]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-1/igt@kms_feature_discovery@chamelium.html - shard-dg1: NOTRUN -> [SKIP][184] ([i915#4854]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-19/igt@kms_feature_discovery@chamelium.html * igt@kms_feature_discovery@display-2x: - shard-dg2: NOTRUN -> [SKIP][185] ([i915#1839]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-1/igt@kms_feature_discovery@display-2x.html * igt@kms_fence_pin_leak: - shard-dg2: NOTRUN -> [SKIP][186] ([i915#4881]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-6/igt@kms_fence_pin_leak.html * igt@kms_flip@2x-absolute-wf_vblank: - shard-tglu: NOTRUN -> [SKIP][187] ([fdo#109274] / [i915#3637] / [i915#3966]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-tglu-8/igt@kms_flip@2x-absolute-wf_vblank.html * igt@kms_flip@2x-blocking-absolute-wf_vblank: - shard-mtlp: NOTRUN -> [SKIP][188] ([i915#3637]) +4 other tests skip [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-2/igt@kms_flip@2x-blocking-absolute-wf_vblank.html * igt@kms_flip@2x-blocking-wf_vblank: - shard-rkl: NOTRUN -> [SKIP][189] ([fdo#111825]) +1 other test skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-rkl-1/igt@kms_flip@2x-blocking-wf_vblank.html * igt@kms_flip@2x-flip-vs-modeset-vs-hang: - shard-dg2: NOTRUN -> [SKIP][190] ([fdo#109274]) +7 other tests skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-1/igt@kms_flip@2x-flip-vs-modeset-vs-hang.html * igt@kms_flip@2x-plain-flip-ts-check-interruptible: - shard-dg1: NOTRUN -> [SKIP][191] ([fdo#111825] / [i915#9934]) +7 other tests skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-15/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html * igt@kms_flip@flip-vs-fences-interruptible: - shard-dg2: NOTRUN -> [SKIP][192] ([i915#8381]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-6/igt@kms_flip@flip-vs-fences-interruptible.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][193] ([i915#2587] / [i915#2672]) +2 other tests skip [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-tglu-8/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][194] ([i915#2587] / [i915#2672]) +3 other tests skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-12/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-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][195] ([i915#2672] / [i915#3555]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][196] ([i915#2672]) +1 other test skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-rkl-4/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@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][197] ([i915#2672]) +4 other tests skip [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][198] ([i915#2672]) +7 other tests skip [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-5/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode.html * igt@kms_force_connector_basic@force-load-detect: - shard-rkl: NOTRUN -> [SKIP][199] ([fdo#109285]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-rkl-5/igt@kms_force_connector_basic@force-load-detect.html - shard-dg2: NOTRUN -> [SKIP][200] ([fdo#109285]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-6/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-blt: - shard-mtlp: NOTRUN -> [SKIP][201] ([fdo#111767] / [i915#1825]) +1 other test skip [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-pwrite: - shard-rkl: NOTRUN -> [SKIP][202] ([fdo#111825] / [i915#1825]) +15 other tests skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-move: - shard-tglu: NOTRUN -> [SKIP][203] ([fdo#109280]) +17 other tests skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-tglu-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-move.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render: - shard-mtlp: NOTRUN -> [SKIP][204] ([i915#1825]) +20 other tests skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][205] ([i915#8708]) +34 other tests skip [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-pwrite: - shard-dg1: NOTRUN -> [SKIP][206] ([fdo#111825]) +19 other tests skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][207] ([i915#8708]) +15 other tests skip [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-render: - shard-tglu: NOTRUN -> [SKIP][208] ([fdo#110189]) +9 other tests skip [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-tglu-7/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render: - shard-rkl: NOTRUN -> [SKIP][209] ([i915#3023]) +8 other tests skip [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-pgflip-blt: - shard-dg1: NOTRUN -> [SKIP][210] ([i915#3458]) +10 other tests skip [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-15/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][211] ([i915#8708]) +5 other tests skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-7/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-pwrite: - shard-dg2: NOTRUN -> [SKIP][212] ([fdo#111767] / [i915#5354]) +3 other tests skip [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-pwrite.html - shard-tglu: NOTRUN -> [SKIP][213] ([fdo#109280] / [fdo#111767]) +2 other tests skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-tglu-3/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary: - shard-dg2: NOTRUN -> [SKIP][214] ([i915#3458]) +25 other tests skip [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html * igt@kms_hdr@invalid-metadata-sizes: - shard-dg2: NOTRUN -> [SKIP][215] ([i915#3555] / [i915#8228]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-3/igt@kms_hdr@invalid-metadata-sizes.html - shard-dg1: NOTRUN -> [SKIP][216] ([i915#3555] / [i915#8228]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-13/igt@kms_hdr@invalid-metadata-sizes.html * igt@kms_panel_fitting@atomic-fastset: - shard-dg1: NOTRUN -> [SKIP][217] ([i915#6301]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-13/igt@kms_panel_fitting@atomic-fastset.html * igt@kms_panel_fitting@legacy: - shard-dg2: NOTRUN -> [SKIP][218] ([i915#6301]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-1/igt@kms_panel_fitting@legacy.html - shard-rkl: NOTRUN -> [SKIP][219] ([i915#6301]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-rkl-7/igt@kms_panel_fitting@legacy.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][220] ([i915#9423]) +3 other tests skip [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a-hdmi-a-2.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][221] ([i915#9423]) +15 other tests skip [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-18/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a-hdmi-a-4.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][222] ([i915#5176]) +1 other test skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-6/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b-edp-1.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][223] ([i915#5176] / [i915#9423]) +1 other test skip [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-rkl-4/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@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][224] ([i915#5176] / [i915#9423]) +3 other tests skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-13/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-3.html * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][225] ([i915#9423]) +1 other test skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-rkl-7/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][226] ([i915#5235]) +1 other test skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-rkl-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b-hdmi-a-2.html * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-c-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][227] ([i915#5235]) +11 other tests skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-19/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-c-hdmi-a-4.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][228] ([i915#3555] / [i915#5235]) +1 other test skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-6/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d-edp-1.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][229] ([i915#5235]) +5 other tests skip [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-6/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-c-edp-1.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][230] ([i915#5235] / [i915#9423]) +19 other tests skip [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-5/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-3.html * igt@kms_pm_dc@dc6-dpms: - shard-dg2: NOTRUN -> [SKIP][231] ([i915#5978]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-6/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_rpm@dpms-lpsp: - shard-dg2: NOTRUN -> [SKIP][232] ([i915#9519]) +1 other test skip [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-6/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@dpms-non-lpsp: - shard-mtlp: NOTRUN -> [SKIP][233] ([i915#9519]) +1 other test skip [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-3/igt@kms_pm_rpm@dpms-non-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-tglu: NOTRUN -> [SKIP][234] ([i915#9519]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-tglu-2/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-rkl: NOTRUN -> [SKIP][235] ([i915#9519]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-rkl-7/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-rkl: [PASS][236] -> [SKIP][237] ([i915#9519]) +3 other tests skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-rkl-6/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-rkl-7/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@kms_prime@basic-modeset-hybrid: - shard-dg1: NOTRUN -> [SKIP][238] ([i915#6524]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-12/igt@kms_prime@basic-modeset-hybrid.html - shard-mtlp: NOTRUN -> [SKIP][239] ([i915#6524]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-5/igt@kms_prime@basic-modeset-hybrid.html * igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-fully-sf: - shard-tglu: NOTRUN -> [SKIP][240] ([i915#9683]) [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-tglu-2/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf: - shard-dg2: NOTRUN -> [SKIP][241] ([i915#9683]) +4 other tests skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-2/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html - shard-rkl: NOTRUN -> [SKIP][242] ([i915#9683]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-rkl-5/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area: - shard-rkl: NOTRUN -> [SKIP][243] ([fdo#111068] / [i915#9683]) +1 other test skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-rkl-5/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area: - shard-dg1: NOTRUN -> [SKIP][244] ([fdo#111068] / [i915#9683]) +1 other test skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-15/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html * igt@kms_rotation_crc@primary-4-tiled-reflect-x-0: - shard-dg1: NOTRUN -> [SKIP][245] ([i915#5289]) [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-13/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-90: - shard-mtlp: NOTRUN -> [SKIP][246] ([i915#4235]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-7/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html - shard-dg2: NOTRUN -> [SKIP][247] ([i915#4235] / [i915#5190]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-2/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-dg1: NOTRUN -> [SKIP][248] ([fdo#111615] / [i915#5289]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-18/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_rotation_crc@sprite-rotation-90-pos-100-0: - shard-dg2: NOTRUN -> [SKIP][249] ([i915#4235]) +1 other test skip [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-6/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html * igt@kms_scaling_modes@scaling-mode-full-aspect: - shard-tglu: NOTRUN -> [SKIP][250] ([i915#3555]) +4 other tests skip [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-tglu-5/igt@kms_scaling_modes@scaling-mode-full-aspect.html * igt@kms_scaling_modes@scaling-mode-none: - shard-rkl: NOTRUN -> [SKIP][251] ([i915#3555]) +2 other tests skip [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-rkl-7/igt@kms_scaling_modes@scaling-mode-none.html * igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_build_fourcc_list: - shard-rkl: NOTRUN -> [FAIL][252] ([i915#10136]) [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-rkl-1/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_build_fourcc_list.html - shard-mtlp: NOTRUN -> [DMESG-FAIL][253] ([i915#10143]) [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-7/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_build_fourcc_list.html * igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_clip_offset: - shard-mtlp: NOTRUN -> [DMESG-WARN][254] ([i915#10143]) +1 other test dmesg-warn [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-7/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_clip_offset.html * igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_swab: - shard-dg2: [PASS][255] -> [DMESG-WARN][256] ([i915#10143]) +1 other test dmesg-warn [255]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-dg2-10/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_swab.html [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-5/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_swab.html - shard-rkl: NOTRUN -> [DMESG-WARN][257] ([i915#10143]) +1 other test dmesg-warn [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-rkl-1/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_swab.html - shard-tglu: [PASS][258] -> [DMESG-WARN][259] ([i915#10143]) [258]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-tglu-10/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_swab.html [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-tglu-3/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_swab.html * igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_xrgb8888_to_abgr8888: - shard-glk: [PASS][260] -> [DMESG-WARN][261] ([i915#10143] / [i915#10165]) +1 other test dmesg-warn [260]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-glk9/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_xrgb8888_to_abgr8888.html [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-glk8/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_xrgb8888_to_abgr8888.html * igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_xrgb8888_to_argb2101010: - shard-dg1: [PASS][262] -> [DMESG-WARN][263] ([i915#10143]) +1 other test dmesg-warn [262]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-dg1-12/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_xrgb8888_to_argb2101010.html [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-14/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_xrgb8888_to_argb2101010.html * igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_xrgb8888_to_argb8888: - shard-snb: [PASS][264] -> [DMESG-WARN][265] ([i915#10143]) +1 other test dmesg-warn [264]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-snb5/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_xrgb8888_to_argb8888.html [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-snb1/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_xrgb8888_to_argb8888.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-tglu: NOTRUN -> [SKIP][266] ([i915#8623]) [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-tglu-3/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html - shard-mtlp: NOTRUN -> [SKIP][267] ([i915#8623]) [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-2/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html - shard-dg2: NOTRUN -> [SKIP][268] ([i915#8623]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-5/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_tv_load_detect@load-detect: - shard-mtlp: NOTRUN -> [SKIP][269] ([fdo#109309]) [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-4/igt@kms_tv_load_detect@load-detect.html - shard-dg2: NOTRUN -> [SKIP][270] ([fdo#109309]) [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-6/igt@kms_tv_load_detect@load-detect.html - shard-dg1: NOTRUN -> [SKIP][271] ([fdo#109309]) [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-12/igt@kms_tv_load_detect@load-detect.html * igt@kms_vrr@flip-suspend: - shard-mtlp: NOTRUN -> [SKIP][272] ([i915#3555] / [i915#8808]) [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-7/igt@kms_vrr@flip-suspend.html * igt@kms_writeback@writeback-check-output: - shard-tglu: NOTRUN -> [SKIP][273] ([i915#2437]) [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-tglu-8/igt@kms_writeback@writeback-check-output.html * igt@kms_writeback@writeback-fb-id: - shard-glk: NOTRUN -> [SKIP][274] ([fdo#109271] / [i915#2437]) +1 other test skip [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-glk9/igt@kms_writeback@writeback-fb-id.html * igt@kms_writeback@writeback-fb-id-xrgb2101010: - shard-dg2: NOTRUN -> [SKIP][275] ([i915#2437] / [i915#9412]) [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-2/igt@kms_writeback@writeback-fb-id-xrgb2101010.html * igt@perf@per-context-mode-unprivileged: - shard-tglu: NOTRUN -> [SKIP][276] ([fdo#109289]) +2 other tests skip [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-tglu-8/igt@perf@per-context-mode-unprivileged.html * igt@perf_pmu@cpu-hotplug: - shard-dg2: NOTRUN -> [SKIP][277] ([i915#8850]) [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-1/igt@perf_pmu@cpu-hotplug.html - shard-rkl: NOTRUN -> [SKIP][278] ([i915#8850]) [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-rkl-7/igt@perf_pmu@cpu-hotplug.html * igt@perf_pmu@event-wait@rcs0: - shard-dg2: NOTRUN -> [SKIP][279] ([fdo#112283]) [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-6/igt@perf_pmu@event-wait@rcs0.html * igt@perf_pmu@faulting-read@gtt: - shard-mtlp: NOTRUN -> [SKIP][280] ([i915#8440]) [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-7/igt@perf_pmu@faulting-read@gtt.html * igt@perf_pmu@rc6@other-idle-gt0: - shard-dg1: NOTRUN -> [SKIP][281] ([i915#8516]) [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-15/igt@perf_pmu@rc6@other-idle-gt0.html * igt@prime_vgem@basic-fence-mmap: - shard-mtlp: NOTRUN -> [SKIP][282] ([i915#3708] / [i915#4077]) [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-6/igt@prime_vgem@basic-fence-mmap.html - shard-dg2: NOTRUN -> [SKIP][283] ([i915#3708] / [i915#4077]) [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-6/igt@prime_vgem@basic-fence-mmap.html - shard-dg1: NOTRUN -> [SKIP][284] ([i915#3708] / [i915#4077]) [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-19/igt@prime_vgem@basic-fence-mmap.html * igt@prime_vgem@basic-read: - shard-dg2: NOTRUN -> [SKIP][285] ([i915#3291] / [i915#3708]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-3/igt@prime_vgem@basic-read.html * igt@runner@aborted: - shard-snb: NOTRUN -> [FAIL][286] ([i915#7812]) [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-snb2/igt@runner@aborted.html * igt@sriov_basic@enable-vfs-autoprobe-off: - shard-tglu: NOTRUN -> [SKIP][287] ([i915#9917]) [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-tglu-2/igt@sriov_basic@enable-vfs-autoprobe-off.html * igt@tools_test@sysfs_l3_parity: - shard-dg2: NOTRUN -> [SKIP][288] ([i915#4818]) [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-10/igt@tools_test@sysfs_l3_parity.html * igt@v3d/v3d_get_bo_offset@create-get-offsets: - shard-dg1: NOTRUN -> [SKIP][289] ([i915#2575]) +7 other tests skip [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-19/igt@v3d/v3d_get_bo_offset@create-get-offsets.html * igt@v3d/v3d_perfmon@get-values-valid-perfmon: - shard-rkl: NOTRUN -> [SKIP][290] ([fdo#109315]) +5 other tests skip [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-rkl-5/igt@v3d/v3d_perfmon@get-values-valid-perfmon.html * igt@v3d/v3d_submit_cl@bad-multisync-pad: - shard-mtlp: NOTRUN -> [SKIP][291] ([i915#2575]) +6 other tests skip [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-7/igt@v3d/v3d_submit_cl@bad-multisync-pad.html * igt@v3d/v3d_submit_cl@single-out-sync: - shard-tglu: NOTRUN -> [SKIP][292] ([fdo#109315] / [i915#2575]) +6 other tests skip [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-tglu-3/igt@v3d/v3d_submit_cl@single-out-sync.html * igt@v3d/v3d_submit_csd@single-out-sync: - shard-dg2: NOTRUN -> [SKIP][293] ([i915#2575]) +25 other tests skip [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-1/igt@v3d/v3d_submit_csd@single-out-sync.html * igt@vc4/vc4_create_bo@create-bo-zeroed: - shard-rkl: NOTRUN -> [SKIP][294] ([i915#7711]) +1 other test skip [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-rkl-4/igt@vc4/vc4_create_bo@create-bo-zeroed.html * igt@vc4/vc4_mmap@mmap-bad-handle: - shard-dg1: NOTRUN -> [SKIP][295] ([i915#7711]) +7 other tests skip [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-15/igt@vc4/vc4_mmap@mmap-bad-handle.html * igt@vc4/vc4_perfmon@create-perfmon-0: - shard-tglu: NOTRUN -> [SKIP][296] ([i915#2575]) +1 other test skip [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-tglu-6/igt@vc4/vc4_perfmon@create-perfmon-0.html * igt@vc4/vc4_purgeable_bo@access-purged-bo-mem: - shard-mtlp: NOTRUN -> [SKIP][297] ([i915#7711]) +4 other tests skip [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-2/igt@vc4/vc4_purgeable_bo@access-purged-bo-mem.html * igt@vc4/vc4_wait_bo@bad-bo: - shard-dg2: NOTRUN -> [SKIP][298] ([i915#7711]) +11 other tests skip [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-1/igt@vc4/vc4_wait_bo@bad-bo.html #### Possible fixes #### * igt@fbdev@pan: - shard-snb: [FAIL][299] ([i915#4435]) -> [PASS][300] [299]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-snb7/igt@fbdev@pan.html [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-snb4/igt@fbdev@pan.html * igt@gem_ctx_persistence@many-contexts: - shard-dg2: [INCOMPLETE][301] ([i915#10137]) -> [PASS][302] [301]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-dg2-6/igt@gem_ctx_persistence@many-contexts.html [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-6/igt@gem_ctx_persistence@many-contexts.html * igt@gem_exec_fair@basic-none-vip@rcs0: - shard-rkl: [FAIL][303] ([i915#2842]) -> [PASS][304] [303]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-rkl-7/igt@gem_exec_fair@basic-none-vip@rcs0.html [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-rkl-2/igt@gem_exec_fair@basic-none-vip@rcs0.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-glk: [FAIL][305] ([i915#2842]) -> [PASS][306] [305]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-glk8/igt@gem_exec_fair@basic-pace-share@rcs0.html [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-glk9/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_fair@basic-pace-solo@rcs0: - shard-tglu: [FAIL][307] ([i915#2842]) -> [PASS][308] [307]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-tglu-8/igt@gem_exec_fair@basic-pace-solo@rcs0.html [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-tglu-8/igt@gem_exec_fair@basic-pace-solo@rcs0.html * igt@gem_softpin@allocator-evict@bcs0: - shard-rkl: [INCOMPLETE][309] ([i915#10137]) -> [PASS][310] [309]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-rkl-6/igt@gem_softpin@allocator-evict@bcs0.html [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-rkl-1/igt@gem_softpin@allocator-evict@bcs0.html * igt@gem_workarounds@suspend-resume-fd: - shard-tglu: [ABORT][311] ([i915#8213]) -> [PASS][312] [311]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-tglu-9/igt@gem_workarounds@suspend-resume-fd.html [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-tglu-6/igt@gem_workarounds@suspend-resume-fd.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0: - shard-dg1: [FAIL][313] ([i915#3591]) -> [PASS][314] [313]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html * igt@kms_big_fb@4-tiled-64bpp-rotate-180: - shard-mtlp: [FAIL][315] ([i915#5138]) -> [PASS][316] [315]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-mtlp-8/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-7/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-tglu: [FAIL][317] ([i915#3743]) -> [PASS][318] [317]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-tglu-7/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-tglu-8/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_ccs@pipe-c-bad-pixel-format-4-tiled-dg2-rc-ccs-cc: - shard-dg2: [TIMEOUT][319] -> [PASS][320] [319]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-dg2-6/igt@kms_ccs@pipe-c-bad-pixel-format-4-tiled-dg2-rc-ccs-cc.html [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-1/igt@kms_ccs@pipe-c-bad-pixel-format-4-tiled-dg2-rc-ccs-cc.html * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy: - shard-snb: [SKIP][321] ([fdo#109271]) -> [PASS][322] +10 other tests pass [321]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-snb4/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-snb7/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt: - shard-snb: [SKIP][323] ([fdo#109271] / [fdo#111767]) -> [PASS][324] [323]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-snb2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt.html [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-dg2: [SKIP][325] -> [PASS][326] [325]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-dg2-6/igt@kms_pm_rpm@modeset-non-lpsp.html [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-6/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_clip_offset: - shard-dg2: [DMESG-WARN][327] ([i915#10143]) -> [PASS][328] [327]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-dg2-10/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_clip_offset.html [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-5/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_clip_offset.html - shard-snb: [DMESG-WARN][329] ([i915#10143]) -> [PASS][330] +1 other test pass [329]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-snb5/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_clip_offset.html [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-snb1/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_clip_offset.html - shard-tglu: [DMESG-WARN][331] ([i915#10143]) -> [PASS][332] +1 other test pass [331]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-tglu-10/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_clip_offset.html [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-tglu-3/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_clip_offset.html * igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_swab: - shard-dg1: [DMESG-WARN][333] ([i915#10143]) -> [PASS][334] +2 other tests pass [333]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-dg1-12/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_swab.html [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-14/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_swab.html * igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_xrgb8888_to_mono: - shard-glk: [DMESG-WARN][335] ([i915#10143] / [i915#10165]) -> [PASS][336] [335]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-glk9/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_xrgb8888_to_mono.html [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-glk8/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_xrgb8888_to_mono.html * igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1: - shard-tglu: [FAIL][337] ([i915#9196]) -> [PASS][338] +1 other test pass [337]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-tglu-2/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1.html [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-tglu-2/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1.html * igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1: - shard-mtlp: [FAIL][339] ([i915#9196]) -> [PASS][340] +1 other test pass [339]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-mtlp-5/igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1.html [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-4/igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1.html #### Warnings #### * igt@i915_module_load@reload-with-fault-injection: - shard-dg1: [INCOMPLETE][341] ([i915#10137] / [i915#9849]) -> [INCOMPLETE][342] ([i915#10137] / [i915#9820] / [i915#9849]) [341]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-dg1-19/igt@i915_module_load@reload-with-fault-injection.html [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-18/igt@i915_module_load@reload-with-fault-injection.html - shard-dg2: [INCOMPLETE][343] ([i915#10137] / [i915#9820] / [i915#9849]) -> [WARN][344] ([i915#7356]) [343]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-dg2-5/igt@i915_module_load@reload-with-fault-injection.html [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-6/igt@i915_module_load@reload-with-fault-injection.html * igt@kms_content_protection@mei-interface: - shard-dg1: [SKIP][345] ([i915#9424]) -> [SKIP][346] ([i915#9433]) [345]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-dg1-14/igt@kms_content_protection@mei-interface.html [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-12/igt@kms_content_protection@mei-interface.html - shard-snb: [INCOMPLETE][347] ([i915#9878]) -> [SKIP][348] ([fdo#109271]) [347]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-snb7/igt@kms_content_protection@mei-interface.html [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-snb1/igt@kms_content_protection@mei-interface.html * igt@kms_content_protection@srm: - shard-snb: [SKIP][349] ([fdo#109271]) -> [INCOMPLETE][350] ([i915#8816]) [349]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-snb1/igt@kms_content_protection@srm.html [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-snb7/igt@kms_content_protection@srm.html * igt@kms_fbcon_fbt@psr-suspend: - shard-rkl: [SKIP][351] ([i915#3955]) -> [SKIP][352] ([fdo#110189] / [i915#3955]) [351]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-rkl-6/igt@kms_fbcon_fbt@psr-suspend.html [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-rkl-1/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc: - shard-snb: [SKIP][353] ([fdo#109271]) -> [SKIP][354] ([fdo#109271] / [fdo#111767]) [353]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-snb7/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc.html [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-snb5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-onoff: - shard-dg2: [TIMEOUT][355] -> [SKIP][356] ([i915#5354]) [355]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-dg2-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-onoff.html [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-onoff.html * igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_build_fourcc_list: - shard-dg2: [DMESG-FAIL][357] ([i915#10143]) -> [FAIL][358] ([i915#10136]) [357]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-dg2-10/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_build_fourcc_list.html [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-5/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_build_fourcc_list.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109293]: https://bugs.freedesktop.org/show_bug.cgi?id=109293 [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#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111656]: https://bugs.freedesktop.org/show_bug.cgi?id=111656 [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 [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283 [i915#10030]: https://gitlab.freedesktop.org/drm/intel/issues/10030 [i915#10031]: https://gitlab.freedesktop.org/drm/intel/issues/10031 [i915#10042]: https://gitlab.freedesktop.org/drm/intel/issues/10042 [i915#10136]: https://gitlab.freedesktop.org/drm/intel/issues/10136 [i915#10137]: https://gitlab.freedesktop.org/drm/intel/issues/10137 [i915#10143]: https://gitlab.freedesktop.org/drm/intel/issues/10143 [i915#10165]: https://gitlab.freedesktop.org/drm/intel/issues/10165 [i915#1257]: https://gitlab.freedesktop.org/drm/intel/issues/1257 [i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705 [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 [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#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299 [i915#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#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743 [i915#3826]: https://gitlab.freedesktop.org/drm/intel/issues/3826 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955 [i915#3966]: https://gitlab.freedesktop.org/drm/intel/issues/3966 [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#4087]: https://gitlab.freedesktop.org/drm/intel/issues/4087 [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#4387]: https://gitlab.freedesktop.org/drm/intel/issues/4387 [i915#4435]: https://gitlab.freedesktop.org/drm/intel/issues/4435 [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#4818]: https://gitlab.freedesktop.org/drm/intel/issues/4818 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4854]: https://gitlab.freedesktop.org/drm/intel/issues/4854 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4873]: https://gitlab.freedesktop.org/drm/intel/issues/4873 [i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880 [i915#4881]: https://gitlab.freedesktop.org/drm/intel/issues/4881 [i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885 [i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566 [i915#5882]: https://gitlab.freedesktop.org/drm/intel/issues/5882 [i915#5978]: https://gitlab.freedesktop.org/drm/intel/issues/5978 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6188]: https://gitlab.freedesktop.org/drm/intel/issues/6188 [i915#6228]: https://gitlab.freedesktop.org/drm/intel/issues/6228 [i915#6230]: https://gitlab.freedesktop.org/drm/intel/issues/6230 [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268 [i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301 [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 [i915#6590]: https://gitlab.freedesktop.org/drm/intel/issues/6590 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6645]: https://gitlab.freedesktop.org/drm/intel/issues/6645 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7356]: https://gitlab.freedesktop.org/drm/intel/issues/7356 [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#7812]: https://gitlab.freedesktop.org/drm/intel/issues/7812 [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#8346]: https://gitlab.freedesktop.org/drm/intel/issues/8346 [i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381 [i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414 [i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428 [i915#8440]: https://gitlab.freedesktop.org/drm/intel/issues/8440 [i915#8516]: https://gitlab.freedesktop.org/drm/intel/issues/8516 [i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555 [i915#8562]: https://gitlab.freedesktop.org/drm/intel/issues/8562 [i915#8623]: https://gitlab.freedesktop.org/drm/intel/issues/8623 [i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708 [i915#8709]: https://gitlab.freedesktop.org/drm/intel/issues/8709 [i915#8808]: https://gitlab.freedesktop.org/drm/intel/issues/8808 [i915#8812]: https://gitlab.freedesktop.org/drm/intel/issues/8812 [i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814 [i915#8816]: https://gitlab.freedesktop.org/drm/intel/issues/8816 [i915#8850]: https://gitlab.freedesktop.org/drm/intel/issues/8850 [i915#9196]: https://gitlab.freedesktop.org/drm/intel/issues/9196 [i915#9200]: https://gitlab.freedesktop.org/drm/intel/issues/9200 [i915#9227]: https://gitlab.freedesktop.org/drm/intel/issues/9227 [i915#9323]: https://gitlab.freedesktop.org/drm/intel/issues/9323 [i915#9412]: https://gitlab.freedesktop.org/drm/intel/issues/9412 [i915#9423]: https://gitlab.freedesktop.org/drm/intel/issues/9423 [i915#9424]: https://gitlab.freedesktop.org/drm/intel/issues/9424 [i915#9433]: https://gitlab.freedesktop.org/drm/intel/issues/9433 [i915#9519]: https://gitlab.freedesktop.org/drm/intel/issues/9519 [i915#9606]: https://gitlab.freedesktop.org/drm/intel/issues/9606 [i915#9683]: https://gitlab.freedesktop.org/drm/intel/issues/9683 [i915#9688]: https://gitlab.freedesktop.org/drm/intel/issues/9688 [i915#9723]: https://gitlab.freedesktop.org/drm/intel/issues/9723 [i915#9732]: https://gitlab.freedesktop.org/drm/intel/issues/9732 [i915#9808]: https://gitlab.freedesktop.org/drm/intel/issues/9808 [i915#9809]: https://gitlab.freedesktop.org/drm/intel/issues/9809 [i915#9820]: https://gitlab.freedesktop.org/drm/intel/issues/9820 [i915#9849]: https://gitlab.freedesktop.org/drm/intel/issues/9849 [i915#9878]: https://gitlab.freedesktop.org/drm/intel/issues/9878 [i915#9906]: https://gitlab.freedesktop.org/drm/intel/issues/9906 [i915#9917]: https://gitlab.freedesktop.org/drm/intel/issues/9917 [i915#9934]: https://gitlab.freedesktop.org/drm/intel/issues/9934 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7698 -> IGTPW_10600 CI-20190529: 20190529 CI_DRM_14192: f4c0dac89bd3cd02a1afe5e7a91ed4bf8de4afc6 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_10600: 10600 IGT_7698: af750f5e7eaad98d40d8c924eb5f05e99d3c668b @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/index.html [-- Attachment #2: Type: text/html, Size: 117641 bytes --] ^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: ✗ Fi.CI.IGT: failure for tests/intel/xe_exec_atomic: fix basic-inc-all 2024-02-01 5:31 ` ✗ Fi.CI.IGT: failure for " Patchwork @ 2024-02-01 12:23 ` Kamil Konieczny 2024-02-02 8:37 ` Illipilli, TejasreeX 0 siblings, 1 reply; 12+ messages in thread From: Kamil Konieczny @ 2024-02-01 12:23 UTC (permalink / raw) To: igt-dev; +Cc: I915-ci-infra, lgci.bug.filing, TejasreeX Illipilli Hi igt-dev, On 2024-02-01 at 05:31:28 -0000, Patchwork wrote: > == Series Details == > > Series: tests/intel/xe_exec_atomic: fix basic-inc-all > URL : https://patchwork.freedesktop.org/series/129279/ > State : failure > > == Summary == > > CI Bug Log - changes from CI_DRM_14192_full -> IGTPW_10600_full > ==================================================== > > Summary > ------- > > **FAILURE** > > Serious unknown changes coming with IGTPW_10600_full absolutely need to be > verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in IGTPW_10600_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them > to document this new failure mode, which will reduce false positives in CI. > > External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/index.html > > Participating hosts (8 -> 8) > ------------------------------ > > No changes in participating hosts > > Possible new issues > ------------------- > > Here are the unknown changes that may have been introduced in IGTPW_10600_full: > > ### IGT changes ### > > #### Possible regressions #### > > * igt@gem_exec_suspend@basic-s3-devices@smem: > - shard-tglu: [PASS][1] -> [ABORT][2] +1 other test abort > [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-tglu-5/igt@gem_exec_suspend@basic-s3-devices@smem.html > [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-tglu-9/igt@gem_exec_suspend@basic-s3-devices@smem.html > > * igt@kms_flip@blocking-absolute-wf_vblank@d-hdmi-a2: > - shard-dg2: NOTRUN -> [INCOMPLETE][3] > [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-3/igt@kms_flip@blocking-absolute-wf_vblank@d-hdmi-a2.html > > * igt@kms_pm_rpm@cursor: > - shard-tglu: [PASS][4] -> [INCOMPLETE][5] > [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-tglu-7/igt@kms_pm_rpm@cursor.html > [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-tglu-8/igt@kms_pm_rpm@cursor.html > > * igt@sysfs_heartbeat_interval@nopreempt@vcs0: > - shard-glk: [PASS][6] -> [FAIL][7] > [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-glk3/igt@sysfs_heartbeat_interval@nopreempt@vcs0.html > [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-glk8/igt@sysfs_heartbeat_interval@nopreempt@vcs0.html > Unrelated to Xe test change, no need for respin (patch already merged). Regards, Kamil > > Known issues > ------------ > > Here are the changes found in IGTPW_10600_full that come from known issues: > ...cut... > > Build changes > ------------- > > * CI: CI-20190529 -> None > * IGT: IGT_7698 -> IGTPW_10600 > > CI-20190529: 20190529 > CI_DRM_14192: f4c0dac89bd3cd02a1afe5e7a91ed4bf8de4afc6 @ git://anongit.freedesktop.org/gfx-ci/linux > IGTPW_10600: 10600 > IGT_7698: af750f5e7eaad98d40d8c924eb5f05e99d3c668b @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git > > == Logs == > > For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/index.html ^ permalink raw reply [flat|nested] 12+ messages in thread
* RE: ✗ Fi.CI.IGT: failure for tests/intel/xe_exec_atomic: fix basic-inc-all 2024-02-01 12:23 ` Kamil Konieczny @ 2024-02-02 8:37 ` Illipilli, TejasreeX 0 siblings, 0 replies; 12+ messages in thread From: Illipilli, TejasreeX @ 2024-02-02 8:37 UTC (permalink / raw) To: Kamil Konieczny, igt-dev@lists.freedesktop.org Cc: I915-ci-infra@lists.freedesktop.org, LGCI Bug Filing Hi, https://patchwork.freedesktop.org/series/129279/ - Re-reported Thanks, Tejasree -----Original Message----- From: Kamil Konieczny <kamil.konieczny@linux.intel.com> Sent: Thursday, February 1, 2024 5:53 PM To: igt-dev@lists.freedesktop.org Cc: I915-ci-infra@lists.freedesktop.org; LGCI Bug Filing <lgci.bug.filing@intel.com>; Illipilli, TejasreeX <tejasreex.illipilli@intel.com> Subject: Re: ✗ Fi.CI.IGT: failure for tests/intel/xe_exec_atomic: fix basic-inc-all Hi igt-dev, On 2024-02-01 at 05:31:28 -0000, Patchwork wrote: > == Series Details == > > Series: tests/intel/xe_exec_atomic: fix basic-inc-all > URL : https://patchwork.freedesktop.org/series/129279/ > State : failure > > == Summary == > > CI Bug Log - changes from CI_DRM_14192_full -> IGTPW_10600_full > ==================================================== > > Summary > ------- > > **FAILURE** > > Serious unknown changes coming with IGTPW_10600_full absolutely need to be > verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in IGTPW_10600_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them > to document this new failure mode, which will reduce false positives in CI. > > External URL: > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/index.html > > Participating hosts (8 -> 8) > ------------------------------ > > No changes in participating hosts > > Possible new issues > ------------------- > > Here are the unknown changes that may have been introduced in IGTPW_10600_full: > > ### IGT changes ### > > #### Possible regressions #### > > * igt@gem_exec_suspend@basic-s3-devices@smem: > - shard-tglu: [PASS][1] -> [ABORT][2] +1 other test abort > [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-tglu-5/igt@gem_exec_suspend@basic-s3-devices@smem.html > [2]: > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-tglu-9/igt@ > gem_exec_suspend@basic-s3-devices@smem.html > > * igt@kms_flip@blocking-absolute-wf_vblank@d-hdmi-a2: > - shard-dg2: NOTRUN -> [INCOMPLETE][3] > [3]: > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-3/igt@k > ms_flip@blocking-absolute-wf_vblank@d-hdmi-a2.html > > * igt@kms_pm_rpm@cursor: > - shard-tglu: [PASS][4] -> [INCOMPLETE][5] > [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-tglu-7/igt@kms_pm_rpm@cursor.html > [5]: > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-tglu-8/igt@ > kms_pm_rpm@cursor.html > > * igt@sysfs_heartbeat_interval@nopreempt@vcs0: > - shard-glk: [PASS][6] -> [FAIL][7] > [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-glk3/igt@sysfs_heartbeat_interval@nopreempt@vcs0.html > [7]: > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-glk8/igt@sy > sfs_heartbeat_interval@nopreempt@vcs0.html > Unrelated to Xe test change, no need for respin (patch already merged). Regards, Kamil > > Known issues > ------------ > > Here are the changes found in IGTPW_10600_full that come from known issues: > ...cut... > > Build changes > ------------- > > * CI: CI-20190529 -> None > * IGT: IGT_7698 -> IGTPW_10600 > > CI-20190529: 20190529 > CI_DRM_14192: f4c0dac89bd3cd02a1afe5e7a91ed4bf8de4afc6 @ git://anongit.freedesktop.org/gfx-ci/linux > IGTPW_10600: 10600 > IGT_7698: af750f5e7eaad98d40d8c924eb5f05e99d3c668b @ > https://gitlab.freedesktop.org/drm/igt-gpu-tools.git > > == Logs == > > For more details see: > https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/index.html ^ permalink raw reply [flat|nested] 12+ messages in thread
* ✓ Fi.CI.IGT: success for tests/intel/xe_exec_atomic: fix basic-inc-all 2024-01-29 18:54 [PATCH i-g-t] tests/intel/xe_exec_atomic: fix basic-inc-all Kamil Konieczny ` (5 preceding siblings ...) 2024-02-01 5:31 ` ✗ Fi.CI.IGT: failure for " Patchwork @ 2024-02-02 8:16 ` Patchwork 6 siblings, 0 replies; 12+ messages in thread From: Patchwork @ 2024-02-02 8:16 UTC (permalink / raw) To: Kamil Konieczny; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 95775 bytes --] == Series Details == Series: tests/intel/xe_exec_atomic: fix basic-inc-all URL : https://patchwork.freedesktop.org/series/129279/ State : success == Summary == CI Bug Log - changes from CI_DRM_14192_full -> IGTPW_10600_full ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/index.html Participating hosts (8 -> 8) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in IGTPW_10600_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@crc32: - shard-tglu: NOTRUN -> [SKIP][1] ([i915#6230]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-tglu-6/igt@api_intel_bb@crc32.html * igt@device_reset@unbind-cold-reset-rebind: - shard-dg2: NOTRUN -> [SKIP][2] ([i915#7701]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-1/igt@device_reset@unbind-cold-reset-rebind.html * igt@drm_fdinfo@all-busy-check-all: - shard-mtlp: NOTRUN -> [SKIP][3] ([i915#8414]) +7 other tests skip [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-2/igt@drm_fdinfo@all-busy-check-all.html - shard-dg1: NOTRUN -> [SKIP][4] ([i915#8414]) +1 other test skip [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-17/igt@drm_fdinfo@all-busy-check-all.html * igt@drm_fdinfo@busy-hang@bcs0: - shard-dg2: NOTRUN -> [SKIP][5] ([i915#8414]) +11 other tests skip [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-10/igt@drm_fdinfo@busy-hang@bcs0.html * igt@drm_fdinfo@most-busy-idle-check-all@rcs0: - shard-rkl: [PASS][6] -> [FAIL][7] ([i915#7742]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-rkl-4/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-rkl-5/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html * igt@gem_caching@read-writes: - shard-mtlp: NOTRUN -> [SKIP][8] ([i915#4873]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-8/igt@gem_caching@read-writes.html * igt@gem_ccs@suspend-resume: - shard-dg1: NOTRUN -> [SKIP][9] ([i915#9323]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-19/igt@gem_ccs@suspend-resume.html * igt@gem_close_race@multigpu-basic-threads: - shard-dg2: NOTRUN -> [SKIP][10] ([i915#7697]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-1/igt@gem_close_race@multigpu-basic-threads.html - shard-dg1: NOTRUN -> [SKIP][11] ([i915#7697]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-16/igt@gem_close_race@multigpu-basic-threads.html - shard-mtlp: NOTRUN -> [SKIP][12] ([i915#7697]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-4/igt@gem_close_race@multigpu-basic-threads.html * igt@gem_create@create-ext-set-pat: - shard-dg2: NOTRUN -> [SKIP][13] ([i915#8562]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-6/igt@gem_create@create-ext-set-pat.html * igt@gem_ctx_exec@basic-nohangcheck: - shard-rkl: [PASS][14] -> [FAIL][15] ([i915#6268]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-rkl-1/igt@gem_ctx_exec@basic-nohangcheck.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-rkl-7/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_ctx_persistence@heartbeat-many: - shard-dg2: NOTRUN -> [SKIP][16] ([i915#8555]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-3/igt@gem_ctx_persistence@heartbeat-many.html * igt@gem_ctx_persistence@heartbeat-stop: - shard-mtlp: NOTRUN -> [SKIP][17] ([i915#8555]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-5/igt@gem_ctx_persistence@heartbeat-stop.html * igt@gem_ctx_persistence@saturated-hostile-nopreempt@ccs0: - shard-dg2: NOTRUN -> [SKIP][18] ([i915#5882]) +9 other tests skip [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-5/igt@gem_ctx_persistence@saturated-hostile-nopreempt@ccs0.html * igt@gem_ctx_sseu@engines: - shard-tglu: NOTRUN -> [SKIP][19] ([i915#280]) +1 other test skip [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-tglu-8/igt@gem_ctx_sseu@engines.html * igt@gem_ctx_sseu@invalid-sseu: - shard-dg2: NOTRUN -> [SKIP][20] ([i915#280]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-2/igt@gem_ctx_sseu@invalid-sseu.html * igt@gem_eio@hibernate: - shard-dg1: [PASS][21] -> [ABORT][22] ([i915#7975] / [i915#8213]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-dg1-15/igt@gem_eio@hibernate.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-14/igt@gem_eio@hibernate.html - shard-dg2: NOTRUN -> [ABORT][23] ([i915#10030] / [i915#7975] / [i915#8213]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-10/igt@gem_eio@hibernate.html * igt@gem_exec_balancer@bonded-dual: - shard-dg2: NOTRUN -> [SKIP][24] ([i915#4771]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-10/igt@gem_exec_balancer@bonded-dual.html * igt@gem_exec_balancer@parallel-keep-submit-fence: - shard-rkl: NOTRUN -> [SKIP][25] ([i915#4525]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-rkl-5/igt@gem_exec_balancer@parallel-keep-submit-fence.html * igt@gem_exec_capture@many-4k-incremental: - shard-glk: NOTRUN -> [FAIL][26] ([i915#9606]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-glk8/igt@gem_exec_capture@many-4k-incremental.html - shard-dg2: NOTRUN -> [FAIL][27] ([i915#9606]) +1 other test fail [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-3/igt@gem_exec_capture@many-4k-incremental.html - shard-dg1: NOTRUN -> [FAIL][28] ([i915#9606]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-12/igt@gem_exec_capture@many-4k-incremental.html * igt@gem_exec_capture@many-4k-zero: - shard-rkl: NOTRUN -> [FAIL][29] ([i915#9606]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-rkl-1/igt@gem_exec_capture@many-4k-zero.html * igt@gem_exec_fair@basic-deadline: - shard-glk: NOTRUN -> [FAIL][30] ([i915#2846]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-glk4/igt@gem_exec_fair@basic-deadline.html * igt@gem_exec_fair@basic-none-rrul: - shard-dg2: NOTRUN -> [SKIP][31] ([i915#3539] / [i915#4852]) +5 other tests skip [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-1/igt@gem_exec_fair@basic-none-rrul.html * igt@gem_exec_fair@basic-none-rrul@rcs0: - shard-glk: NOTRUN -> [FAIL][32] ([i915#2842]) +3 other tests fail [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-glk3/igt@gem_exec_fair@basic-none-rrul@rcs0.html * igt@gem_exec_fair@basic-none-vip@rcs0: - shard-glk: [PASS][33] -> [FAIL][34] ([i915#2842]) +2 other tests fail [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-glk5/igt@gem_exec_fair@basic-none-vip@rcs0.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-glk4/igt@gem_exec_fair@basic-none-vip@rcs0.html * igt@gem_exec_fair@basic-none@vcs0: - shard-rkl: [PASS][35] -> [FAIL][36] ([i915#2842]) +1 other test fail [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-rkl-6/igt@gem_exec_fair@basic-none@vcs0.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-rkl-4/igt@gem_exec_fair@basic-none@vcs0.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-tglu: [PASS][37] -> [FAIL][38] ([i915#2842]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-tglu-2/igt@gem_exec_fair@basic-pace-share@rcs0.html [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-tglu-6/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_fence@concurrent: - shard-mtlp: NOTRUN -> [SKIP][39] ([i915#4812]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-5/igt@gem_exec_fence@concurrent.html * igt@gem_exec_flush@basic-batch-kernel-default-wb: - shard-dg1: NOTRUN -> [SKIP][40] ([i915#3539] / [i915#4852]) +1 other test skip [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-12/igt@gem_exec_flush@basic-batch-kernel-default-wb.html * igt@gem_exec_reloc@basic-gtt-read: - shard-dg2: NOTRUN -> [SKIP][41] ([i915#3281]) +16 other tests skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-1/igt@gem_exec_reloc@basic-gtt-read.html * igt@gem_exec_reloc@basic-wc-cpu-noreloc: - shard-dg1: NOTRUN -> [SKIP][42] ([i915#3281]) +4 other tests skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-12/igt@gem_exec_reloc@basic-wc-cpu-noreloc.html * igt@gem_exec_reloc@basic-write-read: - shard-rkl: NOTRUN -> [SKIP][43] ([i915#3281]) +3 other tests skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-rkl-1/igt@gem_exec_reloc@basic-write-read.html * igt@gem_exec_schedule@reorder-wide: - shard-dg2: NOTRUN -> [SKIP][44] ([i915#4537] / [i915#4812]) +2 other tests skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-1/igt@gem_exec_schedule@reorder-wide.html - shard-dg1: NOTRUN -> [SKIP][45] ([i915#4812]) +2 other tests skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-15/igt@gem_exec_schedule@reorder-wide.html - shard-mtlp: NOTRUN -> [SKIP][46] ([i915#4537] / [i915#4812]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-8/igt@gem_exec_schedule@reorder-wide.html * igt@gem_exec_suspend@basic-s3-devices@smem: - shard-tglu: [PASS][47] -> [ABORT][48] ([i915#10218]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-tglu-5/igt@gem_exec_suspend@basic-s3-devices@smem.html [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-tglu-9/igt@gem_exec_suspend@basic-s3-devices@smem.html * igt@gem_fence_thrash@bo-write-verify-threaded-none: - shard-dg1: NOTRUN -> [SKIP][49] ([i915#4860]) +2 other tests skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-18/igt@gem_fence_thrash@bo-write-verify-threaded-none.html - shard-mtlp: NOTRUN -> [SKIP][50] ([i915#4860]) +1 other test skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-6/igt@gem_fence_thrash@bo-write-verify-threaded-none.html * igt@gem_lmem_swapping@heavy-random: - shard-tglu: NOTRUN -> [SKIP][51] ([i915#4613]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-tglu-5/igt@gem_lmem_swapping@heavy-random.html * igt@gem_lmem_swapping@heavy-verify-multi: - shard-mtlp: NOTRUN -> [SKIP][52] ([i915#4613]) +1 other test skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-5/igt@gem_lmem_swapping@heavy-verify-multi.html * igt@gem_lmem_swapping@random-engines: - shard-glk: NOTRUN -> [SKIP][53] ([fdo#109271] / [i915#4613]) +2 other tests skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-glk3/igt@gem_lmem_swapping@random-engines.html * igt@gem_mmap@bad-size: - shard-mtlp: NOTRUN -> [SKIP][54] ([i915#4083]) +2 other tests skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-6/igt@gem_mmap@bad-size.html * igt@gem_mmap_gtt@big-bo: - shard-dg1: NOTRUN -> [SKIP][55] ([i915#4077]) +5 other tests skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-18/igt@gem_mmap_gtt@big-bo.html * igt@gem_mmap_gtt@coherency: - shard-rkl: NOTRUN -> [SKIP][56] ([fdo#111656]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-rkl-7/igt@gem_mmap_gtt@coherency.html * igt@gem_mmap_gtt@hang-user: - shard-mtlp: NOTRUN -> [SKIP][57] ([i915#4077]) +4 other tests skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-7/igt@gem_mmap_gtt@hang-user.html * igt@gem_mmap_wc@invalid-flags: - shard-dg2: NOTRUN -> [SKIP][58] ([i915#4083]) +6 other tests skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-2/igt@gem_mmap_wc@invalid-flags.html * igt@gem_mmap_wc@write: - shard-dg1: NOTRUN -> [SKIP][59] ([i915#4083]) +3 other tests skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-16/igt@gem_mmap_wc@write.html * igt@gem_partial_pwrite_pread@reads-snoop: - shard-mtlp: NOTRUN -> [SKIP][60] ([i915#3282]) +3 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-8/igt@gem_partial_pwrite_pread@reads-snoop.html * igt@gem_partial_pwrite_pread@write-uncached: - shard-dg2: NOTRUN -> [SKIP][61] ([i915#3282]) +10 other tests skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-6/igt@gem_partial_pwrite_pread@write-uncached.html * igt@gem_pread@bench: - shard-dg1: NOTRUN -> [SKIP][62] ([i915#3282]) +3 other tests skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-14/igt@gem_pread@bench.html * igt@gem_pwrite@basic-exhaustion: - shard-tglu: NOTRUN -> [INCOMPLETE][63] ([i915#10042] / [i915#10137]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-tglu-8/igt@gem_pwrite@basic-exhaustion.html * igt@gem_pxp@regular-baseline-src-copy-readible: - shard-dg2: NOTRUN -> [SKIP][64] ([i915#4270]) +5 other tests skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-1/igt@gem_pxp@regular-baseline-src-copy-readible.html - shard-tglu: NOTRUN -> [SKIP][65] ([i915#4270]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-tglu-9/igt@gem_pxp@regular-baseline-src-copy-readible.html * igt@gem_pxp@reject-modify-context-protection-off-2: - shard-rkl: NOTRUN -> [SKIP][66] ([i915#4270]) +1 other test skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-rkl-5/igt@gem_pxp@reject-modify-context-protection-off-2.html * igt@gem_pxp@reject-modify-context-protection-on: - shard-dg1: NOTRUN -> [SKIP][67] ([i915#4270]) +2 other tests skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-18/igt@gem_pxp@reject-modify-context-protection-on.html * igt@gem_pxp@verify-pxp-stale-buf-execution: - shard-mtlp: NOTRUN -> [SKIP][68] ([i915#4270]) +2 other tests skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-4/igt@gem_pxp@verify-pxp-stale-buf-execution.html * igt@gem_render_copy@y-tiled-ccs-to-y-tiled-ccs: - shard-mtlp: NOTRUN -> [SKIP][69] ([i915#8428]) +2 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-4/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-ccs.html * igt@gem_set_tiling_vs_blt@untiled-to-tiled: - shard-dg1: NOTRUN -> [SKIP][70] ([i915#4079]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-17/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html * igt@gem_softpin@evict-snoop: - shard-dg1: NOTRUN -> [SKIP][71] ([i915#4885]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-12/igt@gem_softpin@evict-snoop.html - shard-dg2: NOTRUN -> [SKIP][72] ([i915#4885]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-6/igt@gem_softpin@evict-snoop.html * igt@gem_tiled_partial_pwrite_pread@writes: - shard-dg2: NOTRUN -> [SKIP][73] ([i915#4077]) +17 other tests skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-2/igt@gem_tiled_partial_pwrite_pread@writes.html * igt@gem_tiled_pread_pwrite: - shard-dg2: NOTRUN -> [SKIP][74] ([i915#4079]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-6/igt@gem_tiled_pread_pwrite.html * igt@gem_userptr_blits@create-destroy-unsync: - shard-dg2: NOTRUN -> [SKIP][75] ([i915#3297]) +2 other tests skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-2/igt@gem_userptr_blits@create-destroy-unsync.html * igt@gem_userptr_blits@dmabuf-sync: - shard-dg1: NOTRUN -> [SKIP][76] ([i915#3297]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-18/igt@gem_userptr_blits@dmabuf-sync.html * igt@gem_userptr_blits@map-fixed-invalidate-busy: - shard-mtlp: NOTRUN -> [SKIP][77] ([i915#3297]) +1 other test skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-6/igt@gem_userptr_blits@map-fixed-invalidate-busy.html * igt@gem_userptr_blits@map-fixed-invalidate-overlap: - shard-dg2: NOTRUN -> [SKIP][78] ([i915#3297] / [i915#4880]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-3/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html * igt@gem_userptr_blits@relocations: - shard-mtlp: NOTRUN -> [SKIP][79] ([i915#3281]) +3 other tests skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-2/igt@gem_userptr_blits@relocations.html * igt@gen7_exec_parse@batch-without-end: - shard-rkl: NOTRUN -> [SKIP][80] ([fdo#109289]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-rkl-7/igt@gen7_exec_parse@batch-without-end.html * igt@gen7_exec_parse@bitmasks: - shard-dg2: NOTRUN -> [SKIP][81] ([fdo#109289]) +7 other tests skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-2/igt@gen7_exec_parse@bitmasks.html * igt@gen9_exec_parse@allowed-single: - shard-glk: NOTRUN -> [INCOMPLETE][82] ([i915#10137] / [i915#5566]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-glk8/igt@gen9_exec_parse@allowed-single.html * igt@gen9_exec_parse@batch-without-end: - shard-mtlp: NOTRUN -> [SKIP][83] ([i915#2856]) +3 other tests skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-6/igt@gen9_exec_parse@batch-without-end.html - shard-rkl: NOTRUN -> [SKIP][84] ([i915#2527]) +1 other test skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-rkl-7/igt@gen9_exec_parse@batch-without-end.html * igt@gen9_exec_parse@batch-zero-length: - shard-tglu: NOTRUN -> [SKIP][85] ([i915#2527] / [i915#2856]) +2 other tests skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-tglu-8/igt@gen9_exec_parse@batch-zero-length.html * igt@gen9_exec_parse@bb-chained: - shard-dg1: NOTRUN -> [SKIP][86] ([i915#2527]) +2 other tests skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-15/igt@gen9_exec_parse@bb-chained.html * igt@gen9_exec_parse@unaligned-access: - shard-dg2: NOTRUN -> [SKIP][87] ([i915#2856]) +6 other tests skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-1/igt@gen9_exec_parse@unaligned-access.html * igt@i915_module_load@reload-with-fault-injection: - shard-rkl: [PASS][88] -> [INCOMPLETE][89] ([i915#10137] / [i915#9820] / [i915#9849]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-rkl-7/igt@i915_module_load@reload-with-fault-injection.html [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-rkl-4/igt@i915_module_load@reload-with-fault-injection.html - shard-tglu: [PASS][90] -> [INCOMPLETE][91] ([i915#10137] / [i915#9200]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-tglu-3/igt@i915_module_load@reload-with-fault-injection.html [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-tglu-10/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_freq_mult@media-freq@gt0: - shard-dg1: NOTRUN -> [SKIP][92] ([i915#6590]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-17/igt@i915_pm_freq_mult@media-freq@gt0.html * igt@i915_pm_rc6_residency@media-rc6-accuracy: - shard-dg1: NOTRUN -> [SKIP][93] ([fdo#109289]) +1 other test skip [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-15/igt@i915_pm_rc6_residency@media-rc6-accuracy.html - shard-mtlp: NOTRUN -> [SKIP][94] ([fdo#109289]) +2 other tests skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-8/igt@i915_pm_rc6_residency@media-rc6-accuracy.html * igt@i915_pm_rpm@gem-execbuf-stress-pc8: - shard-mtlp: NOTRUN -> [SKIP][95] ([fdo#109293]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-8/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html - shard-rkl: NOTRUN -> [SKIP][96] ([fdo#109293] / [fdo#109506]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-rkl-4/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html * igt@i915_pm_rps@min-max-config-loaded: - shard-dg2: NOTRUN -> [SKIP][97] ([i915#6621]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-5/igt@i915_pm_rps@min-max-config-loaded.html * igt@i915_pm_rps@waitboost: - shard-mtlp: NOTRUN -> [FAIL][98] ([i915#8346]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-7/igt@i915_pm_rps@waitboost.html * igt@i915_pm_sseu@full-enable: - shard-dg2: NOTRUN -> [SKIP][99] ([i915#4387]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-6/igt@i915_pm_sseu@full-enable.html * igt@i915_query@query-topology-coherent-slice-mask: - shard-mtlp: NOTRUN -> [SKIP][100] ([i915#6188]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-2/igt@i915_query@query-topology-coherent-slice-mask.html * igt@i915_query@query-topology-unsupported: - shard-rkl: NOTRUN -> [SKIP][101] ([fdo#109302]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-rkl-4/igt@i915_query@query-topology-unsupported.html * igt@i915_suspend@basic-s3-without-i915: - shard-rkl: [PASS][102] -> [FAIL][103] ([i915#10031]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-rkl-7/igt@i915_suspend@basic-s3-without-i915.html [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-rkl-5/igt@i915_suspend@basic-s3-without-i915.html - shard-mtlp: NOTRUN -> [SKIP][104] ([i915#6645]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-7/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_addfb_basic@clobberred-modifier: - shard-dg2: NOTRUN -> [SKIP][105] ([i915#4212]) +1 other test skip [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-6/igt@kms_addfb_basic@clobberred-modifier.html * igt@kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-tglu: NOTRUN -> [SKIP][106] ([i915#3826]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-tglu-6/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-4-y-rc-ccs: - shard-dg1: NOTRUN -> [SKIP][107] ([i915#8709]) +7 other tests skip [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-19/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-hdmi-a-4-y-rc-ccs.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-vga-1-linear: - shard-snb: NOTRUN -> [SKIP][108] ([fdo#109271]) +1 other test skip [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-snb7/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-b-vga-1-linear.html * igt@kms_async_flips@invalid-async-flip: - shard-dg2: NOTRUN -> [SKIP][109] ([i915#6228]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-2/igt@kms_async_flips@invalid-async-flip.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-glk: NOTRUN -> [SKIP][110] ([fdo#109271] / [i915#1769]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-glk3/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html - shard-dg2: NOTRUN -> [SKIP][111] ([i915#1769] / [i915#3555]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_big_fb@4-tiled-16bpp-rotate-270: - shard-mtlp: NOTRUN -> [SKIP][112] ([fdo#111614]) +1 other test skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-4/igt@kms_big_fb@4-tiled-16bpp-rotate-270.html * igt@kms_big_fb@4-tiled-32bpp-rotate-180: - shard-tglu: NOTRUN -> [SKIP][113] ([fdo#111615] / [i915#5286]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-tglu-3/igt@kms_big_fb@4-tiled-32bpp-rotate-180.html * igt@kms_big_fb@4-tiled-8bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][114] ([i915#5286]) +3 other tests skip [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-rkl-7/igt@kms_big_fb@4-tiled-8bpp-rotate-90.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-dg1: NOTRUN -> [SKIP][115] ([i915#4538] / [i915#5286]) +3 other tests skip [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-15/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-mtlp: NOTRUN -> [FAIL][116] ([i915#5138]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@linear-32bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][117] ([i915#3638]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-14/igt@kms_big_fb@linear-32bpp-rotate-90.html * igt@kms_big_fb@x-tiled-32bpp-rotate-90: - shard-tglu: NOTRUN -> [SKIP][118] ([fdo#111614]) +1 other test skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-tglu-7/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html * igt@kms_big_fb@x-tiled-64bpp-rotate-270: - shard-dg2: NOTRUN -> [SKIP][119] ([fdo#111614]) +4 other tests skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-1/igt@kms_big_fb@x-tiled-64bpp-rotate-270.html * igt@kms_big_fb@x-tiled-8bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][120] ([fdo#111614] / [i915#3638]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-rkl-5/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-dg2: NOTRUN -> [SKIP][121] ([i915#5190]) +20 other tests skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-3/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-270: - shard-dg1: NOTRUN -> [SKIP][122] ([i915#4538]) +3 other tests skip [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-18/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][123] ([i915#4538] / [i915#5190]) +7 other tests skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-2/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-180: - shard-mtlp: NOTRUN -> [SKIP][124] ([fdo#111615]) +8 other tests skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-7/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html - shard-rkl: NOTRUN -> [SKIP][125] ([fdo#110723]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-rkl-1/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-tglu: NOTRUN -> [SKIP][126] ([fdo#111615]) +4 other tests skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-tglu-8/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_big_joiner@basic: - shard-dg1: NOTRUN -> [SKIP][127] ([i915#2705]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-19/igt@kms_big_joiner@basic.html * igt@kms_big_joiner@invalid-modeset: - shard-mtlp: NOTRUN -> [SKIP][128] ([i915#2705]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-4/igt@kms_big_joiner@invalid-modeset.html - shard-rkl: NOTRUN -> [SKIP][129] ([i915#2705]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-rkl-7/igt@kms_big_joiner@invalid-modeset.html * igt@kms_ccs@pipe-a-bad-pixel-format-4-tiled-mtl-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][130] ([i915#5354]) +112 other tests skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-6/igt@kms_ccs@pipe-a-bad-pixel-format-4-tiled-mtl-mc-ccs.html * igt@kms_ccs@pipe-b-crc-sprite-planes-basic-y-tiled-gen12-mc-ccs: - shard-rkl: NOTRUN -> [SKIP][131] ([i915#5354] / [i915#6095]) +6 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-rkl-5/igt@kms_ccs@pipe-b-crc-sprite-planes-basic-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@pipe-b-random-ccs-data-y-tiled-gen12-mc-ccs: - shard-dg1: NOTRUN -> [SKIP][132] ([i915#5354] / [i915#6095]) +28 other tests skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-15/igt@kms_ccs@pipe-b-random-ccs-data-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@pipe-c-missing-ccs-buffer-y-tiled-gen12-mc-ccs: - shard-tglu: NOTRUN -> [SKIP][133] ([i915#5354] / [i915#6095]) +19 other tests skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-tglu-6/igt@kms_ccs@pipe-c-missing-ccs-buffer-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@pipe-d-ccs-on-another-bo-yf-tiled-ccs: - shard-mtlp: NOTRUN -> [SKIP][134] ([i915#5354] / [i915#6095]) +28 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-3/igt@kms_ccs@pipe-d-ccs-on-another-bo-yf-tiled-ccs.html * igt@kms_ccs@pipe-d-crc-primary-rotation-180-4-tiled-mtl-mc-ccs: - shard-rkl: NOTRUN -> [SKIP][135] ([i915#5354]) +12 other tests skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-rkl-5/igt@kms_ccs@pipe-d-crc-primary-rotation-180-4-tiled-mtl-mc-ccs.html * igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][136] ([i915#4087]) +3 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-2/igt@kms_cdclk@plane-scaling@pipe-d-hdmi-a-2.html * igt@kms_chamelium_audio@dp-audio: - shard-tglu: NOTRUN -> [SKIP][137] ([i915#7828]) +3 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-tglu-3/igt@kms_chamelium_audio@dp-audio.html * igt@kms_chamelium_audio@hdmi-audio-edid: - shard-dg1: NOTRUN -> [SKIP][138] ([i915#7828]) +4 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-16/igt@kms_chamelium_audio@hdmi-audio-edid.html * igt@kms_chamelium_color@ctm-blue-to-red: - shard-glk: NOTRUN -> [SKIP][139] ([fdo#109271]) +329 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-glk5/igt@kms_chamelium_color@ctm-blue-to-red.html * igt@kms_chamelium_color@degamma: - shard-dg2: NOTRUN -> [SKIP][140] ([fdo#111827]) +2 other tests skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-2/igt@kms_chamelium_color@degamma.html - shard-tglu: NOTRUN -> [SKIP][141] ([fdo#111827]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-tglu-6/igt@kms_chamelium_color@degamma.html * igt@kms_chamelium_edid@hdmi-edid-change-during-suspend: - shard-rkl: NOTRUN -> [SKIP][142] ([i915#7828]) +1 other test skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-rkl-4/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html * igt@kms_chamelium_frames@dp-crc-fast: - shard-dg2: NOTRUN -> [SKIP][143] ([i915#7828]) +12 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-6/igt@kms_chamelium_frames@dp-crc-fast.html * igt@kms_chamelium_hpd@vga-hpd-without-ddc: - shard-mtlp: NOTRUN -> [SKIP][144] ([i915#7828]) +7 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-8/igt@kms_chamelium_hpd@vga-hpd-without-ddc.html * igt@kms_color@deep-color: - shard-dg1: NOTRUN -> [SKIP][145] ([i915#3555]) +2 other tests skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-13/igt@kms_color@deep-color.html * igt@kms_content_protection@atomic: - shard-dg2: NOTRUN -> [SKIP][146] ([i915#7118]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-5/igt@kms_content_protection@atomic.html * igt@kms_content_protection@content-type-change: - shard-dg2: NOTRUN -> [SKIP][147] ([i915#9424]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-10/igt@kms_content_protection@content-type-change.html - shard-rkl: NOTRUN -> [SKIP][148] ([i915#9424]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-rkl-1/igt@kms_content_protection@content-type-change.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-dg2: NOTRUN -> [SKIP][149] ([i915#3299]) +1 other test skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-6/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@dp-mst-type-0: - shard-dg1: NOTRUN -> [SKIP][150] ([i915#3299]) [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-13/igt@kms_content_protection@dp-mst-type-0.html - shard-mtlp: NOTRUN -> [SKIP][151] ([i915#3299]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-8/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_cursor_crc@cursor-offscreen-128x42: - shard-mtlp: NOTRUN -> [SKIP][152] ([i915#8814]) +1 other test skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-6/igt@kms_cursor_crc@cursor-offscreen-128x42.html * igt@kms_cursor_crc@cursor-random-512x512: - shard-dg2: NOTRUN -> [SKIP][153] ([i915#3359]) +2 other tests skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-2/igt@kms_cursor_crc@cursor-random-512x512.html - shard-dg1: NOTRUN -> [SKIP][154] ([i915#3359]) +4 other tests skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-18/igt@kms_cursor_crc@cursor-random-512x512.html * igt@kms_cursor_crc@cursor-sliding-512x170: - shard-mtlp: NOTRUN -> [SKIP][155] ([i915#3359]) +2 other tests skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-4/igt@kms_cursor_crc@cursor-sliding-512x170.html * igt@kms_cursor_crc@cursor-sliding-512x512: - shard-rkl: NOTRUN -> [SKIP][156] ([i915#3359]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-rkl-7/igt@kms_cursor_crc@cursor-sliding-512x512.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy: - shard-mtlp: NOTRUN -> [SKIP][157] ([i915#9809]) +3 other tests skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-8/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic: - shard-tglu: NOTRUN -> [SKIP][158] ([fdo#109274]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-tglu-8/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@cursora-vs-flipb-toggle: - shard-dg2: NOTRUN -> [SKIP][159] ([fdo#109274] / [i915#5354]) +9 other tests skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-3/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions: - shard-dg2: NOTRUN -> [SKIP][160] ([fdo#109274] / [fdo#111767] / [i915#5354]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-6/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size: - shard-snb: [PASS][161] -> [SKIP][162] ([fdo#109271]) +7 other tests skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-snb7/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-snb2/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-glk: NOTRUN -> [FAIL][163] ([i915#2346]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-glk9/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-mtlp: NOTRUN -> [SKIP][164] ([i915#4213]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-7/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html - shard-dg1: NOTRUN -> [SKIP][165] ([i915#4103] / [i915#4213]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-13/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-dg2: NOTRUN -> [SKIP][166] ([i915#4103] / [i915#4213]) +1 other test skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-5/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][167] ([fdo#110189] / [i915#9227]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-10/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1.html * igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][168] ([fdo#110189] / [i915#9723]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-rkl-1/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-2.html * igt@kms_dirtyfb@psr-dirtyfb-ioctl: - shard-tglu: NOTRUN -> [SKIP][169] ([i915#9723]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-tglu-2/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html * igt@kms_display_modes@extended-mode-basic: - shard-dg2: NOTRUN -> [SKIP][170] ([i915#3555]) +6 other tests skip [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-6/igt@kms_display_modes@extended-mode-basic.html * igt@kms_dp_aux_dev: - shard-dg2: NOTRUN -> [SKIP][171] ([i915#1257]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-1/igt@kms_dp_aux_dev.html * igt@kms_draw_crc@draw-method-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][172] ([i915#8812]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-5/igt@kms_draw_crc@draw-method-mmap-wc.html * igt@kms_dsc@dsc-fractional-bpp: - shard-dg2: NOTRUN -> [SKIP][173] ([i915#3840] / [i915#9688]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-5/igt@kms_dsc@dsc-fractional-bpp.html - shard-dg1: NOTRUN -> [SKIP][174] ([i915#3840]) +1 other test skip [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-17/igt@kms_dsc@dsc-fractional-bpp.html - shard-mtlp: NOTRUN -> [SKIP][175] ([i915#3840] / [i915#9688]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-2/igt@kms_dsc@dsc-fractional-bpp.html * igt@kms_fbcon_fbt@psr: - shard-dg2: NOTRUN -> [SKIP][176] ([i915#3469]) +1 other test skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-6/igt@kms_fbcon_fbt@psr.html - shard-tglu: NOTRUN -> [SKIP][177] ([i915#3469]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-tglu-2/igt@kms_fbcon_fbt@psr.html * igt@kms_feature_discovery@chamelium: - shard-dg2: NOTRUN -> [SKIP][178] ([i915#4854]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-1/igt@kms_feature_discovery@chamelium.html - shard-dg1: NOTRUN -> [SKIP][179] ([i915#4854]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-19/igt@kms_feature_discovery@chamelium.html * igt@kms_feature_discovery@display-2x: - shard-dg2: NOTRUN -> [SKIP][180] ([i915#1839]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-1/igt@kms_feature_discovery@display-2x.html * igt@kms_fence_pin_leak: - shard-dg2: NOTRUN -> [SKIP][181] ([i915#4881]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-6/igt@kms_fence_pin_leak.html * igt@kms_flip@2x-absolute-wf_vblank: - shard-tglu: NOTRUN -> [SKIP][182] ([fdo#109274] / [i915#3637] / [i915#3966]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-tglu-8/igt@kms_flip@2x-absolute-wf_vblank.html * igt@kms_flip@2x-blocking-absolute-wf_vblank: - shard-mtlp: NOTRUN -> [SKIP][183] ([i915#3637]) +4 other tests skip [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-2/igt@kms_flip@2x-blocking-absolute-wf_vblank.html * igt@kms_flip@2x-blocking-wf_vblank: - shard-rkl: NOTRUN -> [SKIP][184] ([fdo#111825]) +1 other test skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-rkl-1/igt@kms_flip@2x-blocking-wf_vblank.html * igt@kms_flip@2x-flip-vs-modeset-vs-hang: - shard-dg2: NOTRUN -> [SKIP][185] ([fdo#109274]) +7 other tests skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-1/igt@kms_flip@2x-flip-vs-modeset-vs-hang.html * igt@kms_flip@2x-plain-flip-ts-check-interruptible: - shard-dg1: NOTRUN -> [SKIP][186] ([fdo#111825] / [i915#9934]) +7 other tests skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-15/igt@kms_flip@2x-plain-flip-ts-check-interruptible.html * igt@kms_flip@blocking-absolute-wf_vblank@d-hdmi-a2: - shard-dg2: NOTRUN -> [INCOMPLETE][187] ([i915#10219]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-3/igt@kms_flip@blocking-absolute-wf_vblank@d-hdmi-a2.html * igt@kms_flip@flip-vs-fences-interruptible: - shard-dg2: NOTRUN -> [SKIP][188] ([i915#8381]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-6/igt@kms_flip@flip-vs-fences-interruptible.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][189] ([i915#2587] / [i915#2672]) +2 other tests skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-tglu-8/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-upscaling@pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][190] ([i915#2587] / [i915#2672]) +3 other tests skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-12/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-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][191] ([i915#2672] / [i915#3555]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][192] ([i915#2672]) +1 other test skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-rkl-4/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling@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][193] ([i915#2672]) +4 other tests skip [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][194] ([i915#2672]) +7 other tests skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-5/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling@pipe-a-valid-mode.html * igt@kms_force_connector_basic@force-load-detect: - shard-rkl: NOTRUN -> [SKIP][195] ([fdo#109285]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-rkl-5/igt@kms_force_connector_basic@force-load-detect.html - shard-dg2: NOTRUN -> [SKIP][196] ([fdo#109285]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-6/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-blt: - shard-mtlp: NOTRUN -> [SKIP][197] ([fdo#111767] / [i915#1825]) +1 other test skip [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-pwrite: - shard-rkl: NOTRUN -> [SKIP][198] ([fdo#111825] / [i915#1825]) +15 other tests skip [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-move: - shard-tglu: NOTRUN -> [SKIP][199] ([fdo#109280]) +17 other tests skip [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-tglu-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-move.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render: - shard-mtlp: NOTRUN -> [SKIP][200] ([i915#1825]) +20 other tests skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][201] ([i915#8708]) +34 other tests skip [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-pwrite: - shard-dg1: NOTRUN -> [SKIP][202] ([fdo#111825]) +19 other tests skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-14/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][203] ([i915#8708]) +15 other tests skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-render: - shard-tglu: NOTRUN -> [SKIP][204] ([fdo#110189]) +9 other tests skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-tglu-7/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render: - shard-rkl: NOTRUN -> [SKIP][205] ([i915#3023]) +8 other tests skip [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-pgflip-blt: - shard-dg1: NOTRUN -> [SKIP][206] ([i915#3458]) +10 other tests skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-15/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][207] ([i915#8708]) +5 other tests skip [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-7/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-pwrite: - shard-dg2: NOTRUN -> [SKIP][208] ([fdo#111767] / [i915#5354]) +3 other tests skip [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-5/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-pwrite.html - shard-tglu: NOTRUN -> [SKIP][209] ([fdo#109280] / [fdo#111767]) +2 other tests skip [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-tglu-3/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary: - shard-dg2: NOTRUN -> [SKIP][210] ([i915#3458]) +25 other tests skip [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html * igt@kms_hdr@invalid-metadata-sizes: - shard-dg2: NOTRUN -> [SKIP][211] ([i915#3555] / [i915#8228]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-3/igt@kms_hdr@invalid-metadata-sizes.html - shard-dg1: NOTRUN -> [SKIP][212] ([i915#3555] / [i915#8228]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-13/igt@kms_hdr@invalid-metadata-sizes.html * igt@kms_panel_fitting@atomic-fastset: - shard-dg1: NOTRUN -> [SKIP][213] ([i915#6301]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-13/igt@kms_panel_fitting@atomic-fastset.html * igt@kms_panel_fitting@legacy: - shard-dg2: NOTRUN -> [SKIP][214] ([i915#6301]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-1/igt@kms_panel_fitting@legacy.html - shard-rkl: NOTRUN -> [SKIP][215] ([i915#6301]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-rkl-7/igt@kms_panel_fitting@legacy.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][216] ([i915#9423]) +3 other tests skip [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-2/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a-hdmi-a-2.html * igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][217] ([i915#9423]) +15 other tests skip [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-18/igt@kms_plane_scaling@plane-downscale-factor-0-5-with-rotation@pipe-a-hdmi-a-4.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][218] ([i915#5176]) +1 other test skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-6/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-pixel-formats@pipe-b-edp-1.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][219] ([i915#5176] / [i915#9423]) +1 other test skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-rkl-4/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@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][220] ([i915#5176] / [i915#9423]) +3 other tests skip [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-13/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-hdmi-a-3.html * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][221] ([i915#9423]) +1 other test skip [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-rkl-7/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][222] ([i915#5235]) +1 other test skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-rkl-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b-hdmi-a-2.html * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-c-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][223] ([i915#5235]) +11 other tests skip [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-19/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-c-hdmi-a-4.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][224] ([i915#3555] / [i915#5235]) +1 other test skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-6/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-d-edp-1.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][225] ([i915#5235]) +5 other tests skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-6/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-c-edp-1.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][226] ([i915#5235] / [i915#9423]) +19 other tests skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-5/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-3.html * igt@kms_pm_dc@dc6-dpms: - shard-dg2: NOTRUN -> [SKIP][227] ([i915#5978]) [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-6/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_rpm@cursor: - shard-tglu: [PASS][228] -> [INCOMPLETE][229] ([i915#5493]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-tglu-7/igt@kms_pm_rpm@cursor.html [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-tglu-8/igt@kms_pm_rpm@cursor.html * igt@kms_pm_rpm@dpms-lpsp: - shard-dg2: NOTRUN -> [SKIP][230] ([i915#9519]) +1 other test skip [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-6/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@dpms-non-lpsp: - shard-mtlp: NOTRUN -> [SKIP][231] ([i915#9519]) +1 other test skip [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-3/igt@kms_pm_rpm@dpms-non-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-tglu: NOTRUN -> [SKIP][232] ([i915#9519]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-tglu-2/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-rkl: NOTRUN -> [SKIP][233] ([i915#9519]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-rkl-7/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-rkl: [PASS][234] -> [SKIP][235] ([i915#9519]) +3 other tests skip [234]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-rkl-6/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-rkl-7/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@kms_prime@basic-modeset-hybrid: - shard-dg1: NOTRUN -> [SKIP][236] ([i915#6524]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-12/igt@kms_prime@basic-modeset-hybrid.html - shard-mtlp: NOTRUN -> [SKIP][237] ([i915#6524]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-5/igt@kms_prime@basic-modeset-hybrid.html * igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-fully-sf: - shard-tglu: NOTRUN -> [SKIP][238] ([i915#9683]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-tglu-2/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf: - shard-dg2: NOTRUN -> [SKIP][239] ([i915#9683]) +4 other tests skip [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-2/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html - shard-rkl: NOTRUN -> [SKIP][240] ([i915#9683]) [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-rkl-5/igt@kms_psr2_sf@overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area: - shard-rkl: NOTRUN -> [SKIP][241] ([fdo#111068] / [i915#9683]) +1 other test skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-rkl-5/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area: - shard-dg1: NOTRUN -> [SKIP][242] ([fdo#111068] / [i915#9683]) +1 other test skip [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-15/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area.html * igt@kms_rotation_crc@primary-4-tiled-reflect-x-0: - shard-dg1: NOTRUN -> [SKIP][243] ([i915#5289]) [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-13/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-90: - shard-mtlp: NOTRUN -> [SKIP][244] ([i915#4235]) [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-7/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html - shard-dg2: NOTRUN -> [SKIP][245] ([i915#4235] / [i915#5190]) [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-2/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-dg1: NOTRUN -> [SKIP][246] ([fdo#111615] / [i915#5289]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-18/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_rotation_crc@sprite-rotation-90-pos-100-0: - shard-dg2: NOTRUN -> [SKIP][247] ([i915#4235]) +1 other test skip [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-6/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html * igt@kms_scaling_modes@scaling-mode-full-aspect: - shard-tglu: NOTRUN -> [SKIP][248] ([i915#3555]) +4 other tests skip [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-tglu-5/igt@kms_scaling_modes@scaling-mode-full-aspect.html * igt@kms_scaling_modes@scaling-mode-none: - shard-rkl: NOTRUN -> [SKIP][249] ([i915#3555]) +2 other tests skip [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-rkl-7/igt@kms_scaling_modes@scaling-mode-none.html * igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_build_fourcc_list: - shard-rkl: NOTRUN -> [FAIL][250] ([i915#10136]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-rkl-1/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_build_fourcc_list.html - shard-mtlp: NOTRUN -> [DMESG-FAIL][251] ([i915#10143]) [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-7/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_build_fourcc_list.html * igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_clip_offset: - shard-mtlp: NOTRUN -> [DMESG-WARN][252] ([i915#10143]) +1 other test dmesg-warn [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-7/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_clip_offset.html * igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_swab: - shard-dg2: [PASS][253] -> [DMESG-WARN][254] ([i915#10143]) +1 other test dmesg-warn [253]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-dg2-10/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_swab.html [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-5/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_swab.html - shard-rkl: NOTRUN -> [DMESG-WARN][255] ([i915#10143]) +1 other test dmesg-warn [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-rkl-1/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_swab.html - shard-tglu: [PASS][256] -> [DMESG-WARN][257] ([i915#10143]) [256]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-tglu-10/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_swab.html [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-tglu-3/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_swab.html * igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_xrgb8888_to_abgr8888: - shard-glk: [PASS][258] -> [DMESG-WARN][259] ([i915#10143] / [i915#10165]) +1 other test dmesg-warn [258]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-glk9/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_xrgb8888_to_abgr8888.html [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-glk8/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_xrgb8888_to_abgr8888.html * igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_xrgb8888_to_argb2101010: - shard-dg1: [PASS][260] -> [DMESG-WARN][261] ([i915#10143]) +1 other test dmesg-warn [260]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-dg1-12/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_xrgb8888_to_argb2101010.html [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-14/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_xrgb8888_to_argb2101010.html * igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_xrgb8888_to_argb8888: - shard-snb: [PASS][262] -> [DMESG-WARN][263] ([i915#10143]) +1 other test dmesg-warn [262]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-snb5/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_xrgb8888_to_argb8888.html [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-snb1/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_xrgb8888_to_argb8888.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-tglu: NOTRUN -> [SKIP][264] ([i915#8623]) [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-tglu-3/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html - shard-mtlp: NOTRUN -> [SKIP][265] ([i915#8623]) [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-2/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html - shard-dg2: NOTRUN -> [SKIP][266] ([i915#8623]) [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-5/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_tv_load_detect@load-detect: - shard-mtlp: NOTRUN -> [SKIP][267] ([fdo#109309]) [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-4/igt@kms_tv_load_detect@load-detect.html - shard-dg2: NOTRUN -> [SKIP][268] ([fdo#109309]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-6/igt@kms_tv_load_detect@load-detect.html - shard-dg1: NOTRUN -> [SKIP][269] ([fdo#109309]) [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-12/igt@kms_tv_load_detect@load-detect.html * igt@kms_vblank@ts-continuation-dpms-suspend@pipe-d-hdmi-a-1: - shard-tglu: [PASS][270] -> [ABORT][271] ([i915#9508]) [270]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-tglu-8/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-d-hdmi-a-1.html [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-tglu-9/igt@kms_vblank@ts-continuation-dpms-suspend@pipe-d-hdmi-a-1.html * igt@kms_vrr@flip-suspend: - shard-mtlp: NOTRUN -> [SKIP][272] ([i915#3555] / [i915#8808]) [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-7/igt@kms_vrr@flip-suspend.html * igt@kms_writeback@writeback-check-output: - shard-tglu: NOTRUN -> [SKIP][273] ([i915#2437]) [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-tglu-8/igt@kms_writeback@writeback-check-output.html * igt@kms_writeback@writeback-fb-id: - shard-glk: NOTRUN -> [SKIP][274] ([fdo#109271] / [i915#2437]) +1 other test skip [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-glk9/igt@kms_writeback@writeback-fb-id.html * igt@kms_writeback@writeback-fb-id-xrgb2101010: - shard-dg2: NOTRUN -> [SKIP][275] ([i915#2437] / [i915#9412]) [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-2/igt@kms_writeback@writeback-fb-id-xrgb2101010.html * igt@perf@per-context-mode-unprivileged: - shard-tglu: NOTRUN -> [SKIP][276] ([fdo#109289]) +2 other tests skip [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-tglu-8/igt@perf@per-context-mode-unprivileged.html * igt@perf_pmu@cpu-hotplug: - shard-dg2: NOTRUN -> [SKIP][277] ([i915#8850]) [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-1/igt@perf_pmu@cpu-hotplug.html - shard-rkl: NOTRUN -> [SKIP][278] ([i915#8850]) [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-rkl-7/igt@perf_pmu@cpu-hotplug.html * igt@perf_pmu@event-wait@rcs0: - shard-dg2: NOTRUN -> [SKIP][279] ([fdo#112283]) [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-6/igt@perf_pmu@event-wait@rcs0.html * igt@perf_pmu@faulting-read@gtt: - shard-mtlp: NOTRUN -> [SKIP][280] ([i915#8440]) [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-7/igt@perf_pmu@faulting-read@gtt.html * igt@perf_pmu@rc6@other-idle-gt0: - shard-dg1: NOTRUN -> [SKIP][281] ([i915#8516]) [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-15/igt@perf_pmu@rc6@other-idle-gt0.html * igt@prime_vgem@basic-fence-mmap: - shard-mtlp: NOTRUN -> [SKIP][282] ([i915#3708] / [i915#4077]) [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-6/igt@prime_vgem@basic-fence-mmap.html - shard-dg2: NOTRUN -> [SKIP][283] ([i915#3708] / [i915#4077]) [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-6/igt@prime_vgem@basic-fence-mmap.html - shard-dg1: NOTRUN -> [SKIP][284] ([i915#3708] / [i915#4077]) [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-19/igt@prime_vgem@basic-fence-mmap.html * igt@prime_vgem@basic-read: - shard-dg2: NOTRUN -> [SKIP][285] ([i915#3291] / [i915#3708]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-3/igt@prime_vgem@basic-read.html * igt@runner@aborted: - shard-snb: NOTRUN -> [FAIL][286] ([i915#7812]) [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-snb2/igt@runner@aborted.html * igt@sriov_basic@enable-vfs-autoprobe-off: - shard-tglu: NOTRUN -> [SKIP][287] ([i915#9917]) [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-tglu-2/igt@sriov_basic@enable-vfs-autoprobe-off.html * igt@sysfs_heartbeat_interval@nopreempt@vcs0: - shard-glk: [PASS][288] -> [FAIL][289] ([i915#10221]) [288]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-glk3/igt@sysfs_heartbeat_interval@nopreempt@vcs0.html [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-glk8/igt@sysfs_heartbeat_interval@nopreempt@vcs0.html * igt@tools_test@sysfs_l3_parity: - shard-dg2: NOTRUN -> [SKIP][290] ([i915#4818]) [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-10/igt@tools_test@sysfs_l3_parity.html * igt@v3d/v3d_get_bo_offset@create-get-offsets: - shard-dg1: NOTRUN -> [SKIP][291] ([i915#2575]) +7 other tests skip [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-19/igt@v3d/v3d_get_bo_offset@create-get-offsets.html * igt@v3d/v3d_perfmon@get-values-valid-perfmon: - shard-rkl: NOTRUN -> [SKIP][292] ([fdo#109315]) +5 other tests skip [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-rkl-5/igt@v3d/v3d_perfmon@get-values-valid-perfmon.html * igt@v3d/v3d_submit_cl@bad-multisync-pad: - shard-mtlp: NOTRUN -> [SKIP][293] ([i915#2575]) +6 other tests skip [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-7/igt@v3d/v3d_submit_cl@bad-multisync-pad.html * igt@v3d/v3d_submit_cl@single-out-sync: - shard-tglu: NOTRUN -> [SKIP][294] ([fdo#109315] / [i915#2575]) +6 other tests skip [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-tglu-3/igt@v3d/v3d_submit_cl@single-out-sync.html * igt@v3d/v3d_submit_csd@single-out-sync: - shard-dg2: NOTRUN -> [SKIP][295] ([i915#2575]) +25 other tests skip [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-1/igt@v3d/v3d_submit_csd@single-out-sync.html * igt@vc4/vc4_create_bo@create-bo-zeroed: - shard-rkl: NOTRUN -> [SKIP][296] ([i915#7711]) +1 other test skip [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-rkl-4/igt@vc4/vc4_create_bo@create-bo-zeroed.html * igt@vc4/vc4_mmap@mmap-bad-handle: - shard-dg1: NOTRUN -> [SKIP][297] ([i915#7711]) +7 other tests skip [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-15/igt@vc4/vc4_mmap@mmap-bad-handle.html * igt@vc4/vc4_perfmon@create-perfmon-0: - shard-tglu: NOTRUN -> [SKIP][298] ([i915#2575]) +1 other test skip [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-tglu-6/igt@vc4/vc4_perfmon@create-perfmon-0.html * igt@vc4/vc4_purgeable_bo@access-purged-bo-mem: - shard-mtlp: NOTRUN -> [SKIP][299] ([i915#7711]) +4 other tests skip [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-2/igt@vc4/vc4_purgeable_bo@access-purged-bo-mem.html * igt@vc4/vc4_wait_bo@bad-bo: - shard-dg2: NOTRUN -> [SKIP][300] ([i915#7711]) +11 other tests skip [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-1/igt@vc4/vc4_wait_bo@bad-bo.html #### Possible fixes #### * igt@fbdev@pan: - shard-snb: [FAIL][301] ([i915#4435]) -> [PASS][302] [301]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-snb7/igt@fbdev@pan.html [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-snb4/igt@fbdev@pan.html * igt@gem_ctx_persistence@many-contexts: - shard-dg2: [INCOMPLETE][303] ([i915#10137]) -> [PASS][304] [303]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-dg2-6/igt@gem_ctx_persistence@many-contexts.html [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-6/igt@gem_ctx_persistence@many-contexts.html * igt@gem_exec_fair@basic-none-vip@rcs0: - shard-rkl: [FAIL][305] ([i915#2842]) -> [PASS][306] [305]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-rkl-7/igt@gem_exec_fair@basic-none-vip@rcs0.html [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-rkl-2/igt@gem_exec_fair@basic-none-vip@rcs0.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-glk: [FAIL][307] ([i915#2842]) -> [PASS][308] [307]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-glk8/igt@gem_exec_fair@basic-pace-share@rcs0.html [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-glk9/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_fair@basic-pace-solo@rcs0: - shard-tglu: [FAIL][309] ([i915#2842]) -> [PASS][310] [309]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-tglu-8/igt@gem_exec_fair@basic-pace-solo@rcs0.html [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-tglu-8/igt@gem_exec_fair@basic-pace-solo@rcs0.html * igt@gem_softpin@allocator-evict@bcs0: - shard-rkl: [INCOMPLETE][311] ([i915#10137]) -> [PASS][312] [311]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-rkl-6/igt@gem_softpin@allocator-evict@bcs0.html [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-rkl-1/igt@gem_softpin@allocator-evict@bcs0.html * igt@gem_workarounds@suspend-resume-fd: - shard-tglu: [ABORT][313] ([i915#8213]) -> [PASS][314] [313]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-tglu-9/igt@gem_workarounds@suspend-resume-fd.html [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-tglu-6/igt@gem_workarounds@suspend-resume-fd.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0: - shard-dg1: [FAIL][315] ([i915#3591]) -> [PASS][316] [315]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html * igt@kms_big_fb@4-tiled-64bpp-rotate-180: - shard-mtlp: [FAIL][317] ([i915#5138]) -> [PASS][318] [317]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-mtlp-8/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-7/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-tglu: [FAIL][319] ([i915#3743]) -> [PASS][320] [319]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-tglu-7/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-tglu-8/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_ccs@pipe-c-bad-pixel-format-4-tiled-dg2-rc-ccs-cc: - shard-dg2: [TIMEOUT][321] -> [PASS][322] [321]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-dg2-6/igt@kms_ccs@pipe-c-bad-pixel-format-4-tiled-dg2-rc-ccs-cc.html [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-1/igt@kms_ccs@pipe-c-bad-pixel-format-4-tiled-dg2-rc-ccs-cc.html * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy: - shard-snb: [SKIP][323] ([fdo#109271]) -> [PASS][324] +10 other tests pass [323]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-snb4/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-snb7/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt: - shard-snb: [SKIP][325] ([fdo#109271] / [fdo#111767]) -> [PASS][326] [325]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-snb2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt.html [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-dg2: [SKIP][327] -> [PASS][328] [327]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-dg2-6/igt@kms_pm_rpm@modeset-non-lpsp.html [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-6/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_clip_offset: - shard-dg2: [DMESG-WARN][329] ([i915#10143]) -> [PASS][330] [329]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-dg2-10/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_clip_offset.html [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-5/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_clip_offset.html - shard-snb: [DMESG-WARN][331] ([i915#10143]) -> [PASS][332] +1 other test pass [331]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-snb5/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_clip_offset.html [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-snb1/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_clip_offset.html - shard-tglu: [DMESG-WARN][333] ([i915#10143]) -> [PASS][334] +1 other test pass [333]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-tglu-10/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_clip_offset.html [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-tglu-3/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_clip_offset.html * igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_swab: - shard-dg1: [DMESG-WARN][335] ([i915#10143]) -> [PASS][336] +2 other tests pass [335]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-dg1-12/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_swab.html [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-14/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_swab.html * igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_xrgb8888_to_mono: - shard-glk: [DMESG-WARN][337] ([i915#10143] / [i915#10165]) -> [PASS][338] [337]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-glk9/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_xrgb8888_to_mono.html [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-glk8/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_xrgb8888_to_mono.html * igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1: - shard-tglu: [FAIL][339] ([i915#9196]) -> [PASS][340] +1 other test pass [339]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-tglu-2/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1.html [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-tglu-2/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1.html * igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1: - shard-mtlp: [FAIL][341] ([i915#9196]) -> [PASS][342] +1 other test pass [341]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-mtlp-5/igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1.html [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-mtlp-4/igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1.html #### Warnings #### * igt@i915_module_load@reload-with-fault-injection: - shard-dg1: [INCOMPLETE][343] ([i915#10137] / [i915#9849]) -> [INCOMPLETE][344] ([i915#10137] / [i915#9820] / [i915#9849]) [343]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-dg1-19/igt@i915_module_load@reload-with-fault-injection.html [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-18/igt@i915_module_load@reload-with-fault-injection.html - shard-dg2: [INCOMPLETE][345] ([i915#10137] / [i915#9820] / [i915#9849]) -> [WARN][346] ([i915#7356]) [345]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-dg2-5/igt@i915_module_load@reload-with-fault-injection.html [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-6/igt@i915_module_load@reload-with-fault-injection.html * igt@kms_content_protection@mei-interface: - shard-dg1: [SKIP][347] ([i915#9424]) -> [SKIP][348] ([i915#9433]) [347]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-dg1-14/igt@kms_content_protection@mei-interface.html [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg1-12/igt@kms_content_protection@mei-interface.html - shard-snb: [INCOMPLETE][349] ([i915#9878]) -> [SKIP][350] ([fdo#109271]) [349]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-snb7/igt@kms_content_protection@mei-interface.html [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-snb1/igt@kms_content_protection@mei-interface.html * igt@kms_content_protection@srm: - shard-snb: [SKIP][351] ([fdo#109271]) -> [INCOMPLETE][352] ([i915#8816]) [351]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-snb1/igt@kms_content_protection@srm.html [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-snb7/igt@kms_content_protection@srm.html * igt@kms_fbcon_fbt@psr-suspend: - shard-rkl: [SKIP][353] ([i915#3955]) -> [SKIP][354] ([fdo#110189] / [i915#3955]) [353]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-rkl-6/igt@kms_fbcon_fbt@psr-suspend.html [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-rkl-1/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc: - shard-snb: [SKIP][355] ([fdo#109271]) -> [SKIP][356] ([fdo#109271] / [fdo#111767]) [355]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-snb7/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc.html [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-snb5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-onoff: - shard-dg2: [TIMEOUT][357] -> [SKIP][358] ([i915#5354]) [357]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-dg2-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-onoff.html [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-onoff.html * igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_build_fourcc_list: - shard-dg2: [DMESG-FAIL][359] ([i915#10143]) -> [FAIL][360] ([i915#10136]) [359]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14192/shard-dg2-10/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_build_fourcc_list.html [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/shard-dg2-5/igt@kms_selftest@drm_format_helper@drm_format_helper_test-drm_test_fb_build_fourcc_list.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109293]: https://bugs.freedesktop.org/show_bug.cgi?id=109293 [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#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111656]: https://bugs.freedesktop.org/show_bug.cgi?id=111656 [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 [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283 [i915#10030]: https://gitlab.freedesktop.org/drm/intel/issues/10030 [i915#10031]: https://gitlab.freedesktop.org/drm/intel/issues/10031 [i915#10042]: https://gitlab.freedesktop.org/drm/intel/issues/10042 [i915#10136]: https://gitlab.freedesktop.org/drm/intel/issues/10136 [i915#10137]: https://gitlab.freedesktop.org/drm/intel/issues/10137 [i915#10143]: https://gitlab.freedesktop.org/drm/intel/issues/10143 [i915#10165]: https://gitlab.freedesktop.org/drm/intel/issues/10165 [i915#10218]: https://gitlab.freedesktop.org/drm/intel/issues/10218 [i915#10219]: https://gitlab.freedesktop.org/drm/intel/issues/10219 [i915#10221]: https://gitlab.freedesktop.org/drm/intel/issues/10221 [i915#1257]: https://gitlab.freedesktop.org/drm/intel/issues/1257 [i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705 [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 [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#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299 [i915#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#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743 [i915#3826]: https://gitlab.freedesktop.org/drm/intel/issues/3826 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955 [i915#3966]: https://gitlab.freedesktop.org/drm/intel/issues/3966 [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#4087]: https://gitlab.freedesktop.org/drm/intel/issues/4087 [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#4387]: https://gitlab.freedesktop.org/drm/intel/issues/4387 [i915#4435]: https://gitlab.freedesktop.org/drm/intel/issues/4435 [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#4818]: https://gitlab.freedesktop.org/drm/intel/issues/4818 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4854]: https://gitlab.freedesktop.org/drm/intel/issues/4854 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4873]: https://gitlab.freedesktop.org/drm/intel/issues/4873 [i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880 [i915#4881]: https://gitlab.freedesktop.org/drm/intel/issues/4881 [i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885 [i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493 [i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566 [i915#5882]: https://gitlab.freedesktop.org/drm/intel/issues/5882 [i915#5978]: https://gitlab.freedesktop.org/drm/intel/issues/5978 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6188]: https://gitlab.freedesktop.org/drm/intel/issues/6188 [i915#6228]: https://gitlab.freedesktop.org/drm/intel/issues/6228 [i915#6230]: https://gitlab.freedesktop.org/drm/intel/issues/6230 [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268 [i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301 [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 [i915#6590]: https://gitlab.freedesktop.org/drm/intel/issues/6590 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6645]: https://gitlab.freedesktop.org/drm/intel/issues/6645 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7356]: https://gitlab.freedesktop.org/drm/intel/issues/7356 [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#7812]: https://gitlab.freedesktop.org/drm/intel/issues/7812 [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#8346]: https://gitlab.freedesktop.org/drm/intel/issues/8346 [i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381 [i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414 [i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428 [i915#8440]: https://gitlab.freedesktop.org/drm/intel/issues/8440 [i915#8516]: https://gitlab.freedesktop.org/drm/intel/issues/8516 [i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555 [i915#8562]: https://gitlab.freedesktop.org/drm/intel/issues/8562 [i915#8623]: https://gitlab.freedesktop.org/drm/intel/issues/8623 [i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708 [i915#8709]: https://gitlab.freedesktop.org/drm/intel/issues/8709 [i915#8808]: https://gitlab.freedesktop.org/drm/intel/issues/8808 [i915#8812]: https://gitlab.freedesktop.org/drm/intel/issues/8812 [i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814 [i915#8816]: https://gitlab.freedesktop.org/drm/intel/issues/8816 [i915#8850]: https://gitlab.freedesktop.org/drm/intel/issues/8850 [i915#9196]: https://gitlab.freedesktop.org/drm/intel/issues/9196 [i915#9200]: https://gitlab.freedesktop.org/drm/intel/issues/9200 [i915#9227]: https://gitlab.freedesktop.org/drm/intel/issues/9227 [i915#9323]: https://gitlab.freedesktop.org/drm/intel/issues/9323 [i915#9412]: https://gitlab.freedesktop.org/drm/intel/issues/9412 [i915#9423]: https://gitlab.freedesktop.org/drm/intel/issues/9423 [i915#9424]: https://gitlab.freedesktop.org/drm/intel/issues/9424 [i915#9433]: https://gitlab.freedesktop.org/drm/intel/issues/9433 [i915#9508]: https://gitlab.freedesktop.org/drm/intel/issues/9508 [i915#9519]: https://gitlab.freedesktop.org/drm/intel/issues/9519 [i915#9606]: https://gitlab.freedesktop.org/drm/intel/issues/9606 [i915#9683]: https://gitlab.freedesktop.org/drm/intel/issues/9683 [i915#9688]: https://gitlab.freedesktop.org/drm/intel/issues/9688 [i915#9723]: https://gitlab.freedesktop.org/drm/intel/issues/9723 [i915#9732]: https://gitlab.freedesktop.org/drm/intel/issues/9732 [i915#9808]: https://gitlab.freedesktop.org/drm/intel/issues/9808 [i915#9809]: https://gitlab.freedesktop.org/drm/intel/issues/9809 [i915#9820]: https://gitlab.freedesktop.org/drm/intel/issues/9820 [i915#9849]: https://gitlab.freedesktop.org/drm/intel/issues/9849 [i915#9878]: https://gitlab.freedesktop.org/drm/intel/issues/9878 [i915#9906]: https://gitlab.freedesktop.org/drm/intel/issues/9906 [i915#9917]: https://gitlab.freedesktop.org/drm/intel/issues/9917 [i915#9934]: https://gitlab.freedesktop.org/drm/intel/issues/9934 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7698 -> IGTPW_10600 CI-20190529: 20190529 CI_DRM_14192: f4c0dac89bd3cd02a1afe5e7a91ed4bf8de4afc6 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_10600: 10600 IGT_7698: af750f5e7eaad98d40d8c924eb5f05e99d3c668b @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10600/index.html [-- Attachment #2: Type: text/html, Size: 117910 bytes --] ^ permalink raw reply [flat|nested] 12+ messages in thread
end of thread, other threads:[~2024-02-02 8:38 UTC | newest] Thread overview: 12+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-01-29 18:54 [PATCH i-g-t] tests/intel/xe_exec_atomic: fix basic-inc-all Kamil Konieczny 2024-01-29 19:26 ` ✓ CI.xeBAT: success for " Patchwork 2024-01-29 19:40 ` ✓ Fi.CI.BAT: " Patchwork 2024-01-30 2:28 ` ✗ Fi.CI.IGT: failure " Patchwork 2024-01-30 9:01 ` Kamil Konieczny 2024-01-30 8:57 ` [PATCH i-g-t] " Kamil Konieczny 2024-01-30 9:05 ` Mauro Carvalho Chehab 2024-01-30 9:33 ` Nirmoy Das 2024-02-01 5:31 ` ✗ Fi.CI.IGT: failure for " Patchwork 2024-02-01 12:23 ` Kamil Konieczny 2024-02-02 8:37 ` Illipilli, TejasreeX 2024-02-02 8:16 ` ✓ Fi.CI.IGT: success " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox