* [igt-dev] [PATCH 0/2] i915_pipe_stress fixes
@ 2023-09-11 12:22 Stanislav Lisovskiy
2023-09-11 12:22 ` [igt-dev] [PATCH 1/2] tests/intel/i915_pipe_stress: Fix create_buf function Stanislav Lisovskiy
` (7 more replies)
0 siblings, 8 replies; 11+ messages in thread
From: Stanislav Lisovskiy @ 2023-09-11 12:22 UTC (permalink / raw)
To: igt-dev; +Cc: juha-pekka.heikkila
- Fix for intel_buf initialization in create_buf
- Fix for the Bigjoiner-related issues
Stanislav Lisovskiy (2):
tests/intel/i915_pipe_stress: Fix create_buf function
tests/intel/i915_pipe_stress: Use only first pipe if Bigjoiner is used
tests/intel/i915_pipe_stress.c | 10 ++++++++--
1 file changed, 8 insertions(+), 2 deletions(-)
--
2.37.3
^ permalink raw reply [flat|nested] 11+ messages in thread* [igt-dev] [PATCH 1/2] tests/intel/i915_pipe_stress: Fix create_buf function 2023-09-11 12:22 [igt-dev] [PATCH 0/2] i915_pipe_stress fixes Stanislav Lisovskiy @ 2023-09-11 12:22 ` Stanislav Lisovskiy 2023-09-11 13:25 ` Zbigniew Kempczyński 2023-09-12 13:18 ` Stanislav Lisovskiy 2023-09-11 12:22 ` [igt-dev] [PATCH 2/2] tests/intel/i915_pipe_stress: Use only first pipe if Bigjoiner is used Stanislav Lisovskiy ` (6 subsequent siblings) 7 siblings, 2 replies; 11+ messages in thread From: Stanislav Lisovskiy @ 2023-09-11 12:22 UTC (permalink / raw) To: igt-dev; +Cc: juha-pekka.heikkila create_buf currently does wrong assumption what it gets width in bytes, however reality is that it gets width in pixels, so "width/4" must be "width * 4" for bpp 32. Signed-off-by: Stanislav Lisovskiy <stanislav.lisovskiy@intel.com> --- tests/intel/i915_pipe_stress.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/intel/i915_pipe_stress.c b/tests/intel/i915_pipe_stress.c index 9ceb056a09..007d3a1159 100644 --- a/tests/intel/i915_pipe_stress.c +++ b/tests/intel/i915_pipe_stress.c @@ -201,9 +201,9 @@ create_buf(struct data *data, int width, int height, uint32_t region) * Legacy code uses 32 bpp after buffer creation. * Let's do the same due to keep shader intact. */ - handle = gem_create_in_memory_regions(data->drm_fd, width * height, region); + handle = gem_create_in_memory_regions(data->drm_fd, width * 4 * height, region); intel_buf_init_using_handle(data->bops, handle, buf, - width/4, height, 32, 0, + width * 4, height, 32, 0, I915_TILING_NONE, 0); return buf; -- 2.37.3 ^ permalink raw reply related [flat|nested] 11+ messages in thread
* Re: [igt-dev] [PATCH 1/2] tests/intel/i915_pipe_stress: Fix create_buf function 2023-09-11 12:22 ` [igt-dev] [PATCH 1/2] tests/intel/i915_pipe_stress: Fix create_buf function Stanislav Lisovskiy @ 2023-09-11 13:25 ` Zbigniew Kempczyński 2023-09-12 13:18 ` Stanislav Lisovskiy 1 sibling, 0 replies; 11+ messages in thread From: Zbigniew Kempczyński @ 2023-09-11 13:25 UTC (permalink / raw) To: Stanislav Lisovskiy; +Cc: igt-dev, juha-pekka.heikkila On Mon, Sep 11, 2023 at 03:22:55PM +0300, Stanislav Lisovskiy wrote: > create_buf currently does wrong assumption what it gets > width in bytes, however reality is that it gets width > in pixels, so "width/4" must be "width * 4" for bpp 32. > > Signed-off-by: Stanislav Lisovskiy <stanislav.lisovskiy@intel.com> > --- > tests/intel/i915_pipe_stress.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/tests/intel/i915_pipe_stress.c b/tests/intel/i915_pipe_stress.c > index 9ceb056a09..007d3a1159 100644 > --- a/tests/intel/i915_pipe_stress.c > +++ b/tests/intel/i915_pipe_stress.c > @@ -201,9 +201,9 @@ create_buf(struct data *data, int width, int height, uint32_t region) > * Legacy code uses 32 bpp after buffer creation. > * Let's do the same due to keep shader intact. > */ > - handle = gem_create_in_memory_regions(data->drm_fd, width * height, region); > + handle = gem_create_in_memory_regions(data->drm_fd, width * 4 * height, region); If screen display is 32bpp width * 4 * height is ok. > intel_buf_init_using_handle(data->bops, handle, buf, > - width/4, height, 32, 0, > + width * 4, height, 32, 0, This one is too big, should be: width, height, 32 -- Zbigniew > I915_TILING_NONE, 0); > > return buf; > -- > 2.37.3 > ^ permalink raw reply [flat|nested] 11+ messages in thread
* [igt-dev] [PATCH 1/2] tests/intel/i915_pipe_stress: Fix create_buf function 2023-09-11 12:22 ` [igt-dev] [PATCH 1/2] tests/intel/i915_pipe_stress: Fix create_buf function Stanislav Lisovskiy 2023-09-11 13:25 ` Zbigniew Kempczyński @ 2023-09-12 13:18 ` Stanislav Lisovskiy 1 sibling, 0 replies; 11+ messages in thread From: Stanislav Lisovskiy @ 2023-09-12 13:18 UTC (permalink / raw) To: igt-dev; +Cc: juha-pekka.heikkila create_buf currently does wrong assumption what it gets width in bytes, however reality is that it gets width in pixels, so "width/4" must be "width * 4" for bpp 32. v2: - /width * 4/width for intel_buf_init_using_handle (Zbigniew Kempczyński) Signed-off-by: Stanislav Lisovskiy <stanislav.lisovskiy@intel.com> --- tests/intel/i915_pipe_stress.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/intel/i915_pipe_stress.c b/tests/intel/i915_pipe_stress.c index 9ceb056a09..3cd84d027f 100644 --- a/tests/intel/i915_pipe_stress.c +++ b/tests/intel/i915_pipe_stress.c @@ -201,9 +201,9 @@ create_buf(struct data *data, int width, int height, uint32_t region) * Legacy code uses 32 bpp after buffer creation. * Let's do the same due to keep shader intact. */ - handle = gem_create_in_memory_regions(data->drm_fd, width * height, region); + handle = gem_create_in_memory_regions(data->drm_fd, width * 4 * height, region); intel_buf_init_using_handle(data->bops, handle, buf, - width/4, height, 32, 0, + width, height, 32, 0, I915_TILING_NONE, 0); return buf; -- 2.37.3 ^ permalink raw reply related [flat|nested] 11+ messages in thread
* [igt-dev] [PATCH 2/2] tests/intel/i915_pipe_stress: Use only first pipe if Bigjoiner is used 2023-09-11 12:22 [igt-dev] [PATCH 0/2] i915_pipe_stress fixes Stanislav Lisovskiy 2023-09-11 12:22 ` [igt-dev] [PATCH 1/2] tests/intel/i915_pipe_stress: Fix create_buf function Stanislav Lisovskiy @ 2023-09-11 12:22 ` Stanislav Lisovskiy 2023-09-11 13:04 ` [igt-dev] ✓ CI.xeBAT: success for i915_pipe_stress fixes Patchwork ` (5 subsequent siblings) 7 siblings, 0 replies; 11+ messages in thread From: Stanislav Lisovskiy @ 2023-09-11 12:22 UTC (permalink / raw) To: igt-dev; +Cc: juha-pekka.heikkila We currently are having test failures for Bigjoiner, because that test tries to use all pipes simultaneously, not realizing that if we use a Bigjoiner mode on pipe A, the adjacent pipe won't be available. For now just fix it by using only one pipe, if resolution > 3840 is detected. Signed-off-by: Stanislav Lisovskiy <stanislav.lisovskiy@intel.com> --- tests/intel/i915_pipe_stress.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tests/intel/i915_pipe_stress.c b/tests/intel/i915_pipe_stress.c index 007d3a1159..681cefa8aa 100644 --- a/tests/intel/i915_pipe_stress.c +++ b/tests/intel/i915_pipe_stress.c @@ -590,6 +590,12 @@ static void stress_pipes(struct data *data, struct timespec *start, igt_pipe_crc_stop(data->pipe_crc[pipe]); igt_assert_crc_equal(&crc, &crc2); + /* + * Do not try to use other pipes, if Bigjoiner is used + */ + if (data->highest_mode[pipe]->hdisplay > 3840) + break; + ++pipe; } } -- 2.37.3 ^ permalink raw reply related [flat|nested] 11+ messages in thread
* [igt-dev] ✓ CI.xeBAT: success for i915_pipe_stress fixes 2023-09-11 12:22 [igt-dev] [PATCH 0/2] i915_pipe_stress fixes Stanislav Lisovskiy 2023-09-11 12:22 ` [igt-dev] [PATCH 1/2] tests/intel/i915_pipe_stress: Fix create_buf function Stanislav Lisovskiy 2023-09-11 12:22 ` [igt-dev] [PATCH 2/2] tests/intel/i915_pipe_stress: Use only first pipe if Bigjoiner is used Stanislav Lisovskiy @ 2023-09-11 13:04 ` Patchwork 2023-09-11 13:09 ` [igt-dev] ✓ Fi.CI.BAT: " Patchwork ` (4 subsequent siblings) 7 siblings, 0 replies; 11+ messages in thread From: Patchwork @ 2023-09-11 13:04 UTC (permalink / raw) To: Lisovskiy, Stanislav; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 3793 bytes --] == Series Details == Series: i915_pipe_stress fixes URL : https://patchwork.freedesktop.org/series/123537/ State : success == Summary == CI Bug Log - changes from XEIGT_7479_BAT -> XEIGTPW_9764_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (3 -> 4) ------------------------------ Additional (1): bat-adlp-7 Known issues ------------ Here are the changes found in XEIGTPW_9764_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_addfb_basic@basic-y-tiled-legacy: - bat-adlp-7: NOTRUN -> [FAIL][1] ([Intel XE#609]) +2 other tests fail [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9764/bat-adlp-7/igt@kms_addfb_basic@basic-y-tiled-legacy.html * igt@kms_flip@basic-flip-vs-wf_vblank: - bat-adlp-7: NOTRUN -> [FAIL][2] ([Intel XE#480]) +1 other test fail [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9764/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank.html * igt@kms_frontbuffer_tracking@basic: - bat-adlp-7: NOTRUN -> [INCOMPLETE][3] ([Intel XE#632]) [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9764/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html * igt@xe_evict@evict-beng-small-external: - bat-pvc-2: NOTRUN -> [FAIL][4] ([Intel XE#389]) +2 other tests fail [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9764/bat-pvc-2/igt@xe_evict@evict-beng-small-external.html - bat-adlp-7: NOTRUN -> [SKIP][5] ([Intel XE#261]) +15 other tests skip [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9764/bat-adlp-7/igt@xe_evict@evict-beng-small-external.html * igt@xe_evict@evict-small-cm: - bat-pvc-2: NOTRUN -> [DMESG-FAIL][6] ([Intel XE#482]) +2 other tests dmesg-fail [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9764/bat-pvc-2/igt@xe_evict@evict-small-cm.html * igt@xe_exec_fault_mode@twice-userptr: - bat-adlp-7: NOTRUN -> [SKIP][7] ([Intel XE#288]) +17 other tests skip [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9764/bat-adlp-7/igt@xe_exec_fault_mode@twice-userptr.html * igt@xe_exec_reset@cm-close-fd-no-exec: - bat-pvc-2: NOTRUN -> [DMESG-WARN][8] ([Intel XE#526]) [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9764/bat-pvc-2/igt@xe_exec_reset@cm-close-fd-no-exec.html * igt@xe_mmap@vram: - bat-adlp-7: NOTRUN -> [SKIP][9] ([Intel XE#263]) [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9764/bat-adlp-7/igt@xe_mmap@vram.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [Intel XE#261]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/261 [Intel XE#263]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/263 [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288 [Intel XE#389]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/389 [Intel XE#480]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/480 [Intel XE#482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/482 [Intel XE#526]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/526 [Intel XE#609]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/609 [Intel XE#632]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/632 Build changes ------------- * IGT: IGT_7479 -> IGTPW_9764 IGTPW_9764: 9764 IGT_7479: 84ec7fe5b86ca4c7449d63ca833ca8cbe350f1f2 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-365-0533b5d42b2f8ec916646c10715ac45215e87689: 0533b5d42b2f8ec916646c10715ac45215e87689 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9764/index.html [-- Attachment #2: Type: text/html, Size: 4567 bytes --] ^ permalink raw reply [flat|nested] 11+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for i915_pipe_stress fixes 2023-09-11 12:22 [igt-dev] [PATCH 0/2] i915_pipe_stress fixes Stanislav Lisovskiy ` (2 preceding siblings ...) 2023-09-11 13:04 ` [igt-dev] ✓ CI.xeBAT: success for i915_pipe_stress fixes Patchwork @ 2023-09-11 13:09 ` Patchwork 2023-09-11 16:46 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork ` (3 subsequent siblings) 7 siblings, 0 replies; 11+ messages in thread From: Patchwork @ 2023-09-11 13:09 UTC (permalink / raw) To: Lisovskiy, Stanislav; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 3798 bytes --] == Series Details == Series: i915_pipe_stress fixes URL : https://patchwork.freedesktop.org/series/123537/ State : success == Summary == CI Bug Log - changes from IGT_7479 -> IGTPW_9764 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/index.html Participating hosts (40 -> 38) ------------------------------ Missing (2): bat-dg2-8 fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_9764 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_exec_suspend@basic-s0@lmem0: - bat-dg2-9: [PASS][1] -> [INCOMPLETE][2] ([i915#8797] / [i915#9275]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7479/bat-dg2-9/igt@gem_exec_suspend@basic-s0@lmem0.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/bat-dg2-9/igt@gem_exec_suspend@basic-s0@lmem0.html * igt@i915_selftest@live@execlists: - fi-bsw-n3050: [PASS][3] -> [ABORT][4] ([i915#7911] / [i915#7913]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7479/fi-bsw-n3050/igt@i915_selftest@live@execlists.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/fi-bsw-n3050/igt@i915_selftest@live@execlists.html * igt@kms_hdmi_inject@inject-audio: - fi-kbl-guc: [PASS][5] -> [FAIL][6] ([IGT#3] / [i915#6121]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7479/fi-kbl-guc/igt@kms_hdmi_inject@inject-audio.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/fi-kbl-guc/igt@kms_hdmi_inject@inject-audio.html * igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1: - bat-rplp-1: [PASS][7] -> [ABORT][8] ([i915#8668]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7479/bat-rplp-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/bat-rplp-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1.html * igt@kms_psr@primary_page_flip: - fi-pnv-d510: NOTRUN -> [SKIP][9] ([fdo#109271]) +30 other tests skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/fi-pnv-d510/igt@kms_psr@primary_page_flip.html #### Possible fixes #### * igt@i915_selftest@live@guc: - bat-dg2-9: [DMESG-WARN][10] -> [PASS][11] [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7479/bat-dg2-9/igt@i915_selftest@live@guc.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/bat-dg2-9/igt@i915_selftest@live@guc.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [IGT#3]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/3 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [i915#6121]: https://gitlab.freedesktop.org/drm/intel/issues/6121 [i915#7911]: https://gitlab.freedesktop.org/drm/intel/issues/7911 [i915#7913]: https://gitlab.freedesktop.org/drm/intel/issues/7913 [i915#7952]: https://gitlab.freedesktop.org/drm/intel/issues/7952 [i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668 [i915#8797]: https://gitlab.freedesktop.org/drm/intel/issues/8797 [i915#9275]: https://gitlab.freedesktop.org/drm/intel/issues/9275 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7479 -> IGTPW_9764 CI-20190529: 20190529 CI_DRM_13617: 232c052bbad9247620eb164d559c1e0a9eae0353 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9764: 9764 IGT_7479: 84ec7fe5b86ca4c7449d63ca833ca8cbe350f1f2 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/index.html [-- Attachment #2: Type: text/html, Size: 4469 bytes --] ^ permalink raw reply [flat|nested] 11+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for i915_pipe_stress fixes 2023-09-11 12:22 [igt-dev] [PATCH 0/2] i915_pipe_stress fixes Stanislav Lisovskiy ` (3 preceding siblings ...) 2023-09-11 13:09 ` [igt-dev] ✓ Fi.CI.BAT: " Patchwork @ 2023-09-11 16:46 ` Patchwork 2023-09-12 16:02 ` [igt-dev] ✓ Fi.CI.BAT: success for i915_pipe_stress fixes (rev2) Patchwork ` (2 subsequent siblings) 7 siblings, 0 replies; 11+ messages in thread From: Patchwork @ 2023-09-11 16:46 UTC (permalink / raw) To: Lisovskiy, Stanislav; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 86675 bytes --] == Series Details == Series: i915_pipe_stress fixes URL : https://patchwork.freedesktop.org/series/123537/ State : failure == Summary == CI Bug Log - changes from IGT_7479_full -> IGTPW_9764_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_9764_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_9764_full, please notify your bug team (lgci.bug.filing@intel.com) to allow them to document this new failure mode, which will reduce false positives in CI. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/index.html Participating hosts (9 -> 9) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_9764_full: ### IGT changes ### #### Possible regressions #### * igt@gem_ccs@ctrl-surf-copy-new-ctx: - shard-mtlp: NOTRUN -> [SKIP][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-mtlp-4/igt@gem_ccs@ctrl-surf-copy-new-ctx.html #### Warnings #### * igt@i915_suspend@basic-s3-without-i915: - shard-snb: [DMESG-WARN][2] ([i915#8841]) -> [INCOMPLETE][3] [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7479/shard-snb4/igt@i915_suspend@basic-s3-without-i915.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-snb4/igt@i915_suspend@basic-s3-without-i915.html New tests --------- New tests have been introduced between IGT_7479_full and IGTPW_9764_full: ### New IGT tests (10) ### * igt@kms_atomic_transition@plane-all-transition@pipe-a-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_atomic_transition@plane-all-transition@pipe-b-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_atomic_transition@plane-primary-toggle-with-vblank-wait@pipe-a-hdmi-a-3: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_atomic_transition@plane-primary-toggle-with-vblank-wait@pipe-b-hdmi-a-3: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_plane_multiple@tiling-4@pipe-a-dp-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_multiple@tiling-4@pipe-b-dp-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_multiple@tiling-4@pipe-c-dp-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_multiple@tiling-4@pipe-d-dp-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_multiple@tiling-x@pipe-a-dp-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_multiple@tiling-x@pipe-b-dp-4: - Statuses : 1 pass(s) - Exec time: [0.0] s Known issues ------------ Here are the changes found in IGTPW_9764_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-reloc-keep-cache: - shard-rkl: NOTRUN -> [SKIP][4] ([i915#8411]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-rkl-7/igt@api_intel_bb@blit-reloc-keep-cache.html * igt@api_intel_bb@blit-reloc-purge-cache: - shard-dg2: NOTRUN -> [SKIP][5] ([i915#8411]) +2 other tests skip [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-dg2-10/igt@api_intel_bb@blit-reloc-purge-cache.html * igt@drm_fdinfo@busy@ccs0: - shard-dg2: NOTRUN -> [SKIP][6] ([i915#8414]) +12 other tests skip [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-dg2-10/igt@drm_fdinfo@busy@ccs0.html * igt@drm_fdinfo@isolation@rcs0: - shard-mtlp: NOTRUN -> [SKIP][7] ([i915#8414]) +13 other tests skip [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-mtlp-5/igt@drm_fdinfo@isolation@rcs0.html * igt@drm_fdinfo@most-busy-idle-check-all@rcs0: - shard-rkl: [PASS][8] -> [FAIL][9] ([i915#7742]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7479/shard-rkl-2/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-rkl-2/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html * igt@gem_barrier_race@remote-request@rcs0: - shard-apl: [PASS][10] -> [ABORT][11] ([i915#7461] / [i915#8190]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7479/shard-apl2/igt@gem_barrier_race@remote-request@rcs0.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-apl3/igt@gem_barrier_race@remote-request@rcs0.html * igt@gem_basic@multigpu-create-close: - shard-mtlp: NOTRUN -> [SKIP][12] ([i915#7697]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-mtlp-4/igt@gem_basic@multigpu-create-close.html * igt@gem_caching@writes: - shard-mtlp: NOTRUN -> [SKIP][13] ([i915#4873]) +1 other test skip [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-mtlp-4/igt@gem_caching@writes.html * igt@gem_ccs@ctrl-surf-copy: - shard-mtlp: NOTRUN -> [SKIP][14] ([i915#3555]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-mtlp-7/igt@gem_ccs@ctrl-surf-copy.html * igt@gem_close_race@multigpu-basic-process: - shard-tglu: NOTRUN -> [SKIP][15] ([i915#7697]) +1 other test skip [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-tglu-4/igt@gem_close_race@multigpu-basic-process.html * igt@gem_close_race@multigpu-basic-threads: - shard-dg2: NOTRUN -> [SKIP][16] ([i915#7697]) +1 other test skip [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-dg2-10/igt@gem_close_race@multigpu-basic-threads.html * igt@gem_create@create-ext-cpu-access-big: - shard-dg2: NOTRUN -> [INCOMPLETE][17] ([i915#9283]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-dg2-5/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_create@create-ext-set-pat: - shard-dg2: NOTRUN -> [SKIP][18] ([i915#8562]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-dg2-3/igt@gem_create@create-ext-set-pat.html * igt@gem_ctx_persistence@engines-hostile: - shard-snb: NOTRUN -> [SKIP][19] ([fdo#109271] / [i915#1099]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-snb4/igt@gem_ctx_persistence@engines-hostile.html * igt@gem_ctx_persistence@heartbeat-stop: - shard-mtlp: NOTRUN -> [SKIP][20] ([i915#8555]) +1 other test skip [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-mtlp-5/igt@gem_ctx_persistence@heartbeat-stop.html * igt@gem_ctx_persistence@saturated-hostile-nopreempt@vcs1: - shard-mtlp: NOTRUN -> [SKIP][21] ([i915#5882]) +5 other tests skip [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-mtlp-5/igt@gem_ctx_persistence@saturated-hostile-nopreempt@vcs1.html * igt@gem_eio@unwedge-stress: - shard-dg1: [PASS][22] -> [FAIL][23] ([i915#5784]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7479/shard-dg1-16/igt@gem_eio@unwedge-stress.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-dg1-12/igt@gem_eio@unwedge-stress.html * igt@gem_exec_balancer@bonded-false-hang: - shard-dg1: NOTRUN -> [SKIP][24] ([i915#4812]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-dg1-19/igt@gem_exec_balancer@bonded-false-hang.html * igt@gem_exec_balancer@bonded-true-hang: - shard-mtlp: NOTRUN -> [SKIP][25] ([i915#4812]) +1 other test skip [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-mtlp-3/igt@gem_exec_balancer@bonded-true-hang.html * igt@gem_exec_balancer@noheartbeat: - shard-dg2: NOTRUN -> [SKIP][26] ([i915#8555]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-dg2-11/igt@gem_exec_balancer@noheartbeat.html * igt@gem_exec_balancer@parallel-keep-submit-fence: - shard-rkl: NOTRUN -> [SKIP][27] ([i915#4525]) +1 other test skip [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-rkl-2/igt@gem_exec_balancer@parallel-keep-submit-fence.html * igt@gem_exec_fair@basic-none-solo@rcs0: - shard-apl: [PASS][28] -> [FAIL][29] ([i915#2842]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7479/shard-apl1/igt@gem_exec_fair@basic-none-solo@rcs0.html [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-apl4/igt@gem_exec_fair@basic-none-solo@rcs0.html * igt@gem_exec_fair@basic-none@bcs0: - shard-rkl: NOTRUN -> [FAIL][30] ([i915#2842]) +3 other tests fail [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-rkl-1/igt@gem_exec_fair@basic-none@bcs0.html * igt@gem_exec_fair@basic-pace: - shard-dg2: NOTRUN -> [SKIP][31] ([i915#3539]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-dg2-10/igt@gem_exec_fair@basic-pace.html * igt@gem_exec_fair@basic-pace-solo@rcs0: - shard-rkl: [PASS][32] -> [FAIL][33] ([i915#2842]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7479/shard-rkl-6/igt@gem_exec_fair@basic-pace-solo@rcs0.html [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-rkl-4/igt@gem_exec_fair@basic-pace-solo@rcs0.html * igt@gem_exec_fair@basic-throttle: - shard-mtlp: NOTRUN -> [SKIP][34] ([i915#4473] / [i915#4771]) +1 other test skip [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-mtlp-2/igt@gem_exec_fair@basic-throttle.html * igt@gem_exec_flush@basic-wb-prw-default: - shard-dg2: NOTRUN -> [SKIP][35] ([i915#3539] / [i915#4852]) +3 other tests skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-dg2-7/igt@gem_exec_flush@basic-wb-prw-default.html * igt@gem_exec_gttfill@multigpu-basic: - shard-rkl: NOTRUN -> [SKIP][36] ([i915#7697]) +1 other test skip [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-rkl-4/igt@gem_exec_gttfill@multigpu-basic.html - shard-dg1: NOTRUN -> [SKIP][37] ([i915#7697]) +1 other test skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-dg1-13/igt@gem_exec_gttfill@multigpu-basic.html * igt@gem_exec_reloc@basic-cpu-gtt-noreloc: - shard-dg2: NOTRUN -> [SKIP][38] ([i915#3281]) +8 other tests skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-dg2-5/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html * igt@gem_exec_reloc@basic-cpu-wc-noreloc: - shard-mtlp: NOTRUN -> [SKIP][39] ([i915#3281]) +4 other tests skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-mtlp-7/igt@gem_exec_reloc@basic-cpu-wc-noreloc.html * igt@gem_exec_reloc@basic-write-cpu: - shard-rkl: NOTRUN -> [SKIP][40] ([i915#3281]) +2 other tests skip [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-rkl-7/igt@gem_exec_reloc@basic-write-cpu.html * igt@gem_exec_schedule@noreorder@bcs0: - shard-mtlp: [PASS][41] -> [DMESG-WARN][42] ([i915#9121]) +1 other test dmesg-warn [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7479/shard-mtlp-5/igt@gem_exec_schedule@noreorder@bcs0.html [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-mtlp-4/igt@gem_exec_schedule@noreorder@bcs0.html * igt@gem_exec_schedule@noreorder@ccs0: - shard-mtlp: [PASS][43] -> [DMESG-FAIL][44] ([i915#9121]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7479/shard-mtlp-5/igt@gem_exec_schedule@noreorder@ccs0.html [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-mtlp-4/igt@gem_exec_schedule@noreorder@ccs0.html * igt@gem_exec_schedule@preempt-queue-contexts-chain: - shard-dg2: NOTRUN -> [SKIP][45] ([i915#4537] / [i915#4812]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-dg2-11/igt@gem_exec_schedule@preempt-queue-contexts-chain.html * igt@gem_exec_schedule@semaphore-power: - shard-mtlp: NOTRUN -> [SKIP][46] ([i915#4537] / [i915#4812]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-mtlp-7/igt@gem_exec_schedule@semaphore-power.html * igt@gem_exec_suspend@basic-s4-devices@smem: - shard-tglu: [PASS][47] -> [ABORT][48] ([i915#7975] / [i915#8213]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7479/shard-tglu-2/igt@gem_exec_suspend@basic-s4-devices@smem.html [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-tglu-10/igt@gem_exec_suspend@basic-s4-devices@smem.html * igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible: - shard-dg2: NOTRUN -> [SKIP][49] ([i915#4860]) +3 other tests skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-dg2-10/igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible.html * igt@gem_fenced_exec_thrash@no-spare-fences-interruptible: - shard-mtlp: NOTRUN -> [SKIP][50] ([i915#4860]) +1 other test skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-mtlp-4/igt@gem_fenced_exec_thrash@no-spare-fences-interruptible.html * igt@gem_lmem_swapping@heavy-verify-random-ccs: - shard-mtlp: NOTRUN -> [SKIP][51] ([i915#4613]) +3 other tests skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-mtlp-4/igt@gem_lmem_swapping@heavy-verify-random-ccs.html * igt@gem_lmem_swapping@verify-ccs: - shard-rkl: NOTRUN -> [SKIP][52] ([i915#4613]) +2 other tests skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-rkl-2/igt@gem_lmem_swapping@verify-ccs.html * igt@gem_madvise@dontneed-before-exec: - shard-mtlp: NOTRUN -> [SKIP][53] ([i915#3282]) +4 other tests skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-mtlp-4/igt@gem_madvise@dontneed-before-exec.html * igt@gem_media_fill@media-fill: - shard-dg2: NOTRUN -> [SKIP][54] ([i915#8289]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-dg2-3/igt@gem_media_fill@media-fill.html * igt@gem_media_vme: - shard-mtlp: NOTRUN -> [SKIP][55] ([i915#284]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-mtlp-3/igt@gem_media_vme.html * igt@gem_mmap_gtt@cpuset-medium-copy-odd: - shard-mtlp: NOTRUN -> [SKIP][56] ([i915#4077]) +18 other tests skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-mtlp-3/igt@gem_mmap_gtt@cpuset-medium-copy-odd.html * igt@gem_mmap_gtt@zero-extend: - shard-dg2: NOTRUN -> [SKIP][57] ([i915#4077]) +7 other tests skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-dg2-11/igt@gem_mmap_gtt@zero-extend.html * igt@gem_mmap_wc@coherency: - shard-dg2: NOTRUN -> [SKIP][58] ([i915#4083]) +6 other tests skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-dg2-11/igt@gem_mmap_wc@coherency.html * igt@gem_mmap_wc@read-write: - shard-mtlp: NOTRUN -> [SKIP][59] ([i915#4083]) +4 other tests skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-mtlp-4/igt@gem_mmap_wc@read-write.html * igt@gem_mmap_wc@write-wc-read-gtt: - shard-dg1: NOTRUN -> [SKIP][60] ([i915#4083]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-dg1-17/igt@gem_mmap_wc@write-wc-read-gtt.html * igt@gem_pread@display: - shard-dg2: NOTRUN -> [SKIP][61] ([i915#3282]) +2 other tests skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-dg2-11/igt@gem_pread@display.html - shard-rkl: NOTRUN -> [SKIP][62] ([i915#3282]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-rkl-2/igt@gem_pread@display.html * igt@gem_pxp@create-protected-buffer: - shard-dg2: NOTRUN -> [SKIP][63] ([i915#4270]) +1 other test skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-dg2-2/igt@gem_pxp@create-protected-buffer.html * igt@gem_pxp@regular-baseline-src-copy-readible: - shard-mtlp: NOTRUN -> [SKIP][64] ([i915#4270]) +2 other tests skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-mtlp-5/igt@gem_pxp@regular-baseline-src-copy-readible.html * igt@gem_render_copy@yf-tiled-ccs-to-y-tiled: - shard-mtlp: NOTRUN -> [SKIP][65] ([i915#8428]) +6 other tests skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-mtlp-5/igt@gem_render_copy@yf-tiled-ccs-to-y-tiled.html * igt@gem_set_tiling_vs_blt@tiled-to-untiled: - shard-dg2: NOTRUN -> [SKIP][66] ([i915#4079]) +2 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-dg2-10/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html * igt@gem_set_tiling_vs_gtt: - shard-dg1: NOTRUN -> [SKIP][67] ([i915#4079]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-dg1-19/igt@gem_set_tiling_vs_gtt.html - shard-mtlp: NOTRUN -> [SKIP][68] ([i915#4079]) +2 other tests skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-mtlp-4/igt@gem_set_tiling_vs_gtt.html * igt@gem_softpin@evict-snoop: - shard-mtlp: NOTRUN -> [SKIP][69] ([i915#4885]) +1 other test skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-mtlp-5/igt@gem_softpin@evict-snoop.html * igt@gem_softpin@evict-snoop-interruptible: - shard-dg2: NOTRUN -> [SKIP][70] ([i915#4885]) [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-dg2-3/igt@gem_softpin@evict-snoop-interruptible.html * igt@gem_unfence_active_buffers: - shard-mtlp: NOTRUN -> [SKIP][71] ([i915#4879]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-mtlp-2/igt@gem_unfence_active_buffers.html * igt@gem_userptr_blits@create-destroy-unsync: - shard-dg2: NOTRUN -> [SKIP][72] ([i915#3297]) +3 other tests skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-dg2-10/igt@gem_userptr_blits@create-destroy-unsync.html - shard-rkl: NOTRUN -> [SKIP][73] ([i915#3297]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-rkl-7/igt@gem_userptr_blits@create-destroy-unsync.html - shard-mtlp: NOTRUN -> [SKIP][74] ([i915#3297]) +4 other tests skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-mtlp-7/igt@gem_userptr_blits@create-destroy-unsync.html * igt@gem_userptr_blits@dmabuf-unsync: - shard-tglu: NOTRUN -> [SKIP][75] ([i915#3297]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-tglu-5/igt@gem_userptr_blits@dmabuf-unsync.html * igt@gem_userptr_blits@vma-merge: - shard-dg2: NOTRUN -> [FAIL][76] ([i915#3318]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-dg2-1/igt@gem_userptr_blits@vma-merge.html * igt@gen3_render_tiledy_blits: - shard-rkl: NOTRUN -> [SKIP][77] ([fdo#109289]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-rkl-6/igt@gen3_render_tiledy_blits.html * igt@gen7_exec_parse@basic-allocation: - shard-mtlp: NOTRUN -> [SKIP][78] ([fdo#109289]) +3 other tests skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-mtlp-7/igt@gen7_exec_parse@basic-allocation.html * igt@gen7_exec_parse@batch-without-end: - shard-dg2: NOTRUN -> [SKIP][79] ([fdo#109289]) +2 other tests skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-dg2-10/igt@gen7_exec_parse@batch-without-end.html * igt@gen9_exec_parse@bb-start-cmd: - shard-tglu: NOTRUN -> [SKIP][80] ([i915#2527] / [i915#2856]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-tglu-6/igt@gen9_exec_parse@bb-start-cmd.html * igt@gen9_exec_parse@shadow-peek: - shard-dg2: NOTRUN -> [SKIP][81] ([i915#2856]) +3 other tests skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-dg2-3/igt@gen9_exec_parse@shadow-peek.html - shard-rkl: NOTRUN -> [SKIP][82] ([i915#2527]) +1 other test skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-rkl-6/igt@gen9_exec_parse@shadow-peek.html * igt@gen9_exec_parse@unaligned-jump: - shard-mtlp: NOTRUN -> [SKIP][83] ([i915#2856]) +4 other tests skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-mtlp-4/igt@gen9_exec_parse@unaligned-jump.html * igt@i915_pm_freq_api@freq-suspend@gt0: - shard-dg2: [PASS][84] -> [INCOMPLETE][85] ([i915#8797]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7479/shard-dg2-11/igt@i915_pm_freq_api@freq-suspend@gt0.html [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-dg2-6/igt@i915_pm_freq_api@freq-suspend@gt0.html * igt@i915_pm_freq_mult@media-freq@gt1: - shard-mtlp: NOTRUN -> [SKIP][86] ([i915#6590]) +1 other test skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-mtlp-7/igt@i915_pm_freq_mult@media-freq@gt1.html * igt@i915_pm_rc6_residency@rc6-idle@bcs0: - shard-dg1: [PASS][87] -> [FAIL][88] ([i915#3591]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7479/shard-dg1-12/igt@i915_pm_rc6_residency@rc6-idle@bcs0.html [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-dg1-16/igt@i915_pm_rc6_residency@rc6-idle@bcs0.html * igt@i915_pm_rpm@dpms-lpsp: - shard-rkl: [PASS][89] -> [SKIP][90] ([i915#1397]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7479/shard-rkl-7/igt@i915_pm_rpm@dpms-lpsp.html [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-rkl-4/igt@i915_pm_rpm@dpms-lpsp.html * igt@i915_pm_rpm@dpms-mode-unset-non-lpsp: - shard-dg1: [PASS][91] -> [SKIP][92] ([i915#1397]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7479/shard-dg1-17/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-dg1-19/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@i915_pm_rpm@dpms-non-lpsp: - shard-mtlp: NOTRUN -> [SKIP][93] ([i915#1397]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-mtlp-7/igt@i915_pm_rpm@dpms-non-lpsp.html - shard-dg2: [PASS][94] -> [SKIP][95] ([i915#1397]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7479/shard-dg2-5/igt@i915_pm_rpm@dpms-non-lpsp.html [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-dg2-10/igt@i915_pm_rpm@dpms-non-lpsp.html * igt@i915_pm_rpm@i2c: - shard-dg2: [PASS][96] -> [FAIL][97] ([i915#8717]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7479/shard-dg2-6/igt@i915_pm_rpm@i2c.html [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-dg2-2/igt@i915_pm_rpm@i2c.html * igt@i915_pm_rpm@modeset-non-lpsp: - shard-rkl: NOTRUN -> [SKIP][98] ([i915#1397]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-rkl-7/igt@i915_pm_rpm@modeset-non-lpsp.html * igt@i915_pm_rpm@modeset-pc8-residency-stress: - shard-mtlp: NOTRUN -> [SKIP][99] ([fdo#109293]) [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-mtlp-7/igt@i915_pm_rpm@modeset-pc8-residency-stress.html * igt@i915_pm_rps@min-max-config-loaded: - shard-mtlp: NOTRUN -> [SKIP][100] ([i915#6621]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-mtlp-4/igt@i915_pm_rps@min-max-config-loaded.html * igt@i915_pm_rps@reset: - shard-mtlp: NOTRUN -> [FAIL][101] ([i915#8346]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-mtlp-3/igt@i915_pm_rps@reset.html * igt@i915_pm_rps@thresholds@gt0: - shard-dg2: NOTRUN -> [SKIP][102] ([i915#8925]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-dg2-1/igt@i915_pm_rps@thresholds@gt0.html * igt@i915_pm_sseu@full-enable: - shard-dg2: NOTRUN -> [SKIP][103] ([i915#4387]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-dg2-5/igt@i915_pm_sseu@full-enable.html * igt@i915_suspend@debugfs-reader: - shard-mtlp: NOTRUN -> [ABORT][104] ([i915#7461] / [i915#9262]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-mtlp-5/igt@i915_suspend@debugfs-reader.html * igt@kms_addfb_basic@addfb25-x-tiled-legacy: - shard-mtlp: NOTRUN -> [SKIP][105] ([i915#4212]) +1 other test skip [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-mtlp-2/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html * igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy: - shard-dg2: NOTRUN -> [SKIP][106] ([i915#4212]) +1 other test skip [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-dg2-10/igt@kms_addfb_basic@addfb25-x-tiled-mismatch-legacy.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-dg2: NOTRUN -> [SKIP][107] ([i915#5190]) +14 other tests skip [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-dg2-2/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-mtlp: NOTRUN -> [SKIP][108] ([i915#3826]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-mtlp-2/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt@kms_async_flips@crc@pipe-b-hdmi-a-3: - shard-dg1: NOTRUN -> [FAIL][109] ([i915#8247]) +3 other tests fail [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-dg1-12/igt@kms_async_flips@crc@pipe-b-hdmi-a-3.html * igt@kms_async_flips@test-cursor: - shard-mtlp: NOTRUN -> [SKIP][110] ([i915#6229]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-mtlp-7/igt@kms_async_flips@test-cursor.html * igt@kms_big_fb@4-tiled-16bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][111] ([fdo#111614]) +4 other tests skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-dg2-10/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip: - shard-dg1: NOTRUN -> [SKIP][112] ([i915#4538] / [i915#5286]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-dg1-16/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html - shard-tglu: NOTRUN -> [SKIP][113] ([fdo#111615] / [i915#5286]) +1 other test skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-tglu-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-rkl: NOTRUN -> [SKIP][114] ([i915#5286]) +2 other tests skip [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-rkl-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@linear-16bpp-rotate-270: - shard-mtlp: NOTRUN -> [SKIP][115] ([fdo#111614]) +3 other tests skip [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-mtlp-5/igt@kms_big_fb@linear-16bpp-rotate-270.html * igt@kms_big_fb@linear-64bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][116] ([fdo#111614] / [i915#3638]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-rkl-2/igt@kms_big_fb@linear-64bpp-rotate-90.html * igt@kms_big_fb@linear-8bpp-rotate-90: - shard-tglu: NOTRUN -> [SKIP][117] ([fdo#111614]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-tglu-9/igt@kms_big_fb@linear-8bpp-rotate-90.html * igt@kms_big_fb@y-tiled-16bpp-rotate-180: - shard-mtlp: NOTRUN -> [SKIP][118] ([fdo#111615]) +10 other tests skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-mtlp-5/igt@kms_big_fb@y-tiled-16bpp-rotate-180.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-dg1: [PASS][119] -> [FAIL][120] ([i915#3743]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7479/shard-dg1-16/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-dg1-19/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip: - shard-tglu: [PASS][121] -> [FAIL][122] ([i915#3743]) +3 other tests fail [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7479/shard-tglu-2/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-tglu-8/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-180: - shard-tglu: NOTRUN -> [SKIP][123] ([fdo#111615]) +1 other test skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-tglu-10/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-180: - shard-dg2: NOTRUN -> [SKIP][124] ([i915#4538] / [i915#5190]) +3 other tests skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-dg2-10/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html - shard-rkl: NOTRUN -> [SKIP][125] ([fdo#110723]) +2 other tests skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-rkl-6/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-dg1: NOTRUN -> [SKIP][126] ([i915#4538]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-dg1-18/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_big_joiner@2x-modeset: - shard-mtlp: NOTRUN -> [SKIP][127] ([i915#2705]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-mtlp-3/igt@kms_big_joiner@2x-modeset.html * igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_mc_ccs: - shard-mtlp: NOTRUN -> [SKIP][128] ([i915#3886] / [i915#6095]) +12 other tests skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-mtlp-5/igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_ccs: - shard-rkl: NOTRUN -> [SKIP][129] ([i915#3734] / [i915#5354] / [i915#6095]) +2 other tests skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-rkl-6/igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_ccs.html * igt@kms_ccs@pipe-b-bad-pixel-format-4_tiled_dg2_rc_ccs: - shard-rkl: NOTRUN -> [SKIP][130] ([i915#5354] / [i915#6095]) +5 other tests skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-rkl-4/igt@kms_ccs@pipe-b-bad-pixel-format-4_tiled_dg2_rc_ccs.html * igt@kms_ccs@pipe-b-bad-pixel-format-4_tiled_mtl_rc_ccs_cc: - shard-dg1: NOTRUN -> [SKIP][131] ([i915#5354] / [i915#6095]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-dg1-17/igt@kms_ccs@pipe-b-bad-pixel-format-4_tiled_mtl_rc_ccs_cc.html - shard-tglu: NOTRUN -> [SKIP][132] ([i915#5354] / [i915#6095]) +2 other tests skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-tglu-5/igt@kms_ccs@pipe-b-bad-pixel-format-4_tiled_mtl_rc_ccs_cc.html * igt@kms_ccs@pipe-b-bad-rotation-90-yf_tiled_ccs: - shard-dg2: NOTRUN -> [SKIP][133] ([i915#3689] / [i915#5354]) +20 other tests skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-dg2-6/igt@kms_ccs@pipe-b-bad-rotation-90-yf_tiled_ccs.html * igt@kms_ccs@pipe-c-bad-pixel-format-y_tiled_gen12_rc_ccs: - shard-glk: NOTRUN -> [SKIP][134] ([fdo#109271]) +19 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-glk4/igt@kms_ccs@pipe-c-bad-pixel-format-y_tiled_gen12_rc_ccs.html * igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs: - shard-tglu: NOTRUN -> [SKIP][135] ([i915#3689] / [i915#3886] / [i915#5354] / [i915#6095]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-tglu-3/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-c-missing-ccs-buffer-y_tiled_gen12_rc_ccs_cc: - shard-dg2: NOTRUN -> [SKIP][136] ([i915#3689] / [i915#3886] / [i915#5354]) +8 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-dg2-11/igt@kms_ccs@pipe-c-missing-ccs-buffer-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-d-bad-rotation-90-yf_tiled_ccs: - shard-dg1: NOTRUN -> [SKIP][137] ([i915#3689] / [i915#5354] / [i915#6095]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-dg1-16/igt@kms_ccs@pipe-d-bad-rotation-90-yf_tiled_ccs.html - shard-tglu: NOTRUN -> [SKIP][138] ([fdo#111615] / [i915#3689] / [i915#5354] / [i915#6095]) +1 other test skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-tglu-6/igt@kms_ccs@pipe-d-bad-rotation-90-yf_tiled_ccs.html * igt@kms_ccs@pipe-d-missing-ccs-buffer-y_tiled_gen12_rc_ccs: - shard-rkl: NOTRUN -> [SKIP][139] ([i915#5354]) +13 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-rkl-4/igt@kms_ccs@pipe-d-missing-ccs-buffer-y_tiled_gen12_rc_ccs.html * igt@kms_ccs@pipe-d-random-ccs-data-y_tiled_ccs: - shard-mtlp: NOTRUN -> [SKIP][140] ([i915#6095]) +37 other tests skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-mtlp-4/igt@kms_ccs@pipe-d-random-ccs-data-y_tiled_ccs.html * igt@kms_cdclk@mode-transition@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][141] ([i915#7213] / [i915#9010]) +3 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-mtlp-7/igt@kms_cdclk@mode-transition@pipe-b-edp-1.html * igt@kms_cdclk@mode-transition@pipe-d-dp-4: - shard-dg2: NOTRUN -> [SKIP][142] ([i915#4087] / [i915#7213]) +3 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-dg2-11/igt@kms_cdclk@mode-transition@pipe-d-dp-4.html * igt@kms_cdclk@plane-scaling@pipe-b-dp-4: - shard-dg2: NOTRUN -> [SKIP][143] ([i915#4087]) +3 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-dg2-11/igt@kms_cdclk@plane-scaling@pipe-b-dp-4.html * igt@kms_chamelium_audio@hdmi-audio-edid: - shard-mtlp: NOTRUN -> [SKIP][144] ([i915#7828]) +9 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-mtlp-7/igt@kms_chamelium_audio@hdmi-audio-edid.html * igt@kms_chamelium_color@ctm-0-75: - shard-mtlp: NOTRUN -> [SKIP][145] ([fdo#111827]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-mtlp-3/igt@kms_chamelium_color@ctm-0-75.html * igt@kms_chamelium_color@ctm-green-to-red: - shard-rkl: NOTRUN -> [SKIP][146] ([fdo#111827]) +1 other test skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-rkl-6/igt@kms_chamelium_color@ctm-green-to-red.html * igt@kms_chamelium_color@degamma: - shard-dg2: NOTRUN -> [SKIP][147] ([fdo#111827]) +1 other test skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-dg2-5/igt@kms_chamelium_color@degamma.html * igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k: - shard-dg2: NOTRUN -> [SKIP][148] ([i915#7828]) +7 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-dg2-1/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html - shard-rkl: NOTRUN -> [SKIP][149] ([i915#7828]) +2 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-rkl-7/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html - shard-dg1: NOTRUN -> [SKIP][150] ([i915#7828]) +1 other test skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-dg1-17/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html - shard-tglu: NOTRUN -> [SKIP][151] ([i915#7828]) +2 other tests skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-tglu-5/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-non-4k.html * igt@kms_color@deep-color: - shard-rkl: NOTRUN -> [SKIP][152] ([i915#3555]) +1 other test skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-rkl-2/igt@kms_color@deep-color.html * igt@kms_content_protection@dp-mst-type-1: - shard-mtlp: NOTRUN -> [SKIP][153] ([i915#3299]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-mtlp-5/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_cursor_crc@cursor-offscreen-512x170: - shard-rkl: NOTRUN -> [SKIP][154] ([fdo#109279] / [i915#3359]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-rkl-7/igt@kms_cursor_crc@cursor-offscreen-512x170.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-dg2: NOTRUN -> [SKIP][155] ([i915#3359]) +1 other test skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-dg2-5/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_crc@cursor-random-max-size: - shard-tglu: NOTRUN -> [SKIP][156] ([i915#3555]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-tglu-5/igt@kms_cursor_crc@cursor-random-max-size.html * igt@kms_cursor_crc@cursor-rapid-movement-32x10: - shard-mtlp: NOTRUN -> [SKIP][157] ([i915#3555] / [i915#8814]) +2 other tests skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-mtlp-7/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html * igt@kms_cursor_crc@cursor-rapid-movement-512x512: - shard-mtlp: NOTRUN -> [SKIP][158] ([i915#3359]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-mtlp-5/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic: - shard-dg2: NOTRUN -> [SKIP][159] ([fdo#109274] / [fdo#111767] / [i915#5354]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-dg2-11/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy: - shard-mtlp: NOTRUN -> [SKIP][160] ([i915#3546]) +5 other tests skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-mtlp-4/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-rkl: NOTRUN -> [SKIP][161] ([i915#4103]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-rkl-7/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic: - shard-dg2: NOTRUN -> [SKIP][162] ([fdo#109274] / [i915#5354]) +1 other test skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-dg2-11/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-apl: [PASS][163] -> [FAIL][164] ([i915#2346]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7479/shard-apl7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-apl3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size: - shard-mtlp: NOTRUN -> [SKIP][165] ([i915#4213]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-mtlp-7/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-dg2: NOTRUN -> [SKIP][166] ([i915#4103] / [i915#4213]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-dg2-11/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt@kms_dsc@dsc-with-bpc-formats: - shard-dg2: NOTRUN -> [SKIP][167] ([i915#3555] / [i915#3840]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-dg2-11/igt@kms_dsc@dsc-with-bpc-formats.html * igt@kms_dsc@dsc-with-output-formats: - shard-mtlp: NOTRUN -> [SKIP][168] ([i915#3555] / [i915#3840]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-mtlp-2/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_fbcon_fbt@psr-suspend: - shard-rkl: NOTRUN -> [SKIP][169] ([fdo#110189] / [i915#3955]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-rkl-2/igt@kms_fbcon_fbt@psr-suspend.html - shard-dg2: NOTRUN -> [SKIP][170] ([i915#3469]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-dg2-11/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_flip@2x-absolute-wf_vblank: - shard-dg2: NOTRUN -> [SKIP][171] ([fdo#109274]) +5 other tests skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-dg2-10/igt@kms_flip@2x-absolute-wf_vblank.html * igt@kms_flip@2x-flip-vs-absolute-wf_vblank: - shard-mtlp: NOTRUN -> [SKIP][172] ([i915#3637]) +4 other tests skip [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-mtlp-4/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html * igt@kms_flip@2x-flip-vs-dpms: - shard-rkl: NOTRUN -> [SKIP][173] ([fdo#111825]) +1 other test skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-rkl-7/igt@kms_flip@2x-flip-vs-dpms.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible: - shard-dg2: NOTRUN -> [SKIP][174] ([fdo#109274] / [fdo#111767]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-dg2-10/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html - shard-snb: NOTRUN -> [SKIP][175] ([fdo#109271] / [fdo#111767]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-snb4/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html * igt@kms_flip@2x-flip-vs-fences: - shard-mtlp: NOTRUN -> [SKIP][176] ([i915#8381]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-mtlp-3/igt@kms_flip@2x-flip-vs-fences.html * igt@kms_flip@2x-flip-vs-suspend@ab-vga1-hdmi-a1: - shard-snb: NOTRUN -> [DMESG-WARN][177] ([i915#8841]) +3 other tests dmesg-warn [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-snb1/igt@kms_flip@2x-flip-vs-suspend@ab-vga1-hdmi-a1.html * igt@kms_flip@flip-vs-fences-interruptible: - shard-dg2: NOTRUN -> [SKIP][178] ([i915#8381]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-dg2-3/igt@kms_flip@flip-vs-fences-interruptible.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][179] ([i915#2587] / [i915#2672]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-dg1-16/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode.html - shard-tglu: NOTRUN -> [SKIP][180] ([i915#2587] / [i915#2672]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-tglu-2/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][181] ([i915#2672]) +3 other tests skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][182] ([i915#2672]) +2 other tests skip [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-dg2-3/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html - shard-rkl: NOTRUN -> [SKIP][183] ([i915#2672]) +1 other test skip [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][184] ([i915#3555] / [i915#8810]) +1 other test skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][185] ([i915#2672] / [i915#3555]) +1 other test skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html * igt@kms_force_connector_basic@force-load-detect: - shard-mtlp: NOTRUN -> [SKIP][186] ([fdo#109285]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-mtlp-5/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][187] ([i915#5354]) +56 other tests skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html - shard-rkl: NOTRUN -> [SKIP][188] ([fdo#111825] / [i915#1825]) +14 other tests skip [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html - shard-dg1: NOTRUN -> [SKIP][189] ([fdo#111825]) +1 other test skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-dg1-15/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][190] ([i915#8708]) +19 other tests skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-dg2-3/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-blt: - shard-mtlp: NOTRUN -> [SKIP][191] ([i915#1825]) +35 other tests skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff: - shard-tglu: NOTRUN -> [SKIP][192] ([fdo#109280]) +3 other tests skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-tglu-10/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-pwrite: - shard-dg2: NOTRUN -> [SKIP][193] ([i915#3458]) +10 other tests skip [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][194] ([i915#8708]) +14 other tests skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-mtlp-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-pgflip-blt: - shard-rkl: NOTRUN -> [SKIP][195] ([i915#3023]) +8 other tests skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite: - shard-apl: NOTRUN -> [SKIP][196] ([fdo#109271]) +18 other tests skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-apl6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite.html - shard-dg1: NOTRUN -> [SKIP][197] ([i915#3458]) +1 other test skip [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-render: - shard-tglu: NOTRUN -> [SKIP][198] ([fdo#110189]) +5 other tests skip [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-tglu-7/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-render.html * igt@kms_frontbuffer_tracking@psr-suspend: - shard-mtlp: NOTRUN -> [ABORT][199] ([i915#9262]) +4 other tests abort [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-mtlp-4/igt@kms_frontbuffer_tracking@psr-suspend.html * igt@kms_hdr@bpc-switch-suspend: - shard-rkl: NOTRUN -> [SKIP][200] ([i915#3555] / [i915#8228]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-rkl-7/igt@kms_hdr@bpc-switch-suspend.html * igt@kms_hdr@static-toggle-suspend: - shard-mtlp: NOTRUN -> [SKIP][201] ([i915#3555] / [i915#8228]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-mtlp-2/igt@kms_hdr@static-toggle-suspend.html * igt@kms_invalid_mode@clock-too-high@edp-1-pipe-d: - shard-mtlp: NOTRUN -> [SKIP][202] ([i915#6403]) +3 other tests skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-mtlp-4/igt@kms_invalid_mode@clock-too-high@edp-1-pipe-d.html * igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes: - shard-tglu: NOTRUN -> [SKIP][203] ([fdo#109289]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-tglu-8/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-dp-1: - shard-apl: [PASS][204] -> [INCOMPLETE][205] ([i915#180]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7479/shard-apl7/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-dp-1.html [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-apl2/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-dp-1.html * igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a-planes: - shard-mtlp: [PASS][206] -> [ABORT][207] ([i915#9262]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7479/shard-mtlp-3/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a-planes.html [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-mtlp-7/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a-planes.html - shard-dg2: NOTRUN -> [FAIL][208] ([fdo#103375]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-dg2-11/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a-planes.html * igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b-planes: - shard-mtlp: [PASS][209] -> [DMESG-WARN][210] ([i915#9262]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7479/shard-mtlp-3/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b-planes.html [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-mtlp-7/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b-planes.html * igt@kms_plane_lowres@tiling-y: - shard-mtlp: NOTRUN -> [SKIP][211] ([i915#8821]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-mtlp-5/igt@kms_plane_lowres@tiling-y.html * igt@kms_plane_lowres@tiling-yf: - shard-mtlp: NOTRUN -> [SKIP][212] ([i915#3555] / [i915#8821]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-mtlp-5/igt@kms_plane_lowres@tiling-yf.html * igt@kms_plane_scaling@intel-max-src-size: - shard-mtlp: NOTRUN -> [SKIP][213] ([i915#6953]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-mtlp-4/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1: - shard-dg1: NOTRUN -> [FAIL][214] ([i915#8292]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-dg1-19/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][215] ([i915#5176]) +7 other tests skip [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-rkl-2/igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-a-hdmi-a-2.html * igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][216] ([i915#5176]) +3 other tests skip [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-dg2-1/igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-a-hdmi-a-3.html * igt@kms_plane_scaling@plane-scaler-with-rotation-unity-scaling@pipe-d-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][217] ([i915#5176]) +7 other tests skip [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-dg1-15/igt@kms_plane_scaling@plane-scaler-with-rotation-unity-scaling@pipe-d-hdmi-a-4.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][218] ([i915#5235]) +7 other tests skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-rkl-6/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-2.html * igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][219] ([i915#5235]) +19 other tests skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-mtlp-5/igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-d-edp-1.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][220] ([i915#5235]) +11 other tests skip [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-dg2-10/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-1.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][221] ([i915#5235]) +7 other tests skip [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-dg1-16/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-4.html * igt@kms_prime@d3hot: - shard-dg2: NOTRUN -> [SKIP][222] ([i915#6524] / [i915#6805]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-dg2-6/igt@kms_prime@d3hot.html - shard-mtlp: NOTRUN -> [SKIP][223] ([i915#6524]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-mtlp-2/igt@kms_prime@d3hot.html * igt@kms_psr2_sf@cursor-plane-move-continuous-sf: - shard-dg2: NOTRUN -> [SKIP][224] ([i915#658]) +2 other tests skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-dg2-3/igt@kms_psr2_sf@cursor-plane-move-continuous-sf.html * igt@kms_psr2_sf@overlay-plane-update-continuous-sf: - shard-tglu: NOTRUN -> [SKIP][225] ([fdo#111068] / [i915#658]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-tglu-7/igt@kms_psr2_sf@overlay-plane-update-continuous-sf.html - shard-apl: NOTRUN -> [SKIP][226] ([fdo#109271] / [i915#658]) [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-apl6/igt@kms_psr2_sf@overlay-plane-update-continuous-sf.html - shard-glk: NOTRUN -> [SKIP][227] ([fdo#109271] / [i915#658]) [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-glk1/igt@kms_psr2_sf@overlay-plane-update-continuous-sf.html - shard-rkl: NOTRUN -> [SKIP][228] ([fdo#111068] / [i915#658]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-rkl-2/igt@kms_psr2_sf@overlay-plane-update-continuous-sf.html - shard-dg1: NOTRUN -> [SKIP][229] ([fdo#111068] / [i915#658]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-dg1-18/igt@kms_psr2_sf@overlay-plane-update-continuous-sf.html * igt@kms_psr2_su@page_flip-nv12: - shard-mtlp: NOTRUN -> [SKIP][230] ([i915#4348]) [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-mtlp-4/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr@psr2_cursor_plane_onoff: - shard-rkl: NOTRUN -> [SKIP][231] ([i915#1072]) +3 other tests skip [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-rkl-7/igt@kms_psr@psr2_cursor_plane_onoff.html * igt@kms_psr@psr2_primary_blt: - shard-dg2: NOTRUN -> [SKIP][232] ([i915#1072]) +9 other tests skip [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-dg2-11/igt@kms_psr@psr2_primary_blt.html * igt@kms_rotation_crc@primary-rotation-270: - shard-dg2: NOTRUN -> [SKIP][233] ([i915#4235]) +1 other test skip [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-dg2-1/igt@kms_rotation_crc@primary-rotation-270.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-0: - shard-mtlp: NOTRUN -> [SKIP][234] ([i915#5289]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-mtlp-3/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-90: - shard-rkl: [PASS][235] -> [INCOMPLETE][236] ([i915#8875]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7479/shard-rkl-2/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-rkl-7/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-dg2: NOTRUN -> [SKIP][237] ([i915#4235] / [i915#5190]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-dg2-11/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html - shard-rkl: NOTRUN -> [SKIP][238] ([fdo#111615] / [i915#5289]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-rkl-1/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html - shard-mtlp: NOTRUN -> [SKIP][239] ([i915#4235]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-mtlp-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_selftest@drm_cmdline: - shard-mtlp: NOTRUN -> [SKIP][240] ([i915#8661]) [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-mtlp-5/igt@kms_selftest@drm_cmdline.html * igt@kms_selftest@drm_damage: - shard-tglu: NOTRUN -> [SKIP][241] ([i915#8661]) +1 other test skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-tglu-5/igt@kms_selftest@drm_damage.html * igt@kms_selftest@drm_format_helper: - shard-dg2: NOTRUN -> [SKIP][242] ([i915#8661]) +1 other test skip [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-dg2-3/igt@kms_selftest@drm_format_helper.html - shard-rkl: NOTRUN -> [SKIP][243] ([i915#8661]) [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-rkl-6/igt@kms_selftest@drm_format_helper.html - shard-dg1: NOTRUN -> [SKIP][244] ([i915#8661]) [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-dg1-13/igt@kms_selftest@drm_format_helper.html - shard-apl: NOTRUN -> [SKIP][245] ([fdo#109271] / [i915#8661]) [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-apl1/igt@kms_selftest@drm_format_helper.html - shard-glk: NOTRUN -> [SKIP][246] ([fdo#109271] / [i915#8661]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-glk2/igt@kms_selftest@drm_format_helper.html * igt@kms_selftest@framebuffer: - shard-snb: NOTRUN -> [SKIP][247] ([fdo#109271] / [i915#8661]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-snb2/igt@kms_selftest@framebuffer.html * igt@kms_setmode@basic-clone-single-crtc: - shard-mtlp: NOTRUN -> [SKIP][248] ([i915#3555] / [i915#8809]) +1 other test skip [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-mtlp-7/igt@kms_setmode@basic-clone-single-crtc.html * igt@kms_setmode@invalid-clone-single-crtc: - shard-dg2: NOTRUN -> [SKIP][249] ([i915#3555]) +3 other tests skip [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-dg2-5/igt@kms_setmode@invalid-clone-single-crtc.html * igt@kms_tiled_display@basic-test-pattern: - shard-mtlp: NOTRUN -> [SKIP][250] ([i915#8623]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-mtlp-4/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_tv_load_detect@load-detect: - shard-snb: NOTRUN -> [SKIP][251] ([fdo#109271]) +151 other tests skip [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-snb6/igt@kms_tv_load_detect@load-detect.html * igt@kms_vblank@pipe-c-query-forked-hang: - shard-rkl: NOTRUN -> [SKIP][252] ([i915#4070] / [i915#6768]) [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-rkl-6/igt@kms_vblank@pipe-c-query-forked-hang.html * igt@kms_vblank@pipe-d-query-forked-busy: - shard-rkl: NOTRUN -> [SKIP][253] ([i915#4070] / [i915#533] / [i915#6768]) +2 other tests skip [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-rkl-6/igt@kms_vblank@pipe-d-query-forked-busy.html * igt@kms_vrr@flipline: - shard-mtlp: NOTRUN -> [SKIP][254] ([i915#3555] / [i915#8808]) [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-mtlp-7/igt@kms_vrr@flipline.html * igt@kms_writeback@writeback-pixel-formats: - shard-rkl: NOTRUN -> [SKIP][255] ([i915#2437]) [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-rkl-2/igt@kms_writeback@writeback-pixel-formats.html * igt@perf_pmu@cpu-hotplug: - shard-dg2: NOTRUN -> [SKIP][256] ([i915#8850]) [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-dg2-2/igt@perf_pmu@cpu-hotplug.html - shard-rkl: NOTRUN -> [SKIP][257] ([i915#8850]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-rkl-2/igt@perf_pmu@cpu-hotplug.html * igt@prime_vgem@basic-blt: - shard-mtlp: NOTRUN -> [FAIL][258] ([i915#8445]) +1 other test fail [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-mtlp-4/igt@prime_vgem@basic-blt.html * igt@prime_vgem@fence-flip-hang: - shard-tglu: NOTRUN -> [SKIP][259] ([fdo#109295]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-tglu-9/igt@prime_vgem@fence-flip-hang.html * igt@prime_vgem@fence-read-hang: - shard-mtlp: NOTRUN -> [SKIP][260] ([i915#3708]) [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-mtlp-4/igt@prime_vgem@fence-read-hang.html * igt@v3d/v3d_mmap@mmap-bo: - shard-mtlp: NOTRUN -> [SKIP][261] ([i915#2575]) +15 other tests skip [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-mtlp-5/igt@v3d/v3d_mmap@mmap-bo.html * igt@v3d/v3d_submit_csd@bad-multisync-extension: - shard-dg1: NOTRUN -> [SKIP][262] ([i915#2575]) +2 other tests skip [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-dg1-16/igt@v3d/v3d_submit_csd@bad-multisync-extension.html - shard-tglu: NOTRUN -> [SKIP][263] ([fdo#109315] / [i915#2575]) +3 other tests skip [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-tglu-6/igt@v3d/v3d_submit_csd@bad-multisync-extension.html * igt@v3d/v3d_submit_csd@job-perfmon: - shard-dg2: NOTRUN -> [SKIP][264] ([i915#2575]) +12 other tests skip [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-dg2-3/igt@v3d/v3d_submit_csd@job-perfmon.html - shard-rkl: NOTRUN -> [SKIP][265] ([fdo#109315]) +5 other tests skip [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-rkl-2/igt@v3d/v3d_submit_csd@job-perfmon.html * igt@vc4/vc4_purgeable_bo@access-purgeable-bo-mem: - shard-tglu: NOTRUN -> [SKIP][266] ([i915#2575]) [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-tglu-9/igt@vc4/vc4_purgeable_bo@access-purgeable-bo-mem.html * igt@vc4/vc4_purgeable_bo@access-purged-bo-mem: - shard-mtlp: NOTRUN -> [SKIP][267] ([i915#7711]) +9 other tests skip [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-mtlp-4/igt@vc4/vc4_purgeable_bo@access-purged-bo-mem.html * igt@vc4/vc4_wait_seqno@bad-seqno-0ns: - shard-rkl: NOTRUN -> [SKIP][268] ([i915#7711]) +1 other test skip [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-rkl-2/igt@vc4/vc4_wait_seqno@bad-seqno-0ns.html * igt@vc4/vc4_wait_seqno@bad-seqno-1ns: - shard-dg2: NOTRUN -> [SKIP][269] ([i915#7711]) +5 other tests skip [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-dg2-3/igt@vc4/vc4_wait_seqno@bad-seqno-1ns.html #### Possible fixes #### * igt@device_reset@unbind-reset-rebind: - shard-dg2: [INCOMPLETE][270] ([i915#5507]) -> [PASS][271] [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7479/shard-dg2-1/igt@device_reset@unbind-reset-rebind.html [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-dg2-11/igt@device_reset@unbind-reset-rebind.html - shard-rkl: [INCOMPLETE][272] ([i915#5507]) -> [PASS][273] [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7479/shard-rkl-1/igt@device_reset@unbind-reset-rebind.html [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-rkl-2/igt@device_reset@unbind-reset-rebind.html - shard-tglu: [INCOMPLETE][274] ([i915#5507]) -> [PASS][275] [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7479/shard-tglu-8/igt@device_reset@unbind-reset-rebind.html [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-tglu-9/igt@device_reset@unbind-reset-rebind.html - shard-apl: [ABORT][276] ([i915#5507]) -> [PASS][277] [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7479/shard-apl7/igt@device_reset@unbind-reset-rebind.html [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-apl4/igt@device_reset@unbind-reset-rebind.html - shard-glk: [INCOMPLETE][278] ([i915#5507]) -> [PASS][279] [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7479/shard-glk7/igt@device_reset@unbind-reset-rebind.html [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-glk7/igt@device_reset@unbind-reset-rebind.html * igt@gem_ctx_exec@basic-nohangcheck: - shard-rkl: [FAIL][280] ([i915#6268]) -> [PASS][281] [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7479/shard-rkl-1/igt@gem_ctx_exec@basic-nohangcheck.html [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-rkl-6/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_ctx_persistence@engines-hang@ccs0: - shard-mtlp: [ABORT][282] ([i915#9262]) -> [PASS][283] +1 other test pass [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7479/shard-mtlp-4/igt@gem_ctx_persistence@engines-hang@ccs0.html [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-mtlp-4/igt@gem_ctx_persistence@engines-hang@ccs0.html * igt@gem_ctx_persistence@engines-hang@vcs0: - shard-mtlp: [FAIL][284] ([i915#2410]) -> [PASS][285] [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7479/shard-mtlp-4/igt@gem_ctx_persistence@engines-hang@vcs0.html [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-mtlp-4/igt@gem_ctx_persistence@engines-hang@vcs0.html * igt@gem_eio@reset-stress: - shard-dg1: [FAIL][286] ([i915#5784]) -> [PASS][287] [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7479/shard-dg1-19/igt@gem_eio@reset-stress.html [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-dg1-15/igt@gem_eio@reset-stress.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-glk: [FAIL][288] ([i915#2842]) -> [PASS][289] +1 other test pass [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7479/shard-glk3/igt@gem_exec_fair@basic-pace-share@rcs0.html [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-glk1/igt@gem_exec_fair@basic-pace-share@rcs0.html - shard-tglu: [FAIL][290] ([i915#2842]) -> [PASS][291] [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7479/shard-tglu-5/igt@gem_exec_fair@basic-pace-share@rcs0.html [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-tglu-6/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_suspend@basic-s0@smem: - shard-dg2: [INCOMPLETE][292] ([i915#8797]) -> [PASS][293] [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7479/shard-dg2-6/igt@gem_exec_suspend@basic-s0@smem.html [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-dg2-2/igt@gem_exec_suspend@basic-s0@smem.html * igt@i915_pm_rpm@dpms-mode-unset-lpsp: - shard-dg2: [SKIP][294] ([i915#1397]) -> [PASS][295] [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7479/shard-dg2-1/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-dg2-10/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html - shard-rkl: [SKIP][296] ([i915#1397]) -> [PASS][297] [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7479/shard-rkl-1/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-rkl-7/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html * igt@i915_pm_rpm@modeset-non-lpsp-stress: - shard-dg1: [SKIP][298] ([i915#1397]) -> [PASS][299] [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7479/shard-dg1-19/igt@i915_pm_rpm@modeset-non-lpsp-stress.html [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-dg1-18/igt@i915_pm_rpm@modeset-non-lpsp-stress.html * igt@i915_selftest@live@dmabuf: - shard-apl: [DMESG-FAIL][300] ([i915#7562]) -> [PASS][301] [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7479/shard-apl2/igt@i915_selftest@live@dmabuf.html [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-apl1/igt@i915_selftest@live@dmabuf.html * igt@kms_big_fb@4-tiled-64bpp-rotate-180: - shard-mtlp: [FAIL][302] ([i915#5138]) -> [PASS][303] [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7479/shard-mtlp-7/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-mtlp-7/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-glk: [FAIL][304] ([i915#2346]) -> [PASS][305] [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7479/shard-glk4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-glk8/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-cpu: - shard-dg2: [FAIL][306] ([i915#6880]) -> [PASS][307] +2 other tests pass [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7479/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-cpu.html [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-cpu.html * {igt@kms_pm_dc@dc9-dpms}: - shard-apl: [SKIP][308] ([fdo#109271]) -> [PASS][309] [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7479/shard-apl6/igt@kms_pm_dc@dc9-dpms.html [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-apl4/igt@kms_pm_dc@dc9-dpms.html * igt@perf_pmu@all-busy-idle-check-all: - shard-dg2: [FAIL][310] ([i915#5234]) -> [PASS][311] [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7479/shard-dg2-11/igt@perf_pmu@all-busy-idle-check-all.html [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-dg2-6/igt@perf_pmu@all-busy-idle-check-all.html * igt@sysfs_heartbeat_interval@mixed@ccs1: - shard-dg2: [FAIL][312] -> [PASS][313] [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7479/shard-dg2-3/igt@sysfs_heartbeat_interval@mixed@ccs1.html [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-dg2-1/igt@sysfs_heartbeat_interval@mixed@ccs1.html #### Warnings #### * igt@i915_pm_rc6_residency@rc6-idle@rcs0: - shard-tglu: [WARN][314] ([i915#2681]) -> [FAIL][315] ([i915#2681] / [i915#3591]) [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7479/shard-tglu-5/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-tglu-6/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html * igt@i915_suspend@sysfs-reader: - shard-snb: [DMESG-FAIL][316] ([fdo#103375]) -> [DMESG-WARN][317] ([i915#8841]) [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7479/shard-snb7/igt@i915_suspend@sysfs-reader.html [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-snb6/igt@i915_suspend@sysfs-reader.html * igt@kms_content_protection@mei_interface: - shard-dg1: [SKIP][318] ([fdo#109300]) -> [SKIP][319] ([i915#7116]) [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7479/shard-dg1-18/igt@kms_content_protection@mei_interface.html [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-dg1-15/igt@kms_content_protection@mei_interface.html * igt@kms_content_protection@type1: - shard-dg2: [SKIP][320] ([i915#7118]) -> [SKIP][321] ([i915#7118] / [i915#7162]) [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7479/shard-dg2-1/igt@kms_content_protection@type1.html [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-dg2-11/igt@kms_content_protection@type1.html * igt@kms_force_connector_basic@force-load-detect: - shard-rkl: [SKIP][322] ([fdo#109285]) -> [SKIP][323] ([fdo#109285] / [i915#4098]) [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7479/shard-rkl-6/igt@kms_force_connector_basic@force-load-detect.html [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-rkl-2/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-rkl: [SKIP][324] ([i915#4816]) -> [SKIP][325] ([i915#4070] / [i915#4816]) [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7479/shard-rkl-7/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-rkl-6/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_psr@sprite_plane_onoff: - shard-dg1: [SKIP][326] ([i915#1072] / [i915#4078]) -> [SKIP][327] ([i915#1072]) +1 other test skip [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7479/shard-dg1-12/igt@kms_psr@sprite_plane_onoff.html [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/shard-dg1-15/igt@kms_psr@sprite_plane_onoff.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109293]: https://bugs.freedesktop.org/show_bug.cgi?id=109293 [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [fdo#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099 [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2410]: https://gitlab.freedesktop.org/drm/intel/issues/2410 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681 [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705 [i915#284]: https://gitlab.freedesktop.org/drm/intel/issues/284 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023 [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299 [i915#3318]: https://gitlab.freedesktop.org/drm/intel/issues/3318 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734 [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743 [i915#3826]: https://gitlab.freedesktop.org/drm/intel/issues/3826 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955 [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4087]: https://gitlab.freedesktop.org/drm/intel/issues/4087 [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213 [i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4281]: https://gitlab.freedesktop.org/drm/intel/issues/4281 [i915#4348]: https://gitlab.freedesktop.org/drm/intel/issues/4348 [i915#4387]: https://gitlab.freedesktop.org/drm/intel/issues/4387 [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#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771 [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#4816]: https://gitlab.freedesktop.org/drm/intel/issues/4816 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4873]: https://gitlab.freedesktop.org/drm/intel/issues/4873 [i915#4879]: https://gitlab.freedesktop.org/drm/intel/issues/4879 [i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885 [i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 [i915#5234]: https://gitlab.freedesktop.org/drm/intel/issues/5234 [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#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5507]: https://gitlab.freedesktop.org/drm/intel/issues/5507 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#5882]: https://gitlab.freedesktop.org/drm/intel/issues/5882 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6229]: https://gitlab.freedesktop.org/drm/intel/issues/6229 [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268 [i915#6403]: https://gitlab.freedesktop.org/drm/intel/issues/6403 [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#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768 [i915#6805]: https://gitlab.freedesktop.org/drm/intel/issues/6805 [i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880 [i915#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953 [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7162]: https://gitlab.freedesktop.org/drm/intel/issues/7162 [i915#7213]: https://gitlab.freedesktop.org/drm/intel/issues/7213 [i915#7461]: https://gitlab.freedesktop.org/drm/intel/issues/7461 [i915#7562]: https://gitlab.freedesktop.org/drm/intel/issues/7562 [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697 [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#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975 [i915#8190]: https://gitlab.freedesktop.org/drm/intel/issues/8190 [i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213 [i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228 [i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247 [i915#8289]: https://gitlab.freedesktop.org/drm/intel/issues/8289 [i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292 [i915#8346]: https://gitlab.freedesktop.org/drm/intel/issues/8346 [i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381 [i915#8411]: https://gitlab.freedesktop.org/drm/intel/issues/8411 [i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414 [i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428 [i915#8430]: https://gitlab.freedesktop.org/drm/intel/issues/8430 [i915#8445]: https://gitlab.freedesktop.org/drm/intel/issues/8445 [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#8661]: https://gitlab.freedesktop.org/drm/intel/issues/8661 [i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708 [i915#8717]: https://gitlab.freedesktop.org/drm/intel/issues/8717 [i915#8797]: https://gitlab.freedesktop.org/drm/intel/issues/8797 [i915#8808]: https://gitlab.freedesktop.org/drm/intel/issues/8808 [i915#8809]: https://gitlab.freedesktop.org/drm/intel/issues/8809 [i915#8810]: https://gitlab.freedesktop.org/drm/intel/issues/8810 [i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814 [i915#8821]: https://gitlab.freedesktop.org/drm/intel/issues/8821 [i915#8841]: https://gitlab.freedesktop.org/drm/intel/issues/8841 [i915#8850]: https://gitlab.freedesktop.org/drm/intel/issues/8850 [i915#8875]: https://gitlab.freedesktop.org/drm/intel/issues/8875 [i915#8925]: https://gitlab.freedesktop.org/drm/intel/issues/8925 [i915#9010]: https://gitlab.freedesktop.org/drm/intel/issues/9010 [i915#9121]: https://gitlab.freedesktop.org/drm/intel/issues/9121 [i915#9226]: https://gitlab.freedesktop.org/drm/intel/issues/9226 [i915#9227]: https://gitlab.freedesktop.org/drm/intel/issues/9227 [i915#9261]: https://gitlab.freedesktop.org/drm/intel/issues/9261 [i915#9262]: https://gitlab.freedesktop.org/drm/intel/issues/9262 [i915#9283]: https://gitlab.freedesktop.org/drm/intel/issues/9283 [i915#9298]: https://gitlab.freedesktop.org/drm/intel/issues/9298 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7479 -> IGTPW_9764 CI-20190529: 20190529 CI_DRM_13617: 232c052bbad9247620eb164d559c1e0a9eae0353 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9764: 9764 IGT_7479: 84ec7fe5b86ca4c7449d63ca833ca8cbe350f1f2 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9764/index.html [-- Attachment #2: Type: text/html, Size: 106857 bytes --] ^ permalink raw reply [flat|nested] 11+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for i915_pipe_stress fixes (rev2) 2023-09-11 12:22 [igt-dev] [PATCH 0/2] i915_pipe_stress fixes Stanislav Lisovskiy ` (4 preceding siblings ...) 2023-09-11 16:46 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork @ 2023-09-12 16:02 ` Patchwork 2023-09-12 17:18 ` [igt-dev] ✓ CI.xeBAT: " Patchwork 2023-09-12 17:37 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 7 siblings, 0 replies; 11+ messages in thread From: Patchwork @ 2023-09-12 16:02 UTC (permalink / raw) To: Stanislav Lisovskiy; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 2648 bytes --] == Series Details == Series: i915_pipe_stress fixes (rev2) URL : https://patchwork.freedesktop.org/series/123537/ State : success == Summary == CI Bug Log - changes from IGT_7481 -> IGTPW_9775 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/index.html Participating hosts (41 -> 38) ------------------------------ Missing (3): bat-dg2-8 fi-snb-2520m fi-hsw-4770 Known issues ------------ Here are the changes found in IGTPW_9775 that come from known issues: ### IGT changes ### #### Possible fixes #### * igt@kms_chamelium_edid@hdmi-edid-read: - {bat-dg2-13}: [DMESG-WARN][1] ([i915#7952]) -> [PASS][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/bat-dg2-13/igt@kms_chamelium_edid@hdmi-edid-read.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/bat-dg2-13/igt@kms_chamelium_edid@hdmi-edid-read.html * igt@kms_hdmi_inject@inject-audio: - fi-kbl-guc: [FAIL][3] ([IGT#3] / [i915#6121]) -> [PASS][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/fi-kbl-guc/igt@kms_hdmi_inject@inject-audio.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/fi-kbl-guc/igt@kms_hdmi_inject@inject-audio.html * igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1: - bat-rplp-1: [ABORT][5] ([i915#8668]) -> [PASS][6] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/bat-rplp-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/bat-rplp-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [IGT#3]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/3 [i915#6121]: https://gitlab.freedesktop.org/drm/intel/issues/6121 [i915#7952]: https://gitlab.freedesktop.org/drm/intel/issues/7952 [i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7481 -> IGTPW_9775 CI-20190529: 20190529 CI_DRM_13623: eb35627e1c4a3781c161cd04944e403ce6df3e1c @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9775: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/index.html IGT_7481: 10897911fefd697969ec5030fdeb8d47d6d6ba43 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/index.html [-- Attachment #2: Type: text/html, Size: 3312 bytes --] ^ permalink raw reply [flat|nested] 11+ messages in thread
* [igt-dev] ✓ CI.xeBAT: success for i915_pipe_stress fixes (rev2) 2023-09-11 12:22 [igt-dev] [PATCH 0/2] i915_pipe_stress fixes Stanislav Lisovskiy ` (5 preceding siblings ...) 2023-09-12 16:02 ` [igt-dev] ✓ Fi.CI.BAT: success for i915_pipe_stress fixes (rev2) Patchwork @ 2023-09-12 17:18 ` Patchwork 2023-09-12 17:37 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 7 siblings, 0 replies; 11+ messages in thread From: Patchwork @ 2023-09-12 17:18 UTC (permalink / raw) To: Stanislav Lisovskiy; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 6335 bytes --] == Series Details == Series: i915_pipe_stress fixes (rev2) URL : https://patchwork.freedesktop.org/series/123537/ State : success == Summary == CI Bug Log - changes from XEIGT_7481_BAT -> XEIGTPW_9775_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (4 -> 4) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_9775_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_addfb_basic@addfb25-x-tiled-legacy: - bat-pvc-2: NOTRUN -> [SKIP][1] ([Intel XE#538]) +33 other tests skip [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9775/bat-pvc-2/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html * igt@kms_cursor_legacy@basic-flip-after-cursor-atomic: - bat-pvc-2: NOTRUN -> [SKIP][2] ([Intel XE#539]) +6 other tests skip [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9775/bat-pvc-2/igt@kms_cursor_legacy@basic-flip-after-cursor-atomic.html * igt@kms_flip@basic-flip-vs-dpms: - bat-pvc-2: NOTRUN -> [SKIP][3] ([Intel XE#541]) +3 other tests skip [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9775/bat-pvc-2/igt@kms_flip@basic-flip-vs-dpms.html * igt@kms_flip@basic-flip-vs-wf_vblank@d-edp1: - bat-adlp-7: [PASS][4] -> [FAIL][5] ([Intel XE#480]) [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7481/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@d-edp1.html [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9775/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@d-edp1.html * igt@kms_force_connector_basic@force-connector-state: - bat-pvc-2: NOTRUN -> [SKIP][6] ([Intel XE#540]) +3 other tests skip [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9775/bat-pvc-2/igt@kms_force_connector_basic@force-connector-state.html * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence: - bat-pvc-2: NOTRUN -> [SKIP][7] ([Intel XE#537]) +6 other tests skip [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9775/bat-pvc-2/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html * igt@kms_prop_blob@basic: - bat-pvc-2: NOTRUN -> [SKIP][8] ([Intel XE#536]) [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9775/bat-pvc-2/igt@kms_prop_blob@basic.html * igt@kms_psr@primary_page_flip: - bat-pvc-2: NOTRUN -> [SKIP][9] ([Intel XE#535]) +2 other tests skip [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9775/bat-pvc-2/igt@kms_psr@primary_page_flip.html * igt@xe_evict@evict-beng-small-external: - bat-pvc-2: NOTRUN -> [FAIL][10] ([Intel XE#389]) +2 other tests fail [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9775/bat-pvc-2/igt@xe_evict@evict-beng-small-external.html * igt@xe_evict@evict-small-cm: - bat-pvc-2: NOTRUN -> [DMESG-FAIL][11] ([Intel XE#482]) +2 other tests dmesg-fail [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9775/bat-pvc-2/igt@xe_evict@evict-small-cm.html * igt@xe_guc_pc@freq_range_idle: - bat-pvc-2: NOTRUN -> [SKIP][12] ([Intel XE#533]) +1 other test skip [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9775/bat-pvc-2/igt@xe_guc_pc@freq_range_idle.html * igt@xe_huc_copy@huc_copy: - bat-pvc-2: NOTRUN -> [SKIP][13] ([Intel XE#255]) [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9775/bat-pvc-2/igt@xe_huc_copy@huc_copy.html * igt@xe_intel_bb@render: - bat-pvc-2: NOTRUN -> [SKIP][14] ([Intel XE#532]) [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9775/bat-pvc-2/igt@xe_intel_bb@render.html * igt@xe_live_ktest@migrate: - bat-pvc-2: NOTRUN -> [SKIP][15] ([Intel XE#483]) +1 other test skip [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9775/bat-pvc-2/igt@xe_live_ktest@migrate.html * igt@xe_pm_residency@gt-c6-on-idle: - bat-pvc-2: NOTRUN -> [SKIP][16] ([Intel XE#531]) [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9775/bat-pvc-2/igt@xe_pm_residency@gt-c6-on-idle.html #### Possible fixes #### * igt@kms_flip@basic-flip-vs-wf_vblank@b-edp1: - bat-adlp-7: [FAIL][17] ([Intel XE#480]) -> [PASS][18] [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7481/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@b-edp1.html [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9775/bat-adlp-7/igt@kms_flip@basic-flip-vs-wf_vblank@b-edp1.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [Intel XE#255]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/255 [Intel XE#389]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/389 [Intel XE#480]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/480 [Intel XE#482]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/482 [Intel XE#483]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/483 [Intel XE#524]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/524 [Intel XE#531]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/531 [Intel XE#532]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/532 [Intel XE#533]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/533 [Intel XE#535]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/535 [Intel XE#536]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/536 [Intel XE#537]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/537 [Intel XE#538]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/538 [Intel XE#539]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/539 [Intel XE#540]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/540 [Intel XE#541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/541 Build changes ------------- * IGT: IGT_7481 -> IGTPW_9775 IGTPW_9775: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/index.html IGT_7481: 10897911fefd697969ec5030fdeb8d47d6d6ba43 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-368-b2c3b639e43d697c7aabb118f2e27eac926cd771: b2c3b639e43d697c7aabb118f2e27eac926cd771 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9775/index.html [-- Attachment #2: Type: text/html, Size: 7271 bytes --] ^ permalink raw reply [flat|nested] 11+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for i915_pipe_stress fixes (rev2) 2023-09-11 12:22 [igt-dev] [PATCH 0/2] i915_pipe_stress fixes Stanislav Lisovskiy ` (6 preceding siblings ...) 2023-09-12 17:18 ` [igt-dev] ✓ CI.xeBAT: " Patchwork @ 2023-09-12 17:37 ` Patchwork 7 siblings, 0 replies; 11+ messages in thread From: Patchwork @ 2023-09-12 17:37 UTC (permalink / raw) To: Stanislav Lisovskiy; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 95593 bytes --] == Series Details == Series: i915_pipe_stress fixes (rev2) URL : https://patchwork.freedesktop.org/series/123537/ State : failure == Summary == CI Bug Log - changes from IGT_7481_full -> IGTPW_9775_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_9775_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_9775_full, please notify your bug team (lgci.bug.filing@intel.com) to allow them to document this new failure mode, which will reduce false positives in CI. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/index.html Participating hosts (9 -> 9) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_9775_full: ### IGT changes ### #### Possible regressions #### * igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-lmem0-lmem0: - shard-dg2: [PASS][1] -> [INCOMPLETE][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-dg2-11/igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-lmem0-lmem0.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-dg2-2/igt@gem_ccs@suspend-resume@tile4-compressed-compfmt0-lmem0-lmem0.html * igt@kms_rotation_crc@primary-rotation-270: - shard-rkl: [PASS][3] -> [INCOMPLETE][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-rkl-6/igt@kms_rotation_crc@primary-rotation-270.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-rkl-2/igt@kms_rotation_crc@primary-rotation-270.html * igt@prime_mmap_coherency@write: - shard-mtlp: [PASS][5] -> [FAIL][6] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-mtlp-6/igt@prime_mmap_coherency@write.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-mtlp-5/igt@prime_mmap_coherency@write.html New tests --------- New tests have been introduced between IGT_7481_full and IGTPW_9775_full: ### New IGT tests (4) ### * igt@kms_plane_multiple@tiling-4@pipe-a-dp-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_multiple@tiling-4@pipe-b-dp-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_multiple@tiling-4@pipe-c-dp-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane_multiple@tiling-4@pipe-d-dp-4: - Statuses : 1 pass(s) - Exec time: [0.0] s Known issues ------------ Here are the changes found in IGTPW_9775_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-reloc-purge-cache: - shard-mtlp: NOTRUN -> [SKIP][7] ([i915#8411]) +1 other test skip [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-mtlp-3/igt@api_intel_bb@blit-reloc-purge-cache.html * igt@api_intel_bb@object-reloc-purge-cache: - shard-dg2: NOTRUN -> [SKIP][8] ([i915#8411]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-dg2-6/igt@api_intel_bb@object-reloc-purge-cache.html - shard-dg1: NOTRUN -> [SKIP][9] ([i915#8411]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-dg1-15/igt@api_intel_bb@object-reloc-purge-cache.html * igt@device_reset@unbind-cold-reset-rebind: - shard-mtlp: NOTRUN -> [SKIP][10] ([i915#7701]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-mtlp-6/igt@device_reset@unbind-cold-reset-rebind.html * igt@drm_fdinfo@busy-check-all@vecs1: - shard-dg2: NOTRUN -> [SKIP][11] ([i915#8414]) +21 other tests skip [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-dg2-2/igt@drm_fdinfo@busy-check-all@vecs1.html * igt@drm_fdinfo@busy-hang@rcs0: - shard-mtlp: NOTRUN -> [SKIP][12] ([i915#8414]) +25 other tests skip [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-mtlp-5/igt@drm_fdinfo@busy-hang@rcs0.html * igt@drm_fdinfo@busy-idle-check-all@vcs1: - shard-dg1: NOTRUN -> [SKIP][13] ([i915#8414]) +4 other tests skip [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-dg1-12/igt@drm_fdinfo@busy-idle-check-all@vcs1.html * igt@feature_discovery@display-4x: - shard-dg2: NOTRUN -> [SKIP][14] ([i915#1839]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-dg2-7/igt@feature_discovery@display-4x.html * igt@feature_discovery@psr1: - shard-dg2: NOTRUN -> [SKIP][15] ([i915#658]) +6 other tests skip [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-dg2-1/igt@feature_discovery@psr1.html * igt@gem_caching@writes: - shard-mtlp: NOTRUN -> [SKIP][16] ([i915#4873]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-mtlp-3/igt@gem_caching@writes.html * igt@gem_close_race@multigpu-basic-process: - shard-dg2: NOTRUN -> [SKIP][17] ([i915#7697]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-dg2-6/igt@gem_close_race@multigpu-basic-process.html * igt@gem_create@create-ext-cpu-access-sanity-check: - shard-rkl: NOTRUN -> [SKIP][18] ([i915#6335]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-rkl-1/igt@gem_create@create-ext-cpu-access-sanity-check.html * igt@gem_ctx_exec@basic-nohangcheck: - shard-dg2: [PASS][19] -> [TIMEOUT][20] ([i915#9192]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-dg2-2/igt@gem_ctx_exec@basic-nohangcheck.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-dg2-11/igt@gem_ctx_exec@basic-nohangcheck.html - shard-rkl: [PASS][21] -> [FAIL][22] ([i915#6268]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-rkl-4/igt@gem_ctx_exec@basic-nohangcheck.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-rkl-6/igt@gem_ctx_exec@basic-nohangcheck.html - shard-tglu: [PASS][23] -> [FAIL][24] ([i915#6268]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-tglu-9/igt@gem_ctx_exec@basic-nohangcheck.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-tglu-5/igt@gem_ctx_exec@basic-nohangcheck.html - shard-mtlp: NOTRUN -> [FAIL][25] ([i915#6121]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-mtlp-7/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_ctx_persistence@heartbeat-hang: - shard-dg2: NOTRUN -> [SKIP][26] ([i915#8555]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-dg2-10/igt@gem_ctx_persistence@heartbeat-hang.html * igt@gem_ctx_persistence@heartbeat-stop: - shard-mtlp: NOTRUN -> [SKIP][27] ([i915#8555]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-mtlp-8/igt@gem_ctx_persistence@heartbeat-stop.html * igt@gem_ctx_sseu@invalid-sseu: - shard-mtlp: NOTRUN -> [SKIP][28] ([i915#280]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-mtlp-5/igt@gem_ctx_sseu@invalid-sseu.html * igt@gem_eio@reset-stress: - shard-dg1: [PASS][29] -> [FAIL][30] ([i915#5784]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-dg1-19/igt@gem_eio@reset-stress.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-dg1-16/igt@gem_eio@reset-stress.html * igt@gem_exec_balancer@bonded-dual: - shard-mtlp: NOTRUN -> [SKIP][31] ([i915#4771]) +1 other test skip [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-mtlp-7/igt@gem_exec_balancer@bonded-dual.html * igt@gem_exec_balancer@invalid-bonds: - shard-mtlp: NOTRUN -> [SKIP][32] ([i915#4036]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-mtlp-4/igt@gem_exec_balancer@invalid-bonds.html * igt@gem_exec_capture@capture@vcs1-smem: - shard-mtlp: NOTRUN -> [DMESG-WARN][33] ([i915#5591]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-mtlp-2/igt@gem_exec_capture@capture@vcs1-smem.html * igt@gem_exec_fair@basic-none: - shard-mtlp: NOTRUN -> [SKIP][34] ([i915#4473] / [i915#4771]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-mtlp-3/igt@gem_exec_fair@basic-none.html * igt@gem_exec_fair@basic-none-share@rcs0: - shard-glk: [PASS][35] -> [FAIL][36] ([i915#2842]) +1 other test fail [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-glk5/igt@gem_exec_fair@basic-none-share@rcs0.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-glk3/igt@gem_exec_fair@basic-none-share@rcs0.html * igt@gem_exec_fair@basic-pace: - shard-dg2: NOTRUN -> [SKIP][37] ([i915#3539]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-dg2-6/igt@gem_exec_fair@basic-pace.html * igt@gem_exec_fair@basic-pace-solo@rcs0: - shard-rkl: [PASS][38] -> [FAIL][39] ([i915#2842]) +1 other test fail [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-rkl-4/igt@gem_exec_fair@basic-pace-solo@rcs0.html [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-rkl-2/igt@gem_exec_fair@basic-pace-solo@rcs0.html * igt@gem_exec_fence@submit: - shard-mtlp: NOTRUN -> [SKIP][40] ([i915#4812]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-mtlp-7/igt@gem_exec_fence@submit.html * igt@gem_exec_fence@submit3: - shard-dg2: NOTRUN -> [SKIP][41] ([i915#4812]) +1 other test skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-dg2-1/igt@gem_exec_fence@submit3.html - shard-dg1: NOTRUN -> [SKIP][42] ([i915#4812]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-dg1-16/igt@gem_exec_fence@submit3.html * igt@gem_exec_flush@basic-uc-ro-default: - shard-dg2: NOTRUN -> [SKIP][43] ([i915#3539] / [i915#4852]) +4 other tests skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-dg2-1/igt@gem_exec_flush@basic-uc-ro-default.html * igt@gem_exec_gttfill@multigpu-basic: - shard-mtlp: NOTRUN -> [SKIP][44] ([i915#7697]) +1 other test skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-mtlp-8/igt@gem_exec_gttfill@multigpu-basic.html * igt@gem_exec_params@rsvd2-dirt: - shard-mtlp: NOTRUN -> [SKIP][45] ([i915#5107]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-mtlp-1/igt@gem_exec_params@rsvd2-dirt.html * igt@gem_exec_reloc@basic-cpu-wc-active: - shard-rkl: NOTRUN -> [SKIP][46] ([i915#3281]) +1 other test skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-rkl-6/igt@gem_exec_reloc@basic-cpu-wc-active.html * igt@gem_exec_reloc@basic-wc-cpu: - shard-dg2: NOTRUN -> [SKIP][47] ([i915#3281]) +6 other tests skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-dg2-10/igt@gem_exec_reloc@basic-wc-cpu.html * igt@gem_exec_reloc@basic-write-cpu-noreloc: - shard-mtlp: NOTRUN -> [SKIP][48] ([i915#3281]) +11 other tests skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-mtlp-1/igt@gem_exec_reloc@basic-write-cpu-noreloc.html * igt@gem_exec_schedule@preempt-engines@ccs0: - shard-mtlp: [PASS][49] -> [FAIL][50] ([i915#9119]) +4 other tests fail [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-mtlp-3/igt@gem_exec_schedule@preempt-engines@ccs0.html [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-mtlp-4/igt@gem_exec_schedule@preempt-engines@ccs0.html * igt@gem_exec_schedule@preempt-engines@rcs0: - shard-mtlp: [PASS][51] -> [DMESG-FAIL][52] ([i915#8962] / [i915#9121]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-mtlp-3/igt@gem_exec_schedule@preempt-engines@rcs0.html [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-mtlp-4/igt@gem_exec_schedule@preempt-engines@rcs0.html * igt@gem_exec_schedule@preempt-queue-contexts: - shard-dg2: NOTRUN -> [SKIP][53] ([i915#4537] / [i915#4812]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-dg2-11/igt@gem_exec_schedule@preempt-queue-contexts.html * igt@gem_exec_schedule@preempt-queue-contexts-chain: - shard-mtlp: NOTRUN -> [SKIP][54] ([i915#4537] / [i915#4812]) [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-mtlp-3/igt@gem_exec_schedule@preempt-queue-contexts-chain.html * igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible: - shard-dg2: NOTRUN -> [SKIP][55] ([i915#4860]) +2 other tests skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-dg2-10/igt@gem_fenced_exec_thrash@no-spare-fences-busy-interruptible.html * igt@gem_lmem_swapping@basic: - shard-mtlp: NOTRUN -> [SKIP][56] ([i915#4613]) +3 other tests skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-mtlp-3/igt@gem_lmem_swapping@basic.html * igt@gem_lmem_swapping@massive: - shard-tglu: NOTRUN -> [SKIP][57] ([i915#4613]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-tglu-3/igt@gem_lmem_swapping@massive.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg2: [PASS][58] -> [DMESG-WARN][59] ([i915#4936] / [i915#5493]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-dg2-10/igt@gem_lmem_swapping@smem-oom@lmem0.html [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-dg2-10/igt@gem_lmem_swapping@smem-oom@lmem0.html - shard-dg1: [PASS][60] -> [TIMEOUT][61] ([i915#5493]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-dg1-19/igt@gem_lmem_swapping@smem-oom@lmem0.html [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-dg1-18/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@gem_media_fill@media-fill: - shard-mtlp: NOTRUN -> [SKIP][62] ([i915#8289]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-mtlp-5/igt@gem_media_fill@media-fill.html * igt@gem_media_vme: - shard-dg2: NOTRUN -> [SKIP][63] ([i915#284]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-dg2-11/igt@gem_media_vme.html * igt@gem_mmap@bad-size: - shard-mtlp: NOTRUN -> [SKIP][64] ([i915#4083]) +6 other tests skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-mtlp-6/igt@gem_mmap@bad-size.html * igt@gem_mmap_gtt@big-bo-tiledy: - shard-mtlp: NOTRUN -> [SKIP][65] ([i915#4077]) +15 other tests skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-mtlp-6/igt@gem_mmap_gtt@big-bo-tiledy.html * igt@gem_mmap_gtt@cpuset-big-copy: - shard-dg2: NOTRUN -> [SKIP][66] ([i915#4077]) +14 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-dg2-11/igt@gem_mmap_gtt@cpuset-big-copy.html * igt@gem_mmap_gtt@flink-race: - shard-dg1: NOTRUN -> [SKIP][67] ([i915#4077]) +1 other test skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-dg1-18/igt@gem_mmap_gtt@flink-race.html * igt@gem_mmap_wc@copy: - shard-dg2: NOTRUN -> [SKIP][68] ([i915#4083]) +7 other tests skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-dg2-6/igt@gem_mmap_wc@copy.html * igt@gem_mmap_wc@write-cpu-read-wc: - shard-dg1: NOTRUN -> [SKIP][69] ([i915#4083]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-dg1-18/igt@gem_mmap_wc@write-cpu-read-wc.html * igt@gem_partial_pwrite_pread@writes-after-reads-uncached: - shard-rkl: NOTRUN -> [SKIP][70] ([i915#3282]) +1 other test skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-rkl-1/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html * igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted: - shard-dg2: NOTRUN -> [SKIP][71] ([i915#4270]) +2 other tests skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-dg2-5/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html * igt@gem_pxp@reject-modify-context-protection-off-3: - shard-mtlp: NOTRUN -> [SKIP][72] ([i915#4270]) +2 other tests skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-mtlp-8/igt@gem_pxp@reject-modify-context-protection-off-3.html * igt@gem_readwrite@beyond-eob: - shard-dg2: NOTRUN -> [SKIP][73] ([i915#3282]) +7 other tests skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-dg2-11/igt@gem_readwrite@beyond-eob.html - shard-dg1: NOTRUN -> [SKIP][74] ([i915#3282]) +3 other tests skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-dg1-18/igt@gem_readwrite@beyond-eob.html * igt@gem_readwrite@new-obj: - shard-mtlp: NOTRUN -> [SKIP][75] ([i915#3282]) +6 other tests skip [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-mtlp-3/igt@gem_readwrite@new-obj.html * igt@gem_render_copy@x-tiled-to-vebox-yf-tiled: - shard-mtlp: NOTRUN -> [SKIP][76] ([i915#8428]) +9 other tests skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-mtlp-6/igt@gem_render_copy@x-tiled-to-vebox-yf-tiled.html * igt@gem_set_tiling_vs_blt@tiled-to-untiled: - shard-mtlp: NOTRUN -> [SKIP][77] ([i915#4079]) +1 other test skip [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-mtlp-4/igt@gem_set_tiling_vs_blt@tiled-to-untiled.html * igt@gem_set_tiling_vs_gtt: - shard-dg2: NOTRUN -> [SKIP][78] ([i915#4079]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-dg2-11/igt@gem_set_tiling_vs_gtt.html * igt@gem_userptr_blits@coherency-sync: - shard-dg2: NOTRUN -> [SKIP][79] ([i915#3297]) +1 other test skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-dg2-6/igt@gem_userptr_blits@coherency-sync.html * igt@gem_userptr_blits@dmabuf-sync: - shard-mtlp: NOTRUN -> [SKIP][80] ([i915#3297]) +5 other tests skip [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-mtlp-1/igt@gem_userptr_blits@dmabuf-sync.html * igt@gem_userptr_blits@map-fixed-invalidate: - shard-dg1: NOTRUN -> [SKIP][81] ([i915#3297] / [i915#4880]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-dg1-18/igt@gem_userptr_blits@map-fixed-invalidate.html * igt@gem_userptr_blits@map-fixed-invalidate-busy: - shard-dg2: NOTRUN -> [SKIP][82] ([i915#3297] / [i915#4880]) +2 other tests skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-dg2-7/igt@gem_userptr_blits@map-fixed-invalidate-busy.html * igt@gem_userptr_blits@readonly-pwrite-unsync: - shard-dg1: NOTRUN -> [SKIP][83] ([i915#3297]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-dg1-12/igt@gem_userptr_blits@readonly-pwrite-unsync.html * igt@gem_userptr_blits@readonly-unsync: - shard-tglu: NOTRUN -> [SKIP][84] ([i915#3297]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-tglu-2/igt@gem_userptr_blits@readonly-unsync.html * igt@gen3_render_tiledy_blits: - shard-mtlp: NOTRUN -> [SKIP][85] ([fdo#109289]) +6 other tests skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-mtlp-5/igt@gen3_render_tiledy_blits.html * igt@gen9_exec_parse@allowed-all: - shard-dg2: NOTRUN -> [SKIP][86] ([i915#2856]) +3 other tests skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-dg2-10/igt@gen9_exec_parse@allowed-all.html - shard-tglu: NOTRUN -> [SKIP][87] ([i915#2527] / [i915#2856]) +1 other test skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-tglu-6/igt@gen9_exec_parse@allowed-all.html * igt@gen9_exec_parse@batch-zero-length: - shard-mtlp: NOTRUN -> [SKIP][88] ([i915#2856]) +5 other tests skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-mtlp-6/igt@gen9_exec_parse@batch-zero-length.html * igt@gen9_exec_parse@unaligned-jump: - shard-dg1: NOTRUN -> [SKIP][89] ([i915#2527]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-dg1-16/igt@gen9_exec_parse@unaligned-jump.html * igt@i915_hwmon@hwmon-read: - shard-mtlp: NOTRUN -> [SKIP][90] ([i915#7707]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-mtlp-3/igt@i915_hwmon@hwmon-read.html * igt@i915_module_load@resize-bar: - shard-mtlp: NOTRUN -> [SKIP][91] ([i915#6412]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-mtlp-3/igt@i915_module_load@resize-bar.html * igt@i915_pm_freq_api@freq-suspend@gt0: - shard-dg2: [PASS][92] -> [INCOMPLETE][93] ([i915#8797]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-dg2-11/igt@i915_pm_freq_api@freq-suspend@gt0.html [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-dg2-2/igt@i915_pm_freq_api@freq-suspend@gt0.html * igt@i915_pm_rc6_residency@rc6-fence: - shard-tglu: NOTRUN -> [WARN][94] ([i915#2681]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-tglu-6/igt@i915_pm_rc6_residency@rc6-fence.html * igt@i915_pm_rc6_residency@rc6-idle@vecs0: - shard-dg1: [PASS][95] -> [FAIL][96] ([i915#3591]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-dg1-16/igt@i915_pm_rc6_residency@rc6-idle@vecs0.html [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@vecs0.html * igt@i915_pm_rpm@dpms-lpsp: - shard-dg2: NOTRUN -> [SKIP][97] ([i915#1397]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-dg2-7/igt@i915_pm_rpm@dpms-lpsp.html * igt@i915_pm_rpm@dpms-mode-unset-non-lpsp: - shard-mtlp: NOTRUN -> [SKIP][98] ([i915#1397]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-mtlp-8/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-dg2: [PASS][99] -> [SKIP][100] ([i915#1397]) +1 other test skip [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-dg2-11/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-dg2-10/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@i915_pm_rpm@modeset-pc8-residency-stress: - shard-dg2: NOTRUN -> [SKIP][101] ([fdo#109506]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-dg2-5/igt@i915_pm_rpm@modeset-pc8-residency-stress.html - shard-mtlp: NOTRUN -> [SKIP][102] ([fdo#109293]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-mtlp-2/igt@i915_pm_rpm@modeset-pc8-residency-stress.html * igt@i915_pm_rps@min-max-config-idle: - shard-dg2: NOTRUN -> [SKIP][103] ([i915#6621]) +1 other test skip [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-dg2-10/igt@i915_pm_rps@min-max-config-idle.html - shard-dg1: NOTRUN -> [SKIP][104] ([i915#6621]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-dg1-18/igt@i915_pm_rps@min-max-config-idle.html * igt@i915_pm_rps@reset: - shard-mtlp: NOTRUN -> [FAIL][105] ([i915#8346]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-mtlp-3/igt@i915_pm_rps@reset.html * igt@i915_pm_rps@thresholds@gt1: - shard-mtlp: NOTRUN -> [SKIP][106] ([i915#8925]) +1 other test skip [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-mtlp-8/igt@i915_pm_rps@thresholds@gt1.html * igt@i915_query@query-topology-coherent-slice-mask: - shard-mtlp: NOTRUN -> [SKIP][107] ([i915#6188]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-mtlp-8/igt@i915_query@query-topology-coherent-slice-mask.html - shard-dg2: NOTRUN -> [SKIP][108] ([i915#6188]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-dg2-11/igt@i915_query@query-topology-coherent-slice-mask.html * igt@i915_selftest@live@gt_engines: - shard-mtlp: NOTRUN -> [FAIL][109] ([i915#9278] / [i915#9290]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-mtlp-5/igt@i915_selftest@live@gt_engines.html * igt@i915_selftest@live@gt_pm: - shard-mtlp: NOTRUN -> [DMESG-FAIL][110] ([i915#9270]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-mtlp-5/igt@i915_selftest@live@gt_pm.html * igt@i915_selftest@mock@memory_region: - shard-dg2: NOTRUN -> [DMESG-WARN][111] ([i915#9311] / [i915#9312]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-dg2-5/igt@i915_selftest@mock@memory_region.html * igt@i915_suspend@debugfs-reader: - shard-snb: NOTRUN -> [DMESG-WARN][112] ([i915#8841]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-snb2/igt@i915_suspend@debugfs-reader.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-mtlp: NOTRUN -> [SKIP][113] ([i915#5190]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-mtlp-7/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_addfb_basic@clobberred-modifier: - shard-mtlp: NOTRUN -> [SKIP][114] ([i915#4212]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-mtlp-6/igt@kms_addfb_basic@clobberred-modifier.html * igt@kms_addfb_basic@framebuffer-vs-set-tiling: - shard-dg2: NOTRUN -> [SKIP][115] ([i915#4212]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-dg2-10/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-dp-4-4-mc_ccs: - shard-dg2: NOTRUN -> [SKIP][116] ([i915#8709]) +11 other tests skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-dg2-11/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-dp-4-4-mc_ccs.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-2-y-rc_ccs: - shard-rkl: NOTRUN -> [SKIP][117] ([i915#8502]) +3 other tests skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-rkl-4/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-a-hdmi-a-2-y-rc_ccs.html * igt@kms_async_flips@invalid-async-flip: - shard-mtlp: NOTRUN -> [SKIP][118] ([i915#6228]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-mtlp-4/igt@kms_async_flips@invalid-async-flip.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-apl: NOTRUN -> [SKIP][119] ([fdo#109271] / [i915#1769]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-apl3/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-dg2: NOTRUN -> [SKIP][120] ([i915#1769] / [i915#3555]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-dg2-11/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_big_fb@4-tiled-16bpp-rotate-90: - shard-mtlp: NOTRUN -> [SKIP][121] ([fdo#111614]) +2 other tests skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-mtlp-4/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html * igt@kms_big_fb@4-tiled-32bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][122] ([i915#5286]) +1 other test skip [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-rkl-2/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-tglu: NOTRUN -> [SKIP][123] ([fdo#111615] / [i915#5286]) +2 other tests skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-tglu-3/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-dg1: NOTRUN -> [SKIP][124] ([i915#4538] / [i915#5286]) +1 other test skip [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-dg1-17/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@linear-32bpp-rotate-270: - shard-dg2: NOTRUN -> [SKIP][125] ([fdo#111614]) +2 other tests skip [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-dg2-5/igt@kms_big_fb@linear-32bpp-rotate-270.html * igt@kms_big_fb@linear-64bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][126] ([fdo#111614] / [i915#3638]) +1 other test skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-rkl-7/igt@kms_big_fb@linear-64bpp-rotate-90.html * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-mtlp: NOTRUN -> [SKIP][127] ([i915#6187]) +1 other test skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-mtlp-6/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-270: - shard-mtlp: NOTRUN -> [SKIP][128] ([fdo#111615]) +7 other tests skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-mtlp-5/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-90: - shard-tglu: NOTRUN -> [SKIP][129] ([fdo#111615]) [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-tglu-3/igt@kms_big_fb@yf-tiled-32bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-8bpp-rotate-0: - shard-dg2: NOTRUN -> [SKIP][130] ([i915#4538] / [i915#5190]) +1 other test skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-dg2-6/igt@kms_big_fb@yf-tiled-8bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-addfb-size-overflow: - shard-dg2: NOTRUN -> [SKIP][131] ([i915#5190]) +14 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-dg2-7/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0: - shard-rkl: NOTRUN -> [SKIP][132] ([fdo#110723]) [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-rkl-6/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html * igt@kms_ccs@pipe-a-bad-aux-stride-4_tiled_mtl_rc_ccs: - shard-dg1: NOTRUN -> [SKIP][133] ([i915#5354] / [i915#6095]) +3 other tests skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-dg1-16/igt@kms_ccs@pipe-a-bad-aux-stride-4_tiled_mtl_rc_ccs.html * igt@kms_ccs@pipe-a-bad-rotation-90-y_tiled_gen12_rc_ccs: - shard-mtlp: NOTRUN -> [SKIP][134] ([i915#6095]) +37 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-mtlp-3/igt@kms_ccs@pipe-a-bad-rotation-90-y_tiled_gen12_rc_ccs.html * igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_mc_ccs: - shard-rkl: NOTRUN -> [SKIP][135] ([i915#3886] / [i915#5354] / [i915#6095]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-rkl-2/igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html - shard-tglu: NOTRUN -> [SKIP][136] ([i915#3689] / [i915#3886] / [i915#5354] / [i915#6095]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-tglu-8/igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_ccs: - shard-rkl: NOTRUN -> [SKIP][137] ([i915#3734] / [i915#5354] / [i915#6095]) +2 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-rkl-4/igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_ccs.html * igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs_cc: - shard-mtlp: NOTRUN -> [SKIP][138] ([i915#3886] / [i915#5354] / [i915#6095]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-mtlp-3/igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-a-missing-ccs-buffer-y_tiled_gen12_mc_ccs: - shard-dg2: NOTRUN -> [SKIP][139] ([i915#3689] / [i915#3886] / [i915#5354]) +7 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-dg2-11/igt@kms_ccs@pipe-a-missing-ccs-buffer-y_tiled_gen12_mc_ccs.html - shard-dg1: NOTRUN -> [SKIP][140] ([i915#3689] / [i915#3886] / [i915#5354] / [i915#6095]) [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-dg1-17/igt@kms_ccs@pipe-a-missing-ccs-buffer-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-a-random-ccs-data-yf_tiled_ccs: - shard-tglu: NOTRUN -> [SKIP][141] ([fdo#111615] / [i915#3689] / [i915#5354] / [i915#6095]) +1 other test skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-tglu-7/igt@kms_ccs@pipe-a-random-ccs-data-yf_tiled_ccs.html * igt@kms_ccs@pipe-b-bad-rotation-90-yf_tiled_ccs: - shard-dg2: NOTRUN -> [SKIP][142] ([i915#3689] / [i915#5354]) +28 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-dg2-11/igt@kms_ccs@pipe-b-bad-rotation-90-yf_tiled_ccs.html * igt@kms_ccs@pipe-b-crc-primary-basic-yf_tiled_ccs: - shard-dg1: NOTRUN -> [SKIP][143] ([i915#3689] / [i915#5354] / [i915#6095]) +4 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-dg1-16/igt@kms_ccs@pipe-b-crc-primary-basic-yf_tiled_ccs.html * igt@kms_ccs@pipe-b-crc-primary-rotation-180-4_tiled_dg2_rc_ccs: - shard-rkl: NOTRUN -> [SKIP][144] ([i915#5354] / [i915#6095]) +1 other test skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-rkl-2/igt@kms_ccs@pipe-b-crc-primary-rotation-180-4_tiled_dg2_rc_ccs.html - shard-tglu: NOTRUN -> [SKIP][145] ([i915#3689] / [i915#5354] / [i915#6095]) +1 other test skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-tglu-6/igt@kms_ccs@pipe-b-crc-primary-rotation-180-4_tiled_dg2_rc_ccs.html * igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_mc_ccs: - shard-mtlp: NOTRUN -> [SKIP][146] ([i915#3886] / [i915#6095]) +10 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-mtlp-8/igt@kms_ccs@pipe-c-bad-rotation-90-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-c-random-ccs-data-4_tiled_mtl_rc_ccs_cc: - shard-tglu: NOTRUN -> [SKIP][147] ([i915#5354] / [i915#6095]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-tglu-3/igt@kms_ccs@pipe-c-random-ccs-data-4_tiled_mtl_rc_ccs_cc.html * igt@kms_ccs@pipe-d-crc-primary-rotation-180-4_tiled_mtl_mc_ccs: - shard-rkl: NOTRUN -> [SKIP][148] ([i915#5354]) +5 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-rkl-7/igt@kms_ccs@pipe-d-crc-primary-rotation-180-4_tiled_mtl_mc_ccs.html * igt@kms_cdclk@mode-transition@pipe-d-dp-4: - shard-dg2: NOTRUN -> [SKIP][149] ([i915#4087] / [i915#7213]) +3 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-dg2-11/igt@kms_cdclk@mode-transition@pipe-d-dp-4.html * igt@kms_chamelium_audio@hdmi-audio-edid: - shard-dg1: NOTRUN -> [SKIP][150] ([i915#7828]) +2 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-dg1-18/igt@kms_chamelium_audio@hdmi-audio-edid.html * igt@kms_chamelium_color@ctm-green-to-red: - shard-dg2: NOTRUN -> [SKIP][151] ([fdo#111827]) +4 other tests skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-dg2-10/igt@kms_chamelium_color@ctm-green-to-red.html * igt@kms_chamelium_color@ctm-limited-range: - shard-mtlp: NOTRUN -> [SKIP][152] ([fdo#111827]) +3 other tests skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-mtlp-3/igt@kms_chamelium_color@ctm-limited-range.html * igt@kms_chamelium_edid@dp-edid-change-during-suspend: - shard-tglu: NOTRUN -> [SKIP][153] ([i915#7828]) +1 other test skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-tglu-7/igt@kms_chamelium_edid@dp-edid-change-during-suspend.html * igt@kms_chamelium_edid@hdmi-mode-timings: - shard-rkl: NOTRUN -> [SKIP][154] ([i915#7828]) +1 other test skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-rkl-7/igt@kms_chamelium_edid@hdmi-mode-timings.html * igt@kms_chamelium_hpd@dp-hpd-storm: - shard-dg2: NOTRUN -> [SKIP][155] ([i915#7828]) +9 other tests skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-dg2-11/igt@kms_chamelium_hpd@dp-hpd-storm.html * igt@kms_chamelium_hpd@vga-hpd: - shard-mtlp: NOTRUN -> [SKIP][156] ([i915#7828]) +13 other tests skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-mtlp-5/igt@kms_chamelium_hpd@vga-hpd.html * igt@kms_content_protection@dp-mst-type-0: - shard-dg2: NOTRUN -> [SKIP][157] ([i915#3299]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-dg2-10/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@dp-mst-type-1: - shard-mtlp: NOTRUN -> [SKIP][158] ([i915#3299]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-mtlp-3/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@lic: - shard-dg2: NOTRUN -> [SKIP][159] ([i915#7118]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-dg2-5/igt@kms_content_protection@lic.html * igt@kms_content_protection@srm: - shard-mtlp: NOTRUN -> [SKIP][160] ([i915#6944]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-mtlp-8/igt@kms_content_protection@srm.html * igt@kms_content_protection@srm@pipe-a-dp-1: - shard-apl: NOTRUN -> [TIMEOUT][161] ([i915#7173]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-apl3/igt@kms_content_protection@srm@pipe-a-dp-1.html * igt@kms_content_protection@type1: - shard-dg1: NOTRUN -> [SKIP][162] ([i915#7116]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-dg1-14/igt@kms_content_protection@type1.html * igt@kms_cursor_crc@cursor-offscreen-512x170: - shard-tglu: NOTRUN -> [SKIP][163] ([fdo#109279] / [i915#3359]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-tglu-2/igt@kms_cursor_crc@cursor-offscreen-512x170.html * igt@kms_cursor_crc@cursor-random-32x10: - shard-rkl: NOTRUN -> [SKIP][164] ([i915#3555]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-rkl-2/igt@kms_cursor_crc@cursor-random-32x10.html * igt@kms_cursor_crc@cursor-random-512x512: - shard-dg2: NOTRUN -> [SKIP][165] ([i915#3359]) +1 other test skip [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-dg2-11/igt@kms_cursor_crc@cursor-random-512x512.html * igt@kms_cursor_crc@cursor-rapid-movement-512x512: - shard-mtlp: NOTRUN -> [SKIP][166] ([i915#3359]) +2 other tests skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-mtlp-5/igt@kms_cursor_crc@cursor-rapid-movement-512x512.html * igt@kms_cursor_crc@cursor-sliding-32x32: - shard-mtlp: NOTRUN -> [SKIP][167] ([i915#3555] / [i915#8814]) +4 other tests skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-mtlp-6/igt@kms_cursor_crc@cursor-sliding-32x32.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic: - shard-dg2: NOTRUN -> [SKIP][168] ([fdo#109274] / [fdo#111767] / [i915#5354]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-dg2-11/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-snb: [PASS][169] -> [ABORT][170] ([i915#8865]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-snb6/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-snb7/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-mtlp: NOTRUN -> [SKIP][171] ([i915#4213]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-mtlp-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt@kms_cursor_legacy@cursora-vs-flipb-atomic: - shard-mtlp: NOTRUN -> [SKIP][172] ([i915#3546]) +5 other tests skip [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-mtlp-1/igt@kms_cursor_legacy@cursora-vs-flipb-atomic.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions: - shard-mtlp: NOTRUN -> [SKIP][173] ([fdo#111767] / [i915#3546]) +1 other test skip [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-mtlp-3/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html * igt@kms_cursor_legacy@cursorb-vs-flipb-legacy: - shard-dg2: NOTRUN -> [SKIP][174] ([fdo#109274] / [i915#5354]) +6 other tests skip [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-dg2-6/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipb-toggle: - shard-snb: NOTRUN -> [SKIP][175] ([fdo#109271] / [fdo#111767]) +1 other test skip [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-snb5/igt@kms_cursor_legacy@cursorb-vs-flipb-toggle.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-apl: [PASS][176] -> [FAIL][177] ([i915#2346]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-apl3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-apl4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@single-move@all-pipes: - shard-mtlp: [PASS][178] -> [DMESG-WARN][179] ([i915#2017]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-mtlp-2/igt@kms_cursor_legacy@single-move@all-pipes.html [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-mtlp-4/igt@kms_cursor_legacy@single-move@all-pipes.html * igt@kms_display_modes@mst-extended-mode-negative: - shard-dg2: NOTRUN -> [SKIP][180] ([i915#8588]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-dg2-1/igt@kms_display_modes@mst-extended-mode-negative.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [SKIP][181] ([fdo#109271]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-glk9/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html * igt@kms_dsc@dsc-with-formats: - shard-mtlp: NOTRUN -> [SKIP][182] ([i915#3555] / [i915#3840]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-mtlp-4/igt@kms_dsc@dsc-with-formats.html * igt@kms_fbcon_fbt@psr-suspend: - shard-dg2: NOTRUN -> [SKIP][183] ([i915#3469]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-dg2-5/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_flip@2x-flip-vs-blocking-wf-vblank: - shard-dg2: NOTRUN -> [SKIP][184] ([fdo#109274] / [fdo#111767]) +1 other test skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-dg2-6/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html - shard-dg1: NOTRUN -> [SKIP][185] ([fdo#111767] / [fdo#111825]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-dg1-15/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html * igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset: - shard-rkl: NOTRUN -> [SKIP][186] ([fdo#111825]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-rkl-7/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html - shard-tglu: NOTRUN -> [SKIP][187] ([fdo#109274] / [i915#3637]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-tglu-9/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible: - shard-rkl: NOTRUN -> [SKIP][188] ([fdo#111767] / [fdo#111825]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-rkl-1/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html * igt@kms_flip@2x-flip-vs-suspend-interruptible: - shard-mtlp: NOTRUN -> [SKIP][189] ([i915#3637]) +9 other tests skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-mtlp-3/igt@kms_flip@2x-flip-vs-suspend-interruptible.html * igt@kms_flip@2x-flip-vs-wf_vblank-interruptible: - shard-dg2: NOTRUN -> [SKIP][190] ([fdo#109274]) +7 other tests skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-dg2-7/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][191] ([i915#8810]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][192] ([i915#2672]) +4 other tests skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-dg2-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html - shard-dg1: NOTRUN -> [SKIP][193] ([i915#2587] / [i915#2672]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-dg1-15/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][194] ([i915#2672]) +2 other tests skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-mtlp-6/igt@kms_flip_scaled_crc@flip-32bpp-yftileccs-to-64bpp-yftile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][195] ([i915#2672] / [i915#3555]) +1 other test skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/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-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][196] ([i915#3555] / [i915#8810]) +1 other test skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode.html * igt@kms_force_connector_basic@prune-stale-modes: - shard-mtlp: NOTRUN -> [SKIP][197] ([i915#5274]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-mtlp-2/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt: - shard-dg2: [PASS][198] -> [FAIL][199] ([i915#6880]) +2 other tests fail [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][200] ([i915#8708]) +6 other tests skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-mtlp-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][201] ([i915#5354]) +57 other tests skip [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][202] ([i915#8708]) +22 other tests skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render: - shard-rkl: NOTRUN -> [SKIP][203] ([fdo#111825] / [i915#1825]) +9 other tests skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-pwrite: - shard-dg2: NOTRUN -> [FAIL][204] ([i915#6880]) +1 other test fail [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbc-tiling-4: - shard-rkl: NOTRUN -> [SKIP][205] ([i915#5439]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-rkl-4/igt@kms_frontbuffer_tracking@fbc-tiling-4.html * igt@kms_frontbuffer_tracking@fbc-tiling-y: - shard-mtlp: NOTRUN -> [SKIP][206] ([i915#5460]) [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbc-tiling-y.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][207] ([i915#8708]) +3 other tests skip [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-dg1-19/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-blt: - shard-tglu: NOTRUN -> [SKIP][208] ([fdo#109280]) +3 other tests skip [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-tglu-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc: - shard-mtlp: NOTRUN -> [SKIP][209] ([i915#1825]) +40 other tests skip [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-mtlp-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-cpu: - shard-tglu: NOTRUN -> [SKIP][210] ([fdo#110189]) +1 other test skip [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-tglu-9/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt: - shard-dg1: NOTRUN -> [SKIP][211] ([i915#3458]) +4 other tests skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-pgflip-blt: - shard-dg1: NOTRUN -> [SKIP][212] ([fdo#111825]) +8 other tests skip [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-dg1-16/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary: - shard-rkl: NOTRUN -> [SKIP][213] ([i915#3023]) +1 other test skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-render: - shard-dg2: NOTRUN -> [SKIP][214] ([i915#3458]) +14 other tests skip [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-render.html * igt@kms_frontbuffer_tracking@psr-suspend: - shard-mtlp: [PASS][215] -> [ABORT][216] ([i915#9262]) +2 other tests abort [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-mtlp-4/igt@kms_frontbuffer_tracking@psr-suspend.html [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-mtlp-1/igt@kms_frontbuffer_tracking@psr-suspend.html * igt@kms_getfb@getfb-reject-ccs: - shard-dg2: NOTRUN -> [SKIP][217] ([i915#6118]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-dg2-2/igt@kms_getfb@getfb-reject-ccs.html * igt@kms_hdr@bpc-switch: - shard-dg2: NOTRUN -> [SKIP][218] ([i915#3555] / [i915#8228]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-dg2-10/igt@kms_hdr@bpc-switch.html * igt@kms_hdr@static-toggle-suspend: - shard-rkl: NOTRUN -> [SKIP][219] ([i915#3555] / [i915#8228]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-rkl-6/igt@kms_hdr@static-toggle-suspend.html - shard-tglu: NOTRUN -> [SKIP][220] ([i915#3555] / [i915#8228]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-tglu-5/igt@kms_hdr@static-toggle-suspend.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-dg2: NOTRUN -> [SKIP][221] ([i915#4816]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-dg2-7/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes: - shard-dg2: NOTRUN -> [SKIP][222] ([fdo#109289]) +4 other tests skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-dg2-7/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html - shard-dg1: NOTRUN -> [SKIP][223] ([fdo#109289]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-dg1-16/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html * igt@kms_plane_lowres@tiling-x@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][224] ([i915#3582]) +3 other tests skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-mtlp-3/igt@kms_plane_lowres@tiling-x@pipe-c-edp-1.html * igt@kms_plane_lowres@tiling-y: - shard-dg2: NOTRUN -> [SKIP][225] ([i915#8821]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-dg2-6/igt@kms_plane_lowres@tiling-y.html * igt@kms_plane_multiple@tiling-yf: - shard-mtlp: NOTRUN -> [SKIP][226] ([i915#3555] / [i915#8806]) [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-mtlp-4/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@intel-max-src-size: - shard-mtlp: NOTRUN -> [SKIP][227] ([i915#6953]) [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-mtlp-5/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][228] ([i915#5176]) +15 other tests skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-mtlp-1/igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-d-edp-1.html * igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][229] ([i915#5176]) +3 other tests skip [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-dg2-6/igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-a-hdmi-a-3.html * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-c-hdmi-a-1: - shard-dg1: NOTRUN -> [SKIP][230] ([i915#5176]) +15 other tests skip [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-dg1-19/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-25@pipe-c-hdmi-a-1.html * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-5@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][231] ([i915#5176]) +3 other tests skip [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-rkl-4/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-5@pipe-b-hdmi-a-2.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-vga-1: - shard-snb: NOTRUN -> [SKIP][232] ([fdo#109271]) +117 other tests skip [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-snb2/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-vga-1.html * igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-a-hdmi-a-1: - shard-tglu: NOTRUN -> [SKIP][233] ([i915#5176]) +7 other tests skip [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-tglu-2/igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-a-hdmi-a-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][234] ([i915#5235]) +11 other tests skip [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-dg1-17/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d-hdmi-a-4.html * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][235] ([i915#5235]) +1 other test skip [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-rkl-7/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-b-hdmi-a-1.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][236] ([i915#5235]) +11 other tests skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-mtlp-6/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-1: - shard-dg2: NOTRUN -> [SKIP][237] ([i915#5235]) +15 other tests skip [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-dg2-10/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-25@pipe-b-hdmi-a-1.html * igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf: - shard-dg1: NOTRUN -> [SKIP][238] ([i915#658]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-dg1-15/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@cursor-plane-move-continuous-sf: - shard-tglu: NOTRUN -> [SKIP][239] ([i915#658]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-tglu-9/igt@kms_psr2_sf@cursor-plane-move-continuous-sf.html * igt@kms_psr2_su@page_flip-nv12: - shard-mtlp: NOTRUN -> [SKIP][240] ([i915#4348]) +1 other test skip [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-mtlp-6/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_psr2_su@page_flip-p010: - shard-apl: NOTRUN -> [SKIP][241] ([fdo#109271] / [i915#658]) [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-apl2/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-dg1: NOTRUN -> [SKIP][242] ([fdo#111068] / [i915#658]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-dg1-17/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@cursor_mmap_gtt: - shard-dg1: NOTRUN -> [SKIP][243] ([i915#1072]) +1 other test skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-dg1-16/igt@kms_psr@cursor_mmap_gtt.html * igt@kms_psr@psr2_sprite_blt: - shard-dg2: NOTRUN -> [SKIP][244] ([i915#1072]) +6 other tests skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-dg2-5/igt@kms_psr@psr2_sprite_blt.html * igt@kms_psr@sprite_blt: - shard-rkl: NOTRUN -> [SKIP][245] ([i915#1072]) [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-rkl-6/igt@kms_psr@sprite_blt.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-dg2: NOTRUN -> [SKIP][246] ([i915#5461] / [i915#658]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-dg2-10/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rotation_crc@primary-rotation-270: - shard-dg2: NOTRUN -> [SKIP][247] ([i915#4235]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-dg2-7/igt@kms_rotation_crc@primary-rotation-270.html * igt@kms_rotation_crc@primary-rotation-90: - shard-mtlp: NOTRUN -> [SKIP][248] ([i915#4235]) +6 other tests skip [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-mtlp-1/igt@kms_rotation_crc@primary-rotation-90.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-90: - shard-dg2: NOTRUN -> [SKIP][249] ([i915#4235] / [i915#5190]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-dg2-7/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-mtlp: NOTRUN -> [SKIP][250] ([i915#5289]) +1 other test skip [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-mtlp-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_selftest@drm_damage: - shard-mtlp: NOTRUN -> [SKIP][251] ([i915#8661]) +1 other test skip [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-mtlp-7/igt@kms_selftest@drm_damage.html * igt@kms_selftest@drm_format: - shard-dg2: NOTRUN -> [SKIP][252] ([i915#8661]) [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-dg2-6/igt@kms_selftest@drm_format.html * igt@kms_setmode@clone-exclusive-crtc: - shard-apl: NOTRUN -> [SKIP][253] ([fdo#109271]) +34 other tests skip [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-apl7/igt@kms_setmode@clone-exclusive-crtc.html - shard-tglu: NOTRUN -> [SKIP][254] ([i915#3555]) [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-tglu-4/igt@kms_setmode@clone-exclusive-crtc.html - shard-mtlp: NOTRUN -> [SKIP][255] ([i915#3555] / [i915#8809]) [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-mtlp-4/igt@kms_setmode@clone-exclusive-crtc.html * igt@kms_setmode@invalid-clone-exclusive-crtc: - shard-mtlp: NOTRUN -> [SKIP][256] ([i915#3555] / [i915#8823]) [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-mtlp-8/igt@kms_setmode@invalid-clone-exclusive-crtc.html * igt@kms_tv_load_detect@load-detect: - shard-mtlp: NOTRUN -> [SKIP][257] ([fdo#109309]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-mtlp-4/igt@kms_tv_load_detect@load-detect.html * igt@kms_universal_plane@cursor-fb-leak-pipe-a: - shard-rkl: [PASS][258] -> [FAIL][259] ([i915#9196]) [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-rkl-6/igt@kms_universal_plane@cursor-fb-leak-pipe-a.html [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-rkl-7/igt@kms_universal_plane@cursor-fb-leak-pipe-a.html * igt@kms_universal_plane@cursor-fb-leak-pipe-c: - shard-rkl: NOTRUN -> [SKIP][260] ([i915#4070] / [i915#6768]) [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-rkl-2/igt@kms_universal_plane@cursor-fb-leak-pipe-c.html * igt@kms_vblank@pipe-a-ts-continuation-dpms-suspend: - shard-mtlp: NOTRUN -> [ABORT][261] ([i915#9262]) +4 other tests abort [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-mtlp-3/igt@kms_vblank@pipe-a-ts-continuation-dpms-suspend.html * igt@kms_vblank@pipe-c-ts-continuation-dpms-suspend: - shard-apl: [PASS][262] -> [INCOMPLETE][263] ([i915#180]) [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-apl2/igt@kms_vblank@pipe-c-ts-continuation-dpms-suspend.html [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-apl1/igt@kms_vblank@pipe-c-ts-continuation-dpms-suspend.html * igt@kms_vblank@pipe-c-wait-busy: - shard-mtlp: NOTRUN -> [DMESG-WARN][264] ([i915#2017] / [i915#9157]) [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-mtlp-2/igt@kms_vblank@pipe-c-wait-busy.html * igt@kms_vblank@pipe-d-ts-continuation-dpms-suspend: - shard-rkl: NOTRUN -> [SKIP][265] ([i915#4070] / [i915#533] / [i915#6768]) [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-rkl-7/igt@kms_vblank@pipe-d-ts-continuation-dpms-suspend.html * igt@kms_vrr@flip-dpms: - shard-dg2: NOTRUN -> [SKIP][266] ([i915#3555]) +5 other tests skip [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-dg2-7/igt@kms_vrr@flip-dpms.html - shard-mtlp: NOTRUN -> [SKIP][267] ([i915#3555] / [i915#8808]) [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-mtlp-3/igt@kms_vrr@flip-dpms.html * igt@kms_writeback@writeback-invalid-parameters: - shard-mtlp: NOTRUN -> [SKIP][268] ([i915#2437]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-mtlp-1/igt@kms_writeback@writeback-invalid-parameters.html * igt@perf@buffer-fill@0-rcs0: - shard-mtlp: NOTRUN -> [FAIL][269] ([i915#7823] / [i915#9265]) [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-mtlp-1/igt@perf@buffer-fill@0-rcs0.html * igt@perf@global-sseu-config-invalid: - shard-mtlp: NOTRUN -> [SKIP][270] ([i915#7387]) [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-mtlp-8/igt@perf@global-sseu-config-invalid.html - shard-dg2: NOTRUN -> [SKIP][271] ([i915#7387]) [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-dg2-11/igt@perf@global-sseu-config-invalid.html * igt@perf@non-zero-reason@0-rcs0: - shard-dg2: [PASS][272] -> [FAIL][273] ([i915#7484]) [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-dg2-5/igt@perf@non-zero-reason@0-rcs0.html [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-dg2-10/igt@perf@non-zero-reason@0-rcs0.html * igt@perf@polling-small-buf: - shard-mtlp: NOTRUN -> [FAIL][274] ([i915#1722]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-mtlp-8/igt@perf@polling-small-buf.html * igt@perf@polling@0-rcs0: - shard-mtlp: NOTRUN -> [FAIL][275] ([i915#9259]) +3 other tests fail [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-mtlp-7/igt@perf@polling@0-rcs0.html * igt@perf_pmu@busy-idle-check-all@bcs0: - shard-mtlp: NOTRUN -> [FAIL][276] ([i915#4521]) +2 other tests fail [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-mtlp-5/igt@perf_pmu@busy-idle-check-all@bcs0.html * igt@perf_pmu@most-busy-check-all@vcs0: - shard-mtlp: NOTRUN -> [FAIL][277] ([i915#5234]) +5 other tests fail [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-mtlp-5/igt@perf_pmu@most-busy-check-all@vcs0.html * igt@perf_pmu@semaphore-busy@rcs0: - shard-mtlp: NOTRUN -> [FAIL][278] ([i915#4349]) +8 other tests fail [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-mtlp-8/igt@perf_pmu@semaphore-busy@rcs0.html * igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem: - shard-dg2: NOTRUN -> [INCOMPLETE][279] ([i915#5493]) [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-dg2-11/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html * igt@prime_vgem@basic-gtt: - shard-mtlp: NOTRUN -> [SKIP][280] ([i915#3708] / [i915#4077]) [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-mtlp-1/igt@prime_vgem@basic-gtt.html * igt@prime_vgem@coherency-blt: - shard-mtlp: NOTRUN -> [FAIL][281] ([i915#8445]) [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-mtlp-6/igt@prime_vgem@coherency-blt.html * igt@prime_vgem@fence-flip-hang: - shard-rkl: NOTRUN -> [SKIP][282] ([fdo#109295] / [i915#3708]) [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-rkl-6/igt@prime_vgem@fence-flip-hang.html * igt@prime_vgem@fence-read-hang: - shard-mtlp: NOTRUN -> [SKIP][283] ([i915#3708]) +1 other test skip [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-mtlp-4/igt@prime_vgem@fence-read-hang.html * igt@runner@aborted: - shard-mtlp: NOTRUN -> ([FAIL][284], [FAIL][285]) ([i915#7812]) [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-mtlp-4/igt@runner@aborted.html [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-mtlp-1/igt@runner@aborted.html * igt@tools_test@sysfs_l3_parity: - shard-tglu: NOTRUN -> [SKIP][286] ([fdo#109307]) [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-tglu-8/igt@tools_test@sysfs_l3_parity.html - shard-mtlp: NOTRUN -> [SKIP][287] ([i915#4818]) [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-mtlp-8/igt@tools_test@sysfs_l3_parity.html * igt@v3d/v3d_submit_cl@bad-multisync-out-sync: - shard-dg2: NOTRUN -> [SKIP][288] ([i915#2575]) +12 other tests skip [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-dg2-6/igt@v3d/v3d_submit_cl@bad-multisync-out-sync.html * igt@v3d/v3d_submit_cl@bad-perfmon: - shard-rkl: NOTRUN -> [SKIP][289] ([fdo#109315]) +2 other tests skip [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-rkl-7/igt@v3d/v3d_submit_cl@bad-perfmon.html * igt@v3d/v3d_submit_csd@bad-multisync-pad: - shard-dg1: NOTRUN -> [SKIP][290] ([i915#2575]) +3 other tests skip [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-dg1-19/igt@v3d/v3d_submit_csd@bad-multisync-pad.html * igt@v3d/v3d_wait_bo@map-bo-0ns: - shard-mtlp: NOTRUN -> [SKIP][291] ([i915#2575]) +14 other tests skip [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-mtlp-7/igt@v3d/v3d_wait_bo@map-bo-0ns.html * igt@vc4/vc4_dmabuf_poll@poll-read-waits-until-write-done: - shard-rkl: NOTRUN -> [SKIP][292] ([i915#7711]) +2 other tests skip [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-rkl-7/igt@vc4/vc4_dmabuf_poll@poll-read-waits-until-write-done.html - shard-tglu: NOTRUN -> [SKIP][293] ([i915#2575]) +1 other test skip [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-tglu-2/igt@vc4/vc4_dmabuf_poll@poll-read-waits-until-write-done.html * igt@vc4/vc4_mmap@mmap-bo: - shard-dg1: NOTRUN -> [SKIP][294] ([i915#7711]) [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-dg1-19/igt@vc4/vc4_mmap@mmap-bo.html * igt@vc4/vc4_wait_bo@used-bo-0ns: - shard-mtlp: NOTRUN -> [SKIP][295] ([i915#7711]) +6 other tests skip [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-mtlp-4/igt@vc4/vc4_wait_bo@used-bo-0ns.html * igt@vc4/vc4_wait_seqno@bad-seqno-1ns: - shard-dg2: NOTRUN -> [SKIP][296] ([i915#7711]) +10 other tests skip [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-dg2-10/igt@vc4/vc4_wait_seqno@bad-seqno-1ns.html #### Possible fixes #### * igt@gem_eio@kms: - shard-dg1: [FAIL][297] ([i915#5784]) -> [PASS][298] [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-dg1-12/igt@gem_eio@kms.html [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-dg1-18/igt@gem_eio@kms.html * igt@gem_exec_endless@dispatch@vecs0: - shard-mtlp: [TIMEOUT][299] ([i915#3778] / [i915#7016]) -> [PASS][300] [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-mtlp-2/igt@gem_exec_endless@dispatch@vecs0.html [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-mtlp-2/igt@gem_exec_endless@dispatch@vecs0.html * igt@gem_exec_fair@basic-deadline: - shard-rkl: [FAIL][301] ([i915#2846]) -> [PASS][302] [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-rkl-6/igt@gem_exec_fair@basic-deadline.html [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-rkl-2/igt@gem_exec_fair@basic-deadline.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-rkl: [FAIL][303] ([i915#2842]) -> [PASS][304] +1 other test pass [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-rkl-6/igt@gem_exec_fair@basic-pace-share@rcs0.html [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-rkl-7/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_suspend@basic-s4-devices@smem: - shard-tglu: [ABORT][305] ([i915#7975] / [i915#8213]) -> [PASS][306] [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-tglu-10/igt@gem_exec_suspend@basic-s4-devices@smem.html [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-tglu-7/igt@gem_exec_suspend@basic-s4-devices@smem.html * igt@gem_mmap_offset@clear@smem0: - shard-dg1: [FAIL][307] ([i915#7962]) -> [PASS][308] [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-dg1-14/igt@gem_mmap_offset@clear@smem0.html [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-dg1-16/igt@gem_mmap_offset@clear@smem0.html * igt@gem_spin_batch@user-each: - shard-dg2: [TIMEOUT][309] -> [PASS][310] [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-dg2-2/igt@gem_spin_batch@user-each.html [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-dg2-11/igt@gem_spin_batch@user-each.html * igt@gen9_exec_parse@allowed-all: - shard-apl: [ABORT][311] ([i915#5566]) -> [PASS][312] [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-apl7/igt@gen9_exec_parse@allowed-all.html [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-apl2/igt@gen9_exec_parse@allowed-all.html * igt@gen9_exec_parse@allowed-single: - shard-apl: [INCOMPLETE][313] ([i915#5566]) -> [PASS][314] [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-apl1/igt@gen9_exec_parse@allowed-single.html [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-apl3/igt@gen9_exec_parse@allowed-single.html * igt@i915_hangman@gt-engine-error@vcs0: - shard-mtlp: [FAIL][315] ([i915#7069]) -> [PASS][316] [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-mtlp-4/igt@i915_hangman@gt-engine-error@vcs0.html [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-mtlp-5/igt@i915_hangman@gt-engine-error@vcs0.html * igt@i915_module_load@reload-with-fault-injection: - shard-dg2: [DMESG-WARN][317] ([i915#7061] / [i915#8617]) -> [PASS][318] [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-dg2-2/igt@i915_module_load@reload-with-fault-injection.html [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-dg2-10/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_rpm@i2c: - shard-dg2: [FAIL][319] ([i915#8717]) -> [PASS][320] [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-dg2-2/igt@i915_pm_rpm@i2c.html [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-dg2-10/igt@i915_pm_rpm@i2c.html * igt@i915_pm_rpm@modeset-lpsp-stress: - shard-dg1: [SKIP][321] ([i915#1397]) -> [PASS][322] [321]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-dg1-18/igt@i915_pm_rpm@modeset-lpsp-stress.html [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-dg1-19/igt@i915_pm_rpm@modeset-lpsp-stress.html * igt@i915_selftest@live@gt_lrc: - shard-tglu: [DMESG-FAIL][323] -> [PASS][324] [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-tglu-2/igt@i915_selftest@live@gt_lrc.html [324]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-tglu-6/igt@i915_selftest@live@gt_lrc.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-tglu: [FAIL][325] ([i915#3743]) -> [PASS][326] [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-tglu-7/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html [326]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-tglu-2/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-glk: [FAIL][327] ([i915#2346]) -> [PASS][328] +1 other test pass [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-glk6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-glk9/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html - shard-apl: [FAIL][329] ([i915#2346]) -> [PASS][330] [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-apl7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-apl6/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-dg2: [INCOMPLETE][331] -> [PASS][332] [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-dg2-5/igt@kms_fbcon_fbt@fbc-suspend.html [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-dg2-10/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-pwrite: - shard-dg2: [FAIL][333] ([i915#6880]) -> [PASS][334] +2 other tests pass [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-pwrite.html [334]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-pwrite.html * igt@kms_hdmi_inject@inject-audio: - shard-tglu: [SKIP][335] ([i915#433]) -> [PASS][336] [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-tglu-9/igt@kms_hdmi_inject@inject-audio.html [336]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-tglu-2/igt@kms_hdmi_inject@inject-audio.html * igt@perf_pmu@busy-double-start@vecs1: - shard-dg2: [FAIL][337] ([i915#4349]) -> [PASS][338] +11 other tests pass [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-dg2-2/igt@perf_pmu@busy-double-start@vecs1.html [338]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-dg2-6/igt@perf_pmu@busy-double-start@vecs1.html * igt@perf_pmu@semaphore-busy@vcs1: - shard-dg1: [FAIL][339] ([i915#4349]) -> [PASS][340] +2 other tests pass [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-dg1-18/igt@perf_pmu@semaphore-busy@vcs1.html [340]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-dg1-17/igt@perf_pmu@semaphore-busy@vcs1.html #### Warnings #### * igt@device_reset@unbind-reset-rebind: - shard-dg1: [INCOMPLETE][341] ([i915#1982] / [i915#4983]) -> [INCOMPLETE][342] ([i915#4983]) [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-dg1-19/igt@device_reset@unbind-reset-rebind.html [342]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-dg1-15/igt@device_reset@unbind-reset-rebind.html * igt@kms_async_flips@crc@pipe-a-edp-1: - shard-mtlp: [DMESG-FAIL][343] ([i915#8561]) -> [FAIL][344] ([i915#8247]) [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-mtlp-3/igt@kms_async_flips@crc@pipe-a-edp-1.html [344]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-mtlp-3/igt@kms_async_flips@crc@pipe-a-edp-1.html * igt@kms_async_flips@crc@pipe-d-edp-1: - shard-mtlp: [FAIL][345] ([i915#8247]) -> [DMESG-FAIL][346] ([i915#8561]) [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-mtlp-3/igt@kms_async_flips@crc@pipe-d-edp-1.html [346]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-mtlp-3/igt@kms_async_flips@crc@pipe-d-edp-1.html * igt@kms_content_protection@mei_interface: - shard-dg2: [SKIP][347] ([i915#7118]) -> [SKIP][348] ([i915#7118] / [i915#7162]) [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-dg2-5/igt@kms_content_protection@mei_interface.html [348]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-dg2-11/igt@kms_content_protection@mei_interface.html - shard-dg1: [SKIP][349] ([fdo#109300]) -> [SKIP][350] ([i915#7116]) [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-dg1-13/igt@kms_content_protection@mei_interface.html [350]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-dg1-19/igt@kms_content_protection@mei_interface.html * igt@kms_fbcon_fbt@psr: - shard-rkl: [SKIP][351] ([i915#3955]) -> [SKIP][352] ([fdo#110189] / [i915#3955]) [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-rkl-7/igt@kms_fbcon_fbt@psr.html [352]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-rkl-2/igt@kms_fbcon_fbt@psr.html * igt@kms_force_connector_basic@force-load-detect: - shard-rkl: [SKIP][353] ([fdo#109285] / [i915#4098]) -> [SKIP][354] ([fdo#109285]) [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-rkl-2/igt@kms_force_connector_basic@force-load-detect.html [354]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-rkl-7/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_psr@primary_page_flip: - shard-dg1: [SKIP][355] ([i915#1072]) -> [SKIP][356] ([i915#1072] / [i915#4078]) +1 other test skip [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7481/shard-dg1-14/igt@kms_psr@primary_page_flip.html [356]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/shard-dg1-18/igt@kms_psr@primary_page_flip.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109293]: https://bugs.freedesktop.org/show_bug.cgi?id=109293 [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [fdo#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300 [fdo#109307]: https://bugs.freedesktop.org/show_bug.cgi?id=109307 [fdo#109309]: https://bugs.freedesktop.org/show_bug.cgi?id=109309 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 [i915#1722]: https://gitlab.freedesktop.org/drm/intel/issues/1722 [i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769 [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180 [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#2017]: https://gitlab.freedesktop.org/drm/intel/issues/2017 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681 [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#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3582]: https://gitlab.freedesktop.org/drm/intel/issues/3582 [i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734 [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743 [i915#3778]: https://gitlab.freedesktop.org/drm/intel/issues/3778 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955 [i915#4036]: https://gitlab.freedesktop.org/drm/intel/issues/4036 [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4087]: https://gitlab.freedesktop.org/drm/intel/issues/4087 [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098 [i915#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#433]: https://gitlab.freedesktop.org/drm/intel/issues/433 [i915#4348]: https://gitlab.freedesktop.org/drm/intel/issues/4348 [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 [i915#4473]: https://gitlab.freedesktop.org/drm/intel/issues/4473 [i915#4521]: https://gitlab.freedesktop.org/drm/intel/issues/4521 [i915#4537]: https://gitlab.freedesktop.org/drm/intel/issues/4537 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771 [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#4816]: https://gitlab.freedesktop.org/drm/intel/issues/4816 [i915#4818]: https://gitlab.freedesktop.org/drm/intel/issues/4818 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4873]: https://gitlab.freedesktop.org/drm/intel/issues/4873 [i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880 [i915#4936]: https://gitlab.freedesktop.org/drm/intel/issues/4936 [i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983 [i915#5107]: https://gitlab.freedesktop.org/drm/intel/issues/5107 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 [i915#5234]: https://gitlab.freedesktop.org/drm/intel/issues/5234 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289 [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439 [i915#5460]: https://gitlab.freedesktop.org/drm/intel/issues/5460 [i915#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461 [i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493 [i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566 [i915#5591]: https://gitlab.freedesktop.org/drm/intel/issues/5591 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6118]: https://gitlab.freedesktop.org/drm/intel/issues/6118 [i915#6121]: https://gitlab.freedesktop.org/drm/intel/issues/6121 [i915#6187]: https://gitlab.freedesktop.org/drm/intel/issues/6187 [i915#6188]: https://gitlab.freedesktop.org/drm/intel/issues/6188 [i915#6228]: https://gitlab.freedesktop.org/drm/intel/issues/6228 [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268 [i915#6335]: https://gitlab.freedesktop.org/drm/intel/issues/6335 [i915#6412]: https://gitlab.freedesktop.org/drm/intel/issues/6412 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768 [i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880 [i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944 [i915#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953 [i915#7016]: https://gitlab.freedesktop.org/drm/intel/issues/7016 [i915#7061]: https://gitlab.freedesktop.org/drm/intel/issues/7061 [i915#7069]: https://gitlab.freedesktop.org/drm/intel/issues/7069 [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7162]: https://gitlab.freedesktop.org/drm/intel/issues/7162 [i915#7173]: https://gitlab.freedesktop.org/drm/intel/issues/7173 [i915#7213]: https://gitlab.freedesktop.org/drm/intel/issues/7213 [i915#7387]: https://gitlab.freedesktop.org/drm/intel/issues/7387 [i915#7484]: https://gitlab.freedesktop.org/drm/intel/issues/7484 [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#7812]: https://gitlab.freedesktop.org/drm/intel/issues/7812 [i915#7823]: https://gitlab.freedesktop.org/drm/intel/issues/7823 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#7962]: https://gitlab.freedesktop.org/drm/intel/issues/7962 [i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975 [i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213 [i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228 [i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247 [i915#8289]: https://gitlab.freedesktop.org/drm/intel/issues/8289 [i915#8346]: https://gitlab.freedesktop.org/drm/intel/issues/8346 [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#8445]: https://gitlab.freedesktop.org/drm/intel/issues/8445 [i915#8502]: https://gitlab.freedesktop.org/drm/intel/issues/8502 [i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555 [i915#8561]: https://gitlab.freedesktop.org/drm/intel/issues/8561 [i915#8588]: https://gitlab.freedesktop.org/drm/intel/issues/8588 [i915#8617]: https://gitlab.freedesktop.org/drm/intel/issues/8617 [i915#8661]: https://gitlab.freedesktop.org/drm/intel/issues/8661 [i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708 [i915#8709]: https://gitlab.freedesktop.org/drm/intel/issues/8709 [i915#8717]: https://gitlab.freedesktop.org/drm/intel/issues/8717 [i915#8797]: https://gitlab.freedesktop.org/drm/intel/issues/8797 [i915#8806]: https://gitlab.freedesktop.org/drm/intel/issues/8806 [i915#8808]: https://gitlab.freedesktop.org/drm/intel/issues/8808 [i915#8809]: https://gitlab.freedesktop.org/drm/intel/issues/8809 [i915#8810]: https://gitlab.freedesktop.org/drm/intel/issues/8810 [i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814 [i915#8821]: https://gitlab.freedesktop.org/drm/intel/issues/8821 [i915#8823]: https://gitlab.freedesktop.org/drm/intel/issues/8823 [i915#8841]: https://gitlab.freedesktop.org/drm/intel/issues/8841 [i915#8865]: https://gitlab.freedesktop.org/drm/intel/issues/8865 [i915#8925]: https://gitlab.freedesktop.org/drm/intel/issues/8925 [i915#8962]: https://gitlab.freedesktop.org/drm/intel/issues/8962 [i915#9119]: https://gitlab.freedesktop.org/drm/intel/issues/9119 [i915#9121]: https://gitlab.freedesktop.org/drm/intel/issues/9121 [i915#9157]: https://gitlab.freedesktop.org/drm/intel/issues/9157 [i915#9192]: https://gitlab.freedesktop.org/drm/intel/issues/9192 [i915#9196]: https://gitlab.freedesktop.org/drm/intel/issues/9196 [i915#9226]: https://gitlab.freedesktop.org/drm/intel/issues/9226 [i915#9259]: https://gitlab.freedesktop.org/drm/intel/issues/9259 [i915#9261]: https://gitlab.freedesktop.org/drm/intel/issues/9261 [i915#9262]: https://gitlab.freedesktop.org/drm/intel/issues/9262 [i915#9265]: https://gitlab.freedesktop.org/drm/intel/issues/9265 [i915#9270]: https://gitlab.freedesktop.org/drm/intel/issues/9270 [i915#9278]: https://gitlab.freedesktop.org/drm/intel/issues/9278 [i915#9290]: https://gitlab.freedesktop.org/drm/intel/issues/9290 [i915#9295]: https://gitlab.freedesktop.org/drm/intel/issues/9295 [i915#9311]: https://gitlab.freedesktop.org/drm/intel/issues/9311 [i915#9312]: https://gitlab.freedesktop.org/drm/intel/issues/9312 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7481 -> IGTPW_9775 CI-20190529: 20190529 CI_DRM_13623: eb35627e1c4a3781c161cd04944e403ce6df3e1c @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9775: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/index.html IGT_7481: 10897911fefd697969ec5030fdeb8d47d6d6ba43 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9775/index.html [-- Attachment #2: Type: text/html, Size: 116498 bytes --] ^ permalink raw reply [flat|nested] 11+ messages in thread
end of thread, other threads:[~2023-09-12 17:37 UTC | newest] Thread overview: 11+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-09-11 12:22 [igt-dev] [PATCH 0/2] i915_pipe_stress fixes Stanislav Lisovskiy 2023-09-11 12:22 ` [igt-dev] [PATCH 1/2] tests/intel/i915_pipe_stress: Fix create_buf function Stanislav Lisovskiy 2023-09-11 13:25 ` Zbigniew Kempczyński 2023-09-12 13:18 ` Stanislav Lisovskiy 2023-09-11 12:22 ` [igt-dev] [PATCH 2/2] tests/intel/i915_pipe_stress: Use only first pipe if Bigjoiner is used Stanislav Lisovskiy 2023-09-11 13:04 ` [igt-dev] ✓ CI.xeBAT: success for i915_pipe_stress fixes Patchwork 2023-09-11 13:09 ` [igt-dev] ✓ Fi.CI.BAT: " Patchwork 2023-09-11 16:46 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 2023-09-12 16:02 ` [igt-dev] ✓ Fi.CI.BAT: success for i915_pipe_stress fixes (rev2) Patchwork 2023-09-12 17:18 ` [igt-dev] ✓ CI.xeBAT: " Patchwork 2023-09-12 17:37 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox