* [PATCH i-g-t] tests/amd_basic: fix eviction test failure
@ 2024-03-25 6:55 Jesse Zhang
2024-03-25 7:49 ` ✓ CI.xeBAT: success for " Patchwork
` (3 more replies)
0 siblings, 4 replies; 5+ messages in thread
From: Jesse Zhang @ 2024-03-25 6:55 UTC (permalink / raw)
To: igt-dev
Cc: Vitaly Prosyak, Alex Deucher, Christian Koenig, Kamil Konieczny,
Jesse Zhang
Test case name:igt@amdgpu/amd_basic@eviction-test-with-ip-dma@eviction_test
Fail error: "Starting subtest: eviction-test-with-IP-DMA
Starting dynamic subtest: eviction_test
(amd_basic:9425) amdgpu/amd_command_submission-CRITICAL: Test assertion failure function amdgpu_test_exec_cs_helper, file ../lib/amdgpu/amd_command_submission.c:77:
(amd_basic:9425) amdgpu/amd_command_submission-CRITICAL: Failed assertion: r == 0
(amd_basic:9425) amdgpu/amd_command_submission-CRITICAL: Last errno: 12, Cannot allocate memory
(amd_basic:9425) amdgpu/amd_command_submission-CRITICAL: error: -12 != 0
Dynamic subtest eviction_test failed.
There is a case where the system size and gtt memory are smaller.
When evicting vram to gtt or system memory, there is not enough gtt or memory system memory available for allocation.
Therefore, try to reduce the use of gtt during initialization to meet the requirements for evicting vram.
Cc: Vitaly Prosyak <vitaly.prosyak@amd.com>
Cc: Alex Deucher <alexander.deucher@amd.com>
Cc: Christian Koenig <christian.koenig@amd.com>
Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com>
Signed-off-by: Jesse Zhang <Jesse.Zhang@amd.com>
---
tests/amdgpu/amd_basic.c | 16 ++++++++++++----
1 file changed, 12 insertions(+), 4 deletions(-)
diff --git a/tests/amdgpu/amd_basic.c b/tests/amdgpu/amd_basic.c
index 70e45649d..8adb8d696 100644
--- a/tests/amdgpu/amd_basic.c
+++ b/tests/amdgpu/amd_basic.c
@@ -340,6 +340,7 @@ amdgpu_bo_eviction_test(amdgpu_device_handle device_handle)
uint64_t gtt_flags[2] = {0, AMDGPU_GEM_CREATE_CPU_GTT_USWC};
const struct amdgpu_ip_block_version *ip_block = get_ip_block(device_handle, AMDGPU_HW_IP_DMA);
+ uint64_t gtt_allocation;
igt_assert(ip_block);
@@ -358,6 +359,17 @@ amdgpu_bo_eviction_test(amdgpu_device_handle device_handle)
0, &vram_info);
igt_assert_eq(r, 0);
+ r = amdgpu_query_heap_info(device_handle, AMDGPU_GEM_DOMAIN_GTT,
+ 0, >t_info);
+ igt_assert_eq(r, 0);
+
+ /* For smaller gtt memory sizes, reduce gtt usage on initialization
+ * to satisfy eviction vram requirements */
+ if (gtt_info.heap_size - gtt_info.max_allocation < vram_info.max_allocation)
+ gtt_allocation = gtt_info.max_allocation/3;
+ else
+ gtt_allocation = gtt_info.max_allocation;
+
r = amdgpu_bo_alloc_wrap(device_handle, vram_info.max_allocation, 4096,
AMDGPU_GEM_DOMAIN_VRAM, 0, &ring_context->boa_vram[0]);
igt_assert_eq(r, 0);
@@ -365,10 +377,6 @@ amdgpu_bo_eviction_test(amdgpu_device_handle device_handle)
AMDGPU_GEM_DOMAIN_VRAM, 0, &ring_context->boa_vram[1]);
igt_assert_eq(r, 0);
- r = amdgpu_query_heap_info(device_handle, AMDGPU_GEM_DOMAIN_GTT,
- 0, >t_info);
- igt_assert_eq(r, 0);
-
r = amdgpu_bo_alloc_wrap(device_handle, gtt_info.max_allocation, 4096,
AMDGPU_GEM_DOMAIN_GTT, 0, &ring_context->boa_gtt[0]);
igt_assert_eq(r, 0);
--
2.25.1
^ permalink raw reply related [flat|nested] 5+ messages in thread* ✓ CI.xeBAT: success for tests/amd_basic: fix eviction test failure 2024-03-25 6:55 [PATCH i-g-t] tests/amd_basic: fix eviction test failure Jesse Zhang @ 2024-03-25 7:49 ` Patchwork 2024-03-25 7:59 ` ✓ Fi.CI.BAT: " Patchwork ` (2 subsequent siblings) 3 siblings, 0 replies; 5+ messages in thread From: Patchwork @ 2024-03-25 7:49 UTC (permalink / raw) To: Jesse Zhang; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 1536 bytes --] == Series Details == Series: tests/amd_basic: fix eviction test failure URL : https://patchwork.freedesktop.org/series/131551/ State : success == Summary == CI Bug Log - changes from XEIGT_7780_BAT -> XEIGTPW_10894_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (4 -> 4) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_10894_BAT that come from known issues: ### IGT changes ### #### Warnings #### * igt@xe_evict@evict-beng-mixed-threads-small-multi-vm: - bat-dg2-oem2: [FAIL][1] ([Intel XE#1259]) -> [INCOMPLETE][2] ([Intel XE#804]) [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7780/bat-dg2-oem2/igt@xe_evict@evict-beng-mixed-threads-small-multi-vm.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10894/bat-dg2-oem2/igt@xe_evict@evict-beng-mixed-threads-small-multi-vm.html [Intel XE#1259]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1259 [Intel XE#804]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/804 Build changes ------------- * IGT: IGT_7780 -> IGTPW_10894 IGTPW_10894: 10894 IGT_7780: 93a5298ac980333738cf75da6b66fa6f3769205f @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-984-093d82c02921344d8d400989af156aaf79b9d961: 093d82c02921344d8d400989af156aaf79b9d961 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10894/index.html [-- Attachment #2: Type: text/html, Size: 2092 bytes --] ^ permalink raw reply [flat|nested] 5+ messages in thread
* ✓ Fi.CI.BAT: success for tests/amd_basic: fix eviction test failure 2024-03-25 6:55 [PATCH i-g-t] tests/amd_basic: fix eviction test failure Jesse Zhang 2024-03-25 7:49 ` ✓ CI.xeBAT: success for " Patchwork @ 2024-03-25 7:59 ` Patchwork 2024-03-25 9:13 ` ✗ Fi.CI.IGT: failure " Patchwork 2024-03-25 15:50 ` [PATCH i-g-t] " Kamil Konieczny 3 siblings, 0 replies; 5+ messages in thread From: Patchwork @ 2024-03-25 7:59 UTC (permalink / raw) To: Jesse Zhang; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 8735 bytes --] == Series Details == Series: tests/amd_basic: fix eviction test failure URL : https://patchwork.freedesktop.org/series/131551/ State : success == Summary == CI Bug Log - changes from IGT_7780 -> IGTPW_10894 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/index.html Participating hosts (37 -> 36) ------------------------------ Additional (2): fi-glk-j4005 bat-kbl-2 Missing (3): bat-mtlp-8 fi-cfl-8109u fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_10894 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@fbdev@info: - bat-kbl-2: NOTRUN -> [SKIP][1] ([i915#1849]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/bat-kbl-2/igt@fbdev@info.html * igt@gem_huc_copy@huc-copy: - fi-glk-j4005: NOTRUN -> [SKIP][2] ([i915#2190]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/fi-glk-j4005/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@basic: - fi-glk-j4005: NOTRUN -> [SKIP][3] ([i915#4613]) +3 other tests skip [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/fi-glk-j4005/igt@gem_lmem_swapping@basic.html * igt@gem_lmem_swapping@parallel-random-engines: - bat-kbl-2: NOTRUN -> [SKIP][4] +39 other tests skip [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/bat-kbl-2/igt@gem_lmem_swapping@parallel-random-engines.html * igt@gem_mmap@basic: - bat-dg2-11: NOTRUN -> [SKIP][5] ([i915#4083]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/bat-dg2-11/igt@gem_mmap@basic.html * igt@gem_tiled_fence_blits@basic: - bat-dg2-11: NOTRUN -> [SKIP][6] ([i915#4077]) +2 other tests skip [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/bat-dg2-11/igt@gem_tiled_fence_blits@basic.html * igt@gem_tiled_pread_basic: - bat-dg2-11: NOTRUN -> [SKIP][7] ([i915#4079]) +1 other test skip [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/bat-dg2-11/igt@gem_tiled_pread_basic.html * igt@i915_pm_rps@basic-api: - bat-dg2-11: NOTRUN -> [SKIP][8] ([i915#6621]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/bat-dg2-11/igt@i915_pm_rps@basic-api.html * igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy: - bat-dg2-11: NOTRUN -> [SKIP][9] ([i915#4212]) +7 other tests skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/bat-dg2-11/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - bat-dg2-11: NOTRUN -> [SKIP][10] ([i915#5190]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/bat-dg2-11/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_addfb_basic@basic-y-tiled-legacy: - bat-dg2-11: NOTRUN -> [SKIP][11] ([i915#4215] / [i915#5190]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/bat-dg2-11/igt@kms_addfb_basic@basic-y-tiled-legacy.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - fi-glk-j4005: NOTRUN -> [SKIP][12] +10 other tests skip [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/fi-glk-j4005/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html - bat-dg2-11: NOTRUN -> [SKIP][13] ([i915#4103] / [i915#4213]) +1 other test skip [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/bat-dg2-11/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_dsc@dsc-basic: - bat-dg2-11: NOTRUN -> [SKIP][14] ([i915#3555] / [i915#3840]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/bat-dg2-11/igt@kms_dsc@dsc-basic.html * igt@kms_force_connector_basic@force-load-detect: - bat-dg2-11: NOTRUN -> [SKIP][15] [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/bat-dg2-11/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_force_connector_basic@prune-stale-modes: - bat-dg2-11: NOTRUN -> [SKIP][16] ([i915#5274]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/bat-dg2-11/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_pm_backlight@basic-brightness: - bat-dg2-11: NOTRUN -> [SKIP][17] ([i915#5354]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/bat-dg2-11/igt@kms_pm_backlight@basic-brightness.html * igt@kms_psr@psr-sprite-plane-onoff: - bat-dg2-11: NOTRUN -> [SKIP][18] ([i915#1072] / [i915#9732]) +3 other tests skip [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/bat-dg2-11/igt@kms_psr@psr-sprite-plane-onoff.html * igt@kms_setmode@basic-clone-single-crtc: - bat-dg2-11: NOTRUN -> [SKIP][19] ([i915#3555]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/bat-dg2-11/igt@kms_setmode@basic-clone-single-crtc.html * igt@prime_vgem@basic-fence-flip: - bat-dg2-11: NOTRUN -> [SKIP][20] ([i915#3708]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/bat-dg2-11/igt@prime_vgem@basic-fence-flip.html * igt@prime_vgem@basic-fence-mmap: - bat-dg2-11: NOTRUN -> [SKIP][21] ([i915#3708] / [i915#4077]) +1 other test skip [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/bat-dg2-11/igt@prime_vgem@basic-fence-mmap.html * igt@prime_vgem@basic-read: - bat-dg2-11: NOTRUN -> [SKIP][22] ([i915#3291] / [i915#3708]) +2 other tests skip [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/bat-dg2-11/igt@prime_vgem@basic-read.html * igt@runner@aborted: - fi-kbl-8809g: NOTRUN -> [FAIL][23] ([i915#4991]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/fi-kbl-8809g/igt@runner@aborted.html #### Possible fixes #### * igt@i915_pm_rpm@module-reload: - {bat-mtlp-9}: [WARN][24] ([i915#10436]) -> [PASS][25] [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7780/bat-mtlp-9/igt@i915_pm_rpm@module-reload.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/bat-mtlp-9/igt@i915_pm_rpm@module-reload.html * igt@kms_pipe_crc_basic@hang-read-crc@pipe-a-dp-6: - {bat-mtlp-9}: [DMESG-WARN][26] ([i915#10435]) -> [PASS][27] [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7780/bat-mtlp-9/igt@kms_pipe_crc_basic@hang-read-crc@pipe-a-dp-6.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/bat-mtlp-9/igt@kms_pipe_crc_basic@hang-read-crc@pipe-a-dp-6.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [i915#10435]: https://gitlab.freedesktop.org/drm/intel/issues/10435 [i915#10436]: https://gitlab.freedesktop.org/drm/intel/issues/10436 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213 [i915#4215]: https://gitlab.freedesktop.org/drm/intel/issues/4215 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4991]: https://gitlab.freedesktop.org/drm/intel/issues/4991 [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 [i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#9732]: https://gitlab.freedesktop.org/drm/intel/issues/9732 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7780 -> IGTPW_10894 CI-20190529: 20190529 CI_DRM_14475: 093d82c02921344d8d400989af156aaf79b9d961 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_10894: 10894 IGT_7780: 93a5298ac980333738cf75da6b66fa6f3769205f @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/index.html [-- Attachment #2: Type: text/html, Size: 10295 bytes --] ^ permalink raw reply [flat|nested] 5+ messages in thread
* ✗ Fi.CI.IGT: failure for tests/amd_basic: fix eviction test failure 2024-03-25 6:55 [PATCH i-g-t] tests/amd_basic: fix eviction test failure Jesse Zhang 2024-03-25 7:49 ` ✓ CI.xeBAT: success for " Patchwork 2024-03-25 7:59 ` ✓ Fi.CI.BAT: " Patchwork @ 2024-03-25 9:13 ` Patchwork 2024-03-25 15:50 ` [PATCH i-g-t] " Kamil Konieczny 3 siblings, 0 replies; 5+ messages in thread From: Patchwork @ 2024-03-25 9:13 UTC (permalink / raw) To: Jesse Zhang; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 98695 bytes --] == Series Details == Series: tests/amd_basic: fix eviction test failure URL : https://patchwork.freedesktop.org/series/131551/ State : failure == Summary == CI Bug Log - changes from IGT_7780_full -> IGTPW_10894_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_10894_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_10894_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_10894/index.html Participating hosts (9 -> 9) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_10894_full: ### IGT changes ### #### Possible regressions #### * igt@kms_vblank@query-forked@pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [INCOMPLETE][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg2-7/igt@kms_vblank@query-forked@pipe-d-hdmi-a-3.html Known issues ------------ Here are the changes found in IGTPW_10894_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-reloc-purge-cache: - shard-mtlp: NOTRUN -> [SKIP][2] ([i915#8411]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-mtlp-2/igt@api_intel_bb@blit-reloc-purge-cache.html * igt@api_intel_bb@object-reloc-purge-cache: - shard-dg2: NOTRUN -> [SKIP][3] ([i915#8411]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg2-7/igt@api_intel_bb@object-reloc-purge-cache.html * igt@debugfs_test@basic-hwmon: - shard-tglu: NOTRUN -> [SKIP][4] ([i915#9318]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-tglu-2/igt@debugfs_test@basic-hwmon.html * igt@drm_fdinfo@busy-hang@rcs0: - shard-mtlp: NOTRUN -> [SKIP][5] ([i915#8414]) +6 other tests skip [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-mtlp-8/igt@drm_fdinfo@busy-hang@rcs0.html * igt@drm_fdinfo@busy@vcs1: - shard-dg1: NOTRUN -> [SKIP][6] ([i915#8414]) +17 other tests skip [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg1-17/igt@drm_fdinfo@busy@vcs1.html * igt@drm_fdinfo@most-busy-idle-check-all@vecs1: - shard-dg2: NOTRUN -> [SKIP][7] ([i915#8414]) +30 other tests skip [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg2-8/igt@drm_fdinfo@most-busy-idle-check-all@vecs1.html * igt@gem_ccs@block-multicopy-compressed: - shard-dg1: NOTRUN -> [SKIP][8] ([i915#9323]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg1-17/igt@gem_ccs@block-multicopy-compressed.html - shard-mtlp: NOTRUN -> [SKIP][9] ([i915#9323]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-mtlp-1/igt@gem_ccs@block-multicopy-compressed.html * igt@gem_create@create-ext-cpu-access-sanity-check: - shard-mtlp: NOTRUN -> [SKIP][10] ([i915#6335]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-mtlp-5/igt@gem_create@create-ext-cpu-access-sanity-check.html - shard-rkl: NOTRUN -> [SKIP][11] ([i915#6335]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-rkl-6/igt@gem_create@create-ext-cpu-access-sanity-check.html * igt@gem_ctx_persistence@hang: - shard-dg2: NOTRUN -> [SKIP][12] ([i915#8555]) +1 other test skip [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg2-6/igt@gem_ctx_persistence@hang.html * igt@gem_ctx_persistence@legacy-engines-queued: - shard-snb: NOTRUN -> [SKIP][13] ([i915#1099]) +1 other test skip [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-snb1/igt@gem_ctx_persistence@legacy-engines-queued.html * igt@gem_ctx_sseu@invalid-args: - shard-dg2: NOTRUN -> [SKIP][14] ([i915#280]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg2-2/igt@gem_ctx_sseu@invalid-args.html * igt@gem_ctx_sseu@mmap-args: - shard-rkl: NOTRUN -> [SKIP][15] ([i915#280]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-rkl-4/igt@gem_ctx_sseu@mmap-args.html * igt@gem_exec_balancer@bonded-false-hang: - shard-dg2: NOTRUN -> [SKIP][16] ([i915#4812]) +2 other tests skip [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg2-2/igt@gem_exec_balancer@bonded-false-hang.html * igt@gem_exec_balancer@bonded-pair: - shard-mtlp: NOTRUN -> [SKIP][17] ([i915#4771]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-mtlp-2/igt@gem_exec_balancer@bonded-pair.html * igt@gem_exec_balancer@parallel-out-fence: - shard-rkl: NOTRUN -> [SKIP][18] ([i915#4525]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-rkl-4/igt@gem_exec_balancer@parallel-out-fence.html * igt@gem_exec_capture@many-4k-incremental: - shard-glk: NOTRUN -> [FAIL][19] ([i915#9606]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-glk5/igt@gem_exec_capture@many-4k-incremental.html - shard-dg2: NOTRUN -> [FAIL][20] ([i915#9606]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg2-10/igt@gem_exec_capture@many-4k-incremental.html * igt@gem_exec_fair@basic-deadline: - shard-glk: NOTRUN -> [FAIL][21] ([i915#2846]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-glk9/igt@gem_exec_fair@basic-deadline.html * igt@gem_exec_fair@basic-none-share: - shard-dg2: NOTRUN -> [SKIP][22] ([i915#3539] / [i915#4852]) +6 other tests skip [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg2-2/igt@gem_exec_fair@basic-none-share.html - shard-dg1: NOTRUN -> [SKIP][23] ([i915#3539] / [i915#4852]) +3 other tests skip [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg1-17/igt@gem_exec_fair@basic-none-share.html * igt@gem_exec_fair@basic-pace: - shard-mtlp: NOTRUN -> [SKIP][24] ([i915#4473] / [i915#4771]) +2 other tests skip [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-mtlp-8/igt@gem_exec_fair@basic-pace.html * igt@gem_exec_fair@basic-pace-solo@rcs0: - shard-glk: NOTRUN -> [FAIL][25] ([i915#2842]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-glk2/igt@gem_exec_fair@basic-pace-solo@rcs0.html * igt@gem_exec_fair@basic-throttle@rcs0: - shard-glk: [PASS][26] -> [FAIL][27] ([i915#2842]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7780/shard-glk5/igt@gem_exec_fair@basic-throttle@rcs0.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-glk8/igt@gem_exec_fair@basic-throttle@rcs0.html - shard-rkl: [PASS][28] -> [FAIL][29] ([i915#2842]) +2 other tests fail [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7780/shard-rkl-6/igt@gem_exec_fair@basic-throttle@rcs0.html [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-rkl-2/igt@gem_exec_fair@basic-throttle@rcs0.html * igt@gem_exec_fence@submit67: - shard-mtlp: NOTRUN -> [SKIP][30] ([i915#4812]) +1 other test skip [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-mtlp-6/igt@gem_exec_fence@submit67.html * igt@gem_exec_flush@basic-uc-set-default: - shard-dg1: NOTRUN -> [SKIP][31] ([i915#3539]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg1-16/igt@gem_exec_flush@basic-uc-set-default.html * igt@gem_exec_params@rsvd2-dirt: - shard-mtlp: NOTRUN -> [SKIP][32] ([i915#5107]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-mtlp-4/igt@gem_exec_params@rsvd2-dirt.html - shard-dg2: NOTRUN -> [SKIP][33] ([i915#5107]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg2-2/igt@gem_exec_params@rsvd2-dirt.html * igt@gem_exec_reloc@basic-wc-read-active: - shard-dg1: NOTRUN -> [SKIP][34] ([i915#3281]) +9 other tests skip [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg1-17/igt@gem_exec_reloc@basic-wc-read-active.html * igt@gem_exec_reloc@basic-wc-read-noreloc: - shard-rkl: NOTRUN -> [SKIP][35] ([i915#3281]) +7 other tests skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-rkl-4/igt@gem_exec_reloc@basic-wc-read-noreloc.html * igt@gem_exec_reloc@basic-write-read-active: - shard-dg2: NOTRUN -> [SKIP][36] ([i915#3281]) +10 other tests skip [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg2-2/igt@gem_exec_reloc@basic-write-read-active.html * igt@gem_exec_reloc@basic-write-wc-noreloc: - shard-mtlp: NOTRUN -> [SKIP][37] ([i915#3281]) +10 other tests skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-mtlp-2/igt@gem_exec_reloc@basic-write-wc-noreloc.html * igt@gem_exec_schedule@preempt-queue-contexts: - shard-dg1: NOTRUN -> [SKIP][38] ([i915#4812]) +2 other tests skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg1-13/igt@gem_exec_schedule@preempt-queue-contexts.html * igt@gem_exec_schedule@reorder-wide: - shard-dg2: NOTRUN -> [SKIP][39] ([i915#4537] / [i915#4812]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg2-3/igt@gem_exec_schedule@reorder-wide.html * igt@gem_exec_schedule@semaphore-power: - shard-mtlp: NOTRUN -> [SKIP][40] ([i915#4537] / [i915#4812]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-mtlp-7/igt@gem_exec_schedule@semaphore-power.html * igt@gem_exec_suspend@basic-s4-devices@smem: - shard-rkl: NOTRUN -> [ABORT][41] ([i915#7975] / [i915#8213]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-rkl-6/igt@gem_exec_suspend@basic-s4-devices@smem.html * igt@gem_fence_thrash@bo-write-verify-y: - shard-dg2: NOTRUN -> [SKIP][42] ([i915#4860]) +4 other tests skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg2-2/igt@gem_fence_thrash@bo-write-verify-y.html - shard-dg1: NOTRUN -> [SKIP][43] ([i915#4860]) +3 other tests skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg1-17/igt@gem_fence_thrash@bo-write-verify-y.html * igt@gem_fenced_exec_thrash@no-spare-fences-interruptible: - shard-mtlp: NOTRUN -> [SKIP][44] ([i915#4860]) +2 other tests skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-mtlp-8/igt@gem_fenced_exec_thrash@no-spare-fences-interruptible.html * igt@gem_lmem_swapping@basic: - shard-rkl: NOTRUN -> [SKIP][45] ([i915#4613]) +3 other tests skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-rkl-4/igt@gem_lmem_swapping@basic.html * igt@gem_lmem_swapping@heavy-verify-multi-ccs: - shard-tglu: NOTRUN -> [SKIP][46] ([i915#4613]) +1 other test skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-tglu-5/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html * igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0: - shard-dg2: NOTRUN -> [FAIL][47] ([i915#10446]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg2-10/igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0.html * igt@gem_lmem_swapping@massive-random: - shard-mtlp: NOTRUN -> [SKIP][48] ([i915#4613]) +1 other test skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-mtlp-6/igt@gem_lmem_swapping@massive-random.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg2: NOTRUN -> [TIMEOUT][49] ([i915#5493]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg2-10/igt@gem_lmem_swapping@smem-oom@lmem0.html - shard-dg1: [PASS][50] -> [TIMEOUT][51] ([i915#5493]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7780/shard-dg1-17/igt@gem_lmem_swapping@smem-oom@lmem0.html [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg1-18/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@gem_lmem_swapping@verify-ccs: - shard-glk: NOTRUN -> [SKIP][52] ([i915#4613]) +3 other tests skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-glk5/igt@gem_lmem_swapping@verify-ccs.html * igt@gem_mmap@bad-object: - shard-dg1: NOTRUN -> [SKIP][53] ([i915#4083]) +4 other tests skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg1-16/igt@gem_mmap@bad-object.html * igt@gem_mmap@bad-size: - shard-mtlp: NOTRUN -> [SKIP][54] ([i915#4083]) +5 other tests skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-mtlp-6/igt@gem_mmap@bad-size.html * igt@gem_mmap_gtt@cpuset-basic-small-copy-odd: - shard-dg1: NOTRUN -> [SKIP][55] ([i915#4077]) +9 other tests skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg1-17/igt@gem_mmap_gtt@cpuset-basic-small-copy-odd.html * igt@gem_mmap_gtt@cpuset-medium-copy: - shard-mtlp: NOTRUN -> [SKIP][56] ([i915#4077]) +5 other tests skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-mtlp-1/igt@gem_mmap_gtt@cpuset-medium-copy.html * igt@gem_mmap_gtt@zero-extend: - shard-dg2: NOTRUN -> [SKIP][57] ([i915#4077]) +16 other tests skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg2-2/igt@gem_mmap_gtt@zero-extend.html * igt@gem_mmap_wc@write-prefaulted: - shard-dg2: NOTRUN -> [SKIP][58] ([i915#4083]) +9 other tests skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg2-2/igt@gem_mmap_wc@write-prefaulted.html * igt@gem_pwrite@basic-exhaustion: - shard-dg1: NOTRUN -> [SKIP][59] ([i915#3282]) +4 other tests skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg1-15/igt@gem_pwrite@basic-exhaustion.html - shard-glk: NOTRUN -> [WARN][60] ([i915#2658]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-glk9/igt@gem_pwrite@basic-exhaustion.html * igt@gem_pwrite@basic-self: - shard-rkl: NOTRUN -> [SKIP][61] ([i915#3282]) +1 other test skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-rkl-5/igt@gem_pwrite@basic-self.html * igt@gem_pxp@fail-invalid-protected-context: - shard-mtlp: NOTRUN -> [SKIP][62] ([i915#4270]) +1 other test skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-mtlp-4/igt@gem_pxp@fail-invalid-protected-context.html * igt@gem_pxp@reject-modify-context-protection-off-2: - shard-tglu: NOTRUN -> [SKIP][63] ([i915#4270]) +1 other test skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-tglu-3/igt@gem_pxp@reject-modify-context-protection-off-2.html * igt@gem_pxp@verify-pxp-execution-after-suspend-resume: - shard-dg2: NOTRUN -> [SKIP][64] ([i915#4270]) +4 other tests skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg2-5/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html - shard-rkl: NOTRUN -> [SKIP][65] ([i915#4270]) +2 other tests skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-rkl-4/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html - shard-dg1: NOTRUN -> [SKIP][66] ([i915#4270]) +1 other test skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg1-15/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html * igt@gem_readwrite@beyond-eob: - shard-dg2: NOTRUN -> [SKIP][67] ([i915#3282]) +8 other tests skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg2-5/igt@gem_readwrite@beyond-eob.html * igt@gem_readwrite@read-bad-handle: - shard-mtlp: NOTRUN -> [SKIP][68] ([i915#3282]) +4 other tests skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-mtlp-8/igt@gem_readwrite@read-bad-handle.html * igt@gem_render_copy@linear-to-vebox-y-tiled: - shard-mtlp: NOTRUN -> [SKIP][69] ([i915#8428]) +4 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-mtlp-7/igt@gem_render_copy@linear-to-vebox-y-tiled.html * igt@gem_render_copy@y-tiled-ccs-to-linear: - shard-dg2: NOTRUN -> [SKIP][70] ([i915#5190] / [i915#8428]) +5 other tests skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg2-1/igt@gem_render_copy@y-tiled-ccs-to-linear.html * igt@gem_render_tiled_blits@basic: - shard-dg1: NOTRUN -> [SKIP][71] ([i915#4079]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg1-15/igt@gem_render_tiled_blits@basic.html - shard-mtlp: NOTRUN -> [SKIP][72] ([i915#4079]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-mtlp-8/igt@gem_render_tiled_blits@basic.html - shard-dg2: NOTRUN -> [SKIP][73] ([i915#4079]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg2-5/igt@gem_render_tiled_blits@basic.html * igt@gem_set_tiling_vs_blt@untiled-to-tiled: - shard-rkl: NOTRUN -> [SKIP][74] ([i915#8411]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-rkl-6/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html * igt@gem_softpin@evict-snoop: - shard-dg1: NOTRUN -> [SKIP][75] ([i915#4885]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg1-17/igt@gem_softpin@evict-snoop.html - shard-mtlp: NOTRUN -> [SKIP][76] ([i915#4885]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-mtlp-4/igt@gem_softpin@evict-snoop.html - shard-dg2: NOTRUN -> [SKIP][77] ([i915#4885]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg2-5/igt@gem_softpin@evict-snoop.html * igt@gem_spin_batch@spin-all-new: - shard-dg2: NOTRUN -> [FAIL][78] ([i915#5889]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg2-10/igt@gem_spin_batch@spin-all-new.html * igt@gem_userptr_blits@access-control: - shard-tglu: NOTRUN -> [SKIP][79] ([i915#3297]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-tglu-2/igt@gem_userptr_blits@access-control.html * igt@gem_userptr_blits@create-destroy-unsync: - shard-dg2: NOTRUN -> [SKIP][80] ([i915#3297]) +5 other tests skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg2-8/igt@gem_userptr_blits@create-destroy-unsync.html * igt@gem_userptr_blits@map-fixed-invalidate-busy: - shard-dg2: NOTRUN -> [SKIP][81] ([i915#3297] / [i915#4880]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg2-8/igt@gem_userptr_blits@map-fixed-invalidate-busy.html * igt@gem_userptr_blits@set-cache-level: - shard-mtlp: NOTRUN -> [SKIP][82] ([i915#3297]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-mtlp-4/igt@gem_userptr_blits@set-cache-level.html * igt@gem_userptr_blits@unsync-overlap: - shard-rkl: NOTRUN -> [SKIP][83] ([i915#3297]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-rkl-5/igt@gem_userptr_blits@unsync-overlap.html * igt@gen9_exec_parse@bb-large: - shard-tglu: NOTRUN -> [SKIP][84] ([i915#2527] / [i915#2856]) +1 other test skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-tglu-4/igt@gen9_exec_parse@bb-large.html * igt@gen9_exec_parse@bb-start-far: - shard-rkl: NOTRUN -> [SKIP][85] ([i915#2527]) +1 other test skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-rkl-5/igt@gen9_exec_parse@bb-start-far.html - shard-dg1: NOTRUN -> [SKIP][86] ([i915#2527]) +1 other test skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg1-15/igt@gen9_exec_parse@bb-start-far.html * igt@gen9_exec_parse@shadow-peek: - shard-dg2: NOTRUN -> [SKIP][87] ([i915#2856]) +5 other tests skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg2-5/igt@gen9_exec_parse@shadow-peek.html * igt@gen9_exec_parse@unaligned-jump: - shard-mtlp: NOTRUN -> [SKIP][88] ([i915#2856]) +3 other tests skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-mtlp-3/igt@gen9_exec_parse@unaligned-jump.html * igt@i915_module_load@load: - shard-rkl: NOTRUN -> [SKIP][89] ([i915#6227]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-rkl-6/igt@i915_module_load@load.html * igt@i915_module_load@reload-with-fault-injection: - shard-tglu: [PASS][90] -> [INCOMPLETE][91] ([i915#9697] / [i915#9820]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7780/shard-tglu-5/igt@i915_module_load@reload-with-fault-injection.html [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-tglu-8/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0: - shard-dg1: [PASS][92] -> [FAIL][93] ([i915#3591]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7780/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg1-15/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html * igt@i915_pm_rpm@gem-mmap-type@gtt-smem0: - shard-mtlp: NOTRUN -> [SKIP][94] ([i915#8431]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-mtlp-2/igt@i915_pm_rpm@gem-mmap-type@gtt-smem0.html * igt@i915_pm_rps@basic-api: - shard-dg1: NOTRUN -> [SKIP][95] ([i915#6621]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg1-16/igt@i915_pm_rps@basic-api.html - shard-mtlp: NOTRUN -> [SKIP][96] ([i915#6621]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-mtlp-4/igt@i915_pm_rps@basic-api.html * igt@i915_pm_rps@min-max-config-loaded: - shard-dg2: NOTRUN -> [SKIP][97] ([i915#6621]) +1 other test skip [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg2-7/igt@i915_pm_rps@min-max-config-loaded.html * igt@i915_pm_rps@thresholds-park@gt0: - shard-dg2: NOTRUN -> [SKIP][98] ([i915#8925]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg2-5/igt@i915_pm_rps@thresholds-park@gt0.html * igt@i915_query@test-query-geometry-subslices: - shard-dg1: NOTRUN -> [SKIP][99] ([i915#5723]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg1-18/igt@i915_query@test-query-geometry-subslices.html * igt@i915_selftest@mock@memory_region: - shard-dg1: NOTRUN -> [DMESG-WARN][100] ([i915#9311]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg1-17/igt@i915_selftest@mock@memory_region.html * igt@intel_hwmon@hwmon-write: - shard-rkl: NOTRUN -> [SKIP][101] ([i915#7707]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-rkl-6/igt@intel_hwmon@hwmon-write.html * igt@kms_addfb_basic@addfb25-x-tiled-legacy: - shard-mtlp: NOTRUN -> [SKIP][102] ([i915#4212]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-mtlp-6/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html * igt@kms_addfb_basic@basic-x-tiled-legacy: - shard-dg2: NOTRUN -> [SKIP][103] ([i915#4212]) +2 other tests skip [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg2-10/igt@kms_addfb_basic@basic-x-tiled-legacy.html * igt@kms_addfb_basic@bo-too-small-due-to-tiling: - shard-dg1: NOTRUN -> [SKIP][104] ([i915#4212]) +1 other test skip [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg1-13/igt@kms_addfb_basic@bo-too-small-due-to-tiling.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-3-4-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][105] ([i915#8709]) +11 other tests skip [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg2-5/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-hdmi-a-3-4-mc-ccs.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-mtlp: NOTRUN -> [SKIP][106] ([i915#3555]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-mtlp-6/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-dg2: NOTRUN -> [SKIP][107] ([i915#1769] / [i915#3555]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg2-5/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_big_fb@4-tiled-32bpp-rotate-90: - shard-tglu: NOTRUN -> [SKIP][108] ([i915#5286]) +1 other test skip [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-tglu-5/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html * igt@kms_big_fb@4-tiled-addfb: - shard-rkl: NOTRUN -> [SKIP][109] ([i915#5286]) +4 other tests skip [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-rkl-1/igt@kms_big_fb@4-tiled-addfb.html * igt@kms_big_fb@4-tiled-addfb-size-overflow: - shard-dg1: NOTRUN -> [SKIP][110] ([i915#5286]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg1-17/igt@kms_big_fb@4-tiled-addfb-size-overflow.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-dg1: NOTRUN -> [SKIP][111] ([i915#4538] / [i915#5286]) +2 other tests skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg1-15/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@linear-32bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][112] ([i915#3638]) +3 other tests skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg1-17/igt@kms_big_fb@linear-32bpp-rotate-90.html * igt@kms_big_fb@linear-8bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][113] ([i915#3638]) +3 other tests skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-rkl-6/igt@kms_big_fb@linear-8bpp-rotate-270.html * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-tglu: [PASS][114] -> [FAIL][115] ([i915#3743]) +1 other test fail [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7780/shard-tglu-3/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-tglu-2/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@y-tiled-32bpp-rotate-180: - shard-mtlp: NOTRUN -> [SKIP][116] +21 other tests skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-mtlp-2/igt@kms_big_fb@y-tiled-32bpp-rotate-180.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: - shard-dg2: NOTRUN -> [SKIP][117] ([i915#4538] / [i915#5190]) +15 other tests skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg2-1/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][118] ([i915#4538]) +5 other tests skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg1-18/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html * igt@kms_big_joiner@2x-modeset: - shard-dg2: NOTRUN -> [SKIP][119] ([i915#2705]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg2-5/igt@kms_big_joiner@2x-modeset.html * igt@kms_big_joiner@invalid-modeset: - shard-tglu: NOTRUN -> [SKIP][120] ([i915#2705]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-tglu-3/igt@kms_big_joiner@invalid-modeset.html * igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][121] ([i915#6095]) +43 other tests skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-mtlp-2/igt@kms_ccs@bad-pixel-format-4-tiled-dg2-rc-ccs-cc@pipe-c-edp-1.html * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][122] ([i915#6095]) +99 other tests skip [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg1-16/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-4.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][123] ([i915#6095]) +65 other tests skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-rkl-5/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-xe2-ccs: - shard-dg1: NOTRUN -> [SKIP][124] ([i915#10278]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg1-16/igt@kms_ccs@crc-primary-rotation-180-4-tiled-xe2-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][125] ([i915#10307] / [i915#6095]) +173 other tests skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg2-7/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-3.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-xe2-ccs: - shard-dg2: NOTRUN -> [SKIP][126] ([i915#10278]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg2-8/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-xe2-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs@pipe-b-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][127] ([i915#6095]) +11 other tests skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-tglu-4/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][128] ([i915#10307] / [i915#10434] / [i915#6095]) +5 other tests skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg2-10/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-d-hdmi-a-1.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-dg2: NOTRUN -> [SKIP][129] ([i915#7213]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg2-2/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_cdclk@mode-transition@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][130] ([i915#7213] / [i915#9010]) +3 other tests skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-mtlp-4/igt@kms_cdclk@mode-transition@pipe-b-edp-1.html * igt@kms_cdclk@plane-scaling: - shard-rkl: NOTRUN -> [SKIP][131] ([i915#3742]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-rkl-4/igt@kms_cdclk@plane-scaling.html - shard-dg1: NOTRUN -> [SKIP][132] ([i915#3742]) [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg1-15/igt@kms_cdclk@plane-scaling.html * igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k: - shard-dg2: NOTRUN -> [SKIP][133] ([i915#7828]) +14 other tests skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg2-11/igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k.html * igt@kms_chamelium_edid@hdmi-edid-change-during-suspend: - shard-rkl: NOTRUN -> [SKIP][134] ([i915#7828]) +8 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-rkl-4/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html - shard-dg1: NOTRUN -> [SKIP][135] ([i915#7828]) +6 other tests skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg1-15/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html * igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats: - shard-mtlp: NOTRUN -> [SKIP][136] ([i915#7828]) +7 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-mtlp-1/igt@kms_chamelium_frames@hdmi-crc-nonplanar-formats.html * igt@kms_chamelium_hpd@dp-hpd: - shard-tglu: NOTRUN -> [SKIP][137] ([i915#7828]) +1 other test skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-tglu-7/igt@kms_chamelium_hpd@dp-hpd.html * igt@kms_content_protection@atomic-dpms: - shard-mtlp: NOTRUN -> [SKIP][138] ([i915#6944] / [i915#9424]) +1 other test skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-mtlp-7/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@content-type-change: - shard-dg2: NOTRUN -> [SKIP][139] ([i915#9424]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg2-10/igt@kms_content_protection@content-type-change.html - shard-rkl: NOTRUN -> [SKIP][140] ([i915#9424]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-rkl-6/igt@kms_content_protection@content-type-change.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-dg2: NOTRUN -> [SKIP][141] ([i915#3299]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg2-5/igt@kms_content_protection@dp-mst-lic-type-1.html - shard-rkl: NOTRUN -> [SKIP][142] ([i915#3116]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-rkl-2/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@legacy: - shard-tglu: NOTRUN -> [SKIP][143] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-tglu-10/igt@kms_content_protection@legacy.html * igt@kms_content_protection@legacy@pipe-a-dp-4: - shard-dg2: NOTRUN -> [TIMEOUT][144] ([i915#7173]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg2-11/igt@kms_content_protection@legacy@pipe-a-dp-4.html * igt@kms_content_protection@lic-type-1: - shard-dg1: NOTRUN -> [SKIP][145] ([i915#9424]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg1-15/igt@kms_content_protection@lic-type-1.html * igt@kms_content_protection@mei-interface: - shard-dg1: NOTRUN -> [SKIP][146] ([i915#9433]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg1-13/igt@kms_content_protection@mei-interface.html - shard-mtlp: NOTRUN -> [SKIP][147] ([i915#8063] / [i915#9433]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-mtlp-1/igt@kms_content_protection@mei-interface.html * igt@kms_content_protection@srm: - shard-tglu: NOTRUN -> [SKIP][148] ([i915#6944] / [i915#7116] / [i915#7118]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-tglu-3/igt@kms_content_protection@srm.html * igt@kms_content_protection@uevent: - shard-dg2: NOTRUN -> [SKIP][149] ([i915#7118] / [i915#9424]) +1 other test skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg2-5/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-offscreen-128x42: - shard-mtlp: NOTRUN -> [SKIP][150] ([i915#8814]) +2 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-mtlp-8/igt@kms_cursor_crc@cursor-offscreen-128x42.html * igt@kms_cursor_crc@cursor-offscreen-512x170: - shard-mtlp: NOTRUN -> [SKIP][151] ([i915#3359]) +3 other tests skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-mtlp-7/igt@kms_cursor_crc@cursor-offscreen-512x170.html * igt@kms_cursor_crc@cursor-random-512x512: - shard-dg2: NOTRUN -> [SKIP][152] ([i915#3359]) +3 other tests skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg2-5/igt@kms_cursor_crc@cursor-random-512x512.html * igt@kms_cursor_crc@cursor-rapid-movement-max-size: - shard-dg2: NOTRUN -> [SKIP][153] ([i915#3555]) +9 other tests skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg2-10/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html * igt@kms_cursor_crc@cursor-sliding-32x10: - shard-rkl: NOTRUN -> [SKIP][154] ([i915#3555]) +6 other tests skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-rkl-1/igt@kms_cursor_crc@cursor-sliding-32x10.html * igt@kms_cursor_crc@cursor-sliding-512x512: - shard-rkl: NOTRUN -> [SKIP][155] ([i915#3359]) +3 other tests skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-rkl-4/igt@kms_cursor_crc@cursor-sliding-512x512.html - shard-dg1: NOTRUN -> [SKIP][156] ([i915#3359]) +2 other tests skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg1-18/igt@kms_cursor_crc@cursor-sliding-512x512.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy: - shard-rkl: NOTRUN -> [SKIP][157] +41 other tests skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-rkl-6/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html * igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic: - shard-mtlp: NOTRUN -> [SKIP][158] ([i915#9809]) +6 other tests skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-mtlp-4/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html * igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot: - shard-rkl: NOTRUN -> [SKIP][159] ([i915#9067]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-rkl-4/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html - shard-dg1: NOTRUN -> [SKIP][160] ([i915#9067]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg1-15/igt@kms_cursor_legacy@modeset-atomic-cursor-hotspot.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-dg2: NOTRUN -> [SKIP][161] ([i915#4103] / [i915#4213]) +1 other test skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg2-2/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-tglu: NOTRUN -> [SKIP][162] ([i915#4103]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-tglu-3/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-rkl: NOTRUN -> [SKIP][163] ([i915#9723]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-rkl-2/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-1.html * igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][164] ([i915#9227]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg2-5/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-3.html * igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][165] ([i915#9723]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg1-17/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-4.html * igt@kms_dirtyfb@psr-dirtyfb-ioctl: - shard-dg2: NOTRUN -> [SKIP][166] ([i915#9833]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg2-7/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html * igt@kms_display_modes@mst-extended-mode-negative: - shard-mtlp: NOTRUN -> [SKIP][167] ([i915#8588]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-mtlp-7/igt@kms_display_modes@mst-extended-mode-negative.html * igt@kms_dither@fb-8bpc-vs-panel-8bpc: - shard-dg1: NOTRUN -> [SKIP][168] ([i915#3555]) +7 other tests skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg1-13/igt@kms_dither@fb-8bpc-vs-panel-8bpc.html * igt@kms_draw_crc@draw-method-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][169] ([i915#8812]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg2-5/igt@kms_draw_crc@draw-method-mmap-gtt.html * igt@kms_dsc@dsc-fractional-bpp: - shard-dg2: NOTRUN -> [SKIP][170] ([i915#3840] / [i915#9688]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg2-2/igt@kms_dsc@dsc-fractional-bpp.html * igt@kms_dsc@dsc-fractional-bpp-with-bpc: - shard-dg2: NOTRUN -> [SKIP][171] ([i915#3840]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg2-5/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html * igt@kms_dsc@dsc-with-formats: - shard-dg2: NOTRUN -> [SKIP][172] ([i915#3555] / [i915#3840]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg2-7/igt@kms_dsc@dsc-with-formats.html * igt@kms_fbcon_fbt@psr: - shard-dg2: NOTRUN -> [SKIP][173] ([i915#3469]) +1 other test skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg2-11/igt@kms_fbcon_fbt@psr.html * igt@kms_feature_discovery@chamelium: - shard-tglu: NOTRUN -> [SKIP][174] ([i915#2065] / [i915#4854]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-tglu-7/igt@kms_feature_discovery@chamelium.html * igt@kms_feature_discovery@display-2x: - shard-mtlp: NOTRUN -> [SKIP][175] ([i915#1839]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-mtlp-6/igt@kms_feature_discovery@display-2x.html * igt@kms_feature_discovery@display-3x: - shard-dg2: NOTRUN -> [SKIP][176] ([i915#1839]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg2-11/igt@kms_feature_discovery@display-3x.html * igt@kms_feature_discovery@psr2: - shard-dg2: NOTRUN -> [SKIP][177] ([i915#658]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg2-7/igt@kms_feature_discovery@psr2.html - shard-rkl: NOTRUN -> [SKIP][178] ([i915#658]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-rkl-6/igt@kms_feature_discovery@psr2.html * igt@kms_fence_pin_leak: - shard-dg2: NOTRUN -> [SKIP][179] ([i915#4881]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg2-3/igt@kms_fence_pin_leak.html * igt@kms_flip@2x-flip-vs-wf_vblank: - shard-tglu: NOTRUN -> [SKIP][180] ([i915#3637]) +2 other tests skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-tglu-2/igt@kms_flip@2x-flip-vs-wf_vblank.html * igt@kms_flip@2x-plain-flip-fb-recreate: - shard-mtlp: NOTRUN -> [SKIP][181] ([i915#3637]) +5 other tests skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-mtlp-1/igt@kms_flip@2x-plain-flip-fb-recreate.html * igt@kms_flip@2x-plain-flip-fb-recreate-interruptible: - shard-dg1: NOTRUN -> [SKIP][182] ([i915#9934]) +6 other tests skip [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg1-18/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@c-hdmi-a4: - shard-dg1: NOTRUN -> [INCOMPLETE][183] ([i915#6113]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg1-15/igt@kms_flip@flip-vs-expired-vblank-interruptible@c-hdmi-a4.html * igt@kms_flip@flip-vs-fences: - shard-mtlp: NOTRUN -> [SKIP][184] ([i915#8381]) +2 other tests skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-mtlp-5/igt@kms_flip@flip-vs-fences.html - shard-dg2: NOTRUN -> [SKIP][185] ([i915#8381]) +1 other test skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg2-10/igt@kms_flip@flip-vs-fences.html * igt@kms_flip@flip-vs-suspend-interruptible@b-edp1: - shard-mtlp: [PASS][186] -> [FAIL][187] ([i915#10083]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7780/shard-mtlp-8/igt@kms_flip@flip-vs-suspend-interruptible@b-edp1.html [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-mtlp-1/igt@kms_flip@flip-vs-suspend-interruptible@b-edp1.html * igt@kms_flip@flip-vs-suspend-interruptible@b-hdmi-a1: - shard-snb: [PASS][188] -> [INCOMPLETE][189] ([i915#4839]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7780/shard-snb7/igt@kms_flip@flip-vs-suspend-interruptible@b-hdmi-a1.html [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-snb6/igt@kms_flip@flip-vs-suspend-interruptible@b-hdmi-a1.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][190] ([i915#2672]) +2 other tests skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-mtlp-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][191] ([i915#2672]) +3 other tests skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg2-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][192] ([i915#2587] / [i915#2672]) +2 other tests skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg1-16/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][193] ([i915#2672]) +2 other tests skip [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-rkl-6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][194] ([i915#2672] / [i915#3555]) +1 other test skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][195] ([i915#2672] / [i915#3555]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg2-8/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw: - shard-dg2: [PASS][196] -> [FAIL][197] ([i915#6880]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7780/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@fbc-tiling-4: - shard-dg1: NOTRUN -> [SKIP][198] ([i915#5439]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg1-17/igt@kms_frontbuffer_tracking@fbc-tiling-4.html * igt@kms_frontbuffer_tracking@fbc-tiling-y: - shard-dg2: NOTRUN -> [SKIP][199] ([i915#10055]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-tiling-y.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render: - shard-dg1: NOTRUN -> [SKIP][200] +51 other tests skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg1-18/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt: - shard-dg2: NOTRUN -> [SKIP][201] ([i915#5354]) +53 other tests skip [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg2-8/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-render: - shard-tglu: NOTRUN -> [SKIP][202] +30 other tests skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-tglu-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-cpu: - shard-mtlp: NOTRUN -> [SKIP][203] ([i915#1825]) +32 other tests skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][204] ([i915#8708]) +27 other tests skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg2-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc: - shard-rkl: NOTRUN -> [SKIP][205] ([i915#3023]) +24 other tests skip [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-4: - shard-rkl: NOTRUN -> [SKIP][206] ([i915#5439]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move: - shard-dg2: NOTRUN -> [SKIP][207] ([i915#3458]) +26 other tests skip [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg2-10/igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][208] ([i915#8708]) +19 other tests skip [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt: - shard-rkl: NOTRUN -> [SKIP][209] ([i915#1825]) +29 other tests skip [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@psr-modesetfrombusy: - shard-dg1: NOTRUN -> [SKIP][210] ([i915#3458]) +14 other tests skip [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg1-17/igt@kms_frontbuffer_tracking@psr-modesetfrombusy.html * igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][211] ([i915#8708]) +13 other tests skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-mtlp-5/igt@kms_frontbuffer_tracking@psr-rgb565-draw-mmap-gtt.html * igt@kms_getfb@getfb-reject-ccs: - shard-dg2: NOTRUN -> [SKIP][212] ([i915#6118]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg2-7/igt@kms_getfb@getfb-reject-ccs.html * igt@kms_hdr@bpc-switch: - shard-dg1: NOTRUN -> [SKIP][213] ([i915#3555] / [i915#8228]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg1-13/igt@kms_hdr@bpc-switch.html * igt@kms_hdr@invalid-metadata-sizes: - shard-dg2: NOTRUN -> [SKIP][214] ([i915#3555] / [i915#8228]) +1 other test skip [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg2-7/igt@kms_hdr@invalid-metadata-sizes.html * igt@kms_hdr@static-swap: - shard-rkl: NOTRUN -> [SKIP][215] ([i915#3555] / [i915#8228]) +1 other test skip [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-rkl-4/igt@kms_hdr@static-swap.html * igt@kms_hdr@static-toggle-dpms: - shard-mtlp: NOTRUN -> [SKIP][216] ([i915#3555] / [i915#8228]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-mtlp-5/igt@kms_hdr@static-toggle-dpms.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-mtlp: NOTRUN -> [SKIP][217] ([i915#4816]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-mtlp-6/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html - shard-dg2: NOTRUN -> [SKIP][218] ([i915#4816]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg2-11/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html - shard-rkl: NOTRUN -> [SKIP][219] ([i915#4816]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-rkl-4/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html - shard-dg1: NOTRUN -> [SKIP][220] ([i915#1839]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg1-13/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_panel_fitting@legacy: - shard-dg1: NOTRUN -> [SKIP][221] ([i915#6301]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg1-18/igt@kms_panel_fitting@legacy.html * igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][222] ([i915#4573]) +1 other test fail [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-glk8/igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1.html * igt@kms_plane_lowres@tiling-y: - shard-mtlp: NOTRUN -> [SKIP][223] ([i915#3555] / [i915#8821]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-mtlp-8/igt@kms_plane_lowres@tiling-y.html - shard-dg2: NOTRUN -> [SKIP][224] ([i915#8821]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg2-2/igt@kms_plane_lowres@tiling-y.html * igt@kms_plane_multiple@tiling-y: - shard-dg2: NOTRUN -> [SKIP][225] ([i915#8806]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg2-1/igt@kms_plane_multiple@tiling-y.html * igt@kms_plane_scaling@2x-scaler-multi-pipe: - shard-dg2: NOTRUN -> [SKIP][226] ([i915#5354] / [i915#9423]) [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg2-1/igt@kms_plane_scaling@2x-scaler-multi-pipe.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-a-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][227] ([i915#9423]) +3 other tests skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/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-75-with-rotation@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][228] ([i915#9423]) +5 other tests skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-rkl-6/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a-hdmi-a-2.html * igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-d-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][229] ([i915#9423]) +15 other tests skip [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg1-17/igt@kms_plane_scaling@plane-scaler-unity-scaling-with-rotation@pipe-d-hdmi-a-4.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][230] ([i915#5176] / [i915#9423]) +1 other test skip [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-rkl-6/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b-hdmi-a-2.html * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][231] ([i915#9423]) +7 other tests skip [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-tglu-9/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d-hdmi-a-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][232] ([i915#3555] / [i915#5235]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-mtlp-3/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d-edp-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-c-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][233] ([i915#5235]) +11 other tests skip [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg1-15/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-c-hdmi-a-4.html * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][234] ([i915#5235] / [i915#9423] / [i915#9728]) +3 other tests skip [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-2.html * igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][235] ([i915#5235]) +6 other tests skip [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-mtlp-7/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20@pipe-b-edp-1.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][236] ([i915#5235]) +3 other tests skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-tglu-8/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][237] ([i915#5235]) +7 other tests skip [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-rkl-4/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-1.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][238] ([i915#5235] / [i915#9423]) +19 other tests skip [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg2-7/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-3.html * igt@kms_pm_backlight@basic-brightness: - shard-tglu: NOTRUN -> [SKIP][239] ([i915#9812]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-tglu-2/igt@kms_pm_backlight@basic-brightness.html * igt@kms_pm_dc@dc3co-vpb-simulation: - shard-mtlp: NOTRUN -> [SKIP][240] ([i915#9292]) [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-mtlp-5/igt@kms_pm_dc@dc3co-vpb-simulation.html * igt@kms_pm_dc@dc5-psr: - shard-rkl: NOTRUN -> [SKIP][241] ([i915#9685]) +1 other test skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-rkl-4/igt@kms_pm_dc@dc5-psr.html * igt@kms_pm_dc@dc6-psr: - shard-mtlp: NOTRUN -> [SKIP][242] ([i915#10139]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-mtlp-7/igt@kms_pm_dc@dc6-psr.html * igt@kms_pm_dc@dc9-dpms: - shard-rkl: NOTRUN -> [SKIP][243] ([i915#3361]) [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-rkl-4/igt@kms_pm_dc@dc9-dpms.html - shard-tglu: [PASS][244] -> [SKIP][245] ([i915#4281]) [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7780/shard-tglu-5/igt@kms_pm_dc@dc9-dpms.html [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-tglu-10/igt@kms_pm_dc@dc9-dpms.html * igt@kms_pm_lpsp@kms-lpsp: - shard-rkl: NOTRUN -> [SKIP][246] ([i915#9340]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-rkl-6/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_lpsp@screens-disabled: - shard-dg2: NOTRUN -> [SKIP][247] ([i915#8430]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg2-10/igt@kms_pm_lpsp@screens-disabled.html * igt@kms_pm_rpm@dpms-lpsp: - shard-dg2: NOTRUN -> [SKIP][248] ([i915#9519]) +1 other test skip [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg2-2/igt@kms_pm_rpm@dpms-lpsp.html - shard-dg1: NOTRUN -> [SKIP][249] ([i915#9519]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg1-16/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_pm_rpm@dpms-non-lpsp: - shard-mtlp: NOTRUN -> [SKIP][250] ([i915#9519]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-mtlp-2/igt@kms_pm_rpm@dpms-non-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-rkl: [PASS][251] -> [SKIP][252] ([i915#9519]) [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7780/shard-rkl-6/igt@kms_pm_rpm@modeset-non-lpsp-stress.html [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-rkl-5/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_prime@basic-crc-hybrid: - shard-rkl: NOTRUN -> [SKIP][253] ([i915#6524]) [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-rkl-6/igt@kms_prime@basic-crc-hybrid.html - shard-dg1: NOTRUN -> [SKIP][254] ([i915#6524]) [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg1-16/igt@kms_prime@basic-crc-hybrid.html * igt@kms_prime@basic-crc-vgem: - shard-dg2: NOTRUN -> [SKIP][255] ([i915#6524] / [i915#6805]) [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg2-2/igt@kms_prime@basic-crc-vgem.html * igt@kms_prime@d3hot: - shard-mtlp: NOTRUN -> [SKIP][256] ([i915#6524]) [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-mtlp-1/igt@kms_prime@d3hot.html * igt@kms_psr2_sf@fbc-cursor-plane-move-continuous-exceed-sf: - shard-dg2: NOTRUN -> [SKIP][257] +27 other tests skip [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg2-7/igt@kms_psr2_sf@fbc-cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr2_su@page_flip-nv12: - shard-dg1: NOTRUN -> [SKIP][258] ([i915#9683]) [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg1-17/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr2_su@page_flip-p010: - shard-dg2: NOTRUN -> [SKIP][259] ([i915#9683]) +1 other test skip [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg2-10/igt@kms_psr2_su@page_flip-p010.html - shard-rkl: NOTRUN -> [SKIP][260] ([i915#9683]) [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-rkl-6/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-mtlp: NOTRUN -> [SKIP][261] ([i915#4348]) [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-mtlp-5/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@fbc-pr-primary-blt: - shard-mtlp: NOTRUN -> [SKIP][262] ([i915#9688]) +13 other tests skip [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-mtlp-6/igt@kms_psr@fbc-pr-primary-blt.html * igt@kms_psr@fbc-psr2-cursor-mmap-gtt: - shard-glk: NOTRUN -> [SKIP][263] +296 other tests skip [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-glk8/igt@kms_psr@fbc-psr2-cursor-mmap-gtt.html * igt@kms_psr@fbc-psr2-sprite-render: - shard-rkl: NOTRUN -> [SKIP][264] ([i915#1072] / [i915#9732]) +22 other tests skip [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-rkl-4/igt@kms_psr@fbc-psr2-sprite-render.html * igt@kms_psr@pr-cursor-mmap-gtt: - shard-tglu: NOTRUN -> [SKIP][265] ([i915#9732]) +4 other tests skip [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-tglu-10/igt@kms_psr@pr-cursor-mmap-gtt.html * igt@kms_psr@pr-sprite-render: - shard-dg2: NOTRUN -> [SKIP][266] ([i915#1072] / [i915#9673] / [i915#9732]) [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg2-11/igt@kms_psr@pr-sprite-render.html * igt@kms_psr@psr-sprite-mmap-cpu: - shard-dg1: NOTRUN -> [SKIP][267] ([i915#1072] / [i915#9732]) +21 other tests skip [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg1-18/igt@kms_psr@psr-sprite-mmap-cpu.html * igt@kms_psr@psr-sprite-mmap-gtt@edp-1: - shard-mtlp: NOTRUN -> [SKIP][268] ([i915#4077] / [i915#9688]) +1 other test skip [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-mtlp-4/igt@kms_psr@psr-sprite-mmap-gtt@edp-1.html * igt@kms_psr@psr2-primary-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][269] ([i915#1072] / [i915#9732]) +33 other tests skip [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg2-5/igt@kms_psr@psr2-primary-mmap-gtt.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-dg1: NOTRUN -> [SKIP][270] ([i915#9685]) +1 other test skip [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg1-17/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-180: - shard-dg2: NOTRUN -> [SKIP][271] ([i915#5190]) +1 other test skip [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg2-2/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-dg1: NOTRUN -> [SKIP][272] ([i915#5289]) [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg1-17/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-tglu: NOTRUN -> [SKIP][273] ([i915#5289]) [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-tglu-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-dg2: NOTRUN -> [SKIP][274] ([i915#4235] / [i915#5190]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg2-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_rotation_crc@sprite-rotation-270: - shard-snb: NOTRUN -> [SKIP][275] +66 other tests skip [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-snb2/igt@kms_rotation_crc@sprite-rotation-270.html - shard-mtlp: NOTRUN -> [SKIP][276] ([i915#4235]) +1 other test skip [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-mtlp-2/igt@kms_rotation_crc@sprite-rotation-270.html * igt@kms_rotation_crc@sprite-rotation-90-pos-100-0: - shard-dg2: NOTRUN -> [SKIP][277] ([i915#4235]) +3 other tests skip [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg2-5/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html * igt@kms_setmode@invalid-clone-exclusive-crtc: - shard-mtlp: NOTRUN -> [SKIP][278] ([i915#3555] / [i915#8823]) [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-mtlp-8/igt@kms_setmode@invalid-clone-exclusive-crtc.html * igt@kms_setmode@invalid-clone-single-crtc: - shard-mtlp: NOTRUN -> [SKIP][279] ([i915#3555] / [i915#8809]) +1 other test skip [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-mtlp-5/igt@kms_setmode@invalid-clone-single-crtc.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-rkl: NOTRUN -> [SKIP][280] ([i915#8623]) [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-rkl-4/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html - shard-dg2: NOTRUN -> [SKIP][281] ([i915#8623]) [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg2-5/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1: - shard-snb: [PASS][282] -> [FAIL][283] ([i915#9196]) [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7780/shard-snb5/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-snb4/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html * igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1: - shard-tglu: NOTRUN -> [FAIL][284] ([i915#9196]) +2 other tests fail [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-tglu-3/igt@kms_universal_plane@cursor-fb-leak@pipe-d-hdmi-a-1.html * igt@kms_vrr@flip-basic-fastset: - shard-rkl: NOTRUN -> [SKIP][285] ([i915#9906]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-rkl-6/igt@kms_vrr@flip-basic-fastset.html * igt@kms_vrr@flip-dpms: - shard-mtlp: NOTRUN -> [SKIP][286] ([i915#3555] / [i915#8808]) [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-mtlp-4/igt@kms_vrr@flip-dpms.html * igt@kms_writeback@writeback-fb-id: - shard-mtlp: NOTRUN -> [SKIP][287] ([i915#2437]) [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-mtlp-2/igt@kms_writeback@writeback-fb-id.html * igt@kms_writeback@writeback-invalid-parameters: - shard-dg2: NOTRUN -> [SKIP][288] ([i915#2437]) [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg2-10/igt@kms_writeback@writeback-invalid-parameters.html * igt@kms_writeback@writeback-pixel-formats: - shard-glk: NOTRUN -> [SKIP][289] ([i915#2437]) +1 other test skip [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-glk5/igt@kms_writeback@writeback-pixel-formats.html * igt@perf@gen8-unprivileged-single-ctx-counters: - shard-rkl: NOTRUN -> [SKIP][290] ([i915#2436]) [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-rkl-5/igt@perf@gen8-unprivileged-single-ctx-counters.html * igt@perf@global-sseu-config: - shard-mtlp: NOTRUN -> [SKIP][291] ([i915#7387]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-mtlp-1/igt@perf@global-sseu-config.html * igt@perf@global-sseu-config-invalid: - shard-dg2: NOTRUN -> [SKIP][292] ([i915#7387]) [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg2-3/igt@perf@global-sseu-config-invalid.html * igt@perf@mi-rpc: - shard-mtlp: NOTRUN -> [SKIP][293] ([i915#2434] / [i915#7387]) [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-mtlp-5/igt@perf@mi-rpc.html * igt@perf_pmu@frequency@gt0: - shard-dg1: NOTRUN -> [FAIL][294] ([i915#6806]) [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg1-17/igt@perf_pmu@frequency@gt0.html * igt@perf_pmu@module-unload: - shard-dg2: NOTRUN -> [FAIL][295] ([i915#10537] / [i915#5793]) [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg2-7/igt@perf_pmu@module-unload.html * igt@prime_vgem@basic-fence-mmap: - shard-dg2: NOTRUN -> [SKIP][296] ([i915#3708] / [i915#4077]) [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg2-7/igt@prime_vgem@basic-fence-mmap.html * igt@prime_vgem@basic-gtt: - shard-dg1: NOTRUN -> [SKIP][297] ([i915#3708] / [i915#4077]) [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg1-17/igt@prime_vgem@basic-gtt.html * igt@prime_vgem@basic-read: - shard-dg2: NOTRUN -> [SKIP][298] ([i915#3291] / [i915#3708]) [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg2-5/igt@prime_vgem@basic-read.html * igt@prime_vgem@coherency-gtt: - shard-rkl: NOTRUN -> [SKIP][299] ([i915#3708]) [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-rkl-6/igt@prime_vgem@coherency-gtt.html * igt@prime_vgem@fence-read-hang: - shard-mtlp: NOTRUN -> [SKIP][300] ([i915#3708]) +1 other test skip [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-mtlp-5/igt@prime_vgem@fence-read-hang.html * igt@prime_vgem@fence-write-hang: - shard-dg2: NOTRUN -> [SKIP][301] ([i915#3708]) +2 other tests skip [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg2-2/igt@prime_vgem@fence-write-hang.html * igt@runner@aborted: - shard-dg2: NOTRUN -> [FAIL][302] ([i915#10560]) [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg2-10/igt@runner@aborted.html * igt@sriov_basic@bind-unbind-vf: - shard-dg2: NOTRUN -> [SKIP][303] ([i915#9917]) +2 other tests skip [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg2-5/igt@sriov_basic@bind-unbind-vf.html * igt@sriov_basic@enable-vfs-autoprobe-off: - shard-dg1: NOTRUN -> [SKIP][304] ([i915#9917]) +1 other test skip [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg1-17/igt@sriov_basic@enable-vfs-autoprobe-off.html - shard-mtlp: NOTRUN -> [SKIP][305] ([i915#9917]) [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-mtlp-7/igt@sriov_basic@enable-vfs-autoprobe-off.html * igt@syncobj_timeline@invalid-wait-zero-handles: - shard-mtlp: NOTRUN -> [FAIL][306] ([i915#9781]) [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-mtlp-8/igt@syncobj_timeline@invalid-wait-zero-handles.html * igt@syncobj_wait@invalid-wait-zero-handles: - shard-glk: NOTRUN -> [FAIL][307] ([i915#9779]) [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-glk2/igt@syncobj_wait@invalid-wait-zero-handles.html * igt@tools_test@sysfs_l3_parity: - shard-dg1: NOTRUN -> [SKIP][308] ([i915#4818]) [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg1-16/igt@tools_test@sysfs_l3_parity.html * igt@v3d/v3d_get_param@get-bad-flags: - shard-mtlp: NOTRUN -> [SKIP][309] ([i915#2575]) +10 other tests skip [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-mtlp-6/igt@v3d/v3d_get_param@get-bad-flags.html * igt@v3d/v3d_submit_cl@multisync-out-syncs: - shard-dg2: NOTRUN -> [SKIP][310] ([i915#2575]) +16 other tests skip [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg2-6/igt@v3d/v3d_submit_cl@multisync-out-syncs.html * igt@v3d/v3d_submit_cl@single-in-sync: - shard-dg1: NOTRUN -> [SKIP][311] ([i915#2575]) +11 other tests skip [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg1-13/igt@v3d/v3d_submit_cl@single-in-sync.html * igt@vc4/vc4_lookup_fail@bad-color-write: - shard-mtlp: NOTRUN -> [SKIP][312] ([i915#7711]) +9 other tests skip [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-mtlp-7/igt@vc4/vc4_lookup_fail@bad-color-write.html * igt@vc4/vc4_purgeable_bo@mark-unpurgeable-check-retained: - shard-dg2: NOTRUN -> [SKIP][313] ([i915#7711]) +12 other tests skip [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg2-5/igt@vc4/vc4_purgeable_bo@mark-unpurgeable-check-retained.html * igt@vc4/vc4_tiling@set-bad-handle: - shard-rkl: NOTRUN -> [SKIP][314] ([i915#7711]) +7 other tests skip [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-rkl-5/igt@vc4/vc4_tiling@set-bad-handle.html - shard-dg1: NOTRUN -> [SKIP][315] ([i915#7711]) +10 other tests skip [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg1-16/igt@vc4/vc4_tiling@set-bad-handle.html * igt@vc4/vc4_wait_bo@unused-bo-0ns: - shard-tglu: NOTRUN -> [SKIP][316] ([i915#2575]) +5 other tests skip [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-tglu-10/igt@vc4/vc4_wait_bo@unused-bo-0ns.html #### Possible fixes #### * igt@gem_create@create-ext-cpu-access-big: - shard-dg2: [INCOMPLETE][317] ([i915#9364]) -> [PASS][318] [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7780/shard-dg2-11/igt@gem_create@create-ext-cpu-access-big.html [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg2-8/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_exec_fair@basic-deadline: - shard-rkl: [FAIL][319] ([i915#2846]) -> [PASS][320] [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7780/shard-rkl-3/igt@gem_exec_fair@basic-deadline.html [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-rkl-5/igt@gem_exec_fair@basic-deadline.html * igt@gem_exec_fair@basic-none-rrul@rcs0: - shard-rkl: [FAIL][321] ([i915#2842]) -> [PASS][322] [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7780/shard-rkl-5/igt@gem_exec_fair@basic-none-rrul@rcs0.html [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-rkl-6/igt@gem_exec_fair@basic-none-rrul@rcs0.html * igt@gem_exec_params@invalid-bsd1-flag-on-render: - shard-dg1: [DMESG-WARN][323] ([i915#4423]) -> [PASS][324] [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7780/shard-dg1-18/igt@gem_exec_params@invalid-bsd1-flag-on-render.html [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg1-17/igt@gem_exec_params@invalid-bsd1-flag-on-render.html * igt@gem_lmem_swapping@heavy-multi@lmem0: - shard-dg1: [FAIL][325] ([i915#10378]) -> [PASS][326] [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7780/shard-dg1-16/igt@gem_lmem_swapping@heavy-multi@lmem0.html [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg1-13/igt@gem_lmem_swapping@heavy-multi@lmem0.html * igt@gem_lmem_swapping@heavy-verify-multi@lmem0: - shard-dg2: [FAIL][327] ([i915#10378]) -> [PASS][328] [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7780/shard-dg2-10/igt@gem_lmem_swapping@heavy-verify-multi@lmem0.html [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg2-7/igt@gem_lmem_swapping@heavy-verify-multi@lmem0.html * igt@i915_module_load@reload-with-fault-injection: - shard-snb: [INCOMPLETE][329] ([i915#9849]) -> [PASS][330] [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7780/shard-snb5/igt@i915_module_load@reload-with-fault-injection.html [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-snb2/igt@i915_module_load@reload-with-fault-injection.html - shard-mtlp: [ABORT][331] ([i915#10131] / [i915#9820]) -> [PASS][332] [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7780/shard-mtlp-2/igt@i915_module_load@reload-with-fault-injection.html [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-mtlp-7/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_selftest@live@coherency: - shard-glk: [INCOMPLETE][333] -> [PASS][334] [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7780/shard-glk8/igt@i915_selftest@live@coherency.html [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-glk5/igt@i915_selftest@live@coherency.html * igt@i915_selftest@live@gem_contexts: - shard-dg2: [INCOMPLETE][335] -> [PASS][336] [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7780/shard-dg2-2/igt@i915_selftest@live@gem_contexts.html [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg2-10/igt@i915_selftest@live@gem_contexts.html - shard-mtlp: [INCOMPLETE][337] -> [PASS][338] [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7780/shard-mtlp-3/igt@i915_selftest@live@gem_contexts.html [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-mtlp-7/igt@i915_selftest@live@gem_contexts.html * igt@i915_selftest@live@gtt: - shard-dg1: [INCOMPLETE][339] -> [PASS][340] [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7780/shard-dg1-13/igt@i915_selftest@live@gtt.html [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg1-16/igt@i915_selftest@live@gtt.html * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-tglu: [FAIL][341] ([i915#3743]) -> [PASS][342] [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7780/shard-tglu-10/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-tglu-8/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-plflip-blt: - shard-glk: [DMESG-FAIL][343] ([i915#118]) -> [PASS][344] [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7780/shard-glk5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-plflip-blt.html [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-glk8/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-plflip-blt.html * igt@kms_pm_rpm@dpms-mode-unset-lpsp: - shard-rkl: [SKIP][345] ([i915#9519]) -> [PASS][346] [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7780/shard-rkl-3/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-rkl-5/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-dg2: [SKIP][347] ([i915#9519]) -> [PASS][348] +2 other tests pass [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7780/shard-dg2-8/igt@kms_pm_rpm@modeset-non-lpsp-stress.html [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg2-2/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_psr@psr2-dpms@edp-1: - shard-mtlp: [FAIL][349] ([i915#10105]) -> [PASS][350] [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7780/shard-mtlp-5/igt@kms_psr@psr2-dpms@edp-1.html [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-mtlp-5/igt@kms_psr@psr2-dpms@edp-1.html * igt@kms_rotation_crc@sprite-rotation-90-pos-100-0: - shard-rkl: [INCOMPLETE][351] ([i915#8875] / [i915#9569]) -> [PASS][352] [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7780/shard-rkl-1/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-rkl-4/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html * igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-4: - shard-dg1: [FAIL][353] ([i915#9196]) -> [PASS][354] [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7780/shard-dg1-14/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-4.html [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg1-18/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-4.html * igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1: - shard-mtlp: [FAIL][355] ([i915#9196]) -> [PASS][356] [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7780/shard-mtlp-5/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-mtlp-6/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html #### Warnings #### * igt@device_reset@unbind-reset-rebind: - shard-dg1: [INCOMPLETE][357] ([i915#9408] / [i915#9618]) -> [ABORT][358] ([i915#9618]) [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7780/shard-dg1-17/igt@device_reset@unbind-reset-rebind.html [358]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg1-13/igt@device_reset@unbind-reset-rebind.html * igt@gem_eio@unwedge-stress: - shard-dg1: [DMESG-FAIL][359] ([i915#4423]) -> [FAIL][360] ([i915#5784]) [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7780/shard-dg1-18/igt@gem_eio@unwedge-stress.html [360]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg1-16/igt@gem_eio@unwedge-stress.html * igt@gem_exec_fair@basic-pace@rcs0: - shard-rkl: [FAIL][361] ([i915#2842]) -> [FAIL][362] ([i915#2876]) [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7780/shard-rkl-3/igt@gem_exec_fair@basic-pace@rcs0.html [362]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-rkl-1/igt@gem_exec_fair@basic-pace@rcs0.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0: - shard-tglu: [FAIL][363] ([i915#3591]) -> [WARN][364] ([i915#2681]) +1 other test warn [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7780/shard-tglu-10/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html [364]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-tglu-2/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-4: - shard-dg1: [SKIP][365] ([i915#4423] / [i915#6095]) -> [SKIP][366] ([i915#6095]) [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7780/shard-dg1-18/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-4.html [366]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg1-15/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs-cc@pipe-a-hdmi-a-4.html * igt@kms_content_protection@mei-interface: - shard-tglu: [SKIP][367] ([i915#8063]) -> [SKIP][368] ([i915#6944] / [i915#9424]) [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7780/shard-tglu-5/igt@kms_content_protection@mei-interface.html [368]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-tglu-7/igt@kms_content_protection@mei-interface.html * igt@kms_psr@fbc-psr-primary-page-flip: - shard-dg2: [SKIP][369] ([i915#1072] / [i915#9673] / [i915#9732]) -> [SKIP][370] ([i915#1072] / [i915#9732]) +5 other tests skip [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7780/shard-dg2-11/igt@kms_psr@fbc-psr-primary-page-flip.html [370]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg2-7/igt@kms_psr@fbc-psr-primary-page-flip.html * igt@kms_psr@psr2-no-drrs: - shard-dg2: [SKIP][371] ([i915#1072] / [i915#9732]) -> [SKIP][372] ([i915#1072] / [i915#9673] / [i915#9732]) +3 other tests skip [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7780/shard-dg2-2/igt@kms_psr@psr2-no-drrs.html [372]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/shard-dg2-11/igt@kms_psr@psr2-no-drrs.html [i915#10055]: https://gitlab.freedesktop.org/drm/intel/issues/10055 [i915#10083]: https://gitlab.freedesktop.org/drm/intel/issues/10083 [i915#10105]: https://gitlab.freedesktop.org/drm/intel/issues/10105 [i915#10131]: https://gitlab.freedesktop.org/drm/intel/issues/10131 [i915#10139]: https://gitlab.freedesktop.org/drm/intel/issues/10139 [i915#10278]: https://gitlab.freedesktop.org/drm/intel/issues/10278 [i915#10307]: https://gitlab.freedesktop.org/drm/intel/issues/10307 [i915#10378]: https://gitlab.freedesktop.org/drm/intel/issues/10378 [i915#10434]: https://gitlab.freedesktop.org/drm/intel/issues/10434 [i915#10446]: https://gitlab.freedesktop.org/drm/intel/issues/10446 [i915#10537]: https://gitlab.freedesktop.org/drm/intel/issues/10537 [i915#10560]: https://gitlab.freedesktop.org/drm/intel/issues/10560 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099 [i915#118]: https://gitlab.freedesktop.org/drm/intel/issues/118 [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#2065]: https://gitlab.freedesktop.org/drm/intel/issues/2065 [i915#2434]: https://gitlab.freedesktop.org/drm/intel/issues/2434 [i915#2436]: https://gitlab.freedesktop.org/drm/intel/issues/2436 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 [i915#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681 [i915#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#2876]: https://gitlab.freedesktop.org/drm/intel/issues/2876 [i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023 [i915#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116 [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#3361]: https://gitlab.freedesktop.org/drm/intel/issues/3361 [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#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742 [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213 [i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4281]: https://gitlab.freedesktop.org/drm/intel/issues/4281 [i915#4348]: https://gitlab.freedesktop.org/drm/intel/issues/4348 [i915#4423]: https://gitlab.freedesktop.org/drm/intel/issues/4423 [i915#4473]: https://gitlab.freedesktop.org/drm/intel/issues/4473 [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#4573]: https://gitlab.freedesktop.org/drm/intel/issues/4573 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771 [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#4816]: https://gitlab.freedesktop.org/drm/intel/issues/4816 [i915#4818]: https://gitlab.freedesktop.org/drm/intel/issues/4818 [i915#4839]: https://gitlab.freedesktop.org/drm/intel/issues/4839 [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#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#5107]: https://gitlab.freedesktop.org/drm/intel/issues/5107 [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#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439 [i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493 [i915#5723]: https://gitlab.freedesktop.org/drm/intel/issues/5723 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#5793]: https://gitlab.freedesktop.org/drm/intel/issues/5793 [i915#5889]: https://gitlab.freedesktop.org/drm/intel/issues/5889 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6113]: https://gitlab.freedesktop.org/drm/intel/issues/6113 [i915#6118]: https://gitlab.freedesktop.org/drm/intel/issues/6118 [i915#6227]: https://gitlab.freedesktop.org/drm/intel/issues/6227 [i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301 [i915#6335]: https://gitlab.freedesktop.org/drm/intel/issues/6335 [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6805]: https://gitlab.freedesktop.org/drm/intel/issues/6805 [i915#6806]: https://gitlab.freedesktop.org/drm/intel/issues/6806 [i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880 [i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944 [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7173]: https://gitlab.freedesktop.org/drm/intel/issues/7173 [i915#7213]: https://gitlab.freedesktop.org/drm/intel/issues/7213 [i915#7387]: https://gitlab.freedesktop.org/drm/intel/issues/7387 [i915#7707]: https://gitlab.freedesktop.org/drm/intel/issues/7707 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975 [i915#8063]: https://gitlab.freedesktop.org/drm/intel/issues/8063 [i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213 [i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228 [i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381 [i915#8411]: https://gitlab.freedesktop.org/drm/intel/issues/8411 [i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414 [i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428 [i915#8430]: https://gitlab.freedesktop.org/drm/intel/issues/8430 [i915#8431]: https://gitlab.freedesktop.org/drm/intel/issues/8431 [i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555 [i915#8588]: https://gitlab.freedesktop.org/drm/intel/issues/8588 [i915#8623]: https://gitlab.freedesktop.org/drm/intel/issues/8623 [i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708 [i915#8709]: https://gitlab.freedesktop.org/drm/intel/issues/8709 [i915#8806]: https://gitlab.freedesktop.org/drm/intel/issues/8806 [i915#8808]: https://gitlab.freedesktop.org/drm/intel/issues/8808 [i915#8809]: https://gitlab.freedesktop.org/drm/intel/issues/8809 [i915#8812]: https://gitlab.freedesktop.org/drm/intel/issues/8812 [i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814 [i915#8821]: https://gitlab.freedesktop.org/drm/intel/issues/8821 [i915#8823]: https://gitlab.freedesktop.org/drm/intel/issues/8823 [i915#8875]: https://gitlab.freedesktop.org/drm/intel/issues/8875 [i915#8925]: https://gitlab.freedesktop.org/drm/intel/issues/8925 [i915#9010]: https://gitlab.freedesktop.org/drm/intel/issues/9010 [i915#9067]: https://gitlab.freedesktop.org/drm/intel/issues/9067 [i915#9196]: https://gitlab.freedesktop.org/drm/intel/issues/9196 [i915#9227]: https://gitlab.freedesktop.org/drm/intel/issues/9227 [i915#9292]: https://gitlab.freedesktop.org/drm/intel/issues/9292 [i915#9311]: https://gitlab.freedesktop.org/drm/intel/issues/9311 [i915#9318]: https://gitlab.freedesktop.org/drm/intel/issues/9318 [i915#9323]: https://gitlab.freedesktop.org/drm/intel/issues/9323 [i915#9340]: https://gitlab.freedesktop.org/drm/intel/issues/9340 [i915#9364]: https://gitlab.freedesktop.org/drm/intel/issues/9364 [i915#9408]: https://gitlab.freedesktop.org/drm/intel/issues/9408 [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#9569]: https://gitlab.freedesktop.org/drm/intel/issues/9569 [i915#9606]: https://gitlab.freedesktop.org/drm/intel/issues/9606 [i915#9618]: https://gitlab.freedesktop.org/drm/intel/issues/9618 [i915#9673]: https://gitlab.freedesktop.org/drm/intel/issues/9673 [i915#9683]: https://gitlab.freedesktop.org/drm/intel/issues/9683 [i915#9685]: https://gitlab.freedesktop.org/drm/intel/issues/9685 [i915#9688]: https://gitlab.freedesktop.org/drm/intel/issues/9688 [i915#9697]: https://gitlab.freedesktop.org/drm/intel/issues/9697 [i915#9723]: https://gitlab.freedesktop.org/drm/intel/issues/9723 [i915#9728]: https://gitlab.freedesktop.org/drm/intel/issues/9728 [i915#9732]: https://gitlab.freedesktop.org/drm/intel/issues/9732 [i915#9779]: https://gitlab.freedesktop.org/drm/intel/issues/9779 [i915#9781]: https://gitlab.freedesktop.org/drm/intel/issues/9781 [i915#9809]: https://gitlab.freedesktop.org/drm/intel/issues/9809 [i915#9812]: https://gitlab.freedesktop.org/drm/intel/issues/9812 [i915#9820]: https://gitlab.freedesktop.org/drm/intel/issues/9820 [i915#9833]: https://gitlab.freedesktop.org/drm/intel/issues/9833 [i915#9849]: https://gitlab.freedesktop.org/drm/intel/issues/9849 [i915#9906]: https://gitlab.freedesktop.org/drm/intel/issues/9906 [i915#9917]: https://gitlab.freedesktop.org/drm/intel/issues/9917 [i915#9934]: https://gitlab.freedesktop.org/drm/intel/issues/9934 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7780 -> IGTPW_10894 CI-20190529: 20190529 CI_DRM_14475: 093d82c02921344d8d400989af156aaf79b9d961 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_10894: 10894 IGT_7780: 93a5298ac980333738cf75da6b66fa6f3769205f @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10894/index.html [-- Attachment #2: Type: text/html, Size: 121277 bytes --] ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH i-g-t] tests/amd_basic: fix eviction test failure 2024-03-25 6:55 [PATCH i-g-t] tests/amd_basic: fix eviction test failure Jesse Zhang ` (2 preceding siblings ...) 2024-03-25 9:13 ` ✗ Fi.CI.IGT: failure " Patchwork @ 2024-03-25 15:50 ` Kamil Konieczny 3 siblings, 0 replies; 5+ messages in thread From: Kamil Konieczny @ 2024-03-25 15:50 UTC (permalink / raw) To: igt-dev; +Cc: Jesse Zhang, Vitaly Prosyak, Alex Deucher, Christian Koenig Hi Jesse, On 2024-03-25 at 14:55:34 +0800, Jesse Zhang wrote: Please start with some introduction, then present error log. > Test case name:igt@amdgpu/amd_basic@eviction-test-with-ip-dma@eviction_test ^^ Remove spaces/tabs from beginning of log. > Fail error: "Starting subtest: eviction-test-with-IP-DMA > Starting dynamic subtest: eviction_test > (amd_basic:9425) amdgpu/amd_command_submission-CRITICAL: Test assertion failure function amdgpu_test_exec_cs_helper, file ../lib/amdgpu/amd_command_submission.c:77: > (amd_basic:9425) amdgpu/amd_command_submission-CRITICAL: Failed assertion: r == 0 > (amd_basic:9425) amdgpu/amd_command_submission-CRITICAL: Last errno: 12, Cannot allocate memory > (amd_basic:9425) amdgpu/amd_command_submission-CRITICAL: error: -12 != 0 > Dynamic subtest eviction_test failed. > > There is a case where the system size and gtt memory are smaller. > When evicting vram to gtt or system memory, there is not enough gtt or memory system memory available for allocation. > Therefore, try to reduce the use of gtt during initialization to meet the requirements for evicting vram. > > Cc: Vitaly Prosyak <vitaly.prosyak@amd.com> ^^ No spaces before Cc: (here and below). > Cc: Alex Deucher <alexander.deucher@amd.com> > Cc: Christian Koenig <christian.koenig@amd.com> > Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com> > Remove empty line. > Signed-off-by: Jesse Zhang <Jesse.Zhang@amd.com> ^^ No spaces here. Regards, Kamil > --- > tests/amdgpu/amd_basic.c | 16 ++++++++++++---- > 1 file changed, 12 insertions(+), 4 deletions(-) > > diff --git a/tests/amdgpu/amd_basic.c b/tests/amdgpu/amd_basic.c > index 70e45649d..8adb8d696 100644 > --- a/tests/amdgpu/amd_basic.c > +++ b/tests/amdgpu/amd_basic.c > @@ -340,6 +340,7 @@ amdgpu_bo_eviction_test(amdgpu_device_handle device_handle) > uint64_t gtt_flags[2] = {0, AMDGPU_GEM_CREATE_CPU_GTT_USWC}; > > const struct amdgpu_ip_block_version *ip_block = get_ip_block(device_handle, AMDGPU_HW_IP_DMA); > + uint64_t gtt_allocation; > > igt_assert(ip_block); > > @@ -358,6 +359,17 @@ amdgpu_bo_eviction_test(amdgpu_device_handle device_handle) > 0, &vram_info); > igt_assert_eq(r, 0); > > + r = amdgpu_query_heap_info(device_handle, AMDGPU_GEM_DOMAIN_GTT, > + 0, >t_info); > + igt_assert_eq(r, 0); > + > + /* For smaller gtt memory sizes, reduce gtt usage on initialization > + * to satisfy eviction vram requirements */ > + if (gtt_info.heap_size - gtt_info.max_allocation < vram_info.max_allocation) > + gtt_allocation = gtt_info.max_allocation/3; > + else > + gtt_allocation = gtt_info.max_allocation; > + > r = amdgpu_bo_alloc_wrap(device_handle, vram_info.max_allocation, 4096, > AMDGPU_GEM_DOMAIN_VRAM, 0, &ring_context->boa_vram[0]); > igt_assert_eq(r, 0); > @@ -365,10 +377,6 @@ amdgpu_bo_eviction_test(amdgpu_device_handle device_handle) > AMDGPU_GEM_DOMAIN_VRAM, 0, &ring_context->boa_vram[1]); > igt_assert_eq(r, 0); > > - r = amdgpu_query_heap_info(device_handle, AMDGPU_GEM_DOMAIN_GTT, > - 0, >t_info); > - igt_assert_eq(r, 0); > - > r = amdgpu_bo_alloc_wrap(device_handle, gtt_info.max_allocation, 4096, > AMDGPU_GEM_DOMAIN_GTT, 0, &ring_context->boa_gtt[0]); > igt_assert_eq(r, 0); > -- > 2.25.1 > ^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2024-03-25 15:50 UTC | newest] Thread overview: 5+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-03-25 6:55 [PATCH i-g-t] tests/amd_basic: fix eviction test failure Jesse Zhang 2024-03-25 7:49 ` ✓ CI.xeBAT: success for " Patchwork 2024-03-25 7:59 ` ✓ Fi.CI.BAT: " Patchwork 2024-03-25 9:13 ` ✗ Fi.CI.IGT: failure " Patchwork 2024-03-25 15:50 ` [PATCH i-g-t] " Kamil Konieczny
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox