* [PATCH i-g-t V3] tests/amd_basic:fix eviction test failure
@ 2024-03-26 2:34 Jesse Zhang
2024-03-26 2:38 ` vitaly prosyak
` (4 more replies)
0 siblings, 5 replies; 7+ messages in thread
From: Jesse Zhang @ 2024-03-26 2:34 UTC (permalink / raw)
To: igt-dev
Cc: Vitaly Prosyak, Alex Deucher, Christian Koenig, Jesse Zhang,
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.
V3: Provided an example in the code of exactly the numeric number (Vitaly)
Remove the space and empty line (Kamil)
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 | 18 ++++++++++++++----
1 file changed, 14 insertions(+), 4 deletions(-)
diff --git a/tests/amdgpu/amd_basic.c b/tests/amdgpu/amd_basic.c
index 70e45649d..8819b9cd4 100644
--- a/tests/amdgpu/amd_basic.c
+++ b/tests/amdgpu/amd_basic.c
@@ -358,6 +358,20 @@ 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. Example:
+ * gtt_info.heap_size 3036569600, gtt_info.max_allocation 2114244608 gtt_info.heap_usage 12845056
+ * gtt_info.heap_size 2895 mb, gtt_info.max_allocation 2016 mb gtt_info.heap_usage 12 mb
+ * vram_info.heap_size 2114244608, vram_info.max_allocation 2114244608 vram_info.heap_usage 26951680
+ * vram_info.heap_size 2016 mb, vram_info.max_allocation 2016 mb vram_info.heap_usage 25 mb
+ */
+ if (gtt_info.heap_size - gtt_info.max_allocation < vram_info.max_allocation)
+ gtt_info.max_allocation /=3;
+
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 +379,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] 7+ messages in thread* Re: [PATCH i-g-t V3] tests/amd_basic:fix eviction test failure 2024-03-26 2:34 [PATCH i-g-t V3] tests/amd_basic:fix eviction test failure Jesse Zhang @ 2024-03-26 2:38 ` vitaly prosyak 2024-03-26 3:30 ` ✓ CI.xeBAT: success for " Patchwork ` (3 subsequent siblings) 4 siblings, 0 replies; 7+ messages in thread From: vitaly prosyak @ 2024-03-26 2:38 UTC (permalink / raw) To: Jesse Zhang, igt-dev Cc: Vitaly Prosyak, Alex Deucher, Christian Koenig, Kamil Konieczny The change looks good to me. Reviewed-by: Vitaly Prosyak <vitaly.prosyak@amd.com> On 2024-03-25 22:34, Jesse Zhang wrote: > 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. > > V3: Provided an example in the code of exactly the numeric number (Vitaly) > Remove the space and empty line (Kamil) > > 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 | 18 ++++++++++++++---- > 1 file changed, 14 insertions(+), 4 deletions(-) > > diff --git a/tests/amdgpu/amd_basic.c b/tests/amdgpu/amd_basic.c > index 70e45649d..8819b9cd4 100644 > --- a/tests/amdgpu/amd_basic.c > +++ b/tests/amdgpu/amd_basic.c > @@ -358,6 +358,20 @@ 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. Example: > + * gtt_info.heap_size 3036569600, gtt_info.max_allocation 2114244608 gtt_info.heap_usage 12845056 > + * gtt_info.heap_size 2895 mb, gtt_info.max_allocation 2016 mb gtt_info.heap_usage 12 mb > + * vram_info.heap_size 2114244608, vram_info.max_allocation 2114244608 vram_info.heap_usage 26951680 > + * vram_info.heap_size 2016 mb, vram_info.max_allocation 2016 mb vram_info.heap_usage 25 mb > + */ > + if (gtt_info.heap_size - gtt_info.max_allocation < vram_info.max_allocation) > + gtt_info.max_allocation /=3; > + > 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 +379,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); ^ permalink raw reply [flat|nested] 7+ messages in thread
* ✓ CI.xeBAT: success for tests/amd_basic:fix eviction test failure 2024-03-26 2:34 [PATCH i-g-t V3] tests/amd_basic:fix eviction test failure Jesse Zhang 2024-03-26 2:38 ` vitaly prosyak @ 2024-03-26 3:30 ` Patchwork 2024-03-26 3:39 ` ✓ Fi.CI.BAT: " Patchwork ` (2 subsequent siblings) 4 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2024-03-26 3:30 UTC (permalink / raw) To: Jesse Zhang; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 1068 bytes --] == Series Details == Series: tests/amd_basic:fix eviction test failure URL : https://patchwork.freedesktop.org/series/131614/ State : success == Summary == CI Bug Log - changes from XEIGT_7782_BAT -> XEIGTPW_10912_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (4 -> 2) ------------------------------ Missing (2): bat-dg2-oem2 bat-adlp-7 Changes ------- No changes found Build changes ------------- * IGT: IGT_7782 -> IGTPW_10912 * Linux: xe-988-d1ecfbbbb194e8f7941bd84f77f7c938b461ce14 -> xe-991-4a8fabcf2f1aadbbb777a94edd01549c2aa95caf IGTPW_10912: 10912 IGT_7782: a404f73182948e843640d00cc279883391cf6ef4 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-988-d1ecfbbbb194e8f7941bd84f77f7c938b461ce14: d1ecfbbbb194e8f7941bd84f77f7c938b461ce14 xe-991-4a8fabcf2f1aadbbb777a94edd01549c2aa95caf: 4a8fabcf2f1aadbbb777a94edd01549c2aa95caf == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10912/index.html [-- Attachment #2: Type: text/html, Size: 1627 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* ✓ Fi.CI.BAT: success for tests/amd_basic:fix eviction test failure 2024-03-26 2:34 [PATCH i-g-t V3] tests/amd_basic:fix eviction test failure Jesse Zhang 2024-03-26 2:38 ` vitaly prosyak 2024-03-26 3:30 ` ✓ CI.xeBAT: success for " Patchwork @ 2024-03-26 3:39 ` Patchwork 2024-03-26 11:19 ` [PATCH i-g-t V3] " Kamil Konieczny 2024-03-27 1:26 ` ✗ Fi.CI.IGT: failure for " Patchwork 4 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2024-03-26 3:39 UTC (permalink / raw) To: Jesse Zhang; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 6018 bytes --] == Series Details == Series: tests/amd_basic:fix eviction test failure URL : https://patchwork.freedesktop.org/series/131614/ State : success == Summary == CI Bug Log - changes from CI_DRM_14482 -> IGTPW_10912 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/index.html Participating hosts (37 -> 33) ------------------------------ Additional (1): bat-arls-4 Missing (5): bat-kbl-2 fi-snb-2520m fi-kbl-8809g fi-bsw-nick bat-jsl-1 Known issues ------------ Here are the changes found in IGTPW_10912 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_huc_copy@huc-copy: - fi-cfl-8109u: NOTRUN -> [SKIP][1] ([i915#2190]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/fi-cfl-8109u/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@basic@lmem0: - bat-dg2-11: [PASS][2] -> [FAIL][3] ([i915#10378]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14482/bat-dg2-11/igt@gem_lmem_swapping@basic@lmem0.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/bat-dg2-11/igt@gem_lmem_swapping@basic@lmem0.html * igt@gem_lmem_swapping@verify-random: - fi-cfl-8109u: NOTRUN -> [SKIP][4] ([i915#4613]) +3 other tests skip [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/fi-cfl-8109u/igt@gem_lmem_swapping@verify-random.html * igt@kms_pm_backlight@basic-brightness: - fi-cfl-8109u: NOTRUN -> [SKIP][5] +11 other tests skip [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/fi-cfl-8109u/igt@kms_pm_backlight@basic-brightness.html #### Possible fixes #### * igt@gem_lmem_swapping@basic@lmem0: - bat-dg2-14: [FAIL][6] ([i915#10378]) -> [PASS][7] [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14482/bat-dg2-14/igt@gem_lmem_swapping@basic@lmem0.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/bat-dg2-14/igt@gem_lmem_swapping@basic@lmem0.html * igt@i915_selftest@live@execlists: - bat-dg2-14: [ABORT][8] ([i915#10366]) -> [PASS][9] [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14482/bat-dg2-14/igt@i915_selftest@live@execlists.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/bat-dg2-14/igt@i915_selftest@live@execlists.html * igt@i915_selftest@live@gt_pm: - bat-dg2-9: [ABORT][10] ([i915#10366]) -> [PASS][11] [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14482/bat-dg2-9/igt@i915_selftest@live@gt_pm.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/bat-dg2-9/igt@i915_selftest@live@gt_pm.html * igt@i915_selftest@live@mman: - bat-dg2-8: [ABORT][12] ([i915#10366]) -> [PASS][13] [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14482/bat-dg2-8/igt@i915_selftest@live@mman.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/bat-dg2-8/igt@i915_selftest@live@mman.html #### Warnings #### * igt@i915_module_load@load: - fi-kbl-7567u: [DMESG-WARN][14] ([i915#180] / [i915#1982] / [i915#8585]) -> [DMESG-WARN][15] ([i915#180] / [i915#8585]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14482/fi-kbl-7567u/igt@i915_module_load@load.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/fi-kbl-7567u/igt@i915_module_load@load.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [i915#10196]: https://gitlab.freedesktop.org/drm/intel/issues/10196 [i915#10197]: https://gitlab.freedesktop.org/drm/intel/issues/10197 [i915#10200]: https://gitlab.freedesktop.org/drm/intel/issues/10200 [i915#10202]: https://gitlab.freedesktop.org/drm/intel/issues/10202 [i915#10206]: https://gitlab.freedesktop.org/drm/intel/issues/10206 [i915#10207]: https://gitlab.freedesktop.org/drm/intel/issues/10207 [i915#10208]: https://gitlab.freedesktop.org/drm/intel/issues/10208 [i915#10209]: https://gitlab.freedesktop.org/drm/intel/issues/10209 [i915#10211]: https://gitlab.freedesktop.org/drm/intel/issues/10211 [i915#10212]: https://gitlab.freedesktop.org/drm/intel/issues/10212 [i915#10213]: https://gitlab.freedesktop.org/drm/intel/issues/10213 [i915#10214]: https://gitlab.freedesktop.org/drm/intel/issues/10214 [i915#10216]: https://gitlab.freedesktop.org/drm/intel/issues/10216 [i915#10366]: https://gitlab.freedesktop.org/drm/intel/issues/10366 [i915#10378]: https://gitlab.freedesktop.org/drm/intel/issues/10378 [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180 [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#8585]: https://gitlab.freedesktop.org/drm/intel/issues/8585 [i915#8809]: https://gitlab.freedesktop.org/drm/intel/issues/8809 [i915#9318]: https://gitlab.freedesktop.org/drm/intel/issues/9318 [i915#9732]: https://gitlab.freedesktop.org/drm/intel/issues/9732 [i915#9812]: https://gitlab.freedesktop.org/drm/intel/issues/9812 [i915#9886]: https://gitlab.freedesktop.org/drm/intel/issues/9886 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7782 -> IGTPW_10912 CI-20190529: 20190529 CI_DRM_14482: 4a8fabcf2f1aadbbb777a94edd01549c2aa95caf @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_10912: 10912 IGT_7782: a404f73182948e843640d00cc279883391cf6ef4 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/index.html [-- Attachment #2: Type: text/html, Size: 5660 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH i-g-t V3] tests/amd_basic:fix eviction test failure 2024-03-26 2:34 [PATCH i-g-t V3] tests/amd_basic:fix eviction test failure Jesse Zhang ` (2 preceding siblings ...) 2024-03-26 3:39 ` ✓ Fi.CI.BAT: " Patchwork @ 2024-03-26 11:19 ` Kamil Konieczny 2024-03-27 3:29 ` vitaly prosyak 2024-03-27 1:26 ` ✗ Fi.CI.IGT: failure for " Patchwork 4 siblings, 1 reply; 7+ messages in thread From: Kamil Konieczny @ 2024-03-26 11:19 UTC (permalink / raw) To: igt-dev; +Cc: Jesse Zhang, Vitaly Prosyak, Alex Deucher, Christian Koenig Hi Jesse, On 2024-03-26 at 10:34:40 +0800, Jesse Zhang wrote: small nit to subject, please add space after ':', see [PATCH i-g-t V3] tests/amd_basic:fix eviction test failure --------------------------------^ This should be tests/amd_basic: fix eviction test failure Btw this can be done during merge. Regards, Kamil > 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. > > V3: Provided an example in the code of exactly the numeric number (Vitaly) > Remove the space and empty line (Kamil) > > 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 | 18 ++++++++++++++---- > 1 file changed, 14 insertions(+), 4 deletions(-) > > diff --git a/tests/amdgpu/amd_basic.c b/tests/amdgpu/amd_basic.c > index 70e45649d..8819b9cd4 100644 > --- a/tests/amdgpu/amd_basic.c > +++ b/tests/amdgpu/amd_basic.c > @@ -358,6 +358,20 @@ 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. Example: > + * gtt_info.heap_size 3036569600, gtt_info.max_allocation 2114244608 gtt_info.heap_usage 12845056 > + * gtt_info.heap_size 2895 mb, gtt_info.max_allocation 2016 mb gtt_info.heap_usage 12 mb > + * vram_info.heap_size 2114244608, vram_info.max_allocation 2114244608 vram_info.heap_usage 26951680 > + * vram_info.heap_size 2016 mb, vram_info.max_allocation 2016 mb vram_info.heap_usage 25 mb > + */ > + if (gtt_info.heap_size - gtt_info.max_allocation < vram_info.max_allocation) > + gtt_info.max_allocation /=3; > + > 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 +379,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] 7+ messages in thread
* Re: [PATCH i-g-t V3] tests/amd_basic:fix eviction test failure 2024-03-26 11:19 ` [PATCH i-g-t V3] " Kamil Konieczny @ 2024-03-27 3:29 ` vitaly prosyak 0 siblings, 0 replies; 7+ messages in thread From: vitaly prosyak @ 2024-03-27 3:29 UTC (permalink / raw) To: Kamil Konieczny, igt-dev, Jesse Zhang, Vitaly Prosyak, Alex Deucher, Christian Koenig Thanks a lot, Kamil, for merging this change and making the appropriate necessary corrections! Regards, Vitaly On 2024-03-26 07:19, Kamil Konieczny wrote: > Hi Jesse, > On 2024-03-26 at 10:34:40 +0800, Jesse Zhang wrote: > > small nit to subject, please add space after ':', see > > [PATCH i-g-t V3] tests/amd_basic:fix eviction test failure > --------------------------------^ > > This should be > > tests/amd_basic: fix eviction test failure > > Btw this can be done during merge. > > Regards, > Kamil > >> 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. >> >> V3: Provided an example in the code of exactly the numeric number (Vitaly) >> Remove the space and empty line (Kamil) >> >> 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 | 18 ++++++++++++++---- >> 1 file changed, 14 insertions(+), 4 deletions(-) >> >> diff --git a/tests/amdgpu/amd_basic.c b/tests/amdgpu/amd_basic.c >> index 70e45649d..8819b9cd4 100644 >> --- a/tests/amdgpu/amd_basic.c >> +++ b/tests/amdgpu/amd_basic.c >> @@ -358,6 +358,20 @@ 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. Example: >> + * gtt_info.heap_size 3036569600, gtt_info.max_allocation 2114244608 gtt_info.heap_usage 12845056 >> + * gtt_info.heap_size 2895 mb, gtt_info.max_allocation 2016 mb gtt_info.heap_usage 12 mb >> + * vram_info.heap_size 2114244608, vram_info.max_allocation 2114244608 vram_info.heap_usage 26951680 >> + * vram_info.heap_size 2016 mb, vram_info.max_allocation 2016 mb vram_info.heap_usage 25 mb >> + */ >> + if (gtt_info.heap_size - gtt_info.max_allocation < vram_info.max_allocation) >> + gtt_info.max_allocation /=3; >> + >> 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 +379,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] 7+ messages in thread
* ✗ Fi.CI.IGT: failure for tests/amd_basic:fix eviction test failure 2024-03-26 2:34 [PATCH i-g-t V3] tests/amd_basic:fix eviction test failure Jesse Zhang ` (3 preceding siblings ...) 2024-03-26 11:19 ` [PATCH i-g-t V3] " Kamil Konieczny @ 2024-03-27 1:26 ` Patchwork 4 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2024-03-27 1:26 UTC (permalink / raw) To: Jesse Zhang; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 99087 bytes --] == Series Details == Series: tests/amd_basic:fix eviction test failure URL : https://patchwork.freedesktop.org/series/131614/ State : failure == Summary == CI Bug Log - changes from CI_DRM_14482_full -> IGTPW_10912_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_10912_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_10912_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_10912/index.html Participating hosts (10 -> 9) ------------------------------ Missing (1): shard-snb-0 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_10912_full: ### IGT changes ### #### Possible regressions #### * igt@i915_selftest@live@active: - shard-glk: NOTRUN -> [DMESG-FAIL][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-glk8/igt@i915_selftest@live@active.html * igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-hdmi-a4: - shard-dg1: [PASS][2] -> [FAIL][3] [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14482/shard-dg1-16/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-hdmi-a4.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg1-17/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible@a-hdmi-a4.html Known issues ------------ Here are the changes found in IGTPW_10912_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-reloc-purge-cache: - shard-dg1: NOTRUN -> [SKIP][4] ([i915#8411]) +1 other test skip [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg1-15/igt@api_intel_bb@blit-reloc-purge-cache.html * igt@api_intel_bb@object-reloc-keep-cache: - shard-mtlp: NOTRUN -> [SKIP][5] ([i915#8411]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-mtlp-7/igt@api_intel_bb@object-reloc-keep-cache.html * igt@api_intel_bb@object-reloc-purge-cache: - shard-dg2: NOTRUN -> [SKIP][6] ([i915#8411]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg2-11/igt@api_intel_bb@object-reloc-purge-cache.html * igt@device_reset@cold-reset-bound: - shard-dg1: NOTRUN -> [SKIP][7] ([i915#7701]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg1-15/igt@device_reset@cold-reset-bound.html * igt@device_reset@unbind-cold-reset-rebind: - shard-rkl: NOTRUN -> [SKIP][8] ([i915#7701]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-rkl-2/igt@device_reset@unbind-cold-reset-rebind.html * igt@drm_fdinfo@all-busy-check-all: - shard-dg2: NOTRUN -> [SKIP][9] ([i915#8414]) +2 other tests skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg2-7/igt@drm_fdinfo@all-busy-check-all.html * igt@drm_fdinfo@idle@rcs0: - shard-rkl: [PASS][10] -> [FAIL][11] ([i915#7742]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14482/shard-rkl-5/igt@drm_fdinfo@idle@rcs0.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-rkl-3/igt@drm_fdinfo@idle@rcs0.html * igt@drm_fdinfo@isolation@vecs0: - shard-dg1: NOTRUN -> [SKIP][12] ([i915#8414]) +7 other tests skip [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg1-16/igt@drm_fdinfo@isolation@vecs0.html * igt@drm_fdinfo@virtual-busy-idle: - shard-mtlp: NOTRUN -> [SKIP][13] ([i915#8414]) +7 other tests skip [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-mtlp-4/igt@drm_fdinfo@virtual-busy-idle.html * igt@gem_basic@multigpu-create-close: - shard-dg2: NOTRUN -> [SKIP][14] ([i915#7697]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg2-11/igt@gem_basic@multigpu-create-close.html * igt@gem_ccs@block-multicopy-inplace: - shard-rkl: NOTRUN -> [SKIP][15] ([i915#3555] / [i915#9323]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-rkl-4/igt@gem_ccs@block-multicopy-inplace.html * igt@gem_ccs@ctrl-surf-copy: - shard-mtlp: NOTRUN -> [SKIP][16] ([i915#3555] / [i915#9323]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-mtlp-1/igt@gem_ccs@ctrl-surf-copy.html - shard-dg1: NOTRUN -> [SKIP][17] ([i915#3555] / [i915#9323]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg1-15/igt@gem_ccs@ctrl-surf-copy.html * igt@gem_close_race@multigpu-basic-threads: - shard-rkl: NOTRUN -> [SKIP][18] ([i915#7697]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-rkl-5/igt@gem_close_race@multigpu-basic-threads.html - shard-dg1: NOTRUN -> [SKIP][19] ([i915#7697]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg1-15/igt@gem_close_race@multigpu-basic-threads.html * igt@gem_create@create-ext-set-pat: - shard-rkl: NOTRUN -> [SKIP][20] ([i915#8562]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-rkl-4/igt@gem_create@create-ext-set-pat.html - shard-dg1: NOTRUN -> [SKIP][21] ([i915#8562]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg1-17/igt@gem_create@create-ext-set-pat.html * igt@gem_ctx_exec@basic-nohangcheck: - shard-rkl: NOTRUN -> [FAIL][22] ([i915#6268]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-rkl-3/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_ctx_persistence@process: - shard-snb: NOTRUN -> [SKIP][23] ([i915#1099]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-snb6/igt@gem_ctx_persistence@process.html * igt@gem_ctx_sseu@mmap-args: - shard-rkl: NOTRUN -> [SKIP][24] ([i915#280]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-rkl-6/igt@gem_ctx_sseu@mmap-args.html - shard-dg1: NOTRUN -> [SKIP][25] ([i915#280]) +1 other test skip [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg1-15/igt@gem_ctx_sseu@mmap-args.html * igt@gem_eio@unwedge-stress: - shard-snb: NOTRUN -> [FAIL][26] ([i915#8898]) +1 other test fail [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-snb7/igt@gem_eio@unwedge-stress.html * igt@gem_exec_balancer@bonded-false-hang: - shard-dg2: NOTRUN -> [SKIP][27] ([i915#4812]) +2 other tests skip [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg2-6/igt@gem_exec_balancer@bonded-false-hang.html - shard-dg1: NOTRUN -> [SKIP][28] ([i915#4812]) +2 other tests skip [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg1-16/igt@gem_exec_balancer@bonded-false-hang.html - shard-mtlp: NOTRUN -> [SKIP][29] ([i915#4812]) +1 other test skip [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-mtlp-4/igt@gem_exec_balancer@bonded-false-hang.html * igt@gem_exec_balancer@bonded-sync: - shard-dg1: NOTRUN -> [SKIP][30] ([i915#4771]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg1-16/igt@gem_exec_balancer@bonded-sync.html * igt@gem_exec_balancer@noheartbeat: - shard-dg1: NOTRUN -> [SKIP][31] ([i915#8555]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg1-15/igt@gem_exec_balancer@noheartbeat.html - shard-mtlp: NOTRUN -> [SKIP][32] ([i915#8555]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-mtlp-1/igt@gem_exec_balancer@noheartbeat.html * igt@gem_exec_balancer@parallel-out-fence: - shard-rkl: NOTRUN -> [SKIP][33] ([i915#4525]) +1 other test skip [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-rkl-3/igt@gem_exec_balancer@parallel-out-fence.html * igt@gem_exec_capture@capture-invisible@lmem0: - shard-dg2: NOTRUN -> [SKIP][34] ([i915#6334]) +1 other test skip [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg2-8/igt@gem_exec_capture@capture-invisible@lmem0.html * igt@gem_exec_capture@many-4k-incremental: - shard-glk: NOTRUN -> [FAIL][35] ([i915#9606]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-glk5/igt@gem_exec_capture@many-4k-incremental.html - shard-dg2: NOTRUN -> [FAIL][36] ([i915#9606]) +1 other test fail [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg2-6/igt@gem_exec_capture@many-4k-incremental.html * igt@gem_exec_capture@many-4k-zero: - shard-dg1: NOTRUN -> [FAIL][37] ([i915#9606]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg1-17/igt@gem_exec_capture@many-4k-zero.html - shard-mtlp: NOTRUN -> [FAIL][38] ([i915#9606]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-mtlp-6/igt@gem_exec_capture@many-4k-zero.html * igt@gem_exec_fair@basic-deadline: - shard-dg1: NOTRUN -> [SKIP][39] ([i915#3539] / [i915#4852]) +2 other tests skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg1-16/igt@gem_exec_fair@basic-deadline.html - shard-glk: NOTRUN -> [FAIL][40] ([i915#2846]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-glk1/igt@gem_exec_fair@basic-deadline.html * igt@gem_exec_fair@basic-none-share: - shard-mtlp: NOTRUN -> [SKIP][41] ([i915#4473] / [i915#4771]) +2 other tests skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-mtlp-5/igt@gem_exec_fair@basic-none-share.html * igt@gem_exec_fair@basic-pace@vecs0: - shard-rkl: NOTRUN -> [FAIL][42] ([i915#2842]) +2 other tests fail [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-rkl-3/igt@gem_exec_fair@basic-pace@vecs0.html * igt@gem_exec_fair@basic-throttle: - shard-dg2: NOTRUN -> [SKIP][43] ([i915#3539]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg2-6/igt@gem_exec_fair@basic-throttle.html - shard-dg1: NOTRUN -> [SKIP][44] ([i915#3539]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg1-15/igt@gem_exec_fair@basic-throttle.html * igt@gem_exec_fair@basic-throttle@rcs0: - shard-glk: NOTRUN -> [FAIL][45] ([i915#2842]) +4 other tests fail [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-glk8/igt@gem_exec_fair@basic-throttle@rcs0.html * igt@gem_exec_flush@basic-uc-ro-default: - shard-dg2: NOTRUN -> [SKIP][46] ([i915#3539] / [i915#4852]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg2-1/igt@gem_exec_flush@basic-uc-ro-default.html * igt@gem_exec_params@rsvd2-dirt: - shard-mtlp: NOTRUN -> [SKIP][47] ([i915#5107]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-mtlp-3/igt@gem_exec_params@rsvd2-dirt.html - shard-dg2: NOTRUN -> [SKIP][48] ([i915#5107]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg2-8/igt@gem_exec_params@rsvd2-dirt.html * igt@gem_exec_reloc@basic-gtt: - shard-dg2: NOTRUN -> [SKIP][49] ([i915#3281]) +7 other tests skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg2-8/igt@gem_exec_reloc@basic-gtt.html * igt@gem_exec_reloc@basic-gtt-read-noreloc: - shard-rkl: NOTRUN -> [SKIP][50] ([i915#3281]) +17 other tests skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-rkl-2/igt@gem_exec_reloc@basic-gtt-read-noreloc.html * igt@gem_exec_reloc@basic-wc-gtt: - shard-mtlp: NOTRUN -> [SKIP][51] ([i915#3281]) +7 other tests skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-mtlp-1/igt@gem_exec_reloc@basic-wc-gtt.html * igt@gem_exec_reloc@basic-wc-read-active: - shard-dg1: NOTRUN -> [SKIP][52] ([i915#3281]) +13 other tests skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg1-18/igt@gem_exec_reloc@basic-wc-read-active.html * igt@gem_exec_schedule@preempt-queue-chain: - shard-dg2: NOTRUN -> [SKIP][53] ([i915#4537] / [i915#4812]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg2-10/igt@gem_exec_schedule@preempt-queue-chain.html * igt@gem_exec_schedule@semaphore-power: - shard-mtlp: NOTRUN -> [SKIP][54] ([i915#4537] / [i915#4812]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-mtlp-5/igt@gem_exec_schedule@semaphore-power.html * igt@gem_fence_thrash@bo-copy: - shard-dg2: NOTRUN -> [SKIP][55] ([i915#4860]) +2 other tests skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg2-7/igt@gem_fence_thrash@bo-copy.html * igt@gem_fenced_exec_thrash@no-spare-fences: - shard-mtlp: NOTRUN -> [SKIP][56] ([i915#4860]) +1 other test skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-mtlp-8/igt@gem_fenced_exec_thrash@no-spare-fences.html * igt@gem_fenced_exec_thrash@no-spare-fences-busy: - shard-dg1: NOTRUN -> [SKIP][57] ([i915#4860]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg1-15/igt@gem_fenced_exec_thrash@no-spare-fences-busy.html * igt@gem_huc_copy@huc-copy: - shard-glk: NOTRUN -> [SKIP][58] ([i915#2190]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-glk5/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_evict@dontneed-evict-race: - shard-rkl: NOTRUN -> [SKIP][59] ([i915#4613] / [i915#7582]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-rkl-3/igt@gem_lmem_evict@dontneed-evict-race.html * igt@gem_lmem_swapping@heavy-verify-multi@lmem0: - shard-dg1: NOTRUN -> [FAIL][60] ([i915#10378]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg1-17/igt@gem_lmem_swapping@heavy-verify-multi@lmem0.html - shard-dg2: NOTRUN -> [FAIL][61] ([i915#10378]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg2-8/igt@gem_lmem_swapping@heavy-verify-multi@lmem0.html * igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0: - shard-dg1: NOTRUN -> [SKIP][62] ([i915#4565]) +1 other test skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg1-16/igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0.html * igt@gem_lmem_swapping@parallel-random-engines: - shard-tglu: NOTRUN -> [SKIP][63] ([i915#4613]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-tglu-3/igt@gem_lmem_swapping@parallel-random-engines.html * igt@gem_lmem_swapping@parallel-random-verify-ccs: - shard-glk: NOTRUN -> [SKIP][64] ([i915#4613]) +7 other tests skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-glk8/igt@gem_lmem_swapping@parallel-random-verify-ccs.html * igt@gem_lmem_swapping@random: - shard-mtlp: NOTRUN -> [SKIP][65] ([i915#4613]) +3 other tests skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-mtlp-5/igt@gem_lmem_swapping@random.html * igt@gem_lmem_swapping@verify-random: - shard-rkl: NOTRUN -> [SKIP][66] ([i915#4613]) +5 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-rkl-5/igt@gem_lmem_swapping@verify-random.html * igt@gem_media_vme: - shard-mtlp: NOTRUN -> [SKIP][67] ([i915#284]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-mtlp-7/igt@gem_media_vme.html - shard-dg2: NOTRUN -> [SKIP][68] ([i915#284]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg2-11/igt@gem_media_vme.html - shard-rkl: NOTRUN -> [SKIP][69] ([i915#284]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-rkl-4/igt@gem_media_vme.html - shard-dg1: NOTRUN -> [SKIP][70] ([i915#284]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg1-18/igt@gem_media_vme.html * igt@gem_mmap@big-bo: - shard-mtlp: NOTRUN -> [SKIP][71] ([i915#4083]) +3 other tests skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-mtlp-4/igt@gem_mmap@big-bo.html * igt@gem_mmap_gtt@basic-small-copy-odd: - shard-mtlp: NOTRUN -> [SKIP][72] ([i915#4077]) +6 other tests skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-mtlp-4/igt@gem_mmap_gtt@basic-small-copy-odd.html * igt@gem_mmap_gtt@flink-race: - shard-dg1: NOTRUN -> [SKIP][73] ([i915#4077]) +10 other tests skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg1-15/igt@gem_mmap_gtt@flink-race.html * igt@gem_mmap_wc@read-write-distinct: - shard-dg1: NOTRUN -> [SKIP][74] ([i915#4083]) +4 other tests skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg1-18/igt@gem_mmap_wc@read-write-distinct.html * igt@gem_mmap_wc@write-prefaulted: - shard-dg2: NOTRUN -> [SKIP][75] ([i915#4083]) +5 other tests skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg2-8/igt@gem_mmap_wc@write-prefaulted.html * igt@gem_partial_pwrite_pread@write: - shard-dg2: NOTRUN -> [SKIP][76] ([i915#3282]) +2 other tests skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg2-6/igt@gem_partial_pwrite_pread@write.html * igt@gem_partial_pwrite_pread@write-snoop: - shard-mtlp: NOTRUN -> [SKIP][77] ([i915#3282]) +1 other test skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-mtlp-7/igt@gem_partial_pwrite_pread@write-snoop.html * igt@gem_partial_pwrite_pread@writes-after-reads: - shard-dg1: NOTRUN -> [SKIP][78] ([i915#3282]) +9 other tests skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg1-18/igt@gem_partial_pwrite_pread@writes-after-reads.html * igt@gem_pwrite@basic-exhaustion: - shard-rkl: NOTRUN -> [SKIP][79] ([i915#3282]) +12 other tests skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-rkl-4/igt@gem_pwrite@basic-exhaustion.html - shard-snb: NOTRUN -> [WARN][80] ([i915#2658]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-snb2/igt@gem_pwrite@basic-exhaustion.html * igt@gem_pxp@create-protected-buffer: - shard-dg1: NOTRUN -> [SKIP][81] ([i915#4270]) +3 other tests skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg1-18/igt@gem_pxp@create-protected-buffer.html * igt@gem_pxp@create-regular-context-1: - shard-mtlp: NOTRUN -> [SKIP][82] ([i915#4270]) +3 other tests skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-mtlp-7/igt@gem_pxp@create-regular-context-1.html * igt@gem_pxp@protected-encrypted-src-copy-not-readible: - shard-rkl: NOTRUN -> [SKIP][83] ([i915#4270]) +5 other tests skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-rkl-3/igt@gem_pxp@protected-encrypted-src-copy-not-readible.html * igt@gem_pxp@reject-modify-context-protection-off-2: - shard-dg2: NOTRUN -> [SKIP][84] ([i915#4270]) +1 other test skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg2-8/igt@gem_pxp@reject-modify-context-protection-off-2.html * igt@gem_render_copy@mixed-tiled-to-y-tiled-ccs: - shard-dg2: NOTRUN -> [SKIP][85] ([i915#5190] / [i915#8428]) +6 other tests skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg2-1/igt@gem_render_copy@mixed-tiled-to-y-tiled-ccs.html * igt@gem_render_copy@y-tiled-ccs-to-yf-tiled-mc-ccs: - shard-mtlp: NOTRUN -> [SKIP][86] ([i915#8428]) +6 other tests skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-mtlp-2/igt@gem_render_copy@y-tiled-ccs-to-yf-tiled-mc-ccs.html * igt@gem_set_tiling_vs_blt@tiled-to-tiled: - shard-rkl: NOTRUN -> [SKIP][87] ([i915#8411]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-rkl-4/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html * igt@gem_set_tiling_vs_blt@tiled-to-untiled: - shard-mtlp: NOTRUN -> [SKIP][88] ([i915#4079]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-mtlp-7/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html * igt@gem_set_tiling_vs_blt@untiled-to-tiled: - shard-dg2: NOTRUN -> [SKIP][89] ([i915#4079]) +1 other test skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg2-6/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html * igt@gem_softpin@evict-snoop-interruptible: - shard-dg2: NOTRUN -> [SKIP][90] ([i915#4885]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg2-8/igt@gem_softpin@evict-snoop-interruptible.html - shard-dg1: NOTRUN -> [SKIP][91] ([i915#4885]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg1-17/igt@gem_softpin@evict-snoop-interruptible.html * igt@gem_spin_batch@spin-all-new: - shard-dg2: NOTRUN -> [FAIL][92] ([i915#5889]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg2-6/igt@gem_spin_batch@spin-all-new.html * igt@gem_tiled_partial_pwrite_pread@writes: - shard-dg2: NOTRUN -> [SKIP][93] ([i915#4077]) +15 other tests skip [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg2-5/igt@gem_tiled_partial_pwrite_pread@writes.html * igt@gem_userptr_blits@dmabuf-sync: - shard-glk: NOTRUN -> [SKIP][94] ([i915#3323]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-glk1/igt@gem_userptr_blits@dmabuf-sync.html * igt@gem_userptr_blits@forbidden-operations: - shard-dg1: NOTRUN -> [SKIP][95] ([i915#3282] / [i915#3297]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg1-15/igt@gem_userptr_blits@forbidden-operations.html - shard-dg2: NOTRUN -> [SKIP][96] ([i915#3282] / [i915#3297]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg2-1/igt@gem_userptr_blits@forbidden-operations.html * igt@gem_userptr_blits@map-fixed-invalidate-busy: - shard-dg2: NOTRUN -> [SKIP][97] ([i915#3297] / [i915#4880]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg2-8/igt@gem_userptr_blits@map-fixed-invalidate-busy.html * igt@gem_userptr_blits@readonly-pwrite-unsync: - shard-mtlp: NOTRUN -> [SKIP][98] ([i915#3297]) +3 other tests skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-mtlp-7/igt@gem_userptr_blits@readonly-pwrite-unsync.html - shard-dg1: NOTRUN -> [SKIP][99] ([i915#3297]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg1-17/igt@gem_userptr_blits@readonly-pwrite-unsync.html * igt@gem_userptr_blits@readonly-unsync: - shard-rkl: NOTRUN -> [SKIP][100] ([i915#3297]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-rkl-5/igt@gem_userptr_blits@readonly-unsync.html * igt@gem_userptr_blits@unsync-unmap-cycles: - shard-dg2: NOTRUN -> [SKIP][101] ([i915#3297]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg2-5/igt@gem_userptr_blits@unsync-unmap-cycles.html * igt@gen3_render_linear_blits: - shard-mtlp: NOTRUN -> [SKIP][102] +20 other tests skip [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-mtlp-7/igt@gen3_render_linear_blits.html * igt@gen9_exec_parse@allowed-single: - shard-mtlp: NOTRUN -> [SKIP][103] ([i915#2856]) +2 other tests skip [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-mtlp-4/igt@gen9_exec_parse@allowed-single.html - shard-glk: NOTRUN -> [ABORT][104] ([i915#5566]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-glk3/igt@gen9_exec_parse@allowed-single.html * igt@gen9_exec_parse@basic-rejected-ctx-param: - shard-tglu: NOTRUN -> [SKIP][105] ([i915#2527] / [i915#2856]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-tglu-7/igt@gen9_exec_parse@basic-rejected-ctx-param.html * igt@gen9_exec_parse@bb-large: - shard-dg1: NOTRUN -> [SKIP][106] ([i915#2527]) +3 other tests skip [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg1-17/igt@gen9_exec_parse@bb-large.html * igt@gen9_exec_parse@shadow-peek: - shard-dg2: NOTRUN -> [SKIP][107] ([i915#2856]) +1 other test skip [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg2-10/igt@gen9_exec_parse@shadow-peek.html - shard-rkl: NOTRUN -> [SKIP][108] ([i915#2527]) +2 other tests skip [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-rkl-5/igt@gen9_exec_parse@shadow-peek.html * igt@i915_module_load@load: - shard-mtlp: NOTRUN -> [SKIP][109] ([i915#6227]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-mtlp-3/igt@i915_module_load@load.html * igt@i915_module_load@reload-with-fault-injection: - shard-glk: NOTRUN -> [ABORT][110] ([i915#9849]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-glk9/igt@i915_module_load@reload-with-fault-injection.html - shard-dg2: NOTRUN -> [INCOMPLETE][111] ([i915#9849]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg2-11/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_module_load@resize-bar: - shard-dg1: NOTRUN -> [SKIP][112] ([i915#7178]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg1-18/igt@i915_module_load@resize-bar.html * igt@i915_pm_freq_api@freq-basic-api: - shard-rkl: NOTRUN -> [SKIP][113] ([i915#8399]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-rkl-5/igt@i915_pm_freq_api@freq-basic-api.html * igt@i915_pm_freq_mult@media-freq@gt0: - shard-dg1: NOTRUN -> [SKIP][114] ([i915#6590]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg1-15/igt@i915_pm_freq_mult@media-freq@gt0.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0: - shard-tglu: NOTRUN -> [WARN][115] ([i915#2681]) +3 other tests warn [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-tglu-6/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0: - shard-dg1: [PASS][116] -> [FAIL][117] ([i915#3591]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14482/shard-dg1-18/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg1-18/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html * igt@i915_pm_rps@basic-api: - shard-dg2: NOTRUN -> [SKIP][118] ([i915#6621]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg2-10/igt@i915_pm_rps@basic-api.html * igt@i915_pm_rps@min-max-config-idle: - shard-dg1: NOTRUN -> [SKIP][119] ([i915#6621]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg1-17/igt@i915_pm_rps@min-max-config-idle.html - shard-mtlp: NOTRUN -> [SKIP][120] ([i915#6621]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-mtlp-3/igt@i915_pm_rps@min-max-config-idle.html * igt@i915_pm_rps@thresholds-idle@gt0: - shard-dg1: NOTRUN -> [SKIP][121] ([i915#8925]) +2 other tests skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg1-15/igt@i915_pm_rps@thresholds-idle@gt0.html * igt@i915_pm_rps@thresholds@gt0: - shard-dg2: NOTRUN -> [SKIP][122] ([i915#8925]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg2-11/igt@i915_pm_rps@thresholds@gt0.html - shard-mtlp: NOTRUN -> [SKIP][123] ([i915#8925]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-mtlp-2/igt@i915_pm_rps@thresholds@gt0.html * igt@i915_pm_rps@thresholds@gt1: - shard-mtlp: NOTRUN -> [SKIP][124] ([i915#3555] / [i915#8925]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-mtlp-2/igt@i915_pm_rps@thresholds@gt1.html * igt@i915_pm_sseu@full-enable: - shard-mtlp: NOTRUN -> [SKIP][125] ([i915#8437]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-mtlp-4/igt@i915_pm_sseu@full-enable.html * igt@i915_power@sanity: - shard-rkl: NOTRUN -> [SKIP][126] ([i915#7984]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-rkl-3/igt@i915_power@sanity.html * igt@i915_query@query-topology-coherent-slice-mask: - shard-mtlp: NOTRUN -> [SKIP][127] ([i915#6188]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-mtlp-5/igt@i915_query@query-topology-coherent-slice-mask.html * igt@intel_hwmon@hwmon-read: - shard-rkl: NOTRUN -> [SKIP][128] ([i915#7707]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-rkl-6/igt@intel_hwmon@hwmon-read.html * igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy: - shard-dg2: NOTRUN -> [SKIP][129] ([i915#4212]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg2-11/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-mtlp: NOTRUN -> [SKIP][130] ([i915#5190]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-mtlp-3/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_addfb_basic@framebuffer-vs-set-tiling: - shard-dg1: NOTRUN -> [SKIP][131] ([i915#4212]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg1-15/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html * igt@kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-tglu: NOTRUN -> [SKIP][132] ([i915#3826]) [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-tglu-7/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt@kms_async_flips@test-cursor: - shard-mtlp: NOTRUN -> [SKIP][133] ([i915#10333]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-mtlp-8/igt@kms_async_flips@test-cursor.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-rkl: NOTRUN -> [SKIP][134] ([i915#9531]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-rkl-3/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-dg2: NOTRUN -> [SKIP][135] ([i915#1769] / [i915#3555]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg2-1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html - shard-rkl: NOTRUN -> [SKIP][136] ([i915#1769] / [i915#3555]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-rkl-5/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_big_fb@4-tiled-addfb: - shard-dg1: NOTRUN -> [SKIP][137] ([i915#5286]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg1-18/igt@kms_big_fb@4-tiled-addfb.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-rkl: NOTRUN -> [SKIP][138] ([i915#5286]) +3 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-rkl-2/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-tglu: NOTRUN -> [SKIP][139] ([i915#5286]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-tglu-9/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-dg1: NOTRUN -> [SKIP][140] ([i915#4538] / [i915#5286]) +3 other tests skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg1-14/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-mtlp: [PASS][141] -> [FAIL][142] ([i915#5138]) +1 other test fail [141]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14482/shard-mtlp-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-mtlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@linear-32bpp-rotate-90: - shard-dg1: NOTRUN -> [SKIP][143] ([i915#3638]) +5 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg1-13/igt@kms_big_fb@linear-32bpp-rotate-90.html * igt@kms_big_fb@y-tiled-8bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][144] ([i915#3638]) +4 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-rkl-5/igt@kms_big_fb@y-tiled-8bpp-rotate-270.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: - shard-dg2: NOTRUN -> [SKIP][145] ([i915#4538] / [i915#5190]) +9 other tests skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg2-6/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-addfb: - shard-dg2: NOTRUN -> [SKIP][146] ([i915#5190]) [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg2-5/igt@kms_big_fb@yf-tiled-addfb.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0: - shard-dg1: NOTRUN -> [SKIP][147] ([i915#4538]) +7 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg1-17/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html * igt@kms_big_joiner@2x-modeset: - shard-mtlp: NOTRUN -> [SKIP][148] ([i915#2705]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-mtlp-8/igt@kms_big_joiner@2x-modeset.html * igt@kms_big_joiner@invalid-modeset: - shard-dg1: NOTRUN -> [SKIP][149] ([i915#2705]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg1-16/igt@kms_big_joiner@invalid-modeset.html * igt@kms_ccs@bad-pixel-format-y-tiled-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][150] ([i915#10307] / [i915#10434] / [i915#6095]) +3 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg2-8/igt@kms_ccs@bad-pixel-format-y-tiled-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][151] ([i915#6095]) +87 other tests skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg1-18/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-b-hdmi-a-4.html * igt@kms_ccs@bad-rotation-90-4-tiled-xe2-ccs: - shard-rkl: NOTRUN -> [SKIP][152] ([i915#10278]) +1 other test skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-rkl-4/igt@kms_ccs@bad-rotation-90-4-tiled-xe2-ccs.html * igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][153] ([i915#10307] / [i915#6095]) +163 other tests skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg2-10/igt@kms_ccs@ccs-on-another-bo-y-tiled-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][154] ([i915#6095]) +35 other tests skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-mtlp-4/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc@pipe-b-edp-1.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-xe2-ccs: - shard-mtlp: NOTRUN -> [SKIP][155] ([i915#10278]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-mtlp-5/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-xe2-ccs.html * igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][156] ([i915#6095]) +11 other tests skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-tglu-10/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][157] ([i915#6095]) +81 other tests skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-rkl-5/igt@kms_ccs@missing-ccs-buffer-y-tiled-ccs@pipe-b-hdmi-a-1.html * igt@kms_ccs@random-ccs-data-4-tiled-xe2-ccs: - shard-dg1: NOTRUN -> [SKIP][158] ([i915#10278]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg1-13/igt@kms_ccs@random-ccs-data-4-tiled-xe2-ccs.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-dg1: NOTRUN -> [SKIP][159] ([i915#3742]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg1-16/igt@kms_cdclk@mode-transition-all-outputs.html - shard-dg2: NOTRUN -> [SKIP][160] ([i915#7213]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg2-6/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_cdclk@plane-scaling: - shard-rkl: NOTRUN -> [SKIP][161] ([i915#3742]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-rkl-4/igt@kms_cdclk@plane-scaling.html * igt@kms_chamelium_color@gamma: - shard-tglu: NOTRUN -> [SKIP][162] +15 other tests skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-tglu-6/igt@kms_chamelium_color@gamma.html * igt@kms_chamelium_edid@dp-edid-change-during-suspend: - shard-mtlp: NOTRUN -> [SKIP][163] ([i915#7828]) +8 other tests skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-mtlp-5/igt@kms_chamelium_edid@dp-edid-change-during-suspend.html * igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k: - shard-dg2: NOTRUN -> [SKIP][164] ([i915#7828]) +7 other tests skip [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg2-5/igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k.html * igt@kms_chamelium_hpd@dp-hpd: - shard-rkl: NOTRUN -> [SKIP][165] ([i915#7828]) +9 other tests skip [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-rkl-2/igt@kms_chamelium_hpd@dp-hpd.html * igt@kms_chamelium_hpd@dp-hpd-storm: - shard-tglu: NOTRUN -> [SKIP][166] ([i915#7828]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-tglu-6/igt@kms_chamelium_hpd@dp-hpd-storm.html * igt@kms_chamelium_hpd@hdmi-hpd-fast: - shard-dg1: NOTRUN -> [SKIP][167] ([i915#7828]) +11 other tests skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg1-18/igt@kms_chamelium_hpd@hdmi-hpd-fast.html * igt@kms_content_protection@atomic-dpms: - shard-dg1: NOTRUN -> [SKIP][168] ([i915#7116] / [i915#9424]) +1 other test skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg1-18/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@atomic-dpms@pipe-a-dp-4: - shard-dg2: NOTRUN -> [TIMEOUT][169] ([i915#7173]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg2-11/igt@kms_content_protection@atomic-dpms@pipe-a-dp-4.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-dg2: NOTRUN -> [SKIP][170] ([i915#3299]) +1 other test skip [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg2-5/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@dp-mst-type-0: - shard-rkl: NOTRUN -> [SKIP][171] ([i915#3116]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-rkl-4/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@dp-mst-type-1: - shard-tglu: NOTRUN -> [SKIP][172] ([i915#3116] / [i915#3299]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-tglu-10/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@lic-type-0: - shard-mtlp: NOTRUN -> [SKIP][173] ([i915#6944] / [i915#9424]) +2 other tests skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-mtlp-3/igt@kms_content_protection@lic-type-0.html * igt@kms_content_protection@srm: - shard-tglu: NOTRUN -> [SKIP][174] ([i915#6944] / [i915#7116] / [i915#7118]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-tglu-5/igt@kms_content_protection@srm.html * igt@kms_content_protection@type1: - shard-rkl: NOTRUN -> [SKIP][175] ([i915#7118] / [i915#9424]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-rkl-3/igt@kms_content_protection@type1.html * igt@kms_cursor_crc@cursor-onscreen-512x170: - shard-dg2: NOTRUN -> [SKIP][176] ([i915#3359]) +2 other tests skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg2-5/igt@kms_cursor_crc@cursor-onscreen-512x170.html * igt@kms_cursor_crc@cursor-random-128x42: - shard-mtlp: NOTRUN -> [SKIP][177] ([i915#8814]) +1 other test skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-mtlp-2/igt@kms_cursor_crc@cursor-random-128x42.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-dg1: NOTRUN -> [SKIP][178] ([i915#3359]) +3 other tests skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg1-18/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_crc@cursor-random-max-size: - shard-mtlp: NOTRUN -> [SKIP][179] ([i915#3555] / [i915#8814]) +2 other tests skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-mtlp-5/igt@kms_cursor_crc@cursor-random-max-size.html * igt@kms_cursor_crc@cursor-rapid-movement-512x512: - shard-mtlp: NOTRUN -> [SKIP][180] ([i915#3359]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-mtlp-8/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html * igt@kms_cursor_crc@cursor-rapid-movement-max-size: - shard-dg2: NOTRUN -> [SKIP][181] ([i915#3555]) +7 other tests skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg2-10/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html - shard-rkl: NOTRUN -> [SKIP][182] ([i915#3555]) +6 other tests skip [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-rkl-6/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html * igt@kms_cursor_crc@cursor-sliding-512x512: - shard-rkl: NOTRUN -> [SKIP][183] ([i915#3359]) +1 other test skip [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-rkl-4/igt@kms_cursor_crc@cursor-sliding-512x512.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-dg2: NOTRUN -> [SKIP][184] ([i915#4103] / [i915#4213]) +1 other test skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg2-10/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-dg1: NOTRUN -> [SKIP][185] ([i915#4103] / [i915#4213]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg1-15/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html - shard-mtlp: NOTRUN -> [SKIP][186] ([i915#4213]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-mtlp-2/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipa-legacy: - shard-mtlp: NOTRUN -> [SKIP][187] ([i915#9809]) +3 other tests skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-mtlp-8/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-glk: NOTRUN -> [FAIL][188] ([i915#2346]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-glk9/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-tglu: NOTRUN -> [SKIP][189] ([i915#4103]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-tglu-4/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@torture-move@pipe-a: - shard-dg1: [PASS][190] -> [DMESG-WARN][191] ([i915#10166]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14482/shard-dg1-16/igt@kms_cursor_legacy@torture-move@pipe-a.html [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg1-13/igt@kms_cursor_legacy@torture-move@pipe-a.html * igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][192] ([i915#9723]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-rkl-3/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-2.html * igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][193] ([i915#9227]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg2-5/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-3.html * igt@kms_display_modes@extended-mode-basic: - shard-dg1: NOTRUN -> [SKIP][194] ([i915#3555]) +9 other tests skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg1-15/igt@kms_display_modes@extended-mode-basic.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][195] ([i915#3804]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-rkl-3/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-2.html * igt@kms_dp_aux_dev: - shard-dg1: NOTRUN -> [SKIP][196] ([i915#1257]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg1-17/igt@kms_dp_aux_dev.html * igt@kms_draw_crc@draw-method-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][197] ([i915#8812]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg1-18/igt@kms_draw_crc@draw-method-mmap-wc.html * igt@kms_dsc@dsc-basic: - shard-dg2: NOTRUN -> [SKIP][198] ([i915#3555] / [i915#3840]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg2-1/igt@kms_dsc@dsc-basic.html * igt@kms_dsc@dsc-fractional-bpp: - shard-mtlp: NOTRUN -> [SKIP][199] ([i915#3840] / [i915#9688]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-mtlp-4/igt@kms_dsc@dsc-fractional-bpp.html * igt@kms_dsc@dsc-with-formats: - shard-rkl: NOTRUN -> [SKIP][200] ([i915#3555] / [i915#3840]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-rkl-5/igt@kms_dsc@dsc-with-formats.html * igt@kms_dsc@dsc-with-output-formats-with-bpc: - shard-rkl: NOTRUN -> [SKIP][201] ([i915#3840] / [i915#9053]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-rkl-5/igt@kms_dsc@dsc-with-output-formats-with-bpc.html * igt@kms_feature_discovery@chamelium: - shard-tglu: NOTRUN -> [SKIP][202] ([i915#2065] / [i915#4854]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-tglu-5/igt@kms_feature_discovery@chamelium.html * igt@kms_feature_discovery@display-4x: - shard-rkl: NOTRUN -> [SKIP][203] ([i915#1839]) +1 other test skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-rkl-4/igt@kms_feature_discovery@display-4x.html * igt@kms_feature_discovery@psr2: - shard-dg1: NOTRUN -> [SKIP][204] ([i915#658]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg1-18/igt@kms_feature_discovery@psr2.html - shard-dg2: NOTRUN -> [SKIP][205] ([i915#658]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg2-11/igt@kms_feature_discovery@psr2.html * igt@kms_flip@2x-flip-vs-rmfb-interruptible: - shard-mtlp: NOTRUN -> [SKIP][206] ([i915#3637]) +9 other tests skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-mtlp-6/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html * igt@kms_flip@2x-plain-flip-fb-recreate-interruptible: - shard-dg1: NOTRUN -> [SKIP][207] ([i915#9934]) +10 other tests skip [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg1-18/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html * igt@kms_flip@2x-plain-flip-interruptible: - shard-tglu: NOTRUN -> [SKIP][208] ([i915#3637]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-tglu-4/igt@kms_flip@2x-plain-flip-interruptible.html * igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset: - shard-dg2: NOTRUN -> [SKIP][209] +24 other tests skip [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg2-11/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html * igt@kms_flip@flip-vs-fences-interruptible: - shard-dg1: NOTRUN -> [SKIP][210] ([i915#8381]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg1-18/igt@kms_flip@flip-vs-fences-interruptible.html - shard-mtlp: NOTRUN -> [SKIP][211] ([i915#8381]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-mtlp-7/igt@kms_flip@flip-vs-fences-interruptible.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][212] ([i915#2672]) +2 other tests skip [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][213] ([i915#2587] / [i915#2672]) +1 other test skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg1-16/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][214] ([i915#3555] / [i915#8810]) +1 other test skip [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][215] ([i915#2587] / [i915#2672]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-tglu-2/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][216] ([i915#2672]) +6 other tests skip [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-rkl-3/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][217] ([i915#2672] / [i915#3555]) +1 other test skip [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][218] ([i915#2672]) +6 other tests skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg2-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move: - shard-dg2: NOTRUN -> [FAIL][219] ([i915#6880]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc: - shard-rkl: NOTRUN -> [SKIP][220] ([i915#1825]) +41 other tests skip [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-rkl-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][221] ([i915#8708]) +9 other tests skip [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-rte: - shard-dg2: NOTRUN -> [SKIP][222] ([i915#5354]) +41 other tests skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-2p-rte.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render: - shard-dg1: NOTRUN -> [SKIP][223] +59 other tests skip [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg1-18/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][224] ([i915#8708]) +23 other tests skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg1-17/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-tiling-4: - shard-rkl: NOTRUN -> [SKIP][225] ([i915#5439]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-rkl-4/igt@kms_frontbuffer_tracking@fbc-tiling-4.html * igt@kms_frontbuffer_tracking@fbc-tiling-y: - shard-mtlp: NOTRUN -> [SKIP][226] ([i915#10055]) [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-mtlp-3/igt@kms_frontbuffer_tracking@fbc-tiling-y.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render: - shard-dg2: NOTRUN -> [SKIP][227] ([i915#3458]) +22 other tests skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][228] +61 other tests skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-cpu: - shard-snb: NOTRUN -> [SKIP][229] +129 other tests skip [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-snb2/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][230] ([i915#8708]) +8 other tests skip [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-cpu: - shard-mtlp: NOTRUN -> [SKIP][231] ([i915#1825]) +30 other tests skip [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-mtlp-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt: - shard-rkl: NOTRUN -> [SKIP][232] ([i915#3023]) +27 other tests skip [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html - shard-dg1: NOTRUN -> [SKIP][233] ([i915#3458]) +22 other tests skip [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg1-17/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html * igt@kms_hdr@bpc-switch-dpms: - shard-rkl: NOTRUN -> [SKIP][234] ([i915#3555] / [i915#8228]) +2 other tests skip [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-rkl-3/igt@kms_hdr@bpc-switch-dpms.html * igt@kms_hdr@static-toggle: - shard-mtlp: NOTRUN -> [SKIP][235] ([i915#3555] / [i915#8228]) +1 other test skip [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-mtlp-8/igt@kms_hdr@static-toggle.html * igt@kms_hdr@static-toggle-suspend: - shard-dg2: NOTRUN -> [SKIP][236] ([i915#3555] / [i915#8228]) +2 other tests skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg2-8/igt@kms_hdr@static-toggle-suspend.html - shard-dg1: NOTRUN -> [SKIP][237] ([i915#3555] / [i915#8228]) +1 other test skip [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg1-14/igt@kms_hdr@static-toggle-suspend.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-mtlp: NOTRUN -> [SKIP][238] ([i915#4816]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-mtlp-2/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_panel_fitting@atomic-fastset: - shard-dg1: NOTRUN -> [SKIP][239] ([i915#6301]) +1 other test skip [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg1-17/igt@kms_panel_fitting@atomic-fastset.html * igt@kms_plane_alpha_blend@alpha-basic@pipe-c-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][240] ([i915#7862]) +1 other test fail [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-glk5/igt@kms_plane_alpha_blend@alpha-basic@pipe-c-hdmi-a-1.html * igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][241] ([i915#4573]) +3 other tests fail [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-glk5/igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][242] ([i915#9423]) +7 other tests skip [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg2-1/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b-hdmi-a-3.html * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-c-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][243] ([i915#9423]) +7 other tests skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg1-16/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-c-hdmi-a-4.html * igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][244] ([i915#9423]) +5 other tests skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-rkl-4/igt@kms_plane_scaling@plane-upscale-20x20-with-rotation@pipe-b-hdmi-a-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-b-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][245] ([i915#5235]) +7 other tests skip [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg1-14/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-b-hdmi-a-4.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][246] ([i915#3555] / [i915#5235]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-mtlp-2/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-d-edp-1.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][247] ([i915#5235]) +3 other tests skip [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-tglu-5/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][248] ([i915#5235]) +14 other tests skip [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-mtlp-5/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-d-edp-1.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][249] ([i915#5235]) +5 other tests skip [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-rkl-3/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-2.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][250] ([i915#5235] / [i915#9423]) +19 other tests skip [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg2-5/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-3.html * igt@kms_pm_backlight@basic-brightness: - shard-rkl: NOTRUN -> [SKIP][251] ([i915#5354]) +1 other test skip [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-rkl-3/igt@kms_pm_backlight@basic-brightness.html * igt@kms_pm_backlight@fade: - shard-dg1: NOTRUN -> [SKIP][252] ([i915#5354]) [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg1-18/igt@kms_pm_backlight@fade.html * igt@kms_pm_dc@dc6-dpms: - shard-rkl: NOTRUN -> [SKIP][253] ([i915#3361]) [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-rkl-4/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_dc@dc6-psr: - shard-dg2: NOTRUN -> [SKIP][254] ([i915#9685]) [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg2-1/igt@kms_pm_dc@dc6-psr.html * igt@kms_pm_lpsp@kms-lpsp: - shard-dg1: NOTRUN -> [SKIP][255] ([i915#9340]) [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg1-16/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_lpsp@screens-disabled: - shard-dg1: NOTRUN -> [SKIP][256] ([i915#8430]) [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg1-17/igt@kms_pm_lpsp@screens-disabled.html - shard-mtlp: NOTRUN -> [SKIP][257] ([i915#8430]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-mtlp-3/igt@kms_pm_lpsp@screens-disabled.html * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-rkl: NOTRUN -> [SKIP][258] ([i915#9519]) [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-rkl-4/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait: - shard-dg2: [PASS][259] -> [SKIP][260] ([i915#9519]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14482/shard-dg2-10/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg2-5/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html - shard-rkl: [PASS][261] -> [SKIP][262] ([i915#9519]) +1 other test skip [261]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14482/shard-rkl-4/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-rkl-3/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-dg2: NOTRUN -> [SKIP][263] ([i915#9519]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg2-8/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_prime@basic-crc-hybrid: - shard-mtlp: NOTRUN -> [SKIP][264] ([i915#6524]) [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-mtlp-3/igt@kms_prime@basic-crc-hybrid.html * igt@kms_prime@basic-crc-vgem: - shard-dg2: NOTRUN -> [SKIP][265] ([i915#6524] / [i915#6805]) +1 other test skip [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg2-5/igt@kms_prime@basic-crc-vgem.html - shard-dg1: NOTRUN -> [SKIP][266] ([i915#6524]) +1 other test skip [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg1-13/igt@kms_prime@basic-crc-vgem.html * igt@kms_prime@basic-modeset-hybrid: - shard-rkl: NOTRUN -> [SKIP][267] ([i915#6524]) [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-rkl-3/igt@kms_prime@basic-modeset-hybrid.html * igt@kms_psr2_sf@fbc-plane-move-sf-dmg-area@psr2-pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][268] ([i915#9808]) +3 other tests skip [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-mtlp-4/igt@kms_psr2_sf@fbc-plane-move-sf-dmg-area@psr2-pipe-a-edp-1.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-mtlp: NOTRUN -> [SKIP][269] ([i915#4348]) [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-mtlp-2/igt@kms_psr2_su@frontbuffer-xrgb8888.html - shard-dg2: NOTRUN -> [SKIP][270] ([i915#9683]) [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg2-1/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr2_su@page_flip-p010: - shard-dg1: NOTRUN -> [SKIP][271] ([i915#9683]) +2 other tests skip [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg1-17/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr@fbc-psr-cursor-plane-move: - shard-dg2: NOTRUN -> [SKIP][272] ([i915#1072] / [i915#9732]) +21 other tests skip [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg2-10/igt@kms_psr@fbc-psr-cursor-plane-move.html * igt@kms_psr@fbc-psr2-sprite-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][273] ([i915#1072] / [i915#9732]) +27 other tests skip [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg1-16/igt@kms_psr@fbc-psr2-sprite-mmap-gtt.html * igt@kms_psr@pr-dpms: - shard-tglu: NOTRUN -> [SKIP][274] ([i915#9732]) +4 other tests skip [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-tglu-3/igt@kms_psr@pr-dpms.html * igt@kms_psr@pr-primary-render: - shard-mtlp: NOTRUN -> [SKIP][275] ([i915#9688]) +10 other tests skip [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-mtlp-4/igt@kms_psr@pr-primary-render.html * igt@kms_psr@psr-primary-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][276] ([i915#1072] / [i915#9673] / [i915#9732]) +4 other tests skip [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg2-11/igt@kms_psr@psr-primary-mmap-cpu.html * igt@kms_psr@psr-sprite-mmap-gtt@edp-1: - shard-mtlp: NOTRUN -> [SKIP][277] ([i915#4077] / [i915#9688]) [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-mtlp-5/igt@kms_psr@psr-sprite-mmap-gtt@edp-1.html * igt@kms_psr@psr2-sprite-mmap-cpu: - shard-rkl: NOTRUN -> [SKIP][278] ([i915#1072] / [i915#9732]) +27 other tests skip [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-rkl-4/igt@kms_psr@psr2-sprite-mmap-cpu.html * igt@kms_psr@psr2-sprite-plane-onoff: - shard-glk: NOTRUN -> [SKIP][279] +840 other tests skip [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-glk8/igt@kms_psr@psr2-sprite-plane-onoff.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-rkl: NOTRUN -> [SKIP][280] ([i915#9685]) +2 other tests skip [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-rkl-4/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_rotation_crc@exhaust-fences: - shard-dg1: NOTRUN -> [SKIP][281] ([i915#4884]) [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg1-15/igt@kms_rotation_crc@exhaust-fences.html * igt@kms_rotation_crc@primary-4-tiled-reflect-x-0: - shard-rkl: NOTRUN -> [SKIP][282] ([i915#5289]) [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-rkl-2/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-270: - shard-dg2: NOTRUN -> [SKIP][283] ([i915#4235] / [i915#5190]) [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg2-6/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-dg1: NOTRUN -> [SKIP][284] ([i915#5289]) +1 other test skip [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg1-16/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html - shard-mtlp: NOTRUN -> [SKIP][285] ([i915#4235]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-mtlp-6/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_scaling_modes@scaling-mode-full: - shard-tglu: NOTRUN -> [SKIP][286] ([i915#3555]) +1 other test skip [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-tglu-6/igt@kms_scaling_modes@scaling-mode-full.html * igt@kms_sysfs_edid_timing: - shard-dg2: NOTRUN -> [FAIL][287] ([IGT#2]) [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg2-6/igt@kms_sysfs_edid_timing.html * igt@kms_tiled_display@basic-test-pattern: - shard-tglu: NOTRUN -> [SKIP][288] ([i915#8623]) [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-tglu-10/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-rkl: NOTRUN -> [SKIP][289] ([i915#8623]) [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-rkl-2/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1: - shard-mtlp: [PASS][290] -> [FAIL][291] ([i915#9196]) [290]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14482/shard-mtlp-8/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-mtlp-2/igt@kms_universal_plane@cursor-fb-leak@pipe-a-edp-1.html * igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1: - shard-snb: [PASS][292] -> [FAIL][293] ([i915#9196]) [292]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14482/shard-snb2/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1.html [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-snb7/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-1.html * igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-4: - shard-dg1: NOTRUN -> [FAIL][294] ([i915#9196]) [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg1-16/igt@kms_universal_plane@cursor-fb-leak@pipe-b-hdmi-a-4.html * igt@kms_vrr@seamless-rr-switch-drrs: - shard-dg1: NOTRUN -> [SKIP][295] ([i915#9906]) [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg1-15/igt@kms_vrr@seamless-rr-switch-drrs.html - shard-mtlp: NOTRUN -> [SKIP][296] ([i915#8808] / [i915#9906]) [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-mtlp-1/igt@kms_vrr@seamless-rr-switch-drrs.html * igt@kms_vrr@seamless-rr-switch-vrr: - shard-dg2: NOTRUN -> [SKIP][297] ([i915#9906]) +1 other test skip [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg2-1/igt@kms_vrr@seamless-rr-switch-vrr.html - shard-rkl: NOTRUN -> [SKIP][298] ([i915#9906]) +1 other test skip [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-rkl-6/igt@kms_vrr@seamless-rr-switch-vrr.html * igt@kms_writeback@writeback-check-output-xrgb2101010: - shard-rkl: NOTRUN -> [SKIP][299] ([i915#2437] / [i915#9412]) [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-rkl-3/igt@kms_writeback@writeback-check-output-xrgb2101010.html * igt@kms_writeback@writeback-fb-id: - shard-mtlp: NOTRUN -> [SKIP][300] ([i915#2437]) +1 other test skip [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-mtlp-4/igt@kms_writeback@writeback-fb-id.html * igt@kms_writeback@writeback-fb-id-xrgb2101010: - shard-dg2: NOTRUN -> [SKIP][301] ([i915#2437] / [i915#9412]) +1 other test skip [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg2-5/igt@kms_writeback@writeback-fb-id-xrgb2101010.html * igt@kms_writeback@writeback-invalid-parameters: - shard-rkl: NOTRUN -> [SKIP][302] ([i915#2437]) [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-rkl-5/igt@kms_writeback@writeback-invalid-parameters.html * igt@kms_writeback@writeback-pixel-formats: - shard-glk: NOTRUN -> [SKIP][303] ([i915#2437]) +2 other tests skip [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-glk5/igt@kms_writeback@writeback-pixel-formats.html * igt@perf@gen8-unprivileged-single-ctx-counters: - shard-mtlp: NOTRUN -> [SKIP][304] ([i915#7387]) [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-mtlp-3/igt@perf@gen8-unprivileged-single-ctx-counters.html * igt@perf@mi-rpc: - shard-dg1: NOTRUN -> [SKIP][305] ([i915#2434]) [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg1-15/igt@perf@mi-rpc.html * igt@perf@per-context-mode-unprivileged: - shard-dg1: NOTRUN -> [SKIP][306] ([i915#2433]) +1 other test skip [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg1-18/igt@perf@per-context-mode-unprivileged.html * igt@perf_pmu@cpu-hotplug: - shard-rkl: NOTRUN -> [SKIP][307] ([i915#8850]) [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-rkl-4/igt@perf_pmu@cpu-hotplug.html * igt@perf_pmu@event-wait@rcs0: - shard-mtlp: NOTRUN -> [SKIP][308] ([i915#3555] / [i915#8807]) [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-mtlp-5/igt@perf_pmu@event-wait@rcs0.html * igt@perf_pmu@rc6-all-gts: - shard-rkl: NOTRUN -> [SKIP][309] ([i915#8516]) [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-rkl-4/igt@perf_pmu@rc6-all-gts.html * igt@prime_vgem@basic-gtt: - shard-dg2: NOTRUN -> [SKIP][310] ([i915#3708] / [i915#4077]) [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg2-5/igt@prime_vgem@basic-gtt.html * igt@prime_vgem@basic-read: - shard-mtlp: NOTRUN -> [SKIP][311] ([i915#3708]) [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-mtlp-7/igt@prime_vgem@basic-read.html - shard-dg2: NOTRUN -> [SKIP][312] ([i915#3291] / [i915#3708]) [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg2-11/igt@prime_vgem@basic-read.html * igt@prime_vgem@coherency-gtt: - shard-rkl: NOTRUN -> [SKIP][313] ([i915#3708]) +1 other test skip [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-rkl-4/igt@prime_vgem@coherency-gtt.html * igt@prime_vgem@fence-flip-hang: - shard-dg1: NOTRUN -> [SKIP][314] ([i915#3708]) +3 other tests skip [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg1-17/igt@prime_vgem@fence-flip-hang.html - shard-dg2: NOTRUN -> [SKIP][315] ([i915#3708]) [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg2-11/igt@prime_vgem@fence-flip-hang.html * igt@sriov_basic@bind-unbind-vf: - shard-dg1: NOTRUN -> [SKIP][316] ([i915#9917]) +2 other tests skip [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg1-13/igt@sriov_basic@bind-unbind-vf.html - shard-mtlp: NOTRUN -> [SKIP][317] ([i915#9917]) +1 other test skip [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-mtlp-5/igt@sriov_basic@bind-unbind-vf.html * igt@sriov_basic@enable-vfs-autoprobe-off: - shard-dg2: NOTRUN -> [SKIP][318] ([i915#9917]) [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg2-7/igt@sriov_basic@enable-vfs-autoprobe-off.html * igt@syncobj_timeline@invalid-wait-zero-handles: - shard-glk: NOTRUN -> [FAIL][319] ([i915#9781]) [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-glk5/igt@syncobj_timeline@invalid-wait-zero-handles.html * igt@v3d/v3d_get_param@get-bad-flags: - shard-mtlp: NOTRUN -> [SKIP][320] ([i915#2575]) +12 other tests skip [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-mtlp-5/igt@v3d/v3d_get_param@get-bad-flags.html * igt@v3d/v3d_submit_cl@job-perfmon: - shard-dg1: NOTRUN -> [SKIP][321] ([i915#2575]) +17 other tests skip [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg1-17/igt@v3d/v3d_submit_cl@job-perfmon.html * igt@v3d/v3d_submit_csd@multiple-job-submission: - shard-tglu: NOTRUN -> [SKIP][322] ([i915#2575]) +4 other tests skip [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-tglu-2/igt@v3d/v3d_submit_csd@multiple-job-submission.html * igt@v3d/v3d_submit_csd@single-out-sync: - shard-dg2: NOTRUN -> [SKIP][323] ([i915#2575]) +12 other tests skip [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg2-6/igt@v3d/v3d_submit_csd@single-out-sync.html * igt@vc4/vc4_mmap@mmap-bad-handle: - shard-dg1: NOTRUN -> [SKIP][324] ([i915#7711]) +12 other tests skip [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg1-16/igt@vc4/vc4_mmap@mmap-bad-handle.html * igt@vc4/vc4_purgeable_bo@free-purged-bo: - shard-mtlp: NOTRUN -> [SKIP][325] ([i915#7711]) +5 other tests skip [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-mtlp-5/igt@vc4/vc4_purgeable_bo@free-purged-bo.html * igt@vc4/vc4_purgeable_bo@mark-purgeable: - shard-rkl: NOTRUN -> [SKIP][326] ([i915#7711]) +9 other tests skip [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-rkl-4/igt@vc4/vc4_purgeable_bo@mark-purgeable.html * igt@vc4/vc4_purgeable_bo@mark-unpurgeable-check-retained: - shard-dg2: NOTRUN -> [SKIP][327] ([i915#7711]) +8 other tests skip [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg2-1/igt@vc4/vc4_purgeable_bo@mark-unpurgeable-check-retained.html #### Possible fixes #### * igt@gem_exec_fair@basic-deadline: - shard-rkl: [FAIL][328] ([i915#2846]) -> [PASS][329] [328]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14482/shard-rkl-4/igt@gem_exec_fair@basic-deadline.html [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-rkl-5/igt@gem_exec_fair@basic-deadline.html * igt@gem_lmem_swapping@heavy-multi@lmem0: - shard-dg1: [FAIL][330] ([i915#10378]) -> [PASS][331] [330]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14482/shard-dg1-13/igt@gem_lmem_swapping@heavy-multi@lmem0.html [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg1-16/igt@gem_lmem_swapping@heavy-multi@lmem0.html * igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0: - shard-dg2: [FAIL][332] ([i915#10378]) -> [PASS][333] +1 other test pass [332]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14482/shard-dg2-10/igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0.html [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg2-1/igt@gem_lmem_swapping@heavy-verify-multi-ccs@lmem0.html * igt@i915_hangman@gt-error-state-capture@ccs3: - shard-dg2: [INCOMPLETE][334] -> [PASS][335] [334]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14482/shard-dg2-1/igt@i915_hangman@gt-error-state-capture@ccs3.html [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg2-8/igt@i915_hangman@gt-error-state-capture@ccs3.html * igt@i915_suspend@basic-s2idle-without-i915: - shard-snb: [INCOMPLETE][336] ([i915#4817]) -> [PASS][337] [336]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14482/shard-snb5/igt@i915_suspend@basic-s2idle-without-i915.html [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-snb5/igt@i915_suspend@basic-s2idle-without-i915.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-tglu: [FAIL][338] ([i915#3743]) -> [PASS][339] [338]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14482/shard-tglu-10/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-tglu-7/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_pm_dc@dc6-dpms: - shard-tglu: [FAIL][340] ([i915#9295]) -> [PASS][341] [340]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14482/shard-tglu-7/igt@kms_pm_dc@dc6-dpms.html [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-tglu-3/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_rpm@modeset-lpsp: - shard-dg2: [SKIP][342] ([i915#9519]) -> [PASS][343] +2 other tests pass [342]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14482/shard-dg2-11/igt@kms_pm_rpm@modeset-lpsp.html [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg2-8/igt@kms_pm_rpm@modeset-lpsp.html * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-rkl: [SKIP][344] ([i915#9519]) -> [PASS][345] +1 other test pass [344]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14482/shard-rkl-5/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-rkl-6/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1: - shard-mtlp: [FAIL][346] ([i915#9196]) -> [PASS][347] [346]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14482/shard-mtlp-8/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-mtlp-2/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html * igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1: - shard-dg2: [FAIL][348] ([i915#9196]) -> [PASS][349] [348]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14482/shard-dg2-10/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1.html [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg2-10/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1.html * igt@prime_vgem@fence-wait@vcs1: - shard-mtlp: [ABORT][350] ([i915#8875]) -> [PASS][351] [350]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14482/shard-mtlp-5/igt@prime_vgem@fence-wait@vcs1.html [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-mtlp-4/igt@prime_vgem@fence-wait@vcs1.html * igt@prime_vgem@fence-wait@vecs0: - shard-mtlp: [DMESG-WARN][352] ([i915#8875]) -> [PASS][353] [352]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14482/shard-mtlp-5/igt@prime_vgem@fence-wait@vecs0.html [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-mtlp-4/igt@prime_vgem@fence-wait@vecs0.html #### Warnings #### * igt@gem_create@create-ext-cpu-access-big: - shard-dg2: [ABORT][354] ([i915#9846]) -> [INCOMPLETE][355] ([i915#9364]) [354]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14482/shard-dg2-7/igt@gem_create@create-ext-cpu-access-big.html [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg2-2/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_eio@kms: - shard-dg1: [INCOMPLETE][356] ([i915#10513] / [i915#1982]) -> [INCOMPLETE][357] ([i915#10513]) [356]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14482/shard-dg1-17/igt@gem_eio@kms.html [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg1-16/igt@gem_eio@kms.html * igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0: - shard-dg2: [FAIL][358] ([i915#10378]) -> [FAIL][359] ([i915#10446]) [358]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14482/shard-dg2-1/igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0.html [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg2-6/igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0.html * igt@i915_module_load@reload-with-fault-injection: - shard-dg1: [INCOMPLETE][360] ([i915#9849]) -> [INCOMPLETE][361] ([i915#9820] / [i915#9849]) [360]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14482/shard-dg1-17/igt@i915_module_load@reload-with-fault-injection.html [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg1-18/igt@i915_module_load@reload-with-fault-injection.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-rkl: [SKIP][362] ([i915#4816]) -> [SKIP][363] ([i915#4070] / [i915#4816]) [362]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14482/shard-rkl-3/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-rkl-2/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_psr@fbc-psr-sprite-mmap-gtt: - shard-dg2: [SKIP][364] ([i915#1072] / [i915#9673] / [i915#9732]) -> [SKIP][365] ([i915#1072] / [i915#9732]) +4 other tests skip [364]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14482/shard-dg2-11/igt@kms_psr@fbc-psr-sprite-mmap-gtt.html [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg2-7/igt@kms_psr@fbc-psr-sprite-mmap-gtt.html * igt@kms_psr@psr-cursor-mmap-cpu: - shard-dg2: [SKIP][366] ([i915#1072] / [i915#9732]) -> [SKIP][367] ([i915#1072] / [i915#9673] / [i915#9732]) +11 other tests skip [366]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14482/shard-dg2-8/igt@kms_psr@psr-cursor-mmap-cpu.html [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg2-11/igt@kms_psr@psr-cursor-mmap-cpu.html * igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem: - shard-dg2: [CRASH][368] ([i915#9351]) -> [INCOMPLETE][369] ([i915#5493]) [368]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14482/shard-dg2-1/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/shard-dg2-7/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html [IGT#2]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2 [i915#10055]: https://gitlab.freedesktop.org/drm/intel/issues/10055 [i915#10166]: https://gitlab.freedesktop.org/drm/intel/issues/10166 [i915#10278]: https://gitlab.freedesktop.org/drm/intel/issues/10278 [i915#10307]: https://gitlab.freedesktop.org/drm/intel/issues/10307 [i915#10333]: https://gitlab.freedesktop.org/drm/intel/issues/10333 [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#10513]: https://gitlab.freedesktop.org/drm/intel/issues/10513 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099 [i915#1257]: https://gitlab.freedesktop.org/drm/intel/issues/1257 [i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982 [i915#2065]: https://gitlab.freedesktop.org/drm/intel/issues/2065 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2433]: https://gitlab.freedesktop.org/drm/intel/issues/2433 [i915#2434]: https://gitlab.freedesktop.org/drm/intel/issues/2434 [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#284]: https://gitlab.freedesktop.org/drm/intel/issues/284 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023 [i915#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#3323]: https://gitlab.freedesktop.org/drm/intel/issues/3323 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3361]: https://gitlab.freedesktop.org/drm/intel/issues/3361 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#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#3804]: https://gitlab.freedesktop.org/drm/intel/issues/3804 [i915#3826]: https://gitlab.freedesktop.org/drm/intel/issues/3826 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213 [i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4348]: https://gitlab.freedesktop.org/drm/intel/issues/4348 [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#4565]: https://gitlab.freedesktop.org/drm/intel/issues/4565 [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#4817]: https://gitlab.freedesktop.org/drm/intel/issues/4817 [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#4884]: https://gitlab.freedesktop.org/drm/intel/issues/4884 [i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885 [i915#5107]: https://gitlab.freedesktop.org/drm/intel/issues/5107 [i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138 [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#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566 [i915#5889]: https://gitlab.freedesktop.org/drm/intel/issues/5889 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6188]: https://gitlab.freedesktop.org/drm/intel/issues/6188 [i915#6227]: https://gitlab.freedesktop.org/drm/intel/issues/6227 [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268 [i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301 [i915#6334]: https://gitlab.freedesktop.org/drm/intel/issues/6334 [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6590]: https://gitlab.freedesktop.org/drm/intel/issues/6590 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6805]: https://gitlab.freedesktop.org/drm/intel/issues/6805 [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#7178]: https://gitlab.freedesktop.org/drm/intel/issues/7178 [i915#7213]: https://gitlab.freedesktop.org/drm/intel/issues/7213 [i915#7387]: https://gitlab.freedesktop.org/drm/intel/issues/7387 [i915#7582]: https://gitlab.freedesktop.org/drm/intel/issues/7582 [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697 [i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701 [i915#7707]: https://gitlab.freedesktop.org/drm/intel/issues/7707 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#7862]: https://gitlab.freedesktop.org/drm/intel/issues/7862 [i915#7984]: https://gitlab.freedesktop.org/drm/intel/issues/7984 [i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228 [i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381 [i915#8399]: https://gitlab.freedesktop.org/drm/intel/issues/8399 [i915#8411]: https://gitlab.freedesktop.org/drm/intel/issues/8411 [i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414 [i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428 [i915#8430]: https://gitlab.freedesktop.org/drm/intel/issues/8430 [i915#8437]: https://gitlab.freedesktop.org/drm/intel/issues/8437 [i915#8516]: https://gitlab.freedesktop.org/drm/intel/issues/8516 [i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555 [i915#8562]: https://gitlab.freedesktop.org/drm/intel/issues/8562 [i915#8623]: https://gitlab.freedesktop.org/drm/intel/issues/8623 [i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708 [i915#8807]: https://gitlab.freedesktop.org/drm/intel/issues/8807 [i915#8808]: https://gitlab.freedesktop.org/drm/intel/issues/8808 [i915#8810]: https://gitlab.freedesktop.org/drm/intel/issues/8810 [i915#8812]: https://gitlab.freedesktop.org/drm/intel/issues/8812 [i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814 [i915#8850]: https://gitlab.freedesktop.org/drm/intel/issues/8850 [i915#8875]: https://gitlab.freedesktop.org/drm/intel/issues/8875 [i915#8898]: https://gitlab.freedesktop.org/drm/intel/issues/8898 [i915#8925]: https://gitlab.freedesktop.org/drm/intel/issues/8925 [i915#9053]: https://gitlab.freedesktop.org/drm/intel/issues/9053 [i915#9196]: https://gitlab.freedesktop.org/drm/intel/issues/9196 [i915#9227]: https://gitlab.freedesktop.org/drm/intel/issues/9227 [i915#9295]: https://gitlab.freedesktop.org/drm/intel/issues/9295 [i915#9323]: https://gitlab.freedesktop.org/drm/intel/issues/9323 [i915#9340]: https://gitlab.freedesktop.org/drm/intel/issues/9340 [i915#9351]: https://gitlab.freedesktop.org/drm/intel/issues/9351 [i915#9364]: https://gitlab.freedesktop.org/drm/intel/issues/9364 [i915#9412]: https://gitlab.freedesktop.org/drm/intel/issues/9412 [i915#9423]: https://gitlab.freedesktop.org/drm/intel/issues/9423 [i915#9424]: https://gitlab.freedesktop.org/drm/intel/issues/9424 [i915#9519]: https://gitlab.freedesktop.org/drm/intel/issues/9519 [i915#9531]: https://gitlab.freedesktop.org/drm/intel/issues/9531 [i915#9606]: https://gitlab.freedesktop.org/drm/intel/issues/9606 [i915#9673]: https://gitlab.freedesktop.org/drm/intel/issues/9673 [i915#9683]: https://gitlab.freedesktop.org/drm/intel/issues/9683 [i915#9685]: https://gitlab.freedesktop.org/drm/intel/issues/9685 [i915#9688]: https://gitlab.freedesktop.org/drm/intel/issues/9688 [i915#9723]: https://gitlab.freedesktop.org/drm/intel/issues/9723 [i915#9732]: https://gitlab.freedesktop.org/drm/intel/issues/9732 [i915#9781]: https://gitlab.freedesktop.org/drm/intel/issues/9781 [i915#9808]: https://gitlab.freedesktop.org/drm/intel/issues/9808 [i915#9809]: https://gitlab.freedesktop.org/drm/intel/issues/9809 [i915#9820]: https://gitlab.freedesktop.org/drm/intel/issues/9820 [i915#9846]: https://gitlab.freedesktop.org/drm/intel/issues/9846 [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_7782 -> IGTPW_10912 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_14482: 4a8fabcf2f1aadbbb777a94edd01549c2aa95caf @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_10912: 10912 IGT_7782: a404f73182948e843640d00cc279883391cf6ef4 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10912/index.html [-- Attachment #2: Type: text/html, Size: 122504 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2024-03-27 3:30 UTC | newest] Thread overview: 7+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-03-26 2:34 [PATCH i-g-t V3] tests/amd_basic:fix eviction test failure Jesse Zhang 2024-03-26 2:38 ` vitaly prosyak 2024-03-26 3:30 ` ✓ CI.xeBAT: success for " Patchwork 2024-03-26 3:39 ` ✓ Fi.CI.BAT: " Patchwork 2024-03-26 11:19 ` [PATCH i-g-t V3] " Kamil Konieczny 2024-03-27 3:29 ` vitaly prosyak 2024-03-27 1:26 ` ✗ Fi.CI.IGT: failure for " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox