* [igt-dev] [PATCH i-g-t 0/2] Add missing Meteorlake gpgpu fill condition
@ 2023-09-13 14:24 Zbigniew Kempczyński
2023-09-13 14:24 ` [igt-dev] [PATCH i-g-t 1/2] lib/intel_batchbuffer: Add Meteorlake gpgpu fill entry Zbigniew Kempczyński
` (5 more replies)
0 siblings, 6 replies; 12+ messages in thread
From: Zbigniew Kempczyński @ 2023-09-13 14:24 UTC (permalink / raw)
To: igt-dev
Missing version leads to hang, unfortunately test didn't notice
that reporting it is succeding even if it wasn't true on MTL.
Cc: Stanislav Lisovskiy <stanislav.lisovskiy@intel.com>
Arjun Melkaveri (1):
lib/intel_batchbuffer: Add Meteorlake gpgpu fill entry
Zbigniew Kempczyński (1):
tests/i915_pipe_stress: Remove stack variables
lib/intel_batchbuffer.c | 4 +++-
tests/intel/i915_pipe_stress.c | 5 ++---
2 files changed, 5 insertions(+), 4 deletions(-)
--
2.34.1
^ permalink raw reply [flat|nested] 12+ messages in thread* [igt-dev] [PATCH i-g-t 1/2] lib/intel_batchbuffer: Add Meteorlake gpgpu fill entry 2023-09-13 14:24 [igt-dev] [PATCH i-g-t 0/2] Add missing Meteorlake gpgpu fill condition Zbigniew Kempczyński @ 2023-09-13 14:24 ` Zbigniew Kempczyński 2023-09-13 15:59 ` Kamil Konieczny 2023-09-13 14:24 ` [igt-dev] [PATCH i-g-t 2/2] tests/i915_pipe_stress: Remove stack variables Zbigniew Kempczyński ` (4 subsequent siblings) 5 siblings, 1 reply; 12+ messages in thread From: Zbigniew Kempczyński @ 2023-09-13 14:24 UTC (permalink / raw) To: igt-dev From: Arjun Melkaveri <arjun.melkaveri@intel.com> Meteorlake is using XeHP pipeline for gpgpu fill so it must be added first as it is an exception in newer platforms condition. Signed-off-by: Arjun Melkaveri <arjun.melkaveri@intel.com> Signed-off-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com> Cc: Stanislav Lisovskiy <stanislav.lisovskiy@intel.com> --- lib/intel_batchbuffer.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/intel_batchbuffer.c b/lib/intel_batchbuffer.c index 682c0fe1d2..e7b1b755fd 100644 --- a/lib/intel_batchbuffer.c +++ b/lib/intel_batchbuffer.c @@ -755,7 +755,9 @@ igt_fillfunc_t igt_get_gpgpu_fillfunc(int devid) { igt_fillfunc_t fill = NULL; - if (intel_graphics_ver(devid) >= IP_VER(12, 60)) + if (IS_METEORLAKE(devid)) + fill = xehp_gpgpu_fillfunc; + else if (intel_graphics_ver(devid) >= IP_VER(12, 60)) fill = xehpc_gpgpu_fillfunc; else if (intel_graphics_ver(devid) >= IP_VER(12, 50)) fill = xehp_gpgpu_fillfunc; -- 2.34.1 ^ permalink raw reply related [flat|nested] 12+ messages in thread
* Re: [igt-dev] [PATCH i-g-t 1/2] lib/intel_batchbuffer: Add Meteorlake gpgpu fill entry 2023-09-13 14:24 ` [igt-dev] [PATCH i-g-t 1/2] lib/intel_batchbuffer: Add Meteorlake gpgpu fill entry Zbigniew Kempczyński @ 2023-09-13 15:59 ` Kamil Konieczny 2023-09-14 6:00 ` Zbigniew Kempczyński 0 siblings, 1 reply; 12+ messages in thread From: Kamil Konieczny @ 2023-09-13 15:59 UTC (permalink / raw) To: igt-dev Hi Zbigniew, On 2023-09-13 at 16:24:16 +0200, Zbigniew Kempczyński wrote: > From: Arjun Melkaveri <arjun.melkaveri@intel.com> > > Meteorlake is using XeHP pipeline for gpgpu fill so it must be > added first as it is an exception in newer platforms condition. > > Signed-off-by: Arjun Melkaveri <arjun.melkaveri@intel.com> > Signed-off-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com> > Cc: Stanislav Lisovskiy <stanislav.lisovskiy@intel.com> > --- > lib/intel_batchbuffer.c | 4 +++- > 1 file changed, 3 insertions(+), 1 deletion(-) > > diff --git a/lib/intel_batchbuffer.c b/lib/intel_batchbuffer.c > index 682c0fe1d2..e7b1b755fd 100644 > --- a/lib/intel_batchbuffer.c > +++ b/lib/intel_batchbuffer.c > @@ -755,7 +755,9 @@ igt_fillfunc_t igt_get_gpgpu_fillfunc(int devid) > { > igt_fillfunc_t fill = NULL; > > - if (intel_graphics_ver(devid) >= IP_VER(12, 60)) > + if (IS_METEORLAKE(devid)) May you add comment here? like: if (IS_METEORLAKE(devid)) /* exception - MTL uses XeHP pipeline */ With or without it: Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com> > + fill = xehp_gpgpu_fillfunc; > + else if (intel_graphics_ver(devid) >= IP_VER(12, 60)) > fill = xehpc_gpgpu_fillfunc; > else if (intel_graphics_ver(devid) >= IP_VER(12, 50)) > fill = xehp_gpgpu_fillfunc; > -- > 2.34.1 > ^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [igt-dev] [PATCH i-g-t 1/2] lib/intel_batchbuffer: Add Meteorlake gpgpu fill entry 2023-09-13 15:59 ` Kamil Konieczny @ 2023-09-14 6:00 ` Zbigniew Kempczyński 0 siblings, 0 replies; 12+ messages in thread From: Zbigniew Kempczyński @ 2023-09-14 6:00 UTC (permalink / raw) To: Kamil Konieczny, igt-dev, Zbigniew Kempczyński On Wed, Sep 13, 2023 at 05:59:50PM +0200, Kamil Konieczny wrote: > Hi Zbigniew, > > On 2023-09-13 at 16:24:16 +0200, Zbigniew Kempczyński wrote: > > From: Arjun Melkaveri <arjun.melkaveri@intel.com> > > > > Meteorlake is using XeHP pipeline for gpgpu fill so it must be > > added first as it is an exception in newer platforms condition. > > > > Signed-off-by: Arjun Melkaveri <arjun.melkaveri@intel.com> > > Signed-off-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com> > > Cc: Stanislav Lisovskiy <stanislav.lisovskiy@intel.com> > > --- > > lib/intel_batchbuffer.c | 4 +++- > > 1 file changed, 3 insertions(+), 1 deletion(-) > > > > diff --git a/lib/intel_batchbuffer.c b/lib/intel_batchbuffer.c > > index 682c0fe1d2..e7b1b755fd 100644 > > --- a/lib/intel_batchbuffer.c > > +++ b/lib/intel_batchbuffer.c > > @@ -755,7 +755,9 @@ igt_fillfunc_t igt_get_gpgpu_fillfunc(int devid) > > { > > igt_fillfunc_t fill = NULL; > > > > - if (intel_graphics_ver(devid) >= IP_VER(12, 60)) > > + if (IS_METEORLAKE(devid)) > > May you add comment here? like: > > if (IS_METEORLAKE(devid)) /* exception - MTL uses XeHP pipeline */ I think this condition doesn't deserve for own comment. I think condition itself is clearly self documenting. Thanks for the review. -- Zbigniew > > With or without it: > Reviewed-by: Kamil Konieczny <kamil.konieczny@linux.intel.com> > > > + fill = xehp_gpgpu_fillfunc; > > + else if (intel_graphics_ver(devid) >= IP_VER(12, 60)) > > fill = xehpc_gpgpu_fillfunc; > > else if (intel_graphics_ver(devid) >= IP_VER(12, 50)) > > fill = xehp_gpgpu_fillfunc; > > -- > > 2.34.1 > > ^ permalink raw reply [flat|nested] 12+ messages in thread
* [igt-dev] [PATCH i-g-t 2/2] tests/i915_pipe_stress: Remove stack variables 2023-09-13 14:24 [igt-dev] [PATCH i-g-t 0/2] Add missing Meteorlake gpgpu fill condition Zbigniew Kempczyński 2023-09-13 14:24 ` [igt-dev] [PATCH i-g-t 1/2] lib/intel_batchbuffer: Add Meteorlake gpgpu fill entry Zbigniew Kempczyński @ 2023-09-13 14:24 ` Zbigniew Kempczyński 2023-09-13 15:15 ` Lisovskiy, Stanislav 2023-09-13 17:58 ` [igt-dev] ✓ CI.xeBAT: success for Add missing Meteorlake gpgpu fill condition Patchwork ` (3 subsequent siblings) 5 siblings, 1 reply; 12+ messages in thread From: Zbigniew Kempczyński @ 2023-09-13 14:24 UTC (permalink / raw) To: igt-dev They are unused and what's worse unassigned. Get rid of them keeping x/y_rand only. Signed-off-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com> Cc: Stanislav Lisovskiy <stanislav.lisovskiy@intel.com> --- tests/intel/i915_pipe_stress.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/tests/intel/i915_pipe_stress.c b/tests/intel/i915_pipe_stress.c index 9ceb056a09..f9da5f0232 100644 --- a/tests/intel/i915_pipe_stress.c +++ b/tests/intel/i915_pipe_stress.c @@ -241,7 +241,6 @@ static void *gpu_load(void *ptr) int frame_height; drmModeModeInfo *mode; int frame = 0; - int x, y; int rect = 0, total_rects = 0; int pixels = 0; @@ -273,8 +272,8 @@ static void *gpu_load(void *ptr) x_rand = hars_petruska_f54_1_random_unsafe_max(frame_width - rect_width); y_rand = hars_petruska_f54_1_random_unsafe_max(frame_height/2 - rect_height); - context->blt_rect.x = x + x_rand; - context->blt_rect.y = y + y_rand; + context->blt_rect.x = x_rand; + context->blt_rect.y = y_rand; /* Fill randomly sized and positioned rectangles */ fill_gpu(context, context->blt_rect.x, context->blt_rect.y, -- 2.34.1 ^ permalink raw reply related [flat|nested] 12+ messages in thread
* Re: [igt-dev] [PATCH i-g-t 2/2] tests/i915_pipe_stress: Remove stack variables 2023-09-13 14:24 ` [igt-dev] [PATCH i-g-t 2/2] tests/i915_pipe_stress: Remove stack variables Zbigniew Kempczyński @ 2023-09-13 15:15 ` Lisovskiy, Stanislav 0 siblings, 0 replies; 12+ messages in thread From: Lisovskiy, Stanislav @ 2023-09-13 15:15 UTC (permalink / raw) To: Zbigniew Kempczyński; +Cc: igt-dev On Wed, Sep 13, 2023 at 04:24:17PM +0200, Zbigniew Kempczyński wrote: > They are unused and what's worse unassigned. Get rid of them keeping > x/y_rand only. > > Signed-off-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com> > Cc: Stanislav Lisovskiy <stanislav.lisovskiy@intel.com> > --- > tests/intel/i915_pipe_stress.c | 5 ++--- > 1 file changed, 2 insertions(+), 3 deletions(-) > > diff --git a/tests/intel/i915_pipe_stress.c b/tests/intel/i915_pipe_stress.c > index 9ceb056a09..f9da5f0232 100644 > --- a/tests/intel/i915_pipe_stress.c > +++ b/tests/intel/i915_pipe_stress.c > @@ -241,7 +241,6 @@ static void *gpu_load(void *ptr) > int frame_height; > drmModeModeInfo *mode; > int frame = 0; > - int x, y; > int rect = 0, total_rects = 0; > int pixels = 0; > > @@ -273,8 +272,8 @@ static void *gpu_load(void *ptr) > x_rand = hars_petruska_f54_1_random_unsafe_max(frame_width - rect_width); > y_rand = hars_petruska_f54_1_random_unsafe_max(frame_height/2 - rect_height); > > - context->blt_rect.x = x + x_rand; > - context->blt_rect.y = y + y_rand; > + context->blt_rect.x = x_rand; > + context->blt_rect.y = y_rand; Thanks for spotting, Reviewed-by: Stanislav Lisovskiy <stanislav.lisovskiy@intel.com> > > /* Fill randomly sized and positioned rectangles */ > fill_gpu(context, context->blt_rect.x, context->blt_rect.y, > -- > 2.34.1 > ^ permalink raw reply [flat|nested] 12+ messages in thread
* [igt-dev] ✓ CI.xeBAT: success for Add missing Meteorlake gpgpu fill condition 2023-09-13 14:24 [igt-dev] [PATCH i-g-t 0/2] Add missing Meteorlake gpgpu fill condition Zbigniew Kempczyński 2023-09-13 14:24 ` [igt-dev] [PATCH i-g-t 1/2] lib/intel_batchbuffer: Add Meteorlake gpgpu fill entry Zbigniew Kempczyński 2023-09-13 14:24 ` [igt-dev] [PATCH i-g-t 2/2] tests/i915_pipe_stress: Remove stack variables Zbigniew Kempczyński @ 2023-09-13 17:58 ` Patchwork 2023-09-13 18:01 ` [igt-dev] ✓ Fi.CI.BAT: " Patchwork ` (2 subsequent siblings) 5 siblings, 0 replies; 12+ messages in thread From: Patchwork @ 2023-09-13 17:58 UTC (permalink / raw) To: Zbigniew Kempczyński; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 856 bytes --] == Series Details == Series: Add missing Meteorlake gpgpu fill condition URL : https://patchwork.freedesktop.org/series/123640/ State : success == Summary == CI Bug Log - changes from XEIGT_7486_BAT -> XEIGTPW_9781_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (4 -> 4) ------------------------------ No changes in participating hosts Changes ------- No changes found Build changes ------------- * IGT: IGT_7486 -> IGTPW_9781 IGTPW_9781: 9781 IGT_7486: afd9a940c8247291baadd1977fe881d4f2edf0c7 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-371-89b671db4d8e2c46f27044d39c69095f597290e5: 89b671db4d8e2c46f27044d39c69095f597290e5 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_9781/index.html [-- Attachment #2: Type: text/html, Size: 1400 bytes --] ^ permalink raw reply [flat|nested] 12+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for Add missing Meteorlake gpgpu fill condition 2023-09-13 14:24 [igt-dev] [PATCH i-g-t 0/2] Add missing Meteorlake gpgpu fill condition Zbigniew Kempczyński ` (2 preceding siblings ...) 2023-09-13 17:58 ` [igt-dev] ✓ CI.xeBAT: success for Add missing Meteorlake gpgpu fill condition Patchwork @ 2023-09-13 18:01 ` Patchwork 2023-09-13 21:31 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 2023-09-14 12:13 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork 5 siblings, 0 replies; 12+ messages in thread From: Patchwork @ 2023-09-13 18:01 UTC (permalink / raw) To: Zbigniew Kempczyński; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 1867 bytes --] == Series Details == Series: Add missing Meteorlake gpgpu fill condition URL : https://patchwork.freedesktop.org/series/123640/ State : success == Summary == CI Bug Log - changes from CI_DRM_13625 -> IGTPW_9781 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/index.html Participating hosts (41 -> 39) ------------------------------ Missing (2): fi-hsw-4770 fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_9781 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_selftest@live@gt_heartbeat: - fi-glk-j4005: [PASS][1] -> [DMESG-FAIL][2] ([i915#5334]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13625/fi-glk-j4005/igt@i915_selftest@live@gt_heartbeat.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/fi-glk-j4005/igt@i915_selftest@live@gt_heartbeat.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334 [i915#7952]: https://gitlab.freedesktop.org/drm/intel/issues/7952 [i915#9273]: https://gitlab.freedesktop.org/drm/intel/issues/9273 [i915#9279]: https://gitlab.freedesktop.org/drm/intel/issues/9279 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7486 -> IGTPW_9781 CI-20190529: 20190529 CI_DRM_13625: df710849c4a552f8516480ccaf5b215b4b086530 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9781: 9781 IGT_7486: afd9a940c8247291baadd1977fe881d4f2edf0c7 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/index.html [-- Attachment #2: Type: text/html, Size: 2259 bytes --] ^ permalink raw reply [flat|nested] 12+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for Add missing Meteorlake gpgpu fill condition 2023-09-13 14:24 [igt-dev] [PATCH i-g-t 0/2] Add missing Meteorlake gpgpu fill condition Zbigniew Kempczyński ` (3 preceding siblings ...) 2023-09-13 18:01 ` [igt-dev] ✓ Fi.CI.BAT: " Patchwork @ 2023-09-13 21:31 ` Patchwork 2023-09-14 6:03 ` Zbigniew Kempczyński 2023-09-14 12:13 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork 5 siblings, 1 reply; 12+ messages in thread From: Patchwork @ 2023-09-13 21:31 UTC (permalink / raw) To: Zbigniew Kempczyński; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 85827 bytes --] == Series Details == Series: Add missing Meteorlake gpgpu fill condition URL : https://patchwork.freedesktop.org/series/123640/ State : failure == Summary == CI Bug Log - changes from CI_DRM_13625_full -> IGTPW_9781_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_9781_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_9781_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_9781/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_9781_full: ### IGT changes ### #### Possible regressions #### * igt@perf_pmu@rc6@gt0: - shard-mtlp: NOTRUN -> [ABORT][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-6/igt@perf_pmu@rc6@gt0.html * igt@perf_pmu@rc6@runtime-pm-long-gt1: - shard-mtlp: NOTRUN -> [DMESG-WARN][2] +5 other tests dmesg-warn [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-6/igt@perf_pmu@rc6@runtime-pm-long-gt1.html #### Warnings #### * igt@i915_suspend@basic-s2idle-without-i915: - shard-snb: [DMESG-WARN][3] ([i915#8841]) -> [INCOMPLETE][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13625/shard-snb4/igt@i915_suspend@basic-s2idle-without-i915.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-snb5/igt@i915_suspend@basic-s2idle-without-i915.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * {igt@kms_feature_discovery@display-3x}: - shard-mtlp: NOTRUN -> [SKIP][5] +1 other test skip [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-3/igt@kms_feature_discovery@display-3x.html * {igt@kms_feature_discovery@psr2}: - shard-dg2: NOTRUN -> [SKIP][6] [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg2-2/igt@kms_feature_discovery@psr2.html Known issues ------------ Here are the changes found in IGTPW_9781_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@object-reloc-keep-cache: - shard-mtlp: NOTRUN -> [SKIP][7] ([i915#8411]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-8/igt@api_intel_bb@object-reloc-keep-cache.html * igt@device_reset@cold-reset-bound: - shard-mtlp: NOTRUN -> [SKIP][8] ([i915#7701]) +1 other test skip [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-4/igt@device_reset@cold-reset-bound.html * igt@drm_fdinfo@busy-idle-check-all@ccs0: - shard-mtlp: NOTRUN -> [SKIP][9] ([i915#8414]) +12 other tests skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-7/igt@drm_fdinfo@busy-idle-check-all@ccs0.html * igt@drm_fdinfo@busy@ccs0: - shard-dg2: NOTRUN -> [SKIP][10] ([i915#8414]) +11 other tests skip [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg2-3/igt@drm_fdinfo@busy@ccs0.html * igt@drm_fdinfo@most-busy-check-all@rcs0: - shard-rkl: [PASS][11] -> [FAIL][12] ([i915#7742]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13625/shard-rkl-4/igt@drm_fdinfo@most-busy-check-all@rcs0.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-rkl-2/igt@drm_fdinfo@most-busy-check-all@rcs0.html * igt@drm_fdinfo@virtual-busy-hang: - shard-dg1: NOTRUN -> [SKIP][13] ([i915#8414]) +1 other test skip [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg1-14/igt@drm_fdinfo@virtual-busy-hang.html * igt@gem_basic@multigpu-create-close: - shard-dg2: NOTRUN -> [SKIP][14] ([i915#7697]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg2-3/igt@gem_basic@multigpu-create-close.html * igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0: - shard-dg2: NOTRUN -> [INCOMPLETE][15] ([i915#7297]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg2-1/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0.html * igt@gem_create@create-ext-cpu-access-big: - shard-dg2: NOTRUN -> [INCOMPLETE][16] ([i915#9283]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg2-10/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_create@create-ext-set-pat: - shard-dg2: NOTRUN -> [SKIP][17] ([i915#8562]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg2-3/igt@gem_create@create-ext-set-pat.html * igt@gem_ctx_exec@basic-nohangcheck: - shard-tglu: [PASS][18] -> [FAIL][19] ([i915#6268]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13625/shard-tglu-9/igt@gem_ctx_exec@basic-nohangcheck.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-tglu-8/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_ctx_isolation@preservation-s3@vcs1: - shard-mtlp: NOTRUN -> [DMESG-WARN][20] ([i915#9262]) +3 other tests dmesg-warn [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-2/igt@gem_ctx_isolation@preservation-s3@vcs1.html * igt@gem_ctx_param@set-priority-not-supported: - shard-mtlp: NOTRUN -> [SKIP][21] ([fdo#109314]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-6/igt@gem_ctx_param@set-priority-not-supported.html * igt@gem_ctx_persistence@engines-hostile-preempt: - shard-snb: NOTRUN -> [SKIP][22] ([fdo#109271] / [i915#1099]) +1 other test skip [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-snb6/igt@gem_ctx_persistence@engines-hostile-preempt.html * igt@gem_ctx_persistence@engines-hostile@vcs0: - shard-mtlp: NOTRUN -> [FAIL][23] ([i915#2410]) +3 other tests fail [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-6/igt@gem_ctx_persistence@engines-hostile@vcs0.html * igt@gem_ctx_persistence@heartbeat-close: - shard-dg2: NOTRUN -> [SKIP][24] ([i915#8555]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg2-2/igt@gem_ctx_persistence@heartbeat-close.html * igt@gem_ctx_persistence@heartbeat-stop: - shard-mtlp: NOTRUN -> [SKIP][25] ([i915#8555]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-2/igt@gem_ctx_persistence@heartbeat-stop.html * igt@gem_ctx_persistence@saturated-hostile-nopreempt@vcs1: - shard-mtlp: NOTRUN -> [SKIP][26] ([i915#5882]) +5 other tests skip [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-4/igt@gem_ctx_persistence@saturated-hostile-nopreempt@vcs1.html * igt@gem_ctx_sseu@invalid-args: - shard-dg2: NOTRUN -> [SKIP][27] ([i915#280]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg2-3/igt@gem_ctx_sseu@invalid-args.html - shard-dg1: NOTRUN -> [SKIP][28] ([i915#280]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg1-15/igt@gem_ctx_sseu@invalid-args.html * igt@gem_eio@reset-stress: - shard-dg1: [PASS][29] -> [FAIL][30] ([i915#5784]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13625/shard-dg1-13/igt@gem_eio@reset-stress.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg1-12/igt@gem_eio@reset-stress.html * igt@gem_exec_balancer@bonded-pair: - shard-dg2: NOTRUN -> [SKIP][31] ([i915#4771]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg2-6/igt@gem_exec_balancer@bonded-pair.html * igt@gem_exec_balancer@sliced: - shard-mtlp: NOTRUN -> [SKIP][32] ([i915#4812]) +1 other test skip [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-1/igt@gem_exec_balancer@sliced.html * igt@gem_exec_fair@basic-none-rrul@rcs0: - shard-rkl: NOTRUN -> [FAIL][33] ([i915#2842]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-rkl-2/igt@gem_exec_fair@basic-none-rrul@rcs0.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-tglu: [PASS][34] -> [FAIL][35] ([i915#2842]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13625/shard-tglu-7/igt@gem_exec_fair@basic-pace-share@rcs0.html [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-tglu-2/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_fair@basic-pace@vecs0: - shard-rkl: [PASS][36] -> [FAIL][37] ([i915#2842]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13625/shard-rkl-6/igt@gem_exec_fair@basic-pace@vecs0.html [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-rkl-6/igt@gem_exec_fair@basic-pace@vecs0.html * igt@gem_exec_fair@basic-sync: - shard-mtlp: NOTRUN -> [SKIP][38] ([i915#4473] / [i915#4771]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-6/igt@gem_exec_fair@basic-sync.html * igt@gem_exec_fair@basic-throttle: - shard-dg2: NOTRUN -> [SKIP][39] ([i915#3539]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg2-11/igt@gem_exec_fair@basic-throttle.html * igt@gem_exec_fence@submit67: - shard-dg2: NOTRUN -> [SKIP][40] ([i915#4812]) +1 other test skip [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg2-10/igt@gem_exec_fence@submit67.html * igt@gem_exec_flush@basic-uc-pro-default: - shard-dg2: NOTRUN -> [SKIP][41] ([i915#3539] / [i915#4852]) +5 other tests skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg2-11/igt@gem_exec_flush@basic-uc-pro-default.html - shard-dg1: NOTRUN -> [SKIP][42] ([i915#3539] / [i915#4852]) +2 other tests skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg1-15/igt@gem_exec_flush@basic-uc-pro-default.html * igt@gem_exec_params@secure-non-master: - shard-mtlp: NOTRUN -> [SKIP][43] ([fdo#112283]) +1 other test skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-1/igt@gem_exec_params@secure-non-master.html * igt@gem_exec_reloc@basic-cpu-gtt-active: - shard-rkl: NOTRUN -> [SKIP][44] ([i915#3281]) +1 other test skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-rkl-7/igt@gem_exec_reloc@basic-cpu-gtt-active.html - shard-dg1: NOTRUN -> [SKIP][45] ([i915#3281]) +4 other tests skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg1-19/igt@gem_exec_reloc@basic-cpu-gtt-active.html * igt@gem_exec_reloc@basic-gtt-cpu-active: - shard-dg2: NOTRUN -> [SKIP][46] ([i915#3281]) +8 other tests skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg2-11/igt@gem_exec_reloc@basic-gtt-cpu-active.html * igt@gem_exec_reloc@basic-wc-noreloc: - shard-mtlp: NOTRUN -> [SKIP][47] ([i915#3281]) +11 other tests skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-2/igt@gem_exec_reloc@basic-wc-noreloc.html * igt@gem_exec_schedule@preempt-queue: - shard-dg1: NOTRUN -> [SKIP][48] ([i915#4812]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg1-16/igt@gem_exec_schedule@preempt-queue.html * igt@gem_exec_schedule@preempt-queue-chain: - shard-mtlp: NOTRUN -> [SKIP][49] ([i915#4537] / [i915#4812]) +1 other test skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-3/igt@gem_exec_schedule@preempt-queue-chain.html * igt@gem_exec_schedule@reorder-wide: - shard-dg2: NOTRUN -> [SKIP][50] ([i915#4537] / [i915#4812]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg2-1/igt@gem_exec_schedule@reorder-wide.html * igt@gem_fence_thrash@bo-write-verify-x: - shard-dg2: NOTRUN -> [SKIP][51] ([i915#4860]) +2 other tests skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg2-7/igt@gem_fence_thrash@bo-write-verify-x.html - shard-dg1: NOTRUN -> [SKIP][52] ([i915#4860]) +1 other test skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg1-14/igt@gem_fence_thrash@bo-write-verify-x.html * igt@gem_fenced_exec_thrash@too-many-fences: - shard-mtlp: NOTRUN -> [SKIP][53] ([i915#4860]) +1 other test skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-5/igt@gem_fenced_exec_thrash@too-many-fences.html * igt@gem_lmem_swapping@heavy-verify-multi: - shard-mtlp: NOTRUN -> [SKIP][54] ([i915#4613]) +2 other tests skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-1/igt@gem_lmem_swapping@heavy-verify-multi.html * igt@gem_lmem_swapping@heavy-verify-multi-ccs: - shard-rkl: NOTRUN -> [SKIP][55] ([i915#4613]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-rkl-2/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html * igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0: - shard-dg1: NOTRUN -> [SKIP][56] ([i915#4565]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg1-12/igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0.html * igt@gem_mmap@bad-size: - shard-mtlp: NOTRUN -> [SKIP][57] ([i915#4083]) +2 other tests skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-1/igt@gem_mmap@bad-size.html * igt@gem_mmap@basic-small-bo: - shard-dg2: NOTRUN -> [SKIP][58] ([i915#4083]) +4 other tests skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg2-2/igt@gem_mmap@basic-small-bo.html * igt@gem_mmap_gtt@bad-object: - shard-dg2: NOTRUN -> [SKIP][59] ([i915#4077]) +10 other tests skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg2-10/igt@gem_mmap_gtt@bad-object.html * igt@gem_mmap_gtt@big-bo-tiledy: - shard-mtlp: NOTRUN -> [SKIP][60] ([i915#4077]) +19 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-1/igt@gem_mmap_gtt@big-bo-tiledy.html * igt@gem_mmap_gtt@cpuset-basic-small-copy: - shard-dg1: NOTRUN -> [SKIP][61] ([i915#4077]) +4 other tests skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg1-15/igt@gem_mmap_gtt@cpuset-basic-small-copy.html * igt@gem_mmap_offset@clear@smem0: - shard-mtlp: [PASS][62] -> [ABORT][63] ([i915#8668]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13625/shard-mtlp-4/igt@gem_mmap_offset@clear@smem0.html [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-5/igt@gem_mmap_offset@clear@smem0.html * igt@gem_mmap_wc@write-gtt-read-wc: - shard-dg1: NOTRUN -> [SKIP][64] ([i915#4083]) +2 other tests skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg1-16/igt@gem_mmap_wc@write-gtt-read-wc.html * igt@gem_partial_pwrite_pread@reads: - shard-dg2: NOTRUN -> [SKIP][65] ([i915#3282]) +6 other tests skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg2-7/igt@gem_partial_pwrite_pread@reads.html * igt@gem_partial_pwrite_pread@reads-uncached: - shard-mtlp: NOTRUN -> [SKIP][66] ([i915#3282]) +3 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-1/igt@gem_partial_pwrite_pread@reads-uncached.html * igt@gem_pxp@reject-modify-context-protection-off-1: - shard-tglu: NOTRUN -> [SKIP][67] ([i915#4270]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-tglu-5/igt@gem_pxp@reject-modify-context-protection-off-1.html * igt@gem_pxp@reject-modify-context-protection-off-3: - shard-dg2: NOTRUN -> [SKIP][68] ([i915#4270]) +2 other tests skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg2-2/igt@gem_pxp@reject-modify-context-protection-off-3.html * igt@gem_pxp@reject-modify-context-protection-on: - shard-dg1: NOTRUN -> [SKIP][69] ([i915#4270]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg1-19/igt@gem_pxp@reject-modify-context-protection-on.html * igt@gem_pxp@verify-pxp-execution-after-suspend-resume: - shard-mtlp: NOTRUN -> [SKIP][70] ([i915#4270]) +6 other tests skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-3/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html * igt@gem_readwrite@read-write: - shard-dg1: NOTRUN -> [SKIP][71] ([i915#3282]) +1 other test skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg1-19/igt@gem_readwrite@read-write.html * igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled: - shard-mtlp: NOTRUN -> [SKIP][72] ([i915#8428]) +9 other tests skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-7/igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled.html * igt@gem_spin_batch@spin-each: - shard-mtlp: NOTRUN -> [DMESG-FAIL][73] ([i915#8962] / [i915#9121]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-4/igt@gem_spin_batch@spin-each.html * igt@gem_tiled_pread_basic: - shard-mtlp: NOTRUN -> [SKIP][74] ([i915#4079]) +2 other tests skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-2/igt@gem_tiled_pread_basic.html - shard-dg2: NOTRUN -> [SKIP][75] ([i915#4079]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg2-3/igt@gem_tiled_pread_basic.html * igt@gem_userptr_blits@coherency-unsync: - shard-dg2: NOTRUN -> [SKIP][76] ([i915#3297]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg2-7/igt@gem_userptr_blits@coherency-unsync.html - shard-rkl: NOTRUN -> [SKIP][77] ([i915#3297]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-rkl-4/igt@gem_userptr_blits@coherency-unsync.html * igt@gem_userptr_blits@create-destroy-unsync: - shard-mtlp: NOTRUN -> [SKIP][78] ([i915#3297]) +1 other test skip [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-5/igt@gem_userptr_blits@create-destroy-unsync.html * igt@gem_userptr_blits@map-fixed-invalidate-overlap: - shard-dg1: NOTRUN -> [SKIP][79] ([i915#3297] / [i915#4880]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg1-15/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html * igt@gem_userptr_blits@sd-probe: - shard-dg2: NOTRUN -> [SKIP][80] ([i915#3297] / [i915#4958]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg2-10/igt@gem_userptr_blits@sd-probe.html - shard-dg1: NOTRUN -> [SKIP][81] ([i915#3297] / [i915#4958]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg1-19/igt@gem_userptr_blits@sd-probe.html * igt@gem_userptr_blits@vma-merge: - shard-snb: NOTRUN -> [FAIL][82] ([i915#2724]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-snb4/igt@gem_userptr_blits@vma-merge.html * igt@gem_workarounds@suspend-resume-fd: - shard-mtlp: [PASS][83] -> [ABORT][84] ([i915#9262]) +1 other test abort [83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13625/shard-mtlp-1/igt@gem_workarounds@suspend-resume-fd.html [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-6/igt@gem_workarounds@suspend-resume-fd.html * igt@gen7_exec_parse@bitmasks: - shard-dg2: NOTRUN -> [SKIP][85] ([fdo#109289]) +1 other test skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg2-2/igt@gen7_exec_parse@bitmasks.html - shard-dg1: NOTRUN -> [SKIP][86] ([fdo#109289]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg1-18/igt@gen7_exec_parse@bitmasks.html * igt@gen7_exec_parse@load-register-reg: - shard-tglu: NOTRUN -> [SKIP][87] ([fdo#109289]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-tglu-8/igt@gen7_exec_parse@load-register-reg.html * igt@gen9_exec_parse@bb-start-cmd: - shard-rkl: NOTRUN -> [SKIP][88] ([i915#2527]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-rkl-6/igt@gen9_exec_parse@bb-start-cmd.html * igt@gen9_exec_parse@unaligned-jump: - shard-mtlp: NOTRUN -> [SKIP][89] ([i915#2856]) +2 other tests skip [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-5/igt@gen9_exec_parse@unaligned-jump.html * igt@gen9_exec_parse@valid-registers: - shard-dg2: NOTRUN -> [SKIP][90] ([i915#2856]) +5 other tests skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg2-11/igt@gen9_exec_parse@valid-registers.html * igt@i915_hangman@gt-error-state-capture@vecs0: - shard-mtlp: [PASS][91] -> [DMESG-WARN][92] ([i915#9262]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13625/shard-mtlp-3/igt@i915_hangman@gt-error-state-capture@vecs0.html [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-2/igt@i915_hangman@gt-error-state-capture@vecs0.html * igt@i915_module_load@reload-with-fault-injection: - shard-dg2: NOTRUN -> [DMESG-WARN][93] ([i915#7061] / [i915#8617]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg2-1/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_rc6_residency@rc6-idle@vcs0: - shard-dg1: [PASS][94] -> [FAIL][95] ([i915#3591]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13625/shard-dg1-16/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg1-16/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html * igt@i915_pm_rpm@dpms-mode-unset-lpsp: - shard-dg2: NOTRUN -> [SKIP][96] ([i915#1397]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg2-3/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html * igt@i915_pm_rpm@dpms-mode-unset-non-lpsp: - shard-rkl: [PASS][97] -> [SKIP][98] ([i915#1397]) +1 other test skip [97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13625/shard-rkl-4/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-rkl-7/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@i915_pm_rpm@dpms-non-lpsp: - shard-dg1: [PASS][99] -> [SKIP][100] ([i915#1397]) +1 other test skip [99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13625/shard-dg1-18/igt@i915_pm_rpm@dpms-non-lpsp.html [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg1-19/igt@i915_pm_rpm@dpms-non-lpsp.html * igt@i915_pm_rpm@gem-execbuf-stress-pc8: - shard-dg2: NOTRUN -> [SKIP][101] ([fdo#109506]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg2-2/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html * igt@i915_pm_rpm@modeset-lpsp: - shard-dg2: [PASS][102] -> [SKIP][103] ([i915#1397]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13625/shard-dg2-10/igt@i915_pm_rpm@modeset-lpsp.html [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg2-1/igt@i915_pm_rpm@modeset-lpsp.html * igt@i915_pm_rps@min-max-config-idle: - shard-dg2: NOTRUN -> [SKIP][104] ([i915#6621]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg2-11/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_9781/shard-mtlp-3/igt@i915_pm_rps@reset.html * igt@i915_query@query-topology-known-pci-ids: - shard-mtlp: NOTRUN -> [SKIP][106] ([fdo#109303]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-2/igt@i915_query@query-topology-known-pci-ids.html * igt@i915_query@query-topology-unsupported: - shard-dg1: NOTRUN -> [SKIP][107] ([fdo#109302]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg1-15/igt@i915_query@query-topology-unsupported.html * igt@i915_selftest@live@gt_engines: - shard-mtlp: NOTRUN -> [FAIL][108] ([i915#9278] / [i915#9290]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-4/igt@i915_selftest@live@gt_engines.html * igt@i915_selftest@live@gt_pm: - shard-mtlp: NOTRUN -> [DMESG-FAIL][109] ([i915#9270]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-4/igt@i915_selftest@live@gt_pm.html * igt@kms_addfb_basic@addfb25-x-tiled-legacy: - shard-dg1: NOTRUN -> [SKIP][110] ([i915#4212]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg1-19/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-dg2: NOTRUN -> [SKIP][111] ([i915#5190]) +12 other tests skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg2-7/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_addfb_basic@tile-pitch-mismatch: - shard-dg2: NOTRUN -> [SKIP][112] ([i915#4212]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg2-3/igt@kms_addfb_basic@tile-pitch-mismatch.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-1-4-rc_ccs-cc: - shard-dg2: NOTRUN -> [SKIP][113] ([i915#8502] / [i915#8709]) +11 other tests skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg2-10/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-1-4-rc_ccs-cc.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-4-y-rc_ccs: - shard-dg1: NOTRUN -> [SKIP][114] ([i915#8502]) +7 other tests skip [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg1-14/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-4-y-rc_ccs.html * igt@kms_async_flips@crc@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [FAIL][115] ([i915#8247]) +3 other tests fail [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg2-7/igt@kms_async_flips@crc@pipe-a-hdmi-a-3.html * igt@kms_async_flips@crc@pipe-c-hdmi-a-1: - shard-dg1: NOTRUN -> [FAIL][116] ([i915#8247]) +3 other tests fail [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg1-19/igt@kms_async_flips@crc@pipe-c-hdmi-a-1.html * igt@kms_async_flips@crc@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [DMESG-FAIL][117] ([i915#8561]) +3 other tests dmesg-fail [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-6/igt@kms_async_flips@crc@pipe-d-edp-1.html * igt@kms_atomic_transition@plane-all-modeset-transition: - shard-mtlp: NOTRUN -> [SKIP][118] ([i915#1769] / [i915#3555]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-4/igt@kms_atomic_transition@plane-all-modeset-transition.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-snb: NOTRUN -> [SKIP][119] ([fdo#109271] / [i915#1769]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-snb2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_big_fb@4-tiled-32bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][120] ([fdo#111614]) +1 other test skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg2-3/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html * igt@kms_big_fb@4-tiled-8bpp-rotate-180: - shard-dg1: NOTRUN -> [SKIP][121] ([i915#4538] / [i915#5286]) +1 other test skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg1-14/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html - shard-rkl: NOTRUN -> [SKIP][122] ([i915#5286]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-rkl-4/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html * igt@kms_big_fb@4-tiled-addfb: - shard-tglu: NOTRUN -> [SKIP][123] ([i915#5286]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-tglu-5/igt@kms_big_fb@4-tiled-addfb.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-mtlp: NOTRUN -> [FAIL][124] ([i915#5138]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@linear-64bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][125] ([fdo#111614] / [i915#3638]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-rkl-6/igt@kms_big_fb@linear-64bpp-rotate-90.html - shard-dg1: NOTRUN -> [SKIP][126] ([i915#3638]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg1-12/igt@kms_big_fb@linear-64bpp-rotate-90.html * igt@kms_big_fb@linear-8bpp-rotate-270: - shard-mtlp: NOTRUN -> [SKIP][127] ([fdo#111614]) +4 other tests skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-8/igt@kms_big_fb@linear-8bpp-rotate-270.html * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-tglu: [PASS][128] -> [FAIL][129] ([i915#3743]) +1 other test fail [128]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13625/shard-tglu-7/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-tglu-7/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-mtlp: NOTRUN -> [SKIP][130] ([fdo#111615]) +8 other tests skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-6/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][131] ([i915#4538] / [i915#5190]) +5 other tests skip [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg2-7/igt@kms_big_fb@yf-tiled-32bpp-rotate-90.html - shard-dg1: NOTRUN -> [SKIP][132] ([i915#4538]) [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg1-19/igt@kms_big_fb@yf-tiled-32bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-addfb: - shard-mtlp: NOTRUN -> [SKIP][133] ([i915#6187]) +1 other test skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-4/igt@kms_big_fb@yf-tiled-addfb.html * igt@kms_big_fb@yf-tiled-addfb-size-overflow: - shard-dg1: NOTRUN -> [SKIP][134] ([fdo#111615]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg1-15/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html * igt@kms_big_joiner@2x-modeset: - shard-mtlp: NOTRUN -> [SKIP][135] ([i915#2705]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-7/igt@kms_big_joiner@2x-modeset.html * igt@kms_ccs@pipe-a-bad-pixel-format-4_tiled_mtl_mc_ccs: - shard-rkl: NOTRUN -> [SKIP][136] ([i915#5354] / [i915#6095]) +2 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-rkl-6/igt@kms_ccs@pipe-a-bad-pixel-format-4_tiled_mtl_mc_ccs.html * igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_rc_ccs_cc: - shard-mtlp: NOTRUN -> [SKIP][137] ([i915#3886] / [i915#6095]) +5 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-1/igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-a-bad-rotation-90-4_tiled_dg2_rc_ccs_cc: - shard-mtlp: NOTRUN -> [SKIP][138] ([i915#6095]) +32 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-4/igt@kms_ccs@pipe-a-bad-rotation-90-4_tiled_dg2_rc_ccs_cc.html * igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_ccs: - shard-dg1: NOTRUN -> [SKIP][139] ([i915#3689] / [i915#5354] / [i915#6095]) +2 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg1-17/igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_ccs.html * igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_gen12_mc_ccs: - shard-dg2: NOTRUN -> [SKIP][140] ([i915#3689] / [i915#3886] / [i915#5354]) +6 other tests skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg2-6/igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-b-bad-rotation-90-yf_tiled_ccs: - shard-dg2: NOTRUN -> [SKIP][141] ([i915#3689] / [i915#5354]) +25 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg2-11/igt@kms_ccs@pipe-b-bad-rotation-90-yf_tiled_ccs.html * igt@kms_ccs@pipe-b-crc-primary-rotation-180-yf_tiled_ccs: - shard-rkl: NOTRUN -> [SKIP][142] ([i915#3734] / [i915#5354] / [i915#6095]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-rkl-4/igt@kms_ccs@pipe-b-crc-primary-rotation-180-yf_tiled_ccs.html * igt@kms_ccs@pipe-c-missing-ccs-buffer-4_tiled_mtl_rc_ccs: - shard-tglu: NOTRUN -> [SKIP][143] ([i915#5354] / [i915#6095]) +1 other test skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-tglu-7/igt@kms_ccs@pipe-c-missing-ccs-buffer-4_tiled_mtl_rc_ccs.html * igt@kms_ccs@pipe-c-missing-ccs-buffer-y_tiled_gen12_rc_ccs_cc: - shard-rkl: NOTRUN -> [SKIP][144] ([i915#5354]) +5 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-rkl-2/igt@kms_ccs@pipe-c-missing-ccs-buffer-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-d-ccs-on-another-bo-4_tiled_mtl_rc_ccs_cc: - shard-dg1: NOTRUN -> [SKIP][145] ([i915#5354] / [i915#6095]) +10 other tests skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg1-12/igt@kms_ccs@pipe-d-ccs-on-another-bo-4_tiled_mtl_rc_ccs_cc.html * igt@kms_ccs@pipe-d-crc-primary-rotation-180-4_tiled_dg2_mc_ccs: - shard-tglu: NOTRUN -> [SKIP][146] ([i915#3689] / [i915#5354] / [i915#6095]) +1 other test skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-tglu-10/igt@kms_ccs@pipe-d-crc-primary-rotation-180-4_tiled_dg2_mc_ccs.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-mtlp: NOTRUN -> [SKIP][147] ([i915#7213] / [i915#9010]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-2/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][148] ([i915#4087] / [i915#7213]) +3 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg2-3/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html * igt@kms_chamelium_color@ctm-0-25: - shard-rkl: NOTRUN -> [SKIP][149] ([fdo#111827]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-rkl-6/igt@kms_chamelium_color@ctm-0-25.html * igt@kms_chamelium_color@ctm-0-75: - shard-mtlp: NOTRUN -> [SKIP][150] ([fdo#111827]) +1 other test skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-4/igt@kms_chamelium_color@ctm-0-75.html * igt@kms_chamelium_color@ctm-green-to-red: - shard-dg2: NOTRUN -> [SKIP][151] ([fdo#111827]) +3 other tests skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg2-11/igt@kms_chamelium_color@ctm-green-to-red.html * igt@kms_chamelium_color@ctm-red-to-blue: - shard-dg1: NOTRUN -> [SKIP][152] ([fdo#111827]) [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg1-18/igt@kms_chamelium_color@ctm-red-to-blue.html * igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k: - shard-rkl: NOTRUN -> [SKIP][153] ([i915#7828]) [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-rkl-6/igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k.html * igt@kms_chamelium_frames@hdmi-frame-dump: - shard-dg1: NOTRUN -> [SKIP][154] ([i915#7828]) +3 other tests skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg1-14/igt@kms_chamelium_frames@hdmi-frame-dump.html * igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe: - shard-dg2: NOTRUN -> [SKIP][155] ([i915#7828]) +8 other tests skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg2-3/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html * igt@kms_chamelium_hpd@vga-hpd-without-ddc: - shard-mtlp: NOTRUN -> [SKIP][156] ([i915#7828]) +6 other tests skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-5/igt@kms_chamelium_hpd@vga-hpd-without-ddc.html * igt@kms_color@deep-color: - shard-dg2: NOTRUN -> [SKIP][157] ([i915#3555]) +5 other tests skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg2-10/igt@kms_color@deep-color.html - shard-dg1: NOTRUN -> [SKIP][158] ([i915#3555]) +2 other tests skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg1-14/igt@kms_color@deep-color.html * igt@kms_content_protection@content_type_change: - shard-mtlp: NOTRUN -> [SKIP][159] ([i915#6944]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-1/igt@kms_content_protection@content_type_change.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-dg2: NOTRUN -> [SKIP][160] ([i915#3299]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg2-3/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@mei_interface: - shard-tglu: NOTRUN -> [SKIP][161] ([i915#6944] / [i915#7116] / [i915#7118]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-tglu-7/igt@kms_content_protection@mei_interface.html * igt@kms_content_protection@type1: - shard-dg2: NOTRUN -> [SKIP][162] ([i915#7118]) +2 other tests skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg2-3/igt@kms_content_protection@type1.html - shard-dg1: NOTRUN -> [SKIP][163] ([i915#7116]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg1-12/igt@kms_content_protection@type1.html * igt@kms_content_protection@uevent@pipe-a-dp-4: - shard-dg2: NOTRUN -> [FAIL][164] ([i915#1339]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg2-11/igt@kms_content_protection@uevent@pipe-a-dp-4.html * igt@kms_cursor_crc@cursor-onscreen-512x170: - shard-mtlp: NOTRUN -> [SKIP][165] ([i915#3359]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-4/igt@kms_cursor_crc@cursor-onscreen-512x170.html * igt@kms_cursor_crc@cursor-onscreen-512x512: - shard-dg2: NOTRUN -> [SKIP][166] ([i915#3359]) +1 other test skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg2-11/igt@kms_cursor_crc@cursor-onscreen-512x512.html * igt@kms_cursor_crc@cursor-sliding-32x32: - shard-mtlp: NOTRUN -> [SKIP][167] ([i915#3555] / [i915#8814]) +2 other tests skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-7/igt@kms_cursor_crc@cursor-sliding-32x32.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic: - shard-mtlp: NOTRUN -> [SKIP][168] ([fdo#111767] / [i915#3546]) +1 other test skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-6/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-mtlp: NOTRUN -> [SKIP][169] ([i915#4213]) +1 other test skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-4/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@cursora-vs-flipb-legacy: - shard-mtlp: NOTRUN -> [SKIP][170] ([i915#3546]) +4 other tests skip [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-2/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipb-legacy: - shard-dg2: NOTRUN -> [SKIP][171] ([fdo#109274] / [i915#5354]) +4 other tests skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg2-1/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-apl: [PASS][172] -> [FAIL][173] ([i915#2346]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13625/shard-apl1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-apl4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-glk: [PASS][174] -> [FAIL][175] ([i915#2346]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13625/shard-glk8/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-glk4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_dirtyfb@dirtyfb-ioctl@drrs-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][176] ([i915#9226] / [i915#9261]) +1 other test skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-rkl-1/igt@kms_dirtyfb@dirtyfb-ioctl@drrs-hdmi-a-2.html * igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][177] ([i915#9227]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-rkl-1/igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-2.html * igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][178] ([i915#9227]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg1-16/igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-4.html * igt@kms_dirtyfb@dirtyfb-ioctl@psr-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][179] ([i915#9226] / [i915#9261]) +1 other test skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg1-16/igt@kms_dirtyfb@dirtyfb-ioctl@psr-hdmi-a-4.html * igt@kms_dsc@dsc-with-formats: - shard-mtlp: NOTRUN -> [SKIP][180] ([i915#3555] / [i915#3840]) +1 other test skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-7/igt@kms_dsc@dsc-with-formats.html * igt@kms_fbcon_fbt@psr: - shard-dg2: NOTRUN -> [SKIP][181] ([i915#3469]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg2-11/igt@kms_fbcon_fbt@psr.html - shard-rkl: NOTRUN -> [SKIP][182] ([fdo#110189] / [i915#3955]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-rkl-2/igt@kms_fbcon_fbt@psr.html - shard-dg1: NOTRUN -> [SKIP][183] ([i915#3469]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg1-18/igt@kms_fbcon_fbt@psr.html * igt@kms_fence_pin_leak: - shard-mtlp: NOTRUN -> [SKIP][184] ([i915#4881]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-6/igt@kms_fence_pin_leak.html * igt@kms_flip@2x-flip-vs-expired-vblank: - shard-mtlp: NOTRUN -> [SKIP][185] ([i915#3637]) +8 other tests skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-5/igt@kms_flip@2x-flip-vs-expired-vblank.html * igt@kms_flip@2x-flip-vs-fences-interruptible: - shard-mtlp: NOTRUN -> [SKIP][186] ([i915#8381]) +1 other test skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-7/igt@kms_flip@2x-flip-vs-fences-interruptible.html * igt@kms_flip@2x-wf_vblank-ts-check: - shard-dg2: NOTRUN -> [SKIP][187] ([fdo#109274]) +5 other tests skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg2-3/igt@kms_flip@2x-wf_vblank-ts-check.html * igt@kms_flip@flip-vs-blocking-wf-vblank@b-vga1: - shard-snb: [PASS][188] -> [ABORT][189] ([i915#8865]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13625/shard-snb4/igt@kms_flip@flip-vs-blocking-wf-vblank@b-vga1.html [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-snb7/igt@kms_flip@flip-vs-blocking-wf-vblank@b-vga1.html * igt@kms_flip@flip-vs-fences: - shard-dg2: NOTRUN -> [SKIP][190] ([i915#8381]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg2-3/igt@kms_flip@flip-vs-fences.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][191] ([i915#2672]) +3 other tests skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg2-2/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][192] ([i915#2587] / [i915#2672]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg1-13/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][193] ([i915#2672]) +3 other tests skip [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@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][194] ([i915#3555] / [i915#8810]) +1 other test skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-4/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][195] ([i915#2672] / [i915#3555]) +1 other test skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][196] ([i915#8708]) +14 other tests skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-indfb-fliptrack-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][197] ([i915#8708]) +10 other tests skip [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbc-2p-indfb-fliptrack-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][198] ([i915#5354]) +49 other tests skip [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-cpu: - shard-dg2: NOTRUN -> [FAIL][199] ([i915#6880]) [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbc-suspend: - shard-dg1: [PASS][200] -> [DMESG-WARN][201] ([i915#1982] / [i915#4423]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13625/shard-dg1-18/igt@kms_frontbuffer_tracking@fbc-suspend.html [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg1-14/igt@kms_frontbuffer_tracking@fbc-suspend.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][202] ([i915#3458]) +18 other tests skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][203] ([i915#8708]) +12 other tests skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg1-15/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render: - shard-dg1: NOTRUN -> [SKIP][204] ([i915#3458]) +3 other tests skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg1-19/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff: - shard-dg1: NOTRUN -> [SKIP][205] ([fdo#111825]) +12 other tests skip [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-pwrite: - shard-tglu: NOTRUN -> [SKIP][206] ([fdo#109280]) +2 other tests skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-tglu-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc: - shard-tglu: NOTRUN -> [SKIP][207] ([fdo#110189]) +3 other tests skip [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-tglu-2/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt: - shard-rkl: NOTRUN -> [SKIP][208] ([i915#3023]) +2 other tests skip [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][209] ([fdo#111825] / [i915#1825]) +5 other tests skip [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-wc: - shard-mtlp: NOTRUN -> [SKIP][210] ([i915#1825]) +36 other tests skip [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-7/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_hdmi_inject@inject-audio: - shard-tglu: [PASS][211] -> [SKIP][212] ([i915#433]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13625/shard-tglu-6/igt@kms_hdmi_inject@inject-audio.html [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-tglu-2/igt@kms_hdmi_inject@inject-audio.html * igt@kms_hdr@static-swap: - shard-dg2: NOTRUN -> [SKIP][213] ([i915#3555] / [i915#8228]) +2 other tests skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg2-7/igt@kms_hdr@static-swap.html * igt@kms_hdr@static-toggle: - shard-mtlp: NOTRUN -> [SKIP][214] ([i915#3555] / [i915#8228]) [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-8/igt@kms_hdr@static-toggle.html * igt@kms_pipe_b_c_ivb@pipe-b-double-modeset-then-modeset-pipe-c: - shard-mtlp: NOTRUN -> [SKIP][215] ([fdo#109289]) +4 other tests skip [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-7/igt@kms_pipe_b_c_ivb@pipe-b-double-modeset-then-modeset-pipe-c.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1: - shard-snb: NOTRUN -> [DMESG-WARN][216] ([i915#8841]) +5 other tests dmesg-warn [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-snb1/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-dp-1: - shard-apl: [PASS][217] -> [INCOMPLETE][218] ([i915#180]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13625/shard-apl6/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-dp-1.html [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-apl6/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-dp-1.html * igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a-planes: - shard-mtlp: NOTRUN -> [ABORT][219] ([i915#9262]) +14 other tests abort [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-4/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a-planes.html * igt@kms_plane_lowres@tiling-y: - shard-dg2: NOTRUN -> [SKIP][220] ([i915#8821]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg2-7/igt@kms_plane_lowres@tiling-y.html * igt@kms_plane_multiple@tiling-y: - shard-mtlp: NOTRUN -> [SKIP][221] ([i915#8806]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-2/igt@kms_plane_multiple@tiling-y.html * igt@kms_plane_multiple@tiling-yf: - shard-mtlp: NOTRUN -> [SKIP][222] ([i915#3555] / [i915#8806]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-6/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][223] ([i915#5176]) +1 other test skip [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-rkl-7/igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-b-hdmi-a-1.html * igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][224] ([i915#5176]) +7 other tests skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-7/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][225] ([i915#5176]) +3 other tests skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/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-5@pipe-b-hdmi-a-1: - shard-dg1: NOTRUN -> [SKIP][226] ([i915#5176]) +27 other tests skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg1-19/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-5@pipe-b-hdmi-a-1.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-vga-1: - shard-snb: NOTRUN -> [SKIP][227] ([fdo#109271]) +245 other tests skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-snb5/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-vga-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][228] ([i915#5235]) +7 other tests skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-5/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d-edp-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][229] ([i915#5235]) +11 other tests skip [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg2-10/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-1.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][230] ([i915#5235]) +1 other test skip [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-rkl-4/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b-hdmi-a-2.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][231] ([i915#5235]) +19 other tests skip [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg1-14/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-4.html * igt@kms_prime@basic-crc-hybrid: - shard-dg2: NOTRUN -> [SKIP][232] ([i915#6524] / [i915#6805]) [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg2-6/igt@kms_prime@basic-crc-hybrid.html * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area: - shard-dg2: NOTRUN -> [SKIP][233] ([i915#658]) +1 other test skip [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg2-10/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area.html - shard-dg1: NOTRUN -> [SKIP][234] ([fdo#111068] / [i915#658]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg1-14/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area.html * igt@kms_psr2_su@page_flip-p010: - shard-mtlp: NOTRUN -> [SKIP][235] ([i915#4348]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-1/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr@primary_mmap_cpu: - shard-dg2: NOTRUN -> [SKIP][236] ([i915#1072]) +7 other tests skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg2-7/igt@kms_psr@primary_mmap_cpu.html - shard-rkl: NOTRUN -> [SKIP][237] ([i915#1072]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-rkl-4/igt@kms_psr@primary_mmap_cpu.html - shard-dg1: NOTRUN -> [SKIP][238] ([i915#1072]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg1-14/igt@kms_psr@primary_mmap_cpu.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-dg1: NOTRUN -> [SKIP][239] ([i915#5461] / [i915#658]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg1-13/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html - shard-dg2: NOTRUN -> [SKIP][240] ([i915#5461] / [i915#658]) [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg2-6/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rotation_crc@bad-tiling: - shard-mtlp: NOTRUN -> [SKIP][241] ([i915#4235]) [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-6/igt@kms_rotation_crc@bad-tiling.html * igt@kms_rotation_crc@primary-rotation-270: - shard-dg2: NOTRUN -> [SKIP][242] ([i915#4235]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg2-11/igt@kms_rotation_crc@primary-rotation-270.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-180: - shard-mtlp: NOTRUN -> [SKIP][243] ([i915#5289]) [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-2/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html * igt@kms_selftest@drm_cmdline: - shard-tglu: NOTRUN -> [SKIP][244] ([i915#8661]) [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-tglu-9/igt@kms_selftest@drm_cmdline.html * igt@kms_setmode@basic@pipe-a-vga-1: - shard-snb: NOTRUN -> [FAIL][245] ([i915#5465]) +1 other test fail [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-snb6/igt@kms_setmode@basic@pipe-a-vga-1.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-mtlp: NOTRUN -> [SKIP][246] ([i915#8623]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-2/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_tv_load_detect@load-detect: - shard-mtlp: NOTRUN -> [SKIP][247] ([fdo#109309]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-1/igt@kms_tv_load_detect@load-detect.html * igt@kms_universal_plane@cursor-fb-leak-pipe-b: - shard-snb: [PASS][248] -> [FAIL][249] ([i915#9196]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13625/shard-snb4/igt@kms_universal_plane@cursor-fb-leak-pipe-b.html [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-snb1/igt@kms_universal_plane@cursor-fb-leak-pipe-b.html * igt@kms_vrr@flip-basic: - shard-mtlp: NOTRUN -> [SKIP][250] ([i915#3555] / [i915#8808]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-1/igt@kms_vrr@flip-basic.html * igt@kms_writeback@writeback-fb-id: - shard-dg2: NOTRUN -> [SKIP][251] ([i915#2437]) [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg2-6/igt@kms_writeback@writeback-fb-id.html * igt@kms_writeback@writeback-pixel-formats: - shard-dg1: NOTRUN -> [SKIP][252] ([i915#2437]) +1 other test skip [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg1-15/igt@kms_writeback@writeback-pixel-formats.html * igt@perf@global-sseu-config-invalid: - shard-dg2: NOTRUN -> [SKIP][253] ([i915#7387]) [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg2-11/igt@perf@global-sseu-config-invalid.html * igt@perf@polling-small-buf: - shard-mtlp: NOTRUN -> [FAIL][254] ([i915#1722]) [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-1/igt@perf@polling-small-buf.html * igt@perf_pmu@busy-idle@bcs0: - shard-mtlp: NOTRUN -> [FAIL][255] ([i915#4349]) +2 other tests fail [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-3/igt@perf_pmu@busy-idle@bcs0.html * igt@perf_pmu@frequency@gt0: - shard-apl: [PASS][256] -> [SKIP][257] ([fdo#109271]) [256]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13625/shard-apl1/igt@perf_pmu@frequency@gt0.html [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-apl4/igt@perf_pmu@frequency@gt0.html - shard-glk: [PASS][258] -> [SKIP][259] ([fdo#109271]) [258]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13625/shard-glk2/igt@perf_pmu@frequency@gt0.html [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-glk7/igt@perf_pmu@frequency@gt0.html - shard-snb: [PASS][260] -> [SKIP][261] ([fdo#109271]) [260]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13625/shard-snb6/igt@perf_pmu@frequency@gt0.html [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-snb6/igt@perf_pmu@frequency@gt0.html * igt@perf_pmu@rc6@other-idle-gt1: - shard-mtlp: NOTRUN -> [INCOMPLETE][262] ([i915#9268]) [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-6/igt@perf_pmu@rc6@other-idle-gt1.html * igt@prime_udl: - shard-dg2: NOTRUN -> [SKIP][263] ([fdo#109291]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg2-11/igt@prime_udl.html * igt@prime_vgem@basic-fence-flip: - shard-dg2: NOTRUN -> [SKIP][264] ([i915#3708]) [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg2-7/igt@prime_vgem@basic-fence-flip.html * igt@prime_vgem@coherency-blt: - shard-mtlp: NOTRUN -> [FAIL][265] ([i915#8445]) [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-1/igt@prime_vgem@coherency-blt.html * igt@v3d/v3d_job_submission@multiple-singlesync-to-multisync: - shard-dg1: NOTRUN -> [SKIP][266] ([i915#2575]) +2 other tests skip [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg1-19/igt@v3d/v3d_job_submission@multiple-singlesync-to-multisync.html * igt@v3d/v3d_submit_csd@job-perfmon: - shard-dg2: NOTRUN -> [SKIP][267] ([i915#2575]) +10 other tests skip [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg2-3/igt@v3d/v3d_submit_csd@job-perfmon.html * igt@v3d/v3d_wait_bo@map-bo-0ns: - shard-mtlp: NOTRUN -> [SKIP][268] ([i915#2575]) +11 other tests skip [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-7/igt@v3d/v3d_wait_bo@map-bo-0ns.html * igt@vc4/vc4_perfmon@create-perfmon-exceed: - shard-mtlp: NOTRUN -> [SKIP][269] ([i915#7711]) +9 other tests skip [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-4/igt@vc4/vc4_perfmon@create-perfmon-exceed.html * igt@vc4/vc4_perfmon@create-perfmon-invalid-events: - shard-tglu: NOTRUN -> [SKIP][270] ([i915#2575]) [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-tglu-5/igt@vc4/vc4_perfmon@create-perfmon-invalid-events.html * igt@vc4/vc4_purgeable_bo@access-purgeable-bo-mem: - shard-dg1: NOTRUN -> [SKIP][271] ([i915#7711]) +2 other tests skip [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg1-19/igt@vc4/vc4_purgeable_bo@access-purgeable-bo-mem.html * igt@vc4/vc4_tiling@get-bad-modifier: - shard-dg2: NOTRUN -> [SKIP][272] ([i915#7711]) +9 other tests skip [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg2-10/igt@vc4/vc4_tiling@get-bad-modifier.html * igt@vc4/vc4_wait_seqno@bad-seqno-0ns: - shard-rkl: NOTRUN -> [SKIP][273] ([i915#7711]) +2 other tests skip [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-rkl-4/igt@vc4/vc4_wait_seqno@bad-seqno-0ns.html #### Possible fixes #### * igt@drm_fdinfo@virtual-idle: - shard-rkl: [FAIL][274] ([i915#7742]) -> [PASS][275] [274]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13625/shard-rkl-6/igt@drm_fdinfo@virtual-idle.html [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-rkl-7/igt@drm_fdinfo@virtual-idle.html * igt@gem_exec_fair@basic-pace-solo@rcs0: - shard-rkl: [FAIL][276] ([i915#2842]) -> [PASS][277] +3 other tests pass [276]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13625/shard-rkl-4/igt@gem_exec_fair@basic-pace-solo@rcs0.html [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-rkl-7/igt@gem_exec_fair@basic-pace-solo@rcs0.html * igt@gem_exec_schedule@noreorder@bcs0: - shard-mtlp: [FAIL][278] -> [PASS][279] [278]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13625/shard-mtlp-4/igt@gem_exec_schedule@noreorder@bcs0.html [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-7/igt@gem_exec_schedule@noreorder@bcs0.html * igt@gem_exec_schedule@noreorder@ccs0: - shard-mtlp: [DMESG-FAIL][280] ([i915#8962] / [i915#9121]) -> [PASS][281] [280]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13625/shard-mtlp-4/igt@gem_exec_schedule@noreorder@ccs0.html [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-7/igt@gem_exec_schedule@noreorder@ccs0.html * igt@gem_exec_schedule@noreorder@vcs0: - shard-mtlp: [DMESG-FAIL][282] ([i915#9121]) -> [PASS][283] +1 other test pass [282]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13625/shard-mtlp-4/igt@gem_exec_schedule@noreorder@vcs0.html [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-7/igt@gem_exec_schedule@noreorder@vcs0.html * igt@i915_pipe_stress@stress-xrgb8888-untiled: - shard-mtlp: [FAIL][284] ([i915#8691]) -> [PASS][285] [284]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13625/shard-mtlp-6/igt@i915_pipe_stress@stress-xrgb8888-untiled.html [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-2/igt@i915_pipe_stress@stress-xrgb8888-untiled.html * igt@i915_pm_rpm@modeset-non-lpsp-stress: - shard-rkl: [SKIP][286] ([i915#1397]) -> [PASS][287] +1 other test pass [286]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13625/shard-rkl-7/igt@i915_pm_rpm@modeset-non-lpsp-stress.html [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-rkl-6/igt@i915_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_ccs@pipe-b-crc-primary-rotation-180-4_tiled_mtl_mc_ccs: - shard-mtlp: [ABORT][288] ([i915#9262]) -> [PASS][289] +1 other test pass [288]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13625/shard-mtlp-7/igt@kms_ccs@pipe-b-crc-primary-rotation-180-4_tiled_mtl_mc_ccs.html [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-1/igt@kms_ccs@pipe-b-crc-primary-rotation-180-4_tiled_mtl_mc_ccs.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-glk: [FAIL][290] ([i915#2346]) -> [PASS][291] [290]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13625/shard-glk2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-glk7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-edp-1: - shard-mtlp: [DMESG-WARN][292] ([i915#9262]) -> [PASS][293] +1 other test pass [292]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13625/shard-mtlp-2/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-edp-1.html [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-7/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-edp-1.html * igt@kms_rotation_crc@sprite-rotation-90-pos-100-0: - shard-dg1: [DMESG-WARN][294] ([i915#1982]) -> [PASS][295] [294]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13625/shard-dg1-13/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg1-16/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html * igt@kms_universal_plane@cursor-fb-leak-pipe-a: - shard-glk: [FAIL][296] ([i915#9196]) -> [PASS][297] [296]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13625/shard-glk6/igt@kms_universal_plane@cursor-fb-leak-pipe-a.html [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-glk9/igt@kms_universal_plane@cursor-fb-leak-pipe-a.html * igt@perf@gen12-oa-tlb-invalidate@0-rcs0: - shard-rkl: [FAIL][298] -> [PASS][299] [298]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13625/shard-rkl-2/igt@perf@gen12-oa-tlb-invalidate@0-rcs0.html [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-rkl-7/igt@perf@gen12-oa-tlb-invalidate@0-rcs0.html * igt@perf_pmu@busy-idle@vcs0: - shard-dg2: [FAIL][300] ([i915#4349]) -> [PASS][301] +7 other tests pass [300]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13625/shard-dg2-3/igt@perf_pmu@busy-idle@vcs0.html [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg2-6/igt@perf_pmu@busy-idle@vcs0.html - shard-dg1: [FAIL][302] ([i915#4349]) -> [PASS][303] +2 other tests pass [302]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13625/shard-dg1-12/igt@perf_pmu@busy-idle@vcs0.html [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg1-13/igt@perf_pmu@busy-idle@vcs0.html * igt@perf_pmu@frequency@gt0: - shard-dg2: [FAIL][304] ([i915#6806]) -> [PASS][305] [304]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13625/shard-dg2-1/igt@perf_pmu@frequency@gt0.html [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg2-3/igt@perf_pmu@frequency@gt0.html - shard-dg1: [FAIL][306] ([i915#6806]) -> [PASS][307] [306]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13625/shard-dg1-12/igt@perf_pmu@frequency@gt0.html [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg1-15/igt@perf_pmu@frequency@gt0.html * igt@sysfs_preempt_timeout@timeout@vecs0: - shard-mtlp: [ABORT][308] ([i915#8521] / [i915#8865]) -> [PASS][309] [308]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13625/shard-mtlp-8/igt@sysfs_preempt_timeout@timeout@vecs0.html [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-1/igt@sysfs_preempt_timeout@timeout@vecs0.html #### Warnings #### * igt@i915_pm_rc6_residency@rc6-idle@vecs0: - shard-tglu: [WARN][310] ([i915#2681]) -> [FAIL][311] ([i915#2681] / [i915#3591]) [310]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13625/shard-tglu-3/igt@i915_pm_rc6_residency@rc6-idle@vecs0.html [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-tglu-8/igt@i915_pm_rc6_residency@rc6-idle@vecs0.html * igt@kms_content_protection@mei_interface: - shard-dg1: [SKIP][312] ([fdo#109300]) -> [SKIP][313] ([i915#7116]) [312]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13625/shard-dg1-12/igt@kms_content_protection@mei_interface.html [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg1-14/igt@kms_content_protection@mei_interface.html * igt@kms_force_connector_basic@force-load-detect: - shard-rkl: [SKIP][314] ([fdo#109285]) -> [SKIP][315] ([fdo#109285] / [i915#4098]) [314]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13625/shard-rkl-7/igt@kms_force_connector_basic@force-load-detect.html [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-rkl-1/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-rkl: [SKIP][316] ([i915#4070] / [i915#4816]) -> [SKIP][317] ([i915#4816]) [316]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13625/shard-rkl-1/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-rkl-7/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_psr@primary_page_flip: - shard-dg1: [SKIP][318] ([i915#1072] / [i915#4078]) -> [SKIP][319] ([i915#1072]) +1 other test skip [318]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13625/shard-dg1-18/igt@kms_psr@primary_page_flip.html [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg1-14/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#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#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291 [fdo#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300 [fdo#109302]: https://bugs.freedesktop.org/show_bug.cgi?id=109302 [fdo#109303]: https://bugs.freedesktop.org/show_bug.cgi?id=109303 [fdo#109309]: https://bugs.freedesktop.org/show_bug.cgi?id=109309 [fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314 [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [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 [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099 [i915#1339]: https://gitlab.freedesktop.org/drm/intel/issues/1339 [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#1937]: https://gitlab.freedesktop.org/drm/intel/issues/1937 [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2410]: https://gitlab.freedesktop.org/drm/intel/issues/2410 [i915#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#2724]: https://gitlab.freedesktop.org/drm/intel/issues/2724 [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 [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#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#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#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#4423]: https://gitlab.freedesktop.org/drm/intel/issues/4423 [i915#4473]: https://gitlab.freedesktop.org/drm/intel/issues/4473 [i915#4537]: https://gitlab.freedesktop.org/drm/intel/issues/4537 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#4565]: https://gitlab.freedesktop.org/drm/intel/issues/4565 [i915#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#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880 [i915#4881]: https://gitlab.freedesktop.org/drm/intel/issues/4881 [i915#4958]: https://gitlab.freedesktop.org/drm/intel/issues/4958 [i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461 [i915#5465]: https://gitlab.freedesktop.org/drm/intel/issues/5465 [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#6187]: https://gitlab.freedesktop.org/drm/intel/issues/6187 [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268 [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6805]: https://gitlab.freedesktop.org/drm/intel/issues/6805 [i915#6806]: https://gitlab.freedesktop.org/drm/intel/issues/6806 [i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880 [i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944 [i915#7061]: https://gitlab.freedesktop.org/drm/intel/issues/7061 [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7213]: https://gitlab.freedesktop.org/drm/intel/issues/7213 [i915#7297]: https://gitlab.freedesktop.org/drm/intel/issues/7297 [i915#7387]: https://gitlab.freedesktop.org/drm/intel/issues/7387 [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697 [i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228 [i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247 [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#8502]: https://gitlab.freedesktop.org/drm/intel/issues/8502 [i915#8521]: https://gitlab.freedesktop.org/drm/intel/issues/8521 [i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555 [i915#8561]: https://gitlab.freedesktop.org/drm/intel/issues/8561 [i915#8562]: https://gitlab.freedesktop.org/drm/intel/issues/8562 [i915#8617]: https://gitlab.freedesktop.org/drm/intel/issues/8617 [i915#8623]: https://gitlab.freedesktop.org/drm/intel/issues/8623 [i915#8661]: https://gitlab.freedesktop.org/drm/intel/issues/8661 [i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668 [i915#8691]: https://gitlab.freedesktop.org/drm/intel/issues/8691 [i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708 [i915#8709]: https://gitlab.freedesktop.org/drm/intel/issues/8709 [i915#8806]: https://gitlab.freedesktop.org/drm/intel/issues/8806 [i915#8808]: https://gitlab.freedesktop.org/drm/intel/issues/8808 [i915#8810]: https://gitlab.freedesktop.org/drm/intel/issues/8810 [i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814 [i915#8821]: https://gitlab.freedesktop.org/drm/intel/issues/8821 [i915#8841]: https://gitlab.freedesktop.org/drm/intel/issues/8841 [i915#8865]: https://gitlab.freedesktop.org/drm/intel/issues/8865 [i915#8962]: https://gitlab.freedesktop.org/drm/intel/issues/8962 [i915#9010]: https://gitlab.freedesktop.org/drm/intel/issues/9010 [i915#9067]: https://gitlab.freedesktop.org/drm/intel/issues/9067 [i915#9121]: https://gitlab.freedesktop.org/drm/intel/issues/9121 [i915#9196]: https://gitlab.freedesktop.org/drm/intel/issues/9196 [i915#9226]: https://gitlab.freedesktop.org/drm/intel/issues/9226 [i915#9227]: https://gitlab.freedesktop.org/drm/intel/issues/9227 [i915#9261]: https://gitlab.freedesktop.org/drm/intel/issues/9261 [i915#9262]: https://gitlab.freedesktop.org/drm/intel/issues/9262 [i915#9268]: https://gitlab.freedesktop.org/drm/intel/issues/9268 [i915#9270]: https://gitlab.freedesktop.org/drm/intel/issues/9270 [i915#9278]: https://gitlab.freedesktop.org/drm/intel/issues/9278 [i915#9283]: https://gitlab.freedesktop.org/drm/intel/issues/9283 [i915#9290]: https://gitlab.freedesktop.org/drm/intel/issues/9290 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7486 -> IGTPW_9781 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_13625: df710849c4a552f8516480ccaf5b215b4b086530 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9781: 9781 IGT_7486: afd9a940c8247291baadd1977fe881d4f2edf0c7 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/index.html [-- Attachment #2: Type: text/html, Size: 103968 bytes --] ^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [igt-dev] ✗ Fi.CI.IGT: failure for Add missing Meteorlake gpgpu fill condition 2023-09-13 21:31 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork @ 2023-09-14 6:03 ` Zbigniew Kempczyński 2023-09-14 12:14 ` Yedireswarapu, SaiX Nandan 0 siblings, 1 reply; 12+ messages in thread From: Zbigniew Kempczyński @ 2023-09-14 6:03 UTC (permalink / raw) To: igt-dev; +Cc: SaiX Nandan Yedireswarapu On Wed, Sep 13, 2023 at 09:31:27PM +0000, Patchwork wrote: > Patch Details > > Series: Add missing Meteorlake gpgpu fill condition > URL: https://patchwork.freedesktop.org/series/123640/ > State: failure > Details: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/index.html > > CI Bug Log - changes from CI_DRM_13625_full -> IGTPW_9781_full > > Summary > > FAILURE > > Serious unknown changes coming with IGTPW_9781_full absolutely need to be > verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in IGTPW_9781_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_9781/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_9781_full: > > IGT changes > > Possible regressions > > * igt@perf_pmu@rc6@gt0: > > * shard-mtlp: NOTRUN -> ABORT > * igt@perf_pmu@rc6@runtime-pm-long-gt1: > > * shard-mtlp: NOTRUN -> DMESG-WARN +5 other tests dmesg-warn Unrelated to the change. See below: > > Warnings > > * igt@i915_suspend@basic-s2idle-without-i915: > * shard-snb: DMESG-WARN (i915#8841) -> INCOMPLETE > > Suppressed > > The following results come from untrusted machines, tests, or statuses. > They do not affect the overall result. > > * {igt@kms_feature_discovery@display-3x}: > > * shard-mtlp: NOTRUN -> SKIP +1 other test skip > * {igt@kms_feature_discovery@psr2}: > > * shard-dg2: NOTRUN -> SKIP > > Known issues > > Here are the changes found in IGTPW_9781_full that come from known issues: > > IGT changes > > Issues hit > > * igt@api_intel_bb@object-reloc-keep-cache: > > * shard-mtlp: NOTRUN -> SKIP (i915#8411) > * igt@device_reset@cold-reset-bound: > > * shard-mtlp: NOTRUN -> SKIP (i915#7701) +1 other test skip > * igt@drm_fdinfo@busy-idle-check-all@ccs0: > > * shard-mtlp: NOTRUN -> SKIP (i915#8414) +12 other tests skip > * igt@drm_fdinfo@busy@ccs0: > > * shard-dg2: NOTRUN -> SKIP (i915#8414) +11 other tests skip > * igt@drm_fdinfo@most-busy-check-all@rcs0: > > * shard-rkl: PASS -> FAIL (i915#7742) > * igt@drm_fdinfo@virtual-busy-hang: > > * shard-dg1: NOTRUN -> SKIP (i915#8414) +1 other test skip > * igt@gem_basic@multigpu-create-close: > > * shard-dg2: NOTRUN -> SKIP (i915#7697) > * igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0: > > * shard-dg2: NOTRUN -> INCOMPLETE (i915#7297) > * igt@gem_create@create-ext-cpu-access-big: > > * shard-dg2: NOTRUN -> INCOMPLETE (i915#9283) > * igt@gem_create@create-ext-set-pat: > > * shard-dg2: NOTRUN -> SKIP (i915#8562) > * igt@gem_ctx_exec@basic-nohangcheck: > > * shard-tglu: PASS -> FAIL (i915#6268) > * igt@gem_ctx_isolation@preservation-s3@vcs1: > > * shard-mtlp: NOTRUN -> DMESG-WARN (i915#9262) +3 other tests > dmesg-warn > * igt@gem_ctx_param@set-priority-not-supported: > > * shard-mtlp: NOTRUN -> SKIP (fdo#109314) > * igt@gem_ctx_persistence@engines-hostile-preempt: > > * shard-snb: NOTRUN -> SKIP (fdo#109271 / i915#1099) +1 other test > skip > * igt@gem_ctx_persistence@engines-hostile@vcs0: > > * shard-mtlp: NOTRUN -> FAIL (i915#2410) +3 other tests fail > * igt@gem_ctx_persistence@heartbeat-close: > > * shard-dg2: NOTRUN -> SKIP (i915#8555) > * igt@gem_ctx_persistence@heartbeat-stop: > > * shard-mtlp: NOTRUN -> SKIP (i915#8555) > * igt@gem_ctx_persistence@saturated-hostile-nopreempt@vcs1: > > * shard-mtlp: NOTRUN -> SKIP (i915#5882) +5 other tests skip > * igt@gem_ctx_sseu@invalid-args: > > * shard-dg2: NOTRUN -> SKIP (i915#280) > > * shard-dg1: NOTRUN -> SKIP (i915#280) > > * igt@gem_eio@reset-stress: > > * shard-dg1: PASS -> FAIL (i915#5784) > * igt@gem_exec_balancer@bonded-pair: > > * shard-dg2: NOTRUN -> SKIP (i915#4771) > * igt@gem_exec_balancer@sliced: > > * shard-mtlp: NOTRUN -> SKIP (i915#4812) +1 other test skip > * igt@gem_exec_fair@basic-none-rrul@rcs0: > > * shard-rkl: NOTRUN -> FAIL (i915#2842) > * igt@gem_exec_fair@basic-pace-share@rcs0: > > * shard-tglu: PASS -> FAIL (i915#2842) > * igt@gem_exec_fair@basic-pace@vecs0: > > * shard-rkl: PASS -> FAIL (i915#2842) > * igt@gem_exec_fair@basic-sync: > > * shard-mtlp: NOTRUN -> SKIP (i915#4473 / i915#4771) > * igt@gem_exec_fair@basic-throttle: > > * shard-dg2: NOTRUN -> SKIP (i915#3539) > * igt@gem_exec_fence@submit67: > > * shard-dg2: NOTRUN -> SKIP (i915#4812) +1 other test skip > * igt@gem_exec_flush@basic-uc-pro-default: > > * shard-dg2: NOTRUN -> SKIP (i915#3539 / i915#4852) +5 other tests > skip > > * shard-dg1: NOTRUN -> SKIP (i915#3539 / i915#4852) +2 other tests > skip > > * igt@gem_exec_params@secure-non-master: > > * shard-mtlp: NOTRUN -> SKIP (fdo#112283) +1 other test skip > * igt@gem_exec_reloc@basic-cpu-gtt-active: > > * shard-rkl: NOTRUN -> SKIP (i915#3281) +1 other test skip > > * shard-dg1: NOTRUN -> SKIP (i915#3281) +4 other tests skip > > * igt@gem_exec_reloc@basic-gtt-cpu-active: > > * shard-dg2: NOTRUN -> SKIP (i915#3281) +8 other tests skip > * igt@gem_exec_reloc@basic-wc-noreloc: > > * shard-mtlp: NOTRUN -> SKIP (i915#3281) +11 other tests skip > * igt@gem_exec_schedule@preempt-queue: > > * shard-dg1: NOTRUN -> SKIP (i915#4812) > * igt@gem_exec_schedule@preempt-queue-chain: > > * shard-mtlp: NOTRUN -> SKIP (i915#4537 / i915#4812) +1 other test > skip > * igt@gem_exec_schedule@reorder-wide: > > * shard-dg2: NOTRUN -> SKIP (i915#4537 / i915#4812) > * igt@gem_fence_thrash@bo-write-verify-x: > > * shard-dg2: NOTRUN -> SKIP (i915#4860) +2 other tests skip > > * shard-dg1: NOTRUN -> SKIP (i915#4860) +1 other test skip > > * igt@gem_fenced_exec_thrash@too-many-fences: > > * shard-mtlp: NOTRUN -> SKIP (i915#4860) +1 other test skip > * igt@gem_lmem_swapping@heavy-verify-multi: > > * shard-mtlp: NOTRUN -> SKIP (i915#4613) +2 other tests skip > * igt@gem_lmem_swapping@heavy-verify-multi-ccs: > > * shard-rkl: NOTRUN -> SKIP (i915#4613) > * igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0: > > * shard-dg1: NOTRUN -> SKIP (i915#4565) > * igt@gem_mmap@bad-size: > > * shard-mtlp: NOTRUN -> SKIP (i915#4083) +2 other tests skip > * igt@gem_mmap@basic-small-bo: > > * shard-dg2: NOTRUN -> SKIP (i915#4083) +4 other tests skip > * igt@gem_mmap_gtt@bad-object: > > * shard-dg2: NOTRUN -> SKIP (i915#4077) +10 other tests skip > * igt@gem_mmap_gtt@big-bo-tiledy: > > * shard-mtlp: NOTRUN -> SKIP (i915#4077) +19 other tests skip > * igt@gem_mmap_gtt@cpuset-basic-small-copy: > > * shard-dg1: NOTRUN -> SKIP (i915#4077) +4 other tests skip > * igt@gem_mmap_offset@clear@smem0: > > * shard-mtlp: PASS -> ABORT (i915#8668) > * igt@gem_mmap_wc@write-gtt-read-wc: > > * shard-dg1: NOTRUN -> SKIP (i915#4083) +2 other tests skip > * igt@gem_partial_pwrite_pread@reads: > > * shard-dg2: NOTRUN -> SKIP (i915#3282) +6 other tests skip > * igt@gem_partial_pwrite_pread@reads-uncached: > > * shard-mtlp: NOTRUN -> SKIP (i915#3282) +3 other tests skip > * igt@gem_pxp@reject-modify-context-protection-off-1: > > * shard-tglu: NOTRUN -> SKIP (i915#4270) > * igt@gem_pxp@reject-modify-context-protection-off-3: > > * shard-dg2: NOTRUN -> SKIP (i915#4270) +2 other tests skip > * igt@gem_pxp@reject-modify-context-protection-on: > > * shard-dg1: NOTRUN -> SKIP (i915#4270) > * igt@gem_pxp@verify-pxp-execution-after-suspend-resume: > > * shard-mtlp: NOTRUN -> SKIP (i915#4270) +6 other tests skip > * igt@gem_readwrite@read-write: > > * shard-dg1: NOTRUN -> SKIP (i915#3282) +1 other test skip > * igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled: > > * shard-mtlp: NOTRUN -> SKIP (i915#8428) +9 other tests skip > * igt@gem_spin_batch@spin-each: > > * shard-mtlp: NOTRUN -> DMESG-FAIL (i915#8962 / i915#9121) > * igt@gem_tiled_pread_basic: > > * shard-mtlp: NOTRUN -> SKIP (i915#4079) +2 other tests skip > > * shard-dg2: NOTRUN -> SKIP (i915#4079) > > * igt@gem_userptr_blits@coherency-unsync: > > * shard-dg2: NOTRUN -> SKIP (i915#3297) > > * shard-rkl: NOTRUN -> SKIP (i915#3297) > > * igt@gem_userptr_blits@create-destroy-unsync: > > * shard-mtlp: NOTRUN -> SKIP (i915#3297) +1 other test skip > * igt@gem_userptr_blits@map-fixed-invalidate-overlap: > > * shard-dg1: NOTRUN -> SKIP (i915#3297 / i915#4880) > * igt@gem_userptr_blits@sd-probe: > > * shard-dg2: NOTRUN -> SKIP (i915#3297 / i915#4958) > > * shard-dg1: NOTRUN -> SKIP (i915#3297 / i915#4958) > > * igt@gem_userptr_blits@vma-merge: > > * shard-snb: NOTRUN -> FAIL (i915#2724) > * igt@gem_workarounds@suspend-resume-fd: > > * shard-mtlp: PASS -> ABORT (i915#9262) +1 other test abort > * igt@gen7_exec_parse@bitmasks: > > * shard-dg2: NOTRUN -> SKIP (fdo#109289) +1 other test skip > > * shard-dg1: NOTRUN -> SKIP (fdo#109289) > > * igt@gen7_exec_parse@load-register-reg: > > * shard-tglu: NOTRUN -> SKIP (fdo#109289) > * igt@gen9_exec_parse@bb-start-cmd: > > * shard-rkl: NOTRUN -> SKIP (i915#2527) > * igt@gen9_exec_parse@unaligned-jump: > > * shard-mtlp: NOTRUN -> SKIP (i915#2856) +2 other tests skip > * igt@gen9_exec_parse@valid-registers: > > * shard-dg2: NOTRUN -> SKIP (i915#2856) +5 other tests skip > * igt@i915_hangman@gt-error-state-capture@vecs0: > > * shard-mtlp: PASS -> DMESG-WARN (i915#9262) > * igt@i915_module_load@reload-with-fault-injection: > > * shard-dg2: NOTRUN -> DMESG-WARN (i915#7061 / i915#8617) > * igt@i915_pm_rc6_residency@rc6-idle@vcs0: > > * shard-dg1: PASS -> FAIL (i915#3591) > * igt@i915_pm_rpm@dpms-mode-unset-lpsp: > > * shard-dg2: NOTRUN -> SKIP (i915#1397) > * igt@i915_pm_rpm@dpms-mode-unset-non-lpsp: > > * shard-rkl: PASS -> SKIP (i915#1397) +1 other test skip > * igt@i915_pm_rpm@dpms-non-lpsp: > > * shard-dg1: PASS -> SKIP (i915#1397) +1 other test skip > * igt@i915_pm_rpm@gem-execbuf-stress-pc8: > > * shard-dg2: NOTRUN -> SKIP (fdo#109506) > * igt@i915_pm_rpm@modeset-lpsp: > > * shard-dg2: PASS -> SKIP (i915#1397) > * igt@i915_pm_rps@min-max-config-idle: > > * shard-dg2: NOTRUN -> SKIP (i915#6621) > * igt@i915_pm_rps@reset: > > * shard-mtlp: NOTRUN -> FAIL (i915#8346) > * igt@i915_query@query-topology-known-pci-ids: > > * shard-mtlp: NOTRUN -> SKIP (fdo#109303) > * igt@i915_query@query-topology-unsupported: > > * shard-dg1: NOTRUN -> SKIP (fdo#109302) > * igt@i915_selftest@live@gt_engines: > > * shard-mtlp: NOTRUN -> FAIL (i915#9278 / i915#9290) > * igt@i915_selftest@live@gt_pm: > > * shard-mtlp: NOTRUN -> DMESG-FAIL (i915#9270) > * igt@kms_addfb_basic@addfb25-x-tiled-legacy: > > * shard-dg1: NOTRUN -> SKIP (i915#4212) > * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: > > * shard-dg2: NOTRUN -> SKIP (i915#5190) +12 other tests skip > * igt@kms_addfb_basic@tile-pitch-mismatch: > > * shard-dg2: NOTRUN -> SKIP (i915#4212) > * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-1-4-rc_ccs-cc: > > * shard-dg2: NOTRUN -> SKIP (i915#8502 / i915#8709) +11 other tests > skip > * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-4-y-rc_ccs: > > * shard-dg1: NOTRUN -> SKIP (i915#8502) +7 other tests skip > * igt@kms_async_flips@crc@pipe-a-hdmi-a-3: > > * shard-dg2: NOTRUN -> FAIL (i915#8247) +3 other tests fail > * igt@kms_async_flips@crc@pipe-c-hdmi-a-1: > > * shard-dg1: NOTRUN -> FAIL (i915#8247) +3 other tests fail > * igt@kms_async_flips@crc@pipe-d-edp-1: > > * shard-mtlp: NOTRUN -> DMESG-FAIL (i915#8561) +3 other tests > dmesg-fail > * igt@kms_atomic_transition@plane-all-modeset-transition: > > * shard-mtlp: NOTRUN -> SKIP (i915#1769 / i915#3555) > * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: > > * shard-snb: NOTRUN -> SKIP (fdo#109271 / i915#1769) > * igt@kms_big_fb@4-tiled-32bpp-rotate-90: > > * shard-dg2: NOTRUN -> SKIP (fdo#111614) +1 other test skip > * igt@kms_big_fb@4-tiled-8bpp-rotate-180: > > * shard-dg1: NOTRUN -> SKIP (i915#4538 / i915#5286) +1 other test > skip > > * shard-rkl: NOTRUN -> SKIP (i915#5286) > > * igt@kms_big_fb@4-tiled-addfb: > > * shard-tglu: NOTRUN -> SKIP (i915#5286) > * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: > > * shard-mtlp: NOTRUN -> FAIL (i915#5138) > * igt@kms_big_fb@linear-64bpp-rotate-90: > > * shard-rkl: NOTRUN -> SKIP (fdo#111614 / i915#3638) > > * shard-dg1: NOTRUN -> SKIP (i915#3638) > > * igt@kms_big_fb@linear-8bpp-rotate-270: > > * shard-mtlp: NOTRUN -> SKIP (fdo#111614) +4 other tests skip > * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: > > * shard-tglu: PASS -> FAIL (i915#3743) +1 other test fail > * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip: > > * shard-mtlp: NOTRUN -> SKIP (fdo#111615) +8 other tests skip > * igt@kms_big_fb@yf-tiled-32bpp-rotate-90: > > * shard-dg2: NOTRUN -> SKIP (i915#4538 / i915#5190) +5 other tests > skip > > * shard-dg1: NOTRUN -> SKIP (i915#4538) > > * igt@kms_big_fb@yf-tiled-addfb: > > * shard-mtlp: NOTRUN -> SKIP (i915#6187) +1 other test skip > * igt@kms_big_fb@yf-tiled-addfb-size-overflow: > > * shard-dg1: NOTRUN -> SKIP (fdo#111615) > * igt@kms_big_joiner@2x-modeset: > > * shard-mtlp: NOTRUN -> SKIP (i915#2705) > * igt@kms_ccs@pipe-a-bad-pixel-format-4_tiled_mtl_mc_ccs: > > * shard-rkl: NOTRUN -> SKIP (i915#5354 / i915#6095) +2 other tests > skip > * igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_rc_ccs_cc: > > * shard-mtlp: NOTRUN -> SKIP (i915#3886 / i915#6095) +5 other tests > skip > * igt@kms_ccs@pipe-a-bad-rotation-90-4_tiled_dg2_rc_ccs_cc: > > * shard-mtlp: NOTRUN -> SKIP (i915#6095) +32 other tests skip > * igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_ccs: > > * shard-dg1: NOTRUN -> SKIP (i915#3689 / i915#5354 / i915#6095) +2 > other tests skip > * igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_gen12_mc_ccs: > > * shard-dg2: NOTRUN -> SKIP (i915#3689 / i915#3886 / i915#5354) +6 > other tests skip > * igt@kms_ccs@pipe-b-bad-rotation-90-yf_tiled_ccs: > > * shard-dg2: NOTRUN -> SKIP (i915#3689 / i915#5354) +25 other tests > skip > * igt@kms_ccs@pipe-b-crc-primary-rotation-180-yf_tiled_ccs: > > * shard-rkl: NOTRUN -> SKIP (i915#3734 / i915#5354 / i915#6095) > * igt@kms_ccs@pipe-c-missing-ccs-buffer-4_tiled_mtl_rc_ccs: > > * shard-tglu: NOTRUN -> SKIP (i915#5354 / i915#6095) +1 other test > skip > * igt@kms_ccs@pipe-c-missing-ccs-buffer-y_tiled_gen12_rc_ccs_cc: > > * shard-rkl: NOTRUN -> SKIP (i915#5354) +5 other tests skip > * igt@kms_ccs@pipe-d-ccs-on-another-bo-4_tiled_mtl_rc_ccs_cc: > > * shard-dg1: NOTRUN -> SKIP (i915#5354 / i915#6095) +10 other tests > skip > * igt@kms_ccs@pipe-d-crc-primary-rotation-180-4_tiled_dg2_mc_ccs: > > * shard-tglu: NOTRUN -> SKIP (i915#3689 / i915#5354 / i915#6095) +1 > other test skip > * igt@kms_cdclk@mode-transition-all-outputs: > > * shard-mtlp: NOTRUN -> SKIP (i915#7213 / i915#9010) > * igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3: > > * shard-dg2: NOTRUN -> SKIP (i915#4087 / i915#7213) +3 other tests > skip > * igt@kms_chamelium_color@ctm-0-25: > > * shard-rkl: NOTRUN -> SKIP (fdo#111827) > * igt@kms_chamelium_color@ctm-0-75: > > * shard-mtlp: NOTRUN -> SKIP (fdo#111827) +1 other test skip > * igt@kms_chamelium_color@ctm-green-to-red: > > * shard-dg2: NOTRUN -> SKIP (fdo#111827) +3 other tests skip > * igt@kms_chamelium_color@ctm-red-to-blue: > > * shard-dg1: NOTRUN -> SKIP (fdo#111827) > * igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k: > > * shard-rkl: NOTRUN -> SKIP (i915#7828) > * igt@kms_chamelium_frames@hdmi-frame-dump: > > * shard-dg1: NOTRUN -> SKIP (i915#7828) +3 other tests skip > * igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe: > > * shard-dg2: NOTRUN -> SKIP (i915#7828) +8 other tests skip > * igt@kms_chamelium_hpd@vga-hpd-without-ddc: > > * shard-mtlp: NOTRUN -> SKIP (i915#7828) +6 other tests skip > * igt@kms_color@deep-color: > > * shard-dg2: NOTRUN -> SKIP (i915#3555) +5 other tests skip > > * shard-dg1: NOTRUN -> SKIP (i915#3555) +2 other tests skip > > * igt@kms_content_protection@content_type_change: > > * shard-mtlp: NOTRUN -> SKIP (i915#6944) > * igt@kms_content_protection@dp-mst-lic-type-0: > > * shard-dg2: NOTRUN -> SKIP (i915#3299) > * igt@kms_content_protection@mei_interface: > > * shard-tglu: NOTRUN -> SKIP (i915#6944 / i915#7116 / i915#7118) > * igt@kms_content_protection@type1: > > * shard-dg2: NOTRUN -> SKIP (i915#7118) +2 other tests skip > > * shard-dg1: NOTRUN -> SKIP (i915#7116) > > * igt@kms_content_protection@uevent@pipe-a-dp-4: > > * shard-dg2: NOTRUN -> FAIL (i915#1339) > * igt@kms_cursor_crc@cursor-onscreen-512x170: > > * shard-mtlp: NOTRUN -> SKIP (i915#3359) > * igt@kms_cursor_crc@cursor-onscreen-512x512: > > * shard-dg2: NOTRUN -> SKIP (i915#3359) +1 other test skip > * igt@kms_cursor_crc@cursor-sliding-32x32: > > * shard-mtlp: NOTRUN -> SKIP (i915#3555 / i915#8814) +2 other tests > skip > * igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic: > > * shard-mtlp: NOTRUN -> SKIP (fdo#111767 / i915#3546) +1 other test > skip > * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: > > * shard-mtlp: NOTRUN -> SKIP (i915#4213) +1 other test skip > * igt@kms_cursor_legacy@cursora-vs-flipb-legacy: > > * shard-mtlp: NOTRUN -> SKIP (i915#3546) +4 other tests skip > * igt@kms_cursor_legacy@cursorb-vs-flipb-legacy: > > * shard-dg2: NOTRUN -> SKIP (fdo#109274 / i915#5354) +4 other tests > skip > * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: > > * shard-apl: PASS -> FAIL (i915#2346) > * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: > > * shard-glk: PASS -> FAIL (i915#2346) > * igt@kms_dirtyfb@dirtyfb-ioctl@drrs-hdmi-a-2: > > * shard-rkl: NOTRUN -> SKIP (i915#9226 / i915#9261) +1 other test > skip > * igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-2: > > * shard-rkl: NOTRUN -> SKIP (i915#9227) > * igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-4: > > * shard-dg1: NOTRUN -> SKIP (i915#9227) > * igt@kms_dirtyfb@dirtyfb-ioctl@psr-hdmi-a-4: > > * shard-dg1: NOTRUN -> SKIP (i915#9226 / i915#9261) +1 other test > skip > * igt@kms_dsc@dsc-with-formats: > > * shard-mtlp: NOTRUN -> SKIP (i915#3555 / i915#3840) +1 other test > skip > * igt@kms_fbcon_fbt@psr: > > * shard-dg2: NOTRUN -> SKIP (i915#3469) > > * shard-rkl: NOTRUN -> SKIP (fdo#110189 / i915#3955) > > * shard-dg1: NOTRUN -> SKIP (i915#3469) > > * igt@kms_fence_pin_leak: > > * shard-mtlp: NOTRUN -> SKIP (i915#4881) > * igt@kms_flip@2x-flip-vs-expired-vblank: > > * shard-mtlp: NOTRUN -> SKIP (i915#3637) +8 other tests skip > * igt@kms_flip@2x-flip-vs-fences-interruptible: > > * shard-mtlp: NOTRUN -> SKIP (i915#8381) +1 other test skip > * igt@kms_flip@2x-wf_vblank-ts-check: > > * shard-dg2: NOTRUN -> SKIP (fdo#109274) +5 other tests skip > * igt@kms_flip@flip-vs-blocking-wf-vblank@b-vga1: > > * shard-snb: PASS -> ABORT (i915#8865) > * igt@kms_flip@flip-vs-fences: > > * shard-dg2: NOTRUN -> SKIP (i915#8381) > * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode: > > * shard-dg2: NOTRUN -> SKIP (i915#2672) +3 other tests skip > * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode: > > * shard-dg1: NOTRUN -> SKIP (i915#2587 / i915#2672) > * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode: > > * shard-mtlp: NOTRUN -> SKIP (i915#2672) +3 other tests skip > * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode: > > * shard-mtlp: NOTRUN -> SKIP (i915#3555 / i915#8810) +1 other test > skip > * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode: > > * shard-mtlp: NOTRUN -> SKIP (i915#2672 / i915#3555) +1 other test > skip > * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc: > > * shard-dg2: NOTRUN -> SKIP (i915#8708) +14 other tests skip > * igt@kms_frontbuffer_tracking@fbc-2p-indfb-fliptrack-mmap-gtt: > > * shard-mtlp: NOTRUN -> SKIP (i915#8708) +10 other tests skip > * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt: > > * shard-dg2: NOTRUN -> SKIP (i915#5354) +49 other tests skip > * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-cpu: > > * shard-dg2: NOTRUN -> FAIL (i915#6880) > * igt@kms_frontbuffer_tracking@fbc-suspend: > > * shard-dg1: PASS -> DMESG-WARN (i915#1982 / i915#4423) > * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu: > > * shard-dg2: NOTRUN -> SKIP (i915#3458) +18 other tests skip > * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc: > > * shard-dg1: NOTRUN -> SKIP (i915#8708) +12 other tests skip > * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render: > > * shard-dg1: NOTRUN -> SKIP (i915#3458) +3 other tests skip > * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff: > > * shard-dg1: NOTRUN -> SKIP (fdo#111825) +12 other tests skip > * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-pwrite: > > * shard-tglu: NOTRUN -> SKIP (fdo#109280) +2 other tests skip > * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc: > > * shard-tglu: NOTRUN -> SKIP (fdo#110189) +3 other tests skip > * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt: > > * shard-rkl: NOTRUN -> SKIP (i915#3023) +2 other tests skip > * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-gtt: > > * shard-rkl: NOTRUN -> SKIP (fdo#111825 / i915#1825) +5 other tests > skip > * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-wc: > > * shard-mtlp: NOTRUN -> SKIP (i915#1825) +36 other tests skip > * igt@kms_hdmi_inject@inject-audio: > > * shard-tglu: PASS -> SKIP (i915#433) > * igt@kms_hdr@static-swap: > > * shard-dg2: NOTRUN -> SKIP (i915#3555 / i915#8228) +2 other tests > skip > * igt@kms_hdr@static-toggle: > > * shard-mtlp: NOTRUN -> SKIP (i915#3555 / i915#8228) > * igt@kms_pipe_b_c_ivb@pipe-b-double-modeset-then-modeset-pipe-c: > > * shard-mtlp: NOTRUN -> SKIP (fdo#109289) +4 other tests skip > * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1: > > * shard-snb: NOTRUN -> DMESG-WARN (i915#8841) +5 other tests > dmesg-warn > * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-dp-1: > > * shard-apl: PASS -> INCOMPLETE (i915#180) > * igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a-planes: > > * shard-mtlp: NOTRUN -> ABORT (i915#9262) +14 other tests abort > * igt@kms_plane_lowres@tiling-y: > > * shard-dg2: NOTRUN -> SKIP (i915#8821) > * igt@kms_plane_multiple@tiling-y: > > * shard-mtlp: NOTRUN -> SKIP (i915#8806) > * igt@kms_plane_multiple@tiling-yf: > > * shard-mtlp: NOTRUN -> SKIP (i915#3555 / i915#8806) > * igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-b-hdmi-a-1: > > * shard-rkl: NOTRUN -> SKIP (i915#5176) +1 other test skip > * igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-d-edp-1: > > * shard-mtlp: NOTRUN -> SKIP (i915#5176) +7 other tests skip > * igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-a-hdmi-a-3: > > * shard-dg2: NOTRUN -> SKIP (i915#5176) +3 other tests skip > * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-5@pipe-b-hdmi-a-1: > > * shard-dg1: NOTRUN -> SKIP (i915#5176) +27 other tests skip > * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-vga-1: > > * shard-snb: NOTRUN -> SKIP (fdo#109271) +245 other tests skip > * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d-edp-1: > > * shard-mtlp: NOTRUN -> SKIP (i915#5235) +7 other tests skip > * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-1: > > * shard-dg2: NOTRUN -> SKIP (i915#5235) +11 other tests skip > * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b-hdmi-a-2: > > * shard-rkl: NOTRUN -> SKIP (i915#5235) +1 other test skip > * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-4: > > * shard-dg1: NOTRUN -> SKIP (i915#5235) +19 other tests skip > * igt@kms_prime@basic-crc-hybrid: > > * shard-dg2: NOTRUN -> SKIP (i915#6524 / i915#6805) > * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area: > > * shard-dg2: NOTRUN -> SKIP (i915#658) +1 other test skip > > * shard-dg1: NOTRUN -> SKIP (fdo#111068 / i915#658) > > * igt@kms_psr2_su@page_flip-p010: > > * shard-mtlp: NOTRUN -> SKIP (i915#4348) > * igt@kms_psr@primary_mmap_cpu: > > * shard-dg2: NOTRUN -> SKIP (i915#1072) +7 other tests skip > > * shard-rkl: NOTRUN -> SKIP (i915#1072) > > * shard-dg1: NOTRUN -> SKIP (i915#1072) > > * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: > > * shard-dg1: NOTRUN -> SKIP (i915#5461 / i915#658) > > * shard-dg2: NOTRUN -> SKIP (i915#5461 / i915#658) > > * igt@kms_rotation_crc@bad-tiling: > > * shard-mtlp: NOTRUN -> SKIP (i915#4235) > * igt@kms_rotation_crc@primary-rotation-270: > > * shard-dg2: NOTRUN -> SKIP (i915#4235) > * igt@kms_rotation_crc@primary-y-tiled-reflect-x-180: > > * shard-mtlp: NOTRUN -> SKIP (i915#5289) > * igt@kms_selftest@drm_cmdline: > > * shard-tglu: NOTRUN -> SKIP (i915#8661) > * igt@kms_setmode@basic@pipe-a-vga-1: > > * shard-snb: NOTRUN -> FAIL (i915#5465) +1 other test fail > * igt@kms_tiled_display@basic-test-pattern-with-chamelium: > > * shard-mtlp: NOTRUN -> SKIP (i915#8623) > * igt@kms_tv_load_detect@load-detect: > > * shard-mtlp: NOTRUN -> SKIP (fdo#109309) > * igt@kms_universal_plane@cursor-fb-leak-pipe-b: > > * shard-snb: PASS -> FAIL (i915#9196) > * igt@kms_vrr@flip-basic: > > * shard-mtlp: NOTRUN -> SKIP (i915#3555 / i915#8808) > * igt@kms_writeback@writeback-fb-id: > > * shard-dg2: NOTRUN -> SKIP (i915#2437) > * igt@kms_writeback@writeback-pixel-formats: > > * shard-dg1: NOTRUN -> SKIP (i915#2437) +1 other test skip > * igt@perf@global-sseu-config-invalid: > > * shard-dg2: NOTRUN -> SKIP (i915#7387) > * igt@perf@polling-small-buf: > > * shard-mtlp: NOTRUN -> FAIL (i915#1722) > * igt@perf_pmu@busy-idle@bcs0: > > * shard-mtlp: NOTRUN -> FAIL (i915#4349) +2 other tests fail > * igt@perf_pmu@frequency@gt0: > > * shard-apl: PASS -> SKIP (fdo#109271) > > * shard-glk: PASS -> SKIP (fdo#109271) > > * shard-snb: PASS -> SKIP (fdo#109271) > > * igt@perf_pmu@rc6@other-idle-gt1: > > * shard-mtlp: NOTRUN -> INCOMPLETE (i915#9268) > * igt@prime_udl: > > * shard-dg2: NOTRUN -> SKIP (fdo#109291) > * igt@prime_vgem@basic-fence-flip: > > * shard-dg2: NOTRUN -> SKIP (i915#3708) > * igt@prime_vgem@coherency-blt: > > * shard-mtlp: NOTRUN -> FAIL (i915#8445) > * igt@v3d/v3d_job_submission@multiple-singlesync-to-multisync: > > * shard-dg1: NOTRUN -> SKIP (i915#2575) +2 other tests skip > * igt@v3d/v3d_submit_csd@job-perfmon: > > * shard-dg2: NOTRUN -> SKIP (i915#2575) +10 other tests skip > * igt@v3d/v3d_wait_bo@map-bo-0ns: > > * shard-mtlp: NOTRUN -> SKIP (i915#2575) +11 other tests skip > * igt@vc4/vc4_perfmon@create-perfmon-exceed: > > * shard-mtlp: NOTRUN -> SKIP (i915#7711) +9 other tests skip > * igt@vc4/vc4_perfmon@create-perfmon-invalid-events: > > * shard-tglu: NOTRUN -> SKIP (i915#2575) > * igt@vc4/vc4_purgeable_bo@access-purgeable-bo-mem: > > * shard-dg1: NOTRUN -> SKIP (i915#7711) +2 other tests skip > * igt@vc4/vc4_tiling@get-bad-modifier: > > * shard-dg2: NOTRUN -> SKIP (i915#7711) +9 other tests skip > * igt@vc4/vc4_wait_seqno@bad-seqno-0ns: > > * shard-rkl: NOTRUN -> SKIP (i915#7711) +2 other tests skip > > Possible fixes > > * igt@drm_fdinfo@virtual-idle: > > * shard-rkl: FAIL (i915#7742) -> PASS > * igt@gem_exec_fair@basic-pace-solo@rcs0: > > * shard-rkl: FAIL (i915#2842) -> PASS +3 other tests pass > * igt@gem_exec_schedule@noreorder@bcs0: > > * shard-mtlp: FAIL -> PASS > * igt@gem_exec_schedule@noreorder@ccs0: > > * shard-mtlp: DMESG-FAIL (i915#8962 / i915#9121) -> PASS > * igt@gem_exec_schedule@noreorder@vcs0: > > * shard-mtlp: DMESG-FAIL (i915#9121) -> PASS +1 other test pass > * igt@i915_pipe_stress@stress-xrgb8888-untiled: > > * shard-mtlp: FAIL (i915#8691) -> PASS I was targetting this error so I'm going to merge the series. Rerun is not necessary. -- Zbigniew > * igt@i915_pm_rpm@modeset-non-lpsp-stress: > > * shard-rkl: SKIP (i915#1397) -> PASS +1 other test pass > * igt@kms_ccs@pipe-b-crc-primary-rotation-180-4_tiled_mtl_mc_ccs: > > * shard-mtlp: ABORT (i915#9262) -> PASS +1 other test pass > * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: > > * shard-glk: FAIL (i915#2346) -> PASS > * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-edp-1: > > * shard-mtlp: DMESG-WARN (i915#9262) -> PASS +1 other test pass > * igt@kms_rotation_crc@sprite-rotation-90-pos-100-0: > > * shard-dg1: DMESG-WARN (i915#1982) -> PASS > * igt@kms_universal_plane@cursor-fb-leak-pipe-a: > > * shard-glk: FAIL (i915#9196) -> PASS > * igt@perf@gen12-oa-tlb-invalidate@0-rcs0: > > * shard-rkl: FAIL -> PASS > * igt@perf_pmu@busy-idle@vcs0: > > * shard-dg2: FAIL (i915#4349) -> PASS +7 other tests pass > > * shard-dg1: FAIL (i915#4349) -> PASS +2 other tests pass > > * igt@perf_pmu@frequency@gt0: > > * shard-dg2: FAIL (i915#6806) -> PASS > > * shard-dg1: FAIL (i915#6806) -> PASS > > * igt@sysfs_preempt_timeout@timeout@vecs0: > > * shard-mtlp: ABORT (i915#8521 / i915#8865) -> PASS > > Warnings > > * igt@i915_pm_rc6_residency@rc6-idle@vecs0: > > * shard-tglu: WARN (i915#2681) -> FAIL (i915#2681 / i915#3591) > * igt@kms_content_protection@mei_interface: > > * shard-dg1: SKIP (fdo#109300) -> SKIP (i915#7116) > * igt@kms_force_connector_basic@force-load-detect: > > * shard-rkl: SKIP (fdo#109285) -> SKIP (fdo#109285 / i915#4098) > * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: > > * shard-rkl: SKIP (i915#4070 / i915#4816) -> SKIP (i915#4816) > * igt@kms_psr@primary_page_flip: > > * shard-dg1: SKIP (i915#1072 / i915#4078) -> SKIP (i915#1072) +1 > other test skip > > {name}: This element is suppressed. This means it is ignored when > computing > the status of the difference (SUCCESS, WARNING, or FAILURE). > > Build changes > > * CI: CI-20190529 -> None > * IGT: IGT_7486 -> IGTPW_9781 > * Piglit: piglit_4509 -> None > > CI-20190529: 20190529 > CI_DRM_13625: df710849c4a552f8516480ccaf5b215b4b086530 @ > git://anongit.freedesktop.org/gfx-ci/linux > IGTPW_9781: 9781 > IGT_7486: afd9a940c8247291baadd1977fe881d4f2edf0c7 @ > https://gitlab.freedesktop.org/drm/igt-gpu-tools.git > piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ > git://anongit.freedesktop.org/piglit ^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [igt-dev] ✗ Fi.CI.IGT: failure for Add missing Meteorlake gpgpu fill condition 2023-09-14 6:03 ` Zbigniew Kempczyński @ 2023-09-14 12:14 ` Yedireswarapu, SaiX Nandan 0 siblings, 0 replies; 12+ messages in thread From: Yedireswarapu, SaiX Nandan @ 2023-09-14 12:14 UTC (permalink / raw) To: Kempczynski, Zbigniew, igt-dev@lists.freedesktop.org Hi, Issue re-reported, https://patchwork.freedesktop.org/series/123640/ Thanks, Y Sai Nandan -----Original Message----- From: Kempczynski, Zbigniew <zbigniew.kempczynski@intel.com> Sent: Thursday, September 14, 2023 11:34 AM To: igt-dev@lists.freedesktop.org Cc: Yedireswarapu, SaiX Nandan <saix.nandan.yedireswarapu@intel.com> Subject: Re: ✗ Fi.CI.IGT: failure for Add missing Meteorlake gpgpu fill condition On Wed, Sep 13, 2023 at 09:31:27PM +0000, Patchwork wrote: > Patch Details > > Series: Add missing Meteorlake gpgpu fill condition > URL: https://patchwork.freedesktop.org/series/123640/ > State: failure > Details: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/index.html > > CI Bug Log - changes from CI_DRM_13625_full -> IGTPW_9781_full > > Summary > > FAILURE > > Serious unknown changes coming with IGTPW_9781_full absolutely need to be > verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in IGTPW_9781_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_9781/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_9781_full: > > IGT changes > > Possible regressions > > * igt@perf_pmu@rc6@gt0: > > * shard-mtlp: NOTRUN -> ABORT > * igt@perf_pmu@rc6@runtime-pm-long-gt1: > > * shard-mtlp: NOTRUN -> DMESG-WARN +5 other tests dmesg-warn Unrelated to the change. See below: > > Warnings > > * igt@i915_suspend@basic-s2idle-without-i915: > * shard-snb: DMESG-WARN (i915#8841) -> INCOMPLETE > > Suppressed > > The following results come from untrusted machines, tests, or statuses. > They do not affect the overall result. > > * {igt@kms_feature_discovery@display-3x}: > > * shard-mtlp: NOTRUN -> SKIP +1 other test skip > * {igt@kms_feature_discovery@psr2}: > > * shard-dg2: NOTRUN -> SKIP > > Known issues > > Here are the changes found in IGTPW_9781_full that come from known issues: > > IGT changes > > Issues hit > > * igt@api_intel_bb@object-reloc-keep-cache: > > * shard-mtlp: NOTRUN -> SKIP (i915#8411) > * igt@device_reset@cold-reset-bound: > > * shard-mtlp: NOTRUN -> SKIP (i915#7701) +1 other test skip > * igt@drm_fdinfo@busy-idle-check-all@ccs0: > > * shard-mtlp: NOTRUN -> SKIP (i915#8414) +12 other tests skip > * igt@drm_fdinfo@busy@ccs0: > > * shard-dg2: NOTRUN -> SKIP (i915#8414) +11 other tests skip > * igt@drm_fdinfo@most-busy-check-all@rcs0: > > * shard-rkl: PASS -> FAIL (i915#7742) > * igt@drm_fdinfo@virtual-busy-hang: > > * shard-dg1: NOTRUN -> SKIP (i915#8414) +1 other test skip > * igt@gem_basic@multigpu-create-close: > > * shard-dg2: NOTRUN -> SKIP (i915#7697) > * igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0: > > * shard-dg2: NOTRUN -> INCOMPLETE (i915#7297) > * igt@gem_create@create-ext-cpu-access-big: > > * shard-dg2: NOTRUN -> INCOMPLETE (i915#9283) > * igt@gem_create@create-ext-set-pat: > > * shard-dg2: NOTRUN -> SKIP (i915#8562) > * igt@gem_ctx_exec@basic-nohangcheck: > > * shard-tglu: PASS -> FAIL (i915#6268) > * igt@gem_ctx_isolation@preservation-s3@vcs1: > > * shard-mtlp: NOTRUN -> DMESG-WARN (i915#9262) +3 other tests > dmesg-warn > * igt@gem_ctx_param@set-priority-not-supported: > > * shard-mtlp: NOTRUN -> SKIP (fdo#109314) > * igt@gem_ctx_persistence@engines-hostile-preempt: > > * shard-snb: NOTRUN -> SKIP (fdo#109271 / i915#1099) +1 other test > skip > * igt@gem_ctx_persistence@engines-hostile@vcs0: > > * shard-mtlp: NOTRUN -> FAIL (i915#2410) +3 other tests fail > * igt@gem_ctx_persistence@heartbeat-close: > > * shard-dg2: NOTRUN -> SKIP (i915#8555) > * igt@gem_ctx_persistence@heartbeat-stop: > > * shard-mtlp: NOTRUN -> SKIP (i915#8555) > * igt@gem_ctx_persistence@saturated-hostile-nopreempt@vcs1: > > * shard-mtlp: NOTRUN -> SKIP (i915#5882) +5 other tests skip > * igt@gem_ctx_sseu@invalid-args: > > * shard-dg2: NOTRUN -> SKIP (i915#280) > > * shard-dg1: NOTRUN -> SKIP (i915#280) > > * igt@gem_eio@reset-stress: > > * shard-dg1: PASS -> FAIL (i915#5784) > * igt@gem_exec_balancer@bonded-pair: > > * shard-dg2: NOTRUN -> SKIP (i915#4771) > * igt@gem_exec_balancer@sliced: > > * shard-mtlp: NOTRUN -> SKIP (i915#4812) +1 other test skip > * igt@gem_exec_fair@basic-none-rrul@rcs0: > > * shard-rkl: NOTRUN -> FAIL (i915#2842) > * igt@gem_exec_fair@basic-pace-share@rcs0: > > * shard-tglu: PASS -> FAIL (i915#2842) > * igt@gem_exec_fair@basic-pace@vecs0: > > * shard-rkl: PASS -> FAIL (i915#2842) > * igt@gem_exec_fair@basic-sync: > > * shard-mtlp: NOTRUN -> SKIP (i915#4473 / i915#4771) > * igt@gem_exec_fair@basic-throttle: > > * shard-dg2: NOTRUN -> SKIP (i915#3539) > * igt@gem_exec_fence@submit67: > > * shard-dg2: NOTRUN -> SKIP (i915#4812) +1 other test skip > * igt@gem_exec_flush@basic-uc-pro-default: > > * shard-dg2: NOTRUN -> SKIP (i915#3539 / i915#4852) +5 other tests > skip > > * shard-dg1: NOTRUN -> SKIP (i915#3539 / i915#4852) +2 other tests > skip > > * igt@gem_exec_params@secure-non-master: > > * shard-mtlp: NOTRUN -> SKIP (fdo#112283) +1 other test skip > * igt@gem_exec_reloc@basic-cpu-gtt-active: > > * shard-rkl: NOTRUN -> SKIP (i915#3281) +1 other test skip > > * shard-dg1: NOTRUN -> SKIP (i915#3281) +4 other tests skip > > * igt@gem_exec_reloc@basic-gtt-cpu-active: > > * shard-dg2: NOTRUN -> SKIP (i915#3281) +8 other tests skip > * igt@gem_exec_reloc@basic-wc-noreloc: > > * shard-mtlp: NOTRUN -> SKIP (i915#3281) +11 other tests skip > * igt@gem_exec_schedule@preempt-queue: > > * shard-dg1: NOTRUN -> SKIP (i915#4812) > * igt@gem_exec_schedule@preempt-queue-chain: > > * shard-mtlp: NOTRUN -> SKIP (i915#4537 / i915#4812) +1 other test > skip > * igt@gem_exec_schedule@reorder-wide: > > * shard-dg2: NOTRUN -> SKIP (i915#4537 / i915#4812) > * igt@gem_fence_thrash@bo-write-verify-x: > > * shard-dg2: NOTRUN -> SKIP (i915#4860) +2 other tests skip > > * shard-dg1: NOTRUN -> SKIP (i915#4860) +1 other test skip > > * igt@gem_fenced_exec_thrash@too-many-fences: > > * shard-mtlp: NOTRUN -> SKIP (i915#4860) +1 other test skip > * igt@gem_lmem_swapping@heavy-verify-multi: > > * shard-mtlp: NOTRUN -> SKIP (i915#4613) +2 other tests skip > * igt@gem_lmem_swapping@heavy-verify-multi-ccs: > > * shard-rkl: NOTRUN -> SKIP (i915#4613) > * igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0: > > * shard-dg1: NOTRUN -> SKIP (i915#4565) > * igt@gem_mmap@bad-size: > > * shard-mtlp: NOTRUN -> SKIP (i915#4083) +2 other tests skip > * igt@gem_mmap@basic-small-bo: > > * shard-dg2: NOTRUN -> SKIP (i915#4083) +4 other tests skip > * igt@gem_mmap_gtt@bad-object: > > * shard-dg2: NOTRUN -> SKIP (i915#4077) +10 other tests skip > * igt@gem_mmap_gtt@big-bo-tiledy: > > * shard-mtlp: NOTRUN -> SKIP (i915#4077) +19 other tests skip > * igt@gem_mmap_gtt@cpuset-basic-small-copy: > > * shard-dg1: NOTRUN -> SKIP (i915#4077) +4 other tests skip > * igt@gem_mmap_offset@clear@smem0: > > * shard-mtlp: PASS -> ABORT (i915#8668) > * igt@gem_mmap_wc@write-gtt-read-wc: > > * shard-dg1: NOTRUN -> SKIP (i915#4083) +2 other tests skip > * igt@gem_partial_pwrite_pread@reads: > > * shard-dg2: NOTRUN -> SKIP (i915#3282) +6 other tests skip > * igt@gem_partial_pwrite_pread@reads-uncached: > > * shard-mtlp: NOTRUN -> SKIP (i915#3282) +3 other tests skip > * igt@gem_pxp@reject-modify-context-protection-off-1: > > * shard-tglu: NOTRUN -> SKIP (i915#4270) > * igt@gem_pxp@reject-modify-context-protection-off-3: > > * shard-dg2: NOTRUN -> SKIP (i915#4270) +2 other tests skip > * igt@gem_pxp@reject-modify-context-protection-on: > > * shard-dg1: NOTRUN -> SKIP (i915#4270) > * igt@gem_pxp@verify-pxp-execution-after-suspend-resume: > > * shard-mtlp: NOTRUN -> SKIP (i915#4270) +6 other tests skip > * igt@gem_readwrite@read-write: > > * shard-dg1: NOTRUN -> SKIP (i915#3282) +1 other test skip > * igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled: > > * shard-mtlp: NOTRUN -> SKIP (i915#8428) +9 other tests skip > * igt@gem_spin_batch@spin-each: > > * shard-mtlp: NOTRUN -> DMESG-FAIL (i915#8962 / i915#9121) > * igt@gem_tiled_pread_basic: > > * shard-mtlp: NOTRUN -> SKIP (i915#4079) +2 other tests skip > > * shard-dg2: NOTRUN -> SKIP (i915#4079) > > * igt@gem_userptr_blits@coherency-unsync: > > * shard-dg2: NOTRUN -> SKIP (i915#3297) > > * shard-rkl: NOTRUN -> SKIP (i915#3297) > > * igt@gem_userptr_blits@create-destroy-unsync: > > * shard-mtlp: NOTRUN -> SKIP (i915#3297) +1 other test skip > * igt@gem_userptr_blits@map-fixed-invalidate-overlap: > > * shard-dg1: NOTRUN -> SKIP (i915#3297 / i915#4880) > * igt@gem_userptr_blits@sd-probe: > > * shard-dg2: NOTRUN -> SKIP (i915#3297 / i915#4958) > > * shard-dg1: NOTRUN -> SKIP (i915#3297 / i915#4958) > > * igt@gem_userptr_blits@vma-merge: > > * shard-snb: NOTRUN -> FAIL (i915#2724) > * igt@gem_workarounds@suspend-resume-fd: > > * shard-mtlp: PASS -> ABORT (i915#9262) +1 other test abort > * igt@gen7_exec_parse@bitmasks: > > * shard-dg2: NOTRUN -> SKIP (fdo#109289) +1 other test skip > > * shard-dg1: NOTRUN -> SKIP (fdo#109289) > > * igt@gen7_exec_parse@load-register-reg: > > * shard-tglu: NOTRUN -> SKIP (fdo#109289) > * igt@gen9_exec_parse@bb-start-cmd: > > * shard-rkl: NOTRUN -> SKIP (i915#2527) > * igt@gen9_exec_parse@unaligned-jump: > > * shard-mtlp: NOTRUN -> SKIP (i915#2856) +2 other tests skip > * igt@gen9_exec_parse@valid-registers: > > * shard-dg2: NOTRUN -> SKIP (i915#2856) +5 other tests skip > * igt@i915_hangman@gt-error-state-capture@vecs0: > > * shard-mtlp: PASS -> DMESG-WARN (i915#9262) > * igt@i915_module_load@reload-with-fault-injection: > > * shard-dg2: NOTRUN -> DMESG-WARN (i915#7061 / i915#8617) > * igt@i915_pm_rc6_residency@rc6-idle@vcs0: > > * shard-dg1: PASS -> FAIL (i915#3591) > * igt@i915_pm_rpm@dpms-mode-unset-lpsp: > > * shard-dg2: NOTRUN -> SKIP (i915#1397) > * igt@i915_pm_rpm@dpms-mode-unset-non-lpsp: > > * shard-rkl: PASS -> SKIP (i915#1397) +1 other test skip > * igt@i915_pm_rpm@dpms-non-lpsp: > > * shard-dg1: PASS -> SKIP (i915#1397) +1 other test skip > * igt@i915_pm_rpm@gem-execbuf-stress-pc8: > > * shard-dg2: NOTRUN -> SKIP (fdo#109506) > * igt@i915_pm_rpm@modeset-lpsp: > > * shard-dg2: PASS -> SKIP (i915#1397) > * igt@i915_pm_rps@min-max-config-idle: > > * shard-dg2: NOTRUN -> SKIP (i915#6621) > * igt@i915_pm_rps@reset: > > * shard-mtlp: NOTRUN -> FAIL (i915#8346) > * igt@i915_query@query-topology-known-pci-ids: > > * shard-mtlp: NOTRUN -> SKIP (fdo#109303) > * igt@i915_query@query-topology-unsupported: > > * shard-dg1: NOTRUN -> SKIP (fdo#109302) > * igt@i915_selftest@live@gt_engines: > > * shard-mtlp: NOTRUN -> FAIL (i915#9278 / i915#9290) > * igt@i915_selftest@live@gt_pm: > > * shard-mtlp: NOTRUN -> DMESG-FAIL (i915#9270) > * igt@kms_addfb_basic@addfb25-x-tiled-legacy: > > * shard-dg1: NOTRUN -> SKIP (i915#4212) > * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: > > * shard-dg2: NOTRUN -> SKIP (i915#5190) +12 other tests skip > * igt@kms_addfb_basic@tile-pitch-mismatch: > > * shard-dg2: NOTRUN -> SKIP (i915#4212) > * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-1-4-rc_ccs-cc: > > * shard-dg2: NOTRUN -> SKIP (i915#8502 / i915#8709) +11 other tests > skip > * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-4-y-rc_ccs: > > * shard-dg1: NOTRUN -> SKIP (i915#8502) +7 other tests skip > * igt@kms_async_flips@crc@pipe-a-hdmi-a-3: > > * shard-dg2: NOTRUN -> FAIL (i915#8247) +3 other tests fail > * igt@kms_async_flips@crc@pipe-c-hdmi-a-1: > > * shard-dg1: NOTRUN -> FAIL (i915#8247) +3 other tests fail > * igt@kms_async_flips@crc@pipe-d-edp-1: > > * shard-mtlp: NOTRUN -> DMESG-FAIL (i915#8561) +3 other tests > dmesg-fail > * igt@kms_atomic_transition@plane-all-modeset-transition: > > * shard-mtlp: NOTRUN -> SKIP (i915#1769 / i915#3555) > * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: > > * shard-snb: NOTRUN -> SKIP (fdo#109271 / i915#1769) > * igt@kms_big_fb@4-tiled-32bpp-rotate-90: > > * shard-dg2: NOTRUN -> SKIP (fdo#111614) +1 other test skip > * igt@kms_big_fb@4-tiled-8bpp-rotate-180: > > * shard-dg1: NOTRUN -> SKIP (i915#4538 / i915#5286) +1 other test > skip > > * shard-rkl: NOTRUN -> SKIP (i915#5286) > > * igt@kms_big_fb@4-tiled-addfb: > > * shard-tglu: NOTRUN -> SKIP (i915#5286) > * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: > > * shard-mtlp: NOTRUN -> FAIL (i915#5138) > * igt@kms_big_fb@linear-64bpp-rotate-90: > > * shard-rkl: NOTRUN -> SKIP (fdo#111614 / i915#3638) > > * shard-dg1: NOTRUN -> SKIP (i915#3638) > > * igt@kms_big_fb@linear-8bpp-rotate-270: > > * shard-mtlp: NOTRUN -> SKIP (fdo#111614) +4 other tests skip > * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: > > * shard-tglu: PASS -> FAIL (i915#3743) +1 other test fail > * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip: > > * shard-mtlp: NOTRUN -> SKIP (fdo#111615) +8 other tests skip > * igt@kms_big_fb@yf-tiled-32bpp-rotate-90: > > * shard-dg2: NOTRUN -> SKIP (i915#4538 / i915#5190) +5 other tests > skip > > * shard-dg1: NOTRUN -> SKIP (i915#4538) > > * igt@kms_big_fb@yf-tiled-addfb: > > * shard-mtlp: NOTRUN -> SKIP (i915#6187) +1 other test skip > * igt@kms_big_fb@yf-tiled-addfb-size-overflow: > > * shard-dg1: NOTRUN -> SKIP (fdo#111615) > * igt@kms_big_joiner@2x-modeset: > > * shard-mtlp: NOTRUN -> SKIP (i915#2705) > * igt@kms_ccs@pipe-a-bad-pixel-format-4_tiled_mtl_mc_ccs: > > * shard-rkl: NOTRUN -> SKIP (i915#5354 / i915#6095) +2 other tests > skip > * igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_rc_ccs_cc: > > * shard-mtlp: NOTRUN -> SKIP (i915#3886 / i915#6095) +5 other tests > skip > * igt@kms_ccs@pipe-a-bad-rotation-90-4_tiled_dg2_rc_ccs_cc: > > * shard-mtlp: NOTRUN -> SKIP (i915#6095) +32 other tests skip > * igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_ccs: > > * shard-dg1: NOTRUN -> SKIP (i915#3689 / i915#5354 / i915#6095) +2 > other tests skip > * igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_gen12_mc_ccs: > > * shard-dg2: NOTRUN -> SKIP (i915#3689 / i915#3886 / i915#5354) +6 > other tests skip > * igt@kms_ccs@pipe-b-bad-rotation-90-yf_tiled_ccs: > > * shard-dg2: NOTRUN -> SKIP (i915#3689 / i915#5354) +25 other tests > skip > * igt@kms_ccs@pipe-b-crc-primary-rotation-180-yf_tiled_ccs: > > * shard-rkl: NOTRUN -> SKIP (i915#3734 / i915#5354 / i915#6095) > * igt@kms_ccs@pipe-c-missing-ccs-buffer-4_tiled_mtl_rc_ccs: > > * shard-tglu: NOTRUN -> SKIP (i915#5354 / i915#6095) +1 other test > skip > * igt@kms_ccs@pipe-c-missing-ccs-buffer-y_tiled_gen12_rc_ccs_cc: > > * shard-rkl: NOTRUN -> SKIP (i915#5354) +5 other tests skip > * igt@kms_ccs@pipe-d-ccs-on-another-bo-4_tiled_mtl_rc_ccs_cc: > > * shard-dg1: NOTRUN -> SKIP (i915#5354 / i915#6095) +10 other tests > skip > * igt@kms_ccs@pipe-d-crc-primary-rotation-180-4_tiled_dg2_mc_ccs: > > * shard-tglu: NOTRUN -> SKIP (i915#3689 / i915#5354 / i915#6095) +1 > other test skip > * igt@kms_cdclk@mode-transition-all-outputs: > > * shard-mtlp: NOTRUN -> SKIP (i915#7213 / i915#9010) > * igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3: > > * shard-dg2: NOTRUN -> SKIP (i915#4087 / i915#7213) +3 other tests > skip > * igt@kms_chamelium_color@ctm-0-25: > > * shard-rkl: NOTRUN -> SKIP (fdo#111827) > * igt@kms_chamelium_color@ctm-0-75: > > * shard-mtlp: NOTRUN -> SKIP (fdo#111827) +1 other test skip > * igt@kms_chamelium_color@ctm-green-to-red: > > * shard-dg2: NOTRUN -> SKIP (fdo#111827) +3 other tests skip > * igt@kms_chamelium_color@ctm-red-to-blue: > > * shard-dg1: NOTRUN -> SKIP (fdo#111827) > * igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k: > > * shard-rkl: NOTRUN -> SKIP (i915#7828) > * igt@kms_chamelium_frames@hdmi-frame-dump: > > * shard-dg1: NOTRUN -> SKIP (i915#7828) +3 other tests skip > * igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe: > > * shard-dg2: NOTRUN -> SKIP (i915#7828) +8 other tests skip > * igt@kms_chamelium_hpd@vga-hpd-without-ddc: > > * shard-mtlp: NOTRUN -> SKIP (i915#7828) +6 other tests skip > * igt@kms_color@deep-color: > > * shard-dg2: NOTRUN -> SKIP (i915#3555) +5 other tests skip > > * shard-dg1: NOTRUN -> SKIP (i915#3555) +2 other tests skip > > * igt@kms_content_protection@content_type_change: > > * shard-mtlp: NOTRUN -> SKIP (i915#6944) > * igt@kms_content_protection@dp-mst-lic-type-0: > > * shard-dg2: NOTRUN -> SKIP (i915#3299) > * igt@kms_content_protection@mei_interface: > > * shard-tglu: NOTRUN -> SKIP (i915#6944 / i915#7116 / i915#7118) > * igt@kms_content_protection@type1: > > * shard-dg2: NOTRUN -> SKIP (i915#7118) +2 other tests skip > > * shard-dg1: NOTRUN -> SKIP (i915#7116) > > * igt@kms_content_protection@uevent@pipe-a-dp-4: > > * shard-dg2: NOTRUN -> FAIL (i915#1339) > * igt@kms_cursor_crc@cursor-onscreen-512x170: > > * shard-mtlp: NOTRUN -> SKIP (i915#3359) > * igt@kms_cursor_crc@cursor-onscreen-512x512: > > * shard-dg2: NOTRUN -> SKIP (i915#3359) +1 other test skip > * igt@kms_cursor_crc@cursor-sliding-32x32: > > * shard-mtlp: NOTRUN -> SKIP (i915#3555 / i915#8814) +2 other tests > skip > * igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic: > > * shard-mtlp: NOTRUN -> SKIP (fdo#111767 / i915#3546) +1 other test > skip > * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: > > * shard-mtlp: NOTRUN -> SKIP (i915#4213) +1 other test skip > * igt@kms_cursor_legacy@cursora-vs-flipb-legacy: > > * shard-mtlp: NOTRUN -> SKIP (i915#3546) +4 other tests skip > * igt@kms_cursor_legacy@cursorb-vs-flipb-legacy: > > * shard-dg2: NOTRUN -> SKIP (fdo#109274 / i915#5354) +4 other tests > skip > * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: > > * shard-apl: PASS -> FAIL (i915#2346) > * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: > > * shard-glk: PASS -> FAIL (i915#2346) > * igt@kms_dirtyfb@dirtyfb-ioctl@drrs-hdmi-a-2: > > * shard-rkl: NOTRUN -> SKIP (i915#9226 / i915#9261) +1 other test > skip > * igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-2: > > * shard-rkl: NOTRUN -> SKIP (i915#9227) > * igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-4: > > * shard-dg1: NOTRUN -> SKIP (i915#9227) > * igt@kms_dirtyfb@dirtyfb-ioctl@psr-hdmi-a-4: > > * shard-dg1: NOTRUN -> SKIP (i915#9226 / i915#9261) +1 other test > skip > * igt@kms_dsc@dsc-with-formats: > > * shard-mtlp: NOTRUN -> SKIP (i915#3555 / i915#3840) +1 other test > skip > * igt@kms_fbcon_fbt@psr: > > * shard-dg2: NOTRUN -> SKIP (i915#3469) > > * shard-rkl: NOTRUN -> SKIP (fdo#110189 / i915#3955) > > * shard-dg1: NOTRUN -> SKIP (i915#3469) > > * igt@kms_fence_pin_leak: > > * shard-mtlp: NOTRUN -> SKIP (i915#4881) > * igt@kms_flip@2x-flip-vs-expired-vblank: > > * shard-mtlp: NOTRUN -> SKIP (i915#3637) +8 other tests skip > * igt@kms_flip@2x-flip-vs-fences-interruptible: > > * shard-mtlp: NOTRUN -> SKIP (i915#8381) +1 other test skip > * igt@kms_flip@2x-wf_vblank-ts-check: > > * shard-dg2: NOTRUN -> SKIP (fdo#109274) +5 other tests skip > * igt@kms_flip@flip-vs-blocking-wf-vblank@b-vga1: > > * shard-snb: PASS -> ABORT (i915#8865) > * igt@kms_flip@flip-vs-fences: > > * shard-dg2: NOTRUN -> SKIP (i915#8381) > * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode: > > * shard-dg2: NOTRUN -> SKIP (i915#2672) +3 other tests skip > * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode: > > * shard-dg1: NOTRUN -> SKIP (i915#2587 / i915#2672) > * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode: > > * shard-mtlp: NOTRUN -> SKIP (i915#2672) +3 other tests skip > * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-32bpp-xtile-downscaling@pipe-a-default-mode: > > * shard-mtlp: NOTRUN -> SKIP (i915#3555 / i915#8810) +1 other test > skip > * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode: > > * shard-mtlp: NOTRUN -> SKIP (i915#2672 / i915#3555) +1 other test > skip > * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc: > > * shard-dg2: NOTRUN -> SKIP (i915#8708) +14 other tests skip > * igt@kms_frontbuffer_tracking@fbc-2p-indfb-fliptrack-mmap-gtt: > > * shard-mtlp: NOTRUN -> SKIP (i915#8708) +10 other tests skip > * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt: > > * shard-dg2: NOTRUN -> SKIP (i915#5354) +49 other tests skip > * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-cpu: > > * shard-dg2: NOTRUN -> FAIL (i915#6880) > * igt@kms_frontbuffer_tracking@fbc-suspend: > > * shard-dg1: PASS -> DMESG-WARN (i915#1982 / i915#4423) > * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu: > > * shard-dg2: NOTRUN -> SKIP (i915#3458) +18 other tests skip > * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc: > > * shard-dg1: NOTRUN -> SKIP (i915#8708) +12 other tests skip > * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render: > > * shard-dg1: NOTRUN -> SKIP (i915#3458) +3 other tests skip > * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff: > > * shard-dg1: NOTRUN -> SKIP (fdo#111825) +12 other tests skip > * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-pwrite: > > * shard-tglu: NOTRUN -> SKIP (fdo#109280) +2 other tests skip > * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc: > > * shard-tglu: NOTRUN -> SKIP (fdo#110189) +3 other tests skip > * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt: > > * shard-rkl: NOTRUN -> SKIP (i915#3023) +2 other tests skip > * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-gtt: > > * shard-rkl: NOTRUN -> SKIP (fdo#111825 / i915#1825) +5 other tests > skip > * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-wc: > > * shard-mtlp: NOTRUN -> SKIP (i915#1825) +36 other tests skip > * igt@kms_hdmi_inject@inject-audio: > > * shard-tglu: PASS -> SKIP (i915#433) > * igt@kms_hdr@static-swap: > > * shard-dg2: NOTRUN -> SKIP (i915#3555 / i915#8228) +2 other tests > skip > * igt@kms_hdr@static-toggle: > > * shard-mtlp: NOTRUN -> SKIP (i915#3555 / i915#8228) > * igt@kms_pipe_b_c_ivb@pipe-b-double-modeset-then-modeset-pipe-c: > > * shard-mtlp: NOTRUN -> SKIP (fdo#109289) +4 other tests skip > * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1: > > * shard-snb: NOTRUN -> DMESG-WARN (i915#8841) +5 other tests > dmesg-warn > * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-dp-1: > > * shard-apl: PASS -> INCOMPLETE (i915#180) > * igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a-planes: > > * shard-mtlp: NOTRUN -> ABORT (i915#9262) +14 other tests abort > * igt@kms_plane_lowres@tiling-y: > > * shard-dg2: NOTRUN -> SKIP (i915#8821) > * igt@kms_plane_multiple@tiling-y: > > * shard-mtlp: NOTRUN -> SKIP (i915#8806) > * igt@kms_plane_multiple@tiling-yf: > > * shard-mtlp: NOTRUN -> SKIP (i915#3555 / i915#8806) > * igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-b-hdmi-a-1: > > * shard-rkl: NOTRUN -> SKIP (i915#5176) +1 other test skip > * igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-d-edp-1: > > * shard-mtlp: NOTRUN -> SKIP (i915#5176) +7 other tests skip > * igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-25@pipe-a-hdmi-a-3: > > * shard-dg2: NOTRUN -> SKIP (i915#5176) +3 other tests skip > * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-5@pipe-b-hdmi-a-1: > > * shard-dg1: NOTRUN -> SKIP (i915#5176) +27 other tests skip > * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-vga-1: > > * shard-snb: NOTRUN -> SKIP (fdo#109271) +245 other tests skip > * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d-edp-1: > > * shard-mtlp: NOTRUN -> SKIP (i915#5235) +7 other tests skip > * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-1: > > * shard-dg2: NOTRUN -> SKIP (i915#5235) +11 other tests skip > * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b-hdmi-a-2: > > * shard-rkl: NOTRUN -> SKIP (i915#5235) +1 other test skip > * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-4: > > * shard-dg1: NOTRUN -> SKIP (i915#5235) +19 other tests skip > * igt@kms_prime@basic-crc-hybrid: > > * shard-dg2: NOTRUN -> SKIP (i915#6524 / i915#6805) > * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area: > > * shard-dg2: NOTRUN -> SKIP (i915#658) +1 other test skip > > * shard-dg1: NOTRUN -> SKIP (fdo#111068 / i915#658) > > * igt@kms_psr2_su@page_flip-p010: > > * shard-mtlp: NOTRUN -> SKIP (i915#4348) > * igt@kms_psr@primary_mmap_cpu: > > * shard-dg2: NOTRUN -> SKIP (i915#1072) +7 other tests skip > > * shard-rkl: NOTRUN -> SKIP (i915#1072) > > * shard-dg1: NOTRUN -> SKIP (i915#1072) > > * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: > > * shard-dg1: NOTRUN -> SKIP (i915#5461 / i915#658) > > * shard-dg2: NOTRUN -> SKIP (i915#5461 / i915#658) > > * igt@kms_rotation_crc@bad-tiling: > > * shard-mtlp: NOTRUN -> SKIP (i915#4235) > * igt@kms_rotation_crc@primary-rotation-270: > > * shard-dg2: NOTRUN -> SKIP (i915#4235) > * igt@kms_rotation_crc@primary-y-tiled-reflect-x-180: > > * shard-mtlp: NOTRUN -> SKIP (i915#5289) > * igt@kms_selftest@drm_cmdline: > > * shard-tglu: NOTRUN -> SKIP (i915#8661) > * igt@kms_setmode@basic@pipe-a-vga-1: > > * shard-snb: NOTRUN -> FAIL (i915#5465) +1 other test fail > * igt@kms_tiled_display@basic-test-pattern-with-chamelium: > > * shard-mtlp: NOTRUN -> SKIP (i915#8623) > * igt@kms_tv_load_detect@load-detect: > > * shard-mtlp: NOTRUN -> SKIP (fdo#109309) > * igt@kms_universal_plane@cursor-fb-leak-pipe-b: > > * shard-snb: PASS -> FAIL (i915#9196) > * igt@kms_vrr@flip-basic: > > * shard-mtlp: NOTRUN -> SKIP (i915#3555 / i915#8808) > * igt@kms_writeback@writeback-fb-id: > > * shard-dg2: NOTRUN -> SKIP (i915#2437) > * igt@kms_writeback@writeback-pixel-formats: > > * shard-dg1: NOTRUN -> SKIP (i915#2437) +1 other test skip > * igt@perf@global-sseu-config-invalid: > > * shard-dg2: NOTRUN -> SKIP (i915#7387) > * igt@perf@polling-small-buf: > > * shard-mtlp: NOTRUN -> FAIL (i915#1722) > * igt@perf_pmu@busy-idle@bcs0: > > * shard-mtlp: NOTRUN -> FAIL (i915#4349) +2 other tests fail > * igt@perf_pmu@frequency@gt0: > > * shard-apl: PASS -> SKIP (fdo#109271) > > * shard-glk: PASS -> SKIP (fdo#109271) > > * shard-snb: PASS -> SKIP (fdo#109271) > > * igt@perf_pmu@rc6@other-idle-gt1: > > * shard-mtlp: NOTRUN -> INCOMPLETE (i915#9268) > * igt@prime_udl: > > * shard-dg2: NOTRUN -> SKIP (fdo#109291) > * igt@prime_vgem@basic-fence-flip: > > * shard-dg2: NOTRUN -> SKIP (i915#3708) > * igt@prime_vgem@coherency-blt: > > * shard-mtlp: NOTRUN -> FAIL (i915#8445) > * igt@v3d/v3d_job_submission@multiple-singlesync-to-multisync: > > * shard-dg1: NOTRUN -> SKIP (i915#2575) +2 other tests skip > * igt@v3d/v3d_submit_csd@job-perfmon: > > * shard-dg2: NOTRUN -> SKIP (i915#2575) +10 other tests skip > * igt@v3d/v3d_wait_bo@map-bo-0ns: > > * shard-mtlp: NOTRUN -> SKIP (i915#2575) +11 other tests skip > * igt@vc4/vc4_perfmon@create-perfmon-exceed: > > * shard-mtlp: NOTRUN -> SKIP (i915#7711) +9 other tests skip > * igt@vc4/vc4_perfmon@create-perfmon-invalid-events: > > * shard-tglu: NOTRUN -> SKIP (i915#2575) > * igt@vc4/vc4_purgeable_bo@access-purgeable-bo-mem: > > * shard-dg1: NOTRUN -> SKIP (i915#7711) +2 other tests skip > * igt@vc4/vc4_tiling@get-bad-modifier: > > * shard-dg2: NOTRUN -> SKIP (i915#7711) +9 other tests skip > * igt@vc4/vc4_wait_seqno@bad-seqno-0ns: > > * shard-rkl: NOTRUN -> SKIP (i915#7711) +2 other tests skip > > Possible fixes > > * igt@drm_fdinfo@virtual-idle: > > * shard-rkl: FAIL (i915#7742) -> PASS > * igt@gem_exec_fair@basic-pace-solo@rcs0: > > * shard-rkl: FAIL (i915#2842) -> PASS +3 other tests pass > * igt@gem_exec_schedule@noreorder@bcs0: > > * shard-mtlp: FAIL -> PASS > * igt@gem_exec_schedule@noreorder@ccs0: > > * shard-mtlp: DMESG-FAIL (i915#8962 / i915#9121) -> PASS > * igt@gem_exec_schedule@noreorder@vcs0: > > * shard-mtlp: DMESG-FAIL (i915#9121) -> PASS +1 other test pass > * igt@i915_pipe_stress@stress-xrgb8888-untiled: > > * shard-mtlp: FAIL (i915#8691) -> PASS I was targetting this error so I'm going to merge the series. Rerun is not necessary. -- Zbigniew > * igt@i915_pm_rpm@modeset-non-lpsp-stress: > > * shard-rkl: SKIP (i915#1397) -> PASS +1 other test pass > * igt@kms_ccs@pipe-b-crc-primary-rotation-180-4_tiled_mtl_mc_ccs: > > * shard-mtlp: ABORT (i915#9262) -> PASS +1 other test pass > * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: > > * shard-glk: FAIL (i915#2346) -> PASS > * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-edp-1: > > * shard-mtlp: DMESG-WARN (i915#9262) -> PASS +1 other test pass > * igt@kms_rotation_crc@sprite-rotation-90-pos-100-0: > > * shard-dg1: DMESG-WARN (i915#1982) -> PASS > * igt@kms_universal_plane@cursor-fb-leak-pipe-a: > > * shard-glk: FAIL (i915#9196) -> PASS > * igt@perf@gen12-oa-tlb-invalidate@0-rcs0: > > * shard-rkl: FAIL -> PASS > * igt@perf_pmu@busy-idle@vcs0: > > * shard-dg2: FAIL (i915#4349) -> PASS +7 other tests pass > > * shard-dg1: FAIL (i915#4349) -> PASS +2 other tests pass > > * igt@perf_pmu@frequency@gt0: > > * shard-dg2: FAIL (i915#6806) -> PASS > > * shard-dg1: FAIL (i915#6806) -> PASS > > * igt@sysfs_preempt_timeout@timeout@vecs0: > > * shard-mtlp: ABORT (i915#8521 / i915#8865) -> PASS > > Warnings > > * igt@i915_pm_rc6_residency@rc6-idle@vecs0: > > * shard-tglu: WARN (i915#2681) -> FAIL (i915#2681 / i915#3591) > * igt@kms_content_protection@mei_interface: > > * shard-dg1: SKIP (fdo#109300) -> SKIP (i915#7116) > * igt@kms_force_connector_basic@force-load-detect: > > * shard-rkl: SKIP (fdo#109285) -> SKIP (fdo#109285 / i915#4098) > * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: > > * shard-rkl: SKIP (i915#4070 / i915#4816) -> SKIP (i915#4816) > * igt@kms_psr@primary_page_flip: > > * shard-dg1: SKIP (i915#1072 / i915#4078) -> SKIP (i915#1072) +1 > other test skip > > {name}: This element is suppressed. This means it is ignored when > computing > the status of the difference (SUCCESS, WARNING, or FAILURE). > > Build changes > > * CI: CI-20190529 -> None > * IGT: IGT_7486 -> IGTPW_9781 > * Piglit: piglit_4509 -> None > > CI-20190529: 20190529 > CI_DRM_13625: df710849c4a552f8516480ccaf5b215b4b086530 @ > git://anongit.freedesktop.org/gfx-ci/linux > IGTPW_9781: 9781 > IGT_7486: afd9a940c8247291baadd1977fe881d4f2edf0c7 @ > https://gitlab.freedesktop.org/drm/igt-gpu-tools.git > piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ > git://anongit.freedesktop.org/piglit ^ permalink raw reply [flat|nested] 12+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for Add missing Meteorlake gpgpu fill condition 2023-09-13 14:24 [igt-dev] [PATCH i-g-t 0/2] Add missing Meteorlake gpgpu fill condition Zbigniew Kempczyński ` (4 preceding siblings ...) 2023-09-13 21:31 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork @ 2023-09-14 12:13 ` Patchwork 5 siblings, 0 replies; 12+ messages in thread From: Patchwork @ 2023-09-14 12:13 UTC (permalink / raw) To: Zbigniew Kempczyński; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 85472 bytes --] == Series Details == Series: Add missing Meteorlake gpgpu fill condition URL : https://patchwork.freedesktop.org/series/123640/ State : success == Summary == CI Bug Log - changes from CI_DRM_13625_full -> IGTPW_9781_full ==================================================== Summary ------- **WARNING** Minor unknown changes coming with IGTPW_9781_full need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_9781_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_9781/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_9781_full: ### IGT changes ### #### Warnings #### * igt@i915_suspend@basic-s2idle-without-i915: - shard-snb: [DMESG-WARN][1] ([i915#8841]) -> [INCOMPLETE][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13625/shard-snb4/igt@i915_suspend@basic-s2idle-without-i915.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-snb5/igt@i915_suspend@basic-s2idle-without-i915.html Known issues ------------ Here are the changes found in IGTPW_9781_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@object-reloc-keep-cache: - shard-mtlp: NOTRUN -> [SKIP][3] ([i915#8411]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-8/igt@api_intel_bb@object-reloc-keep-cache.html * igt@device_reset@cold-reset-bound: - shard-mtlp: NOTRUN -> [SKIP][4] ([i915#7701]) +1 other test skip [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-4/igt@device_reset@cold-reset-bound.html * igt@drm_fdinfo@busy-idle-check-all@ccs0: - shard-mtlp: NOTRUN -> [SKIP][5] ([i915#8414]) +12 other tests skip [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-7/igt@drm_fdinfo@busy-idle-check-all@ccs0.html * igt@drm_fdinfo@busy@ccs0: - shard-dg2: NOTRUN -> [SKIP][6] ([i915#8414]) +11 other tests skip [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg2-3/igt@drm_fdinfo@busy@ccs0.html * igt@drm_fdinfo@most-busy-check-all@rcs0: - shard-rkl: [PASS][7] -> [FAIL][8] ([i915#7742]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13625/shard-rkl-4/igt@drm_fdinfo@most-busy-check-all@rcs0.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-rkl-2/igt@drm_fdinfo@most-busy-check-all@rcs0.html * igt@drm_fdinfo@virtual-busy-hang: - shard-dg1: NOTRUN -> [SKIP][9] ([i915#8414]) +1 other test skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg1-14/igt@drm_fdinfo@virtual-busy-hang.html * igt@gem_basic@multigpu-create-close: - shard-dg2: NOTRUN -> [SKIP][10] ([i915#7697]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg2-3/igt@gem_basic@multigpu-create-close.html * igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0: - shard-dg2: NOTRUN -> [INCOMPLETE][11] ([i915#7297]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg2-1/igt@gem_ccs@suspend-resume@xmajor-compressed-compfmt0-smem-lmem0.html * igt@gem_create@create-ext-cpu-access-big: - shard-dg2: NOTRUN -> [INCOMPLETE][12] ([i915#9283]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg2-10/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_create@create-ext-set-pat: - shard-dg2: NOTRUN -> [SKIP][13] ([i915#8562]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg2-3/igt@gem_create@create-ext-set-pat.html * igt@gem_ctx_exec@basic-nohangcheck: - shard-tglu: [PASS][14] -> [FAIL][15] ([i915#6268]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13625/shard-tglu-9/igt@gem_ctx_exec@basic-nohangcheck.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-tglu-8/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_ctx_isolation@preservation-s3@vcs1: - shard-mtlp: NOTRUN -> [DMESG-WARN][16] ([i915#9262]) +3 other tests dmesg-warn [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-2/igt@gem_ctx_isolation@preservation-s3@vcs1.html * igt@gem_ctx_param@set-priority-not-supported: - shard-mtlp: NOTRUN -> [SKIP][17] ([fdo#109314]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-6/igt@gem_ctx_param@set-priority-not-supported.html * igt@gem_ctx_persistence@engines-hostile-preempt: - shard-snb: NOTRUN -> [SKIP][18] ([fdo#109271] / [i915#1099]) +1 other test skip [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-snb6/igt@gem_ctx_persistence@engines-hostile-preempt.html * igt@gem_ctx_persistence@engines-hostile@vcs0: - shard-mtlp: NOTRUN -> [FAIL][19] ([i915#2410]) +3 other tests fail [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-6/igt@gem_ctx_persistence@engines-hostile@vcs0.html * igt@gem_ctx_persistence@heartbeat-close: - shard-dg2: NOTRUN -> [SKIP][20] ([i915#8555]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg2-2/igt@gem_ctx_persistence@heartbeat-close.html * igt@gem_ctx_persistence@heartbeat-stop: - shard-mtlp: NOTRUN -> [SKIP][21] ([i915#8555]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-2/igt@gem_ctx_persistence@heartbeat-stop.html * igt@gem_ctx_persistence@saturated-hostile-nopreempt@vcs1: - shard-mtlp: NOTRUN -> [SKIP][22] ([i915#5882]) +5 other tests skip [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-4/igt@gem_ctx_persistence@saturated-hostile-nopreempt@vcs1.html * igt@gem_ctx_sseu@invalid-args: - shard-dg2: NOTRUN -> [SKIP][23] ([i915#280]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg2-3/igt@gem_ctx_sseu@invalid-args.html - shard-dg1: NOTRUN -> [SKIP][24] ([i915#280]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg1-15/igt@gem_ctx_sseu@invalid-args.html * igt@gem_eio@reset-stress: - shard-dg1: [PASS][25] -> [FAIL][26] ([i915#5784]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13625/shard-dg1-13/igt@gem_eio@reset-stress.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg1-12/igt@gem_eio@reset-stress.html * igt@gem_exec_balancer@bonded-pair: - shard-dg2: NOTRUN -> [SKIP][27] ([i915#4771]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg2-6/igt@gem_exec_balancer@bonded-pair.html * igt@gem_exec_balancer@sliced: - shard-mtlp: NOTRUN -> [SKIP][28] ([i915#4812]) +1 other test skip [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-1/igt@gem_exec_balancer@sliced.html * igt@gem_exec_fair@basic-none-rrul@rcs0: - shard-rkl: NOTRUN -> [FAIL][29] ([i915#2842]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-rkl-2/igt@gem_exec_fair@basic-none-rrul@rcs0.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-tglu: [PASS][30] -> [FAIL][31] ([i915#2842]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13625/shard-tglu-7/igt@gem_exec_fair@basic-pace-share@rcs0.html [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-tglu-2/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_fair@basic-pace@vecs0: - shard-rkl: [PASS][32] -> [FAIL][33] ([i915#2842]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13625/shard-rkl-6/igt@gem_exec_fair@basic-pace@vecs0.html [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-rkl-6/igt@gem_exec_fair@basic-pace@vecs0.html * igt@gem_exec_fair@basic-sync: - shard-mtlp: NOTRUN -> [SKIP][34] ([i915#4473] / [i915#4771]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-6/igt@gem_exec_fair@basic-sync.html * igt@gem_exec_fair@basic-throttle: - shard-dg2: NOTRUN -> [SKIP][35] ([i915#3539]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg2-11/igt@gem_exec_fair@basic-throttle.html * igt@gem_exec_fence@submit67: - shard-dg2: NOTRUN -> [SKIP][36] ([i915#4812]) +1 other test skip [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg2-10/igt@gem_exec_fence@submit67.html * igt@gem_exec_flush@basic-uc-pro-default: - shard-dg2: NOTRUN -> [SKIP][37] ([i915#3539] / [i915#4852]) +5 other tests skip [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg2-11/igt@gem_exec_flush@basic-uc-pro-default.html - shard-dg1: NOTRUN -> [SKIP][38] ([i915#3539] / [i915#4852]) +2 other tests skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg1-15/igt@gem_exec_flush@basic-uc-pro-default.html * igt@gem_exec_params@secure-non-master: - shard-mtlp: NOTRUN -> [SKIP][39] ([fdo#112283]) +1 other test skip [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-1/igt@gem_exec_params@secure-non-master.html * igt@gem_exec_reloc@basic-cpu-gtt-active: - shard-rkl: NOTRUN -> [SKIP][40] ([i915#3281]) +1 other test skip [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-rkl-7/igt@gem_exec_reloc@basic-cpu-gtt-active.html - shard-dg1: NOTRUN -> [SKIP][41] ([i915#3281]) +4 other tests skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg1-19/igt@gem_exec_reloc@basic-cpu-gtt-active.html * igt@gem_exec_reloc@basic-gtt-cpu-active: - shard-dg2: NOTRUN -> [SKIP][42] ([i915#3281]) +8 other tests skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg2-11/igt@gem_exec_reloc@basic-gtt-cpu-active.html * igt@gem_exec_reloc@basic-wc-noreloc: - shard-mtlp: NOTRUN -> [SKIP][43] ([i915#3281]) +11 other tests skip [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-2/igt@gem_exec_reloc@basic-wc-noreloc.html * igt@gem_exec_schedule@preempt-queue: - shard-dg1: NOTRUN -> [SKIP][44] ([i915#4812]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg1-16/igt@gem_exec_schedule@preempt-queue.html * igt@gem_exec_schedule@preempt-queue-chain: - shard-mtlp: NOTRUN -> [SKIP][45] ([i915#4537] / [i915#4812]) +1 other test skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-3/igt@gem_exec_schedule@preempt-queue-chain.html * igt@gem_exec_schedule@reorder-wide: - shard-dg2: NOTRUN -> [SKIP][46] ([i915#4537] / [i915#4812]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg2-1/igt@gem_exec_schedule@reorder-wide.html * igt@gem_fence_thrash@bo-write-verify-x: - shard-dg2: NOTRUN -> [SKIP][47] ([i915#4860]) +2 other tests skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg2-7/igt@gem_fence_thrash@bo-write-verify-x.html - shard-dg1: NOTRUN -> [SKIP][48] ([i915#4860]) +1 other test skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg1-14/igt@gem_fence_thrash@bo-write-verify-x.html * igt@gem_fenced_exec_thrash@too-many-fences: - shard-mtlp: NOTRUN -> [SKIP][49] ([i915#4860]) +1 other test skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-5/igt@gem_fenced_exec_thrash@too-many-fences.html * igt@gem_lmem_swapping@heavy-verify-multi: - shard-mtlp: NOTRUN -> [SKIP][50] ([i915#4613]) +2 other tests skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-1/igt@gem_lmem_swapping@heavy-verify-multi.html * igt@gem_lmem_swapping@heavy-verify-multi-ccs: - shard-rkl: NOTRUN -> [SKIP][51] ([i915#4613]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-rkl-2/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html * igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0: - shard-dg1: NOTRUN -> [SKIP][52] ([i915#4565]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg1-12/igt@gem_lmem_swapping@heavy-verify-random-ccs@lmem0.html * igt@gem_mmap@bad-size: - shard-mtlp: NOTRUN -> [SKIP][53] ([i915#4083]) +2 other tests skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-1/igt@gem_mmap@bad-size.html * igt@gem_mmap@basic-small-bo: - shard-dg2: NOTRUN -> [SKIP][54] ([i915#4083]) +4 other tests skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg2-2/igt@gem_mmap@basic-small-bo.html * igt@gem_mmap_gtt@bad-object: - shard-dg2: NOTRUN -> [SKIP][55] ([i915#4077]) +10 other tests skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg2-10/igt@gem_mmap_gtt@bad-object.html * igt@gem_mmap_gtt@big-bo-tiledy: - shard-mtlp: NOTRUN -> [SKIP][56] ([i915#4077]) +19 other tests skip [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-1/igt@gem_mmap_gtt@big-bo-tiledy.html * igt@gem_mmap_gtt@cpuset-basic-small-copy: - shard-dg1: NOTRUN -> [SKIP][57] ([i915#4077]) +4 other tests skip [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg1-15/igt@gem_mmap_gtt@cpuset-basic-small-copy.html * igt@gem_mmap_offset@clear@smem0: - shard-mtlp: [PASS][58] -> [ABORT][59] ([i915#8668]) [58]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13625/shard-mtlp-4/igt@gem_mmap_offset@clear@smem0.html [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-5/igt@gem_mmap_offset@clear@smem0.html * igt@gem_mmap_wc@write-gtt-read-wc: - shard-dg1: NOTRUN -> [SKIP][60] ([i915#4083]) +2 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg1-16/igt@gem_mmap_wc@write-gtt-read-wc.html * igt@gem_partial_pwrite_pread@reads: - shard-dg2: NOTRUN -> [SKIP][61] ([i915#3282]) +6 other tests skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg2-7/igt@gem_partial_pwrite_pread@reads.html * igt@gem_partial_pwrite_pread@reads-uncached: - shard-mtlp: NOTRUN -> [SKIP][62] ([i915#3282]) +3 other tests skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-1/igt@gem_partial_pwrite_pread@reads-uncached.html * igt@gem_pxp@reject-modify-context-protection-off-1: - shard-tglu: NOTRUN -> [SKIP][63] ([i915#4270]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-tglu-5/igt@gem_pxp@reject-modify-context-protection-off-1.html * igt@gem_pxp@reject-modify-context-protection-off-3: - shard-dg2: NOTRUN -> [SKIP][64] ([i915#4270]) +2 other tests skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg2-2/igt@gem_pxp@reject-modify-context-protection-off-3.html * igt@gem_pxp@reject-modify-context-protection-on: - shard-dg1: NOTRUN -> [SKIP][65] ([i915#4270]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg1-19/igt@gem_pxp@reject-modify-context-protection-on.html * igt@gem_pxp@verify-pxp-execution-after-suspend-resume: - shard-mtlp: NOTRUN -> [SKIP][66] ([i915#4270]) +6 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-3/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html * igt@gem_readwrite@read-write: - shard-dg1: NOTRUN -> [SKIP][67] ([i915#3282]) +1 other test skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg1-19/igt@gem_readwrite@read-write.html * igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled: - shard-mtlp: NOTRUN -> [SKIP][68] ([i915#8428]) +9 other tests skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-7/igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled.html * igt@gem_spin_batch@spin-each: - shard-mtlp: NOTRUN -> [DMESG-FAIL][69] ([i915#8962] / [i915#9121]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-4/igt@gem_spin_batch@spin-each.html * igt@gem_tiled_pread_basic: - shard-mtlp: NOTRUN -> [SKIP][70] ([i915#4079]) +2 other tests skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-2/igt@gem_tiled_pread_basic.html - shard-dg2: NOTRUN -> [SKIP][71] ([i915#4079]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg2-3/igt@gem_tiled_pread_basic.html * igt@gem_userptr_blits@coherency-unsync: - shard-dg2: NOTRUN -> [SKIP][72] ([i915#3297]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg2-7/igt@gem_userptr_blits@coherency-unsync.html - shard-rkl: NOTRUN -> [SKIP][73] ([i915#3297]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-rkl-4/igt@gem_userptr_blits@coherency-unsync.html * igt@gem_userptr_blits@create-destroy-unsync: - shard-mtlp: NOTRUN -> [SKIP][74] ([i915#3297]) +1 other test skip [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-5/igt@gem_userptr_blits@create-destroy-unsync.html * igt@gem_userptr_blits@map-fixed-invalidate-overlap: - shard-dg1: NOTRUN -> [SKIP][75] ([i915#3297] / [i915#4880]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg1-15/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html * igt@gem_userptr_blits@sd-probe: - shard-dg2: NOTRUN -> [SKIP][76] ([i915#3297] / [i915#4958]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg2-10/igt@gem_userptr_blits@sd-probe.html - shard-dg1: NOTRUN -> [SKIP][77] ([i915#3297] / [i915#4958]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg1-19/igt@gem_userptr_blits@sd-probe.html * igt@gem_userptr_blits@vma-merge: - shard-snb: NOTRUN -> [FAIL][78] ([i915#2724]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-snb4/igt@gem_userptr_blits@vma-merge.html * igt@gem_workarounds@suspend-resume-fd: - shard-mtlp: [PASS][79] -> [ABORT][80] ([i915#9262]) +1 other test abort [79]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13625/shard-mtlp-1/igt@gem_workarounds@suspend-resume-fd.html [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-6/igt@gem_workarounds@suspend-resume-fd.html * igt@gen7_exec_parse@bitmasks: - shard-dg2: NOTRUN -> [SKIP][81] ([fdo#109289]) +1 other test skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg2-2/igt@gen7_exec_parse@bitmasks.html - shard-dg1: NOTRUN -> [SKIP][82] ([fdo#109289]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg1-18/igt@gen7_exec_parse@bitmasks.html * igt@gen7_exec_parse@load-register-reg: - shard-tglu: NOTRUN -> [SKIP][83] ([fdo#109289]) [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-tglu-8/igt@gen7_exec_parse@load-register-reg.html * igt@gen9_exec_parse@bb-start-cmd: - shard-rkl: NOTRUN -> [SKIP][84] ([i915#2527]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-rkl-6/igt@gen9_exec_parse@bb-start-cmd.html * igt@gen9_exec_parse@unaligned-jump: - shard-mtlp: NOTRUN -> [SKIP][85] ([i915#2856]) +2 other tests skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-5/igt@gen9_exec_parse@unaligned-jump.html * igt@gen9_exec_parse@valid-registers: - shard-dg2: NOTRUN -> [SKIP][86] ([i915#2856]) +5 other tests skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg2-11/igt@gen9_exec_parse@valid-registers.html * igt@i915_hangman@gt-error-state-capture@vecs0: - shard-mtlp: [PASS][87] -> [DMESG-WARN][88] ([i915#9262]) [87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13625/shard-mtlp-3/igt@i915_hangman@gt-error-state-capture@vecs0.html [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-2/igt@i915_hangman@gt-error-state-capture@vecs0.html * igt@i915_module_load@reload-with-fault-injection: - shard-dg2: NOTRUN -> [DMESG-WARN][89] ([i915#7061] / [i915#8617]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg2-1/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_rc6_residency@rc6-idle@vcs0: - shard-dg1: [PASS][90] -> [FAIL][91] ([i915#3591]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13625/shard-dg1-16/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg1-16/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html * igt@i915_pm_rpm@dpms-mode-unset-lpsp: - shard-dg2: NOTRUN -> [SKIP][92] ([i915#1397]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg2-3/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html * igt@i915_pm_rpm@dpms-mode-unset-non-lpsp: - shard-rkl: [PASS][93] -> [SKIP][94] ([i915#1397]) +1 other test skip [93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13625/shard-rkl-4/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-rkl-7/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@i915_pm_rpm@dpms-non-lpsp: - shard-dg1: [PASS][95] -> [SKIP][96] ([i915#1397]) +1 other test skip [95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13625/shard-dg1-18/igt@i915_pm_rpm@dpms-non-lpsp.html [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg1-19/igt@i915_pm_rpm@dpms-non-lpsp.html * igt@i915_pm_rpm@gem-execbuf-stress-pc8: - shard-dg2: NOTRUN -> [SKIP][97] ([fdo#109506]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg2-2/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html * igt@i915_pm_rpm@modeset-lpsp: - shard-dg2: [PASS][98] -> [SKIP][99] ([i915#1397]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13625/shard-dg2-10/igt@i915_pm_rpm@modeset-lpsp.html [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg2-1/igt@i915_pm_rpm@modeset-lpsp.html * igt@i915_pm_rps@min-max-config-idle: - shard-dg2: NOTRUN -> [SKIP][100] ([i915#6621]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg2-11/igt@i915_pm_rps@min-max-config-idle.html * igt@i915_pm_rps@reset: - shard-mtlp: NOTRUN -> [FAIL][101] ([i915#8346]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-3/igt@i915_pm_rps@reset.html * igt@i915_query@query-topology-known-pci-ids: - shard-mtlp: NOTRUN -> [SKIP][102] ([fdo#109303]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-2/igt@i915_query@query-topology-known-pci-ids.html * igt@i915_query@query-topology-unsupported: - shard-dg1: NOTRUN -> [SKIP][103] ([fdo#109302]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg1-15/igt@i915_query@query-topology-unsupported.html * igt@i915_selftest@live@gt_engines: - shard-mtlp: NOTRUN -> [FAIL][104] ([i915#9278] / [i915#9290]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-4/igt@i915_selftest@live@gt_engines.html * igt@i915_selftest@live@gt_pm: - shard-mtlp: NOTRUN -> [DMESG-FAIL][105] ([i915#9270]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-4/igt@i915_selftest@live@gt_pm.html * igt@kms_addfb_basic@addfb25-x-tiled-legacy: - shard-dg1: NOTRUN -> [SKIP][106] ([i915#4212]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg1-19/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-dg2: NOTRUN -> [SKIP][107] ([i915#5190]) +12 other tests skip [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg2-7/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_addfb_basic@tile-pitch-mismatch: - shard-dg2: NOTRUN -> [SKIP][108] ([i915#4212]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg2-3/igt@kms_addfb_basic@tile-pitch-mismatch.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-1-4-rc_ccs-cc: - shard-dg2: NOTRUN -> [SKIP][109] ([i915#8502] / [i915#8709]) +11 other tests skip [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg2-10/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-1-4-rc_ccs-cc.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-4-y-rc_ccs: - shard-dg1: NOTRUN -> [SKIP][110] ([i915#8502]) +7 other tests skip [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg1-14/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-4-y-rc_ccs.html * igt@kms_async_flips@crc@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [FAIL][111] ([i915#8247]) +3 other tests fail [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg2-7/igt@kms_async_flips@crc@pipe-a-hdmi-a-3.html * igt@kms_async_flips@crc@pipe-c-hdmi-a-1: - shard-dg1: NOTRUN -> [FAIL][112] ([i915#8247]) +3 other tests fail [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg1-19/igt@kms_async_flips@crc@pipe-c-hdmi-a-1.html * igt@kms_async_flips@crc@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [DMESG-FAIL][113] ([i915#8561]) +3 other tests dmesg-fail [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-6/igt@kms_async_flips@crc@pipe-d-edp-1.html * igt@kms_atomic_transition@plane-all-modeset-transition: - shard-mtlp: NOTRUN -> [SKIP][114] ([i915#1769] / [i915#3555]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-4/igt@kms_atomic_transition@plane-all-modeset-transition.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-snb: NOTRUN -> [SKIP][115] ([fdo#109271] / [i915#1769]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-snb2/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_big_fb@4-tiled-32bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][116] ([fdo#111614]) +1 other test skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg2-3/igt@kms_big_fb@4-tiled-32bpp-rotate-90.html * igt@kms_big_fb@4-tiled-8bpp-rotate-180: - shard-dg1: NOTRUN -> [SKIP][117] ([i915#4538] / [i915#5286]) +1 other test skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg1-14/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html - shard-rkl: NOTRUN -> [SKIP][118] ([i915#5286]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-rkl-4/igt@kms_big_fb@4-tiled-8bpp-rotate-180.html * igt@kms_big_fb@4-tiled-addfb: - shard-tglu: NOTRUN -> [SKIP][119] ([i915#5286]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-tglu-5/igt@kms_big_fb@4-tiled-addfb.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-mtlp: NOTRUN -> [FAIL][120] ([i915#5138]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_big_fb@linear-64bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][121] ([fdo#111614] / [i915#3638]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-rkl-6/igt@kms_big_fb@linear-64bpp-rotate-90.html - shard-dg1: NOTRUN -> [SKIP][122] ([i915#3638]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg1-12/igt@kms_big_fb@linear-64bpp-rotate-90.html * igt@kms_big_fb@linear-8bpp-rotate-270: - shard-mtlp: NOTRUN -> [SKIP][123] ([fdo#111614]) +4 other tests skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-8/igt@kms_big_fb@linear-8bpp-rotate-270.html * igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-tglu: [PASS][124] -> [FAIL][125] ([i915#3743]) +1 other test fail [124]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13625/shard-tglu-7/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-tglu-7/igt@kms_big_fb@x-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip: - shard-mtlp: NOTRUN -> [SKIP][126] ([fdo#111615]) +8 other tests skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-6/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-hflip.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][127] ([i915#4538] / [i915#5190]) +5 other tests skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg2-7/igt@kms_big_fb@yf-tiled-32bpp-rotate-90.html - shard-dg1: NOTRUN -> [SKIP][128] ([i915#4538]) [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg1-19/igt@kms_big_fb@yf-tiled-32bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-addfb: - shard-mtlp: NOTRUN -> [SKIP][129] ([i915#6187]) +1 other test skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-4/igt@kms_big_fb@yf-tiled-addfb.html * igt@kms_big_fb@yf-tiled-addfb-size-overflow: - shard-dg1: NOTRUN -> [SKIP][130] ([fdo#111615]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg1-15/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html * igt@kms_big_joiner@2x-modeset: - shard-mtlp: NOTRUN -> [SKIP][131] ([i915#2705]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-7/igt@kms_big_joiner@2x-modeset.html * igt@kms_ccs@pipe-a-bad-pixel-format-4_tiled_mtl_mc_ccs: - shard-rkl: NOTRUN -> [SKIP][132] ([i915#5354] / [i915#6095]) +2 other tests skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-rkl-6/igt@kms_ccs@pipe-a-bad-pixel-format-4_tiled_mtl_mc_ccs.html * igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_rc_ccs_cc: - shard-mtlp: NOTRUN -> [SKIP][133] ([i915#3886] / [i915#6095]) +5 other tests skip [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-1/igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-a-bad-rotation-90-4_tiled_dg2_rc_ccs_cc: - shard-mtlp: NOTRUN -> [SKIP][134] ([i915#6095]) +32 other tests skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-4/igt@kms_ccs@pipe-a-bad-rotation-90-4_tiled_dg2_rc_ccs_cc.html * igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_ccs: - shard-dg1: NOTRUN -> [SKIP][135] ([i915#3689] / [i915#5354] / [i915#6095]) +2 other tests skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg1-17/igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_ccs.html * igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_gen12_mc_ccs: - shard-dg2: NOTRUN -> [SKIP][136] ([i915#3689] / [i915#3886] / [i915#5354]) +6 other tests skip [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg2-6/igt@kms_ccs@pipe-a-random-ccs-data-y_tiled_gen12_mc_ccs.html * igt@kms_ccs@pipe-b-bad-rotation-90-yf_tiled_ccs: - shard-dg2: NOTRUN -> [SKIP][137] ([i915#3689] / [i915#5354]) +25 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg2-11/igt@kms_ccs@pipe-b-bad-rotation-90-yf_tiled_ccs.html * igt@kms_ccs@pipe-b-crc-primary-rotation-180-yf_tiled_ccs: - shard-rkl: NOTRUN -> [SKIP][138] ([i915#3734] / [i915#5354] / [i915#6095]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-rkl-4/igt@kms_ccs@pipe-b-crc-primary-rotation-180-yf_tiled_ccs.html * igt@kms_ccs@pipe-c-missing-ccs-buffer-4_tiled_mtl_rc_ccs: - shard-tglu: NOTRUN -> [SKIP][139] ([i915#5354] / [i915#6095]) +1 other test skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-tglu-7/igt@kms_ccs@pipe-c-missing-ccs-buffer-4_tiled_mtl_rc_ccs.html * igt@kms_ccs@pipe-c-missing-ccs-buffer-y_tiled_gen12_rc_ccs_cc: - shard-rkl: NOTRUN -> [SKIP][140] ([i915#5354]) +5 other tests skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-rkl-2/igt@kms_ccs@pipe-c-missing-ccs-buffer-y_tiled_gen12_rc_ccs_cc.html * igt@kms_ccs@pipe-d-ccs-on-another-bo-4_tiled_mtl_rc_ccs_cc: - shard-dg1: NOTRUN -> [SKIP][141] ([i915#5354] / [i915#6095]) +10 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg1-12/igt@kms_ccs@pipe-d-ccs-on-another-bo-4_tiled_mtl_rc_ccs_cc.html * igt@kms_ccs@pipe-d-crc-primary-rotation-180-4_tiled_dg2_mc_ccs: - shard-tglu: NOTRUN -> [SKIP][142] ([i915#3689] / [i915#5354] / [i915#6095]) +1 other test skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-tglu-10/igt@kms_ccs@pipe-d-crc-primary-rotation-180-4_tiled_dg2_mc_ccs.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-mtlp: NOTRUN -> [SKIP][143] ([i915#7213] / [i915#9010]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-2/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][144] ([i915#4087] / [i915#7213]) +3 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg2-3/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html * igt@kms_chamelium_color@ctm-0-25: - shard-rkl: NOTRUN -> [SKIP][145] ([fdo#111827]) [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-rkl-6/igt@kms_chamelium_color@ctm-0-25.html * igt@kms_chamelium_color@ctm-0-75: - shard-mtlp: NOTRUN -> [SKIP][146] ([fdo#111827]) +1 other test skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-4/igt@kms_chamelium_color@ctm-0-75.html * igt@kms_chamelium_color@ctm-green-to-red: - shard-dg2: NOTRUN -> [SKIP][147] ([fdo#111827]) +3 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg2-11/igt@kms_chamelium_color@ctm-green-to-red.html * igt@kms_chamelium_color@ctm-red-to-blue: - shard-dg1: NOTRUN -> [SKIP][148] ([fdo#111827]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg1-18/igt@kms_chamelium_color@ctm-red-to-blue.html * igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k: - shard-rkl: NOTRUN -> [SKIP][149] ([i915#7828]) [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-rkl-6/igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k.html * igt@kms_chamelium_frames@hdmi-frame-dump: - shard-dg1: NOTRUN -> [SKIP][150] ([i915#7828]) +3 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg1-14/igt@kms_chamelium_frames@hdmi-frame-dump.html * igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe: - shard-dg2: NOTRUN -> [SKIP][151] ([i915#7828]) +8 other tests skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg2-3/igt@kms_chamelium_hpd@hdmi-hpd-for-each-pipe.html * igt@kms_chamelium_hpd@vga-hpd-without-ddc: - shard-mtlp: NOTRUN -> [SKIP][152] ([i915#7828]) +6 other tests skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-5/igt@kms_chamelium_hpd@vga-hpd-without-ddc.html * igt@kms_color@deep-color: - shard-dg2: NOTRUN -> [SKIP][153] ([i915#3555]) +5 other tests skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg2-10/igt@kms_color@deep-color.html - shard-dg1: NOTRUN -> [SKIP][154] ([i915#3555]) +2 other tests skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg1-14/igt@kms_color@deep-color.html * igt@kms_content_protection@content_type_change: - shard-mtlp: NOTRUN -> [SKIP][155] ([i915#6944]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-1/igt@kms_content_protection@content_type_change.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-dg2: NOTRUN -> [SKIP][156] ([i915#3299]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg2-3/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@mei_interface: - shard-tglu: NOTRUN -> [SKIP][157] ([i915#6944] / [i915#7116] / [i915#7118]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-tglu-7/igt@kms_content_protection@mei_interface.html * igt@kms_content_protection@type1: - shard-dg2: NOTRUN -> [SKIP][158] ([i915#7118]) +2 other tests skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg2-3/igt@kms_content_protection@type1.html - shard-dg1: NOTRUN -> [SKIP][159] ([i915#7116]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg1-12/igt@kms_content_protection@type1.html * igt@kms_content_protection@uevent@pipe-a-dp-4: - shard-dg2: NOTRUN -> [FAIL][160] ([i915#1339]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg2-11/igt@kms_content_protection@uevent@pipe-a-dp-4.html * igt@kms_cursor_crc@cursor-onscreen-512x170: - shard-mtlp: NOTRUN -> [SKIP][161] ([i915#3359]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-4/igt@kms_cursor_crc@cursor-onscreen-512x170.html * igt@kms_cursor_crc@cursor-onscreen-512x512: - shard-dg2: NOTRUN -> [SKIP][162] ([i915#3359]) +1 other test skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg2-11/igt@kms_cursor_crc@cursor-onscreen-512x512.html * igt@kms_cursor_crc@cursor-sliding-32x32: - shard-mtlp: NOTRUN -> [SKIP][163] ([i915#3555] / [i915#8814]) +2 other tests skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-7/igt@kms_cursor_crc@cursor-sliding-32x32.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic: - shard-mtlp: NOTRUN -> [SKIP][164] ([fdo#111767] / [i915#3546]) +1 other test skip [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-6/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-mtlp: NOTRUN -> [SKIP][165] ([i915#4213]) +1 other test skip [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-4/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@cursora-vs-flipb-legacy: - shard-mtlp: NOTRUN -> [SKIP][166] ([i915#3546]) +4 other tests skip [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-2/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipb-legacy: - shard-dg2: NOTRUN -> [SKIP][167] ([fdo#109274] / [i915#5354]) +4 other tests skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg2-1/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-apl: [PASS][168] -> [FAIL][169] ([i915#2346]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13625/shard-apl1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-apl4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-glk: [PASS][170] -> [FAIL][171] ([i915#2346]) [170]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13625/shard-glk8/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-glk4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_dirtyfb@dirtyfb-ioctl@drrs-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][172] ([i915#9226] / [i915#9261]) +1 other test skip [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-rkl-1/igt@kms_dirtyfb@dirtyfb-ioctl@drrs-hdmi-a-2.html * igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][173] ([i915#9227]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-rkl-1/igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-2.html * igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][174] ([i915#9227]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg1-16/igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-4.html * igt@kms_dirtyfb@dirtyfb-ioctl@psr-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][175] ([i915#9226] / [i915#9261]) +1 other test skip [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg1-16/igt@kms_dirtyfb@dirtyfb-ioctl@psr-hdmi-a-4.html * igt@kms_dsc@dsc-with-formats: - shard-mtlp: NOTRUN -> [SKIP][176] ([i915#3555] / [i915#3840]) +1 other test skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-7/igt@kms_dsc@dsc-with-formats.html * igt@kms_fbcon_fbt@psr: - shard-dg2: NOTRUN -> [SKIP][177] ([i915#3469]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg2-11/igt@kms_fbcon_fbt@psr.html - shard-rkl: NOTRUN -> [SKIP][178] ([fdo#110189] / [i915#3955]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-rkl-2/igt@kms_fbcon_fbt@psr.html - shard-dg1: NOTRUN -> [SKIP][179] ([i915#3469]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg1-18/igt@kms_fbcon_fbt@psr.html * igt@kms_fence_pin_leak: - shard-mtlp: NOTRUN -> [SKIP][180] ([i915#4881]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-6/igt@kms_fence_pin_leak.html * igt@kms_flip@2x-flip-vs-expired-vblank: - shard-mtlp: NOTRUN -> [SKIP][181] ([i915#3637]) +8 other tests skip [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-5/igt@kms_flip@2x-flip-vs-expired-vblank.html * igt@kms_flip@2x-flip-vs-fences-interruptible: - shard-mtlp: NOTRUN -> [SKIP][182] ([i915#8381]) +1 other test skip [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-7/igt@kms_flip@2x-flip-vs-fences-interruptible.html * igt@kms_flip@2x-wf_vblank-ts-check: - shard-dg2: NOTRUN -> [SKIP][183] ([fdo#109274]) +5 other tests skip [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg2-3/igt@kms_flip@2x-wf_vblank-ts-check.html * igt@kms_flip@flip-vs-blocking-wf-vblank@b-vga1: - shard-snb: [PASS][184] -> [ABORT][185] ([i915#8865]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13625/shard-snb4/igt@kms_flip@flip-vs-blocking-wf-vblank@b-vga1.html [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-snb7/igt@kms_flip@flip-vs-blocking-wf-vblank@b-vga1.html * igt@kms_flip@flip-vs-fences: - shard-dg2: NOTRUN -> [SKIP][186] ([i915#8381]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg2-3/igt@kms_flip@flip-vs-fences.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][187] ([i915#2672]) +3 other tests skip [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg2-2/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][188] ([i915#2587] / [i915#2672]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg1-13/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][189] ([i915#2672]) +3 other tests skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@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][190] ([i915#3555] / [i915#8810]) +1 other test skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-4/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][191] ([i915#2672] / [i915#3555]) +1 other test skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-default-mode.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][192] ([i915#8708]) +14 other tests skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-indfb-fliptrack-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][193] ([i915#8708]) +10 other tests skip [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbc-2p-indfb-fliptrack-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][194] ([i915#5354]) +49 other tests skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-cpu: - shard-dg2: NOTRUN -> [FAIL][195] ([i915#6880]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbc-suspend: - shard-dg1: [PASS][196] -> [DMESG-WARN][197] ([i915#1982] / [i915#4423]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13625/shard-dg1-18/igt@kms_frontbuffer_tracking@fbc-suspend.html [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg1-14/igt@kms_frontbuffer_tracking@fbc-suspend.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][198] ([i915#3458]) +18 other tests skip [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][199] ([i915#8708]) +12 other tests skip [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg1-15/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render: - shard-dg1: NOTRUN -> [SKIP][200] ([i915#3458]) +3 other tests skip [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg1-19/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff: - shard-dg1: NOTRUN -> [SKIP][201] ([fdo#111825]) +12 other tests skip [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-pwrite: - shard-tglu: NOTRUN -> [SKIP][202] ([fdo#109280]) +2 other tests skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-tglu-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc: - shard-tglu: NOTRUN -> [SKIP][203] ([fdo#110189]) +3 other tests skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-tglu-2/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt: - shard-rkl: NOTRUN -> [SKIP][204] ([i915#3023]) +2 other tests skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-1p-offscren-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-rkl: NOTRUN -> [SKIP][205] ([fdo#111825] / [i915#1825]) +5 other tests skip [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-wc: - shard-mtlp: NOTRUN -> [SKIP][206] ([i915#1825]) +36 other tests skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-7/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_hdmi_inject@inject-audio: - shard-tglu: [PASS][207] -> [SKIP][208] ([i915#433]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13625/shard-tglu-6/igt@kms_hdmi_inject@inject-audio.html [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-tglu-2/igt@kms_hdmi_inject@inject-audio.html * igt@kms_hdr@static-swap: - shard-dg2: NOTRUN -> [SKIP][209] ([i915#3555] / [i915#8228]) +2 other tests skip [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg2-7/igt@kms_hdr@static-swap.html * igt@kms_hdr@static-toggle: - shard-mtlp: NOTRUN -> [SKIP][210] ([i915#3555] / [i915#8228]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-8/igt@kms_hdr@static-toggle.html * igt@kms_pipe_b_c_ivb@pipe-b-double-modeset-then-modeset-pipe-c: - shard-mtlp: NOTRUN -> [SKIP][211] ([fdo#109289]) +4 other tests skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-7/igt@kms_pipe_b_c_ivb@pipe-b-double-modeset-then-modeset-pipe-c.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1: - shard-snb: NOTRUN -> [DMESG-WARN][212] ([i915#8841]) +5 other tests dmesg-warn [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-snb1/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-a-hdmi-a-1.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-dp-1: - shard-apl: [PASS][213] -> [INCOMPLETE][214] ([i915#180]) [213]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13625/shard-apl6/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-dp-1.html [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-apl6/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-dp-1.html * igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a-planes: - shard-mtlp: NOTRUN -> [ABORT][215] ([i915#9262]) +14 other tests abort [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-4/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a-planes.html * igt@kms_plane_lowres@tiling-y: - shard-dg2: NOTRUN -> [SKIP][216] ([i915#8821]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg2-7/igt@kms_plane_lowres@tiling-y.html * igt@kms_plane_multiple@tiling-y: - shard-mtlp: NOTRUN -> [SKIP][217] ([i915#8806]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-2/igt@kms_plane_multiple@tiling-y.html * igt@kms_plane_multiple@tiling-yf: - shard-mtlp: NOTRUN -> [SKIP][218] ([i915#3555] / [i915#8806]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-6/igt@kms_plane_multiple@tiling-yf.html * igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-b-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][219] ([i915#5176]) +1 other test skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-rkl-7/igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-b-hdmi-a-1.html * igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][220] ([i915#5176]) +7 other tests skip [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-7/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][221] ([i915#5176]) +3 other tests skip [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/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-5@pipe-b-hdmi-a-1: - shard-dg1: NOTRUN -> [SKIP][222] ([i915#5176]) +27 other tests skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg1-19/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-5@pipe-b-hdmi-a-1.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-vga-1: - shard-snb: NOTRUN -> [SKIP][223] ([fdo#109271]) +245 other tests skip [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-snb5/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-a-vga-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][224] ([i915#5235]) +7 other tests skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-5/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-d-edp-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][225] ([i915#5235]) +11 other tests skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg2-10/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-b-hdmi-a-1.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][226] ([i915#5235]) +1 other test skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-rkl-4/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b-hdmi-a-2.html * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][227] ([i915#5235]) +19 other tests skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg1-14/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-d-hdmi-a-4.html * igt@kms_prime@basic-crc-hybrid: - shard-dg2: NOTRUN -> [SKIP][228] ([i915#6524] / [i915#6805]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg2-6/igt@kms_prime@basic-crc-hybrid.html * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area: - shard-dg2: NOTRUN -> [SKIP][229] ([i915#658]) +1 other test skip [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg2-10/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area.html - shard-dg1: NOTRUN -> [SKIP][230] ([fdo#111068] / [i915#658]) [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg1-14/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area.html * igt@kms_psr2_su@page_flip-p010: - shard-mtlp: NOTRUN -> [SKIP][231] ([i915#4348]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-1/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr@primary_mmap_cpu: - shard-dg2: NOTRUN -> [SKIP][232] ([i915#1072]) +7 other tests skip [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg2-7/igt@kms_psr@primary_mmap_cpu.html - shard-rkl: NOTRUN -> [SKIP][233] ([i915#1072]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-rkl-4/igt@kms_psr@primary_mmap_cpu.html - shard-dg1: NOTRUN -> [SKIP][234] ([i915#1072]) [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg1-14/igt@kms_psr@primary_mmap_cpu.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-dg1: NOTRUN -> [SKIP][235] ([i915#5461] / [i915#658]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg1-13/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html - shard-dg2: NOTRUN -> [SKIP][236] ([i915#5461] / [i915#658]) [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg2-6/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rotation_crc@bad-tiling: - shard-mtlp: NOTRUN -> [SKIP][237] ([i915#4235]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-6/igt@kms_rotation_crc@bad-tiling.html * igt@kms_rotation_crc@primary-rotation-270: - shard-dg2: NOTRUN -> [SKIP][238] ([i915#4235]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg2-11/igt@kms_rotation_crc@primary-rotation-270.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-180: - shard-mtlp: NOTRUN -> [SKIP][239] ([i915#5289]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-2/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html * igt@kms_selftest@drm_cmdline: - shard-tglu: NOTRUN -> [SKIP][240] ([i915#8661]) [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-tglu-9/igt@kms_selftest@drm_cmdline.html * igt@kms_setmode@basic@pipe-a-vga-1: - shard-snb: NOTRUN -> [FAIL][241] ([i915#5465]) +1 other test fail [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-snb6/igt@kms_setmode@basic@pipe-a-vga-1.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-mtlp: NOTRUN -> [SKIP][242] ([i915#8623]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-2/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_tv_load_detect@load-detect: - shard-mtlp: NOTRUN -> [SKIP][243] ([fdo#109309]) [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-1/igt@kms_tv_load_detect@load-detect.html * igt@kms_universal_plane@cursor-fb-leak-pipe-b: - shard-snb: [PASS][244] -> [FAIL][245] ([i915#9196]) [244]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13625/shard-snb4/igt@kms_universal_plane@cursor-fb-leak-pipe-b.html [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-snb1/igt@kms_universal_plane@cursor-fb-leak-pipe-b.html * igt@kms_vrr@flip-basic: - shard-mtlp: NOTRUN -> [SKIP][246] ([i915#3555] / [i915#8808]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-1/igt@kms_vrr@flip-basic.html * igt@kms_writeback@writeback-fb-id: - shard-dg2: NOTRUN -> [SKIP][247] ([i915#2437]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg2-6/igt@kms_writeback@writeback-fb-id.html * igt@kms_writeback@writeback-pixel-formats: - shard-dg1: NOTRUN -> [SKIP][248] ([i915#2437]) +1 other test skip [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg1-15/igt@kms_writeback@writeback-pixel-formats.html * igt@perf@global-sseu-config-invalid: - shard-dg2: NOTRUN -> [SKIP][249] ([i915#7387]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg2-11/igt@perf@global-sseu-config-invalid.html * igt@perf@polling-small-buf: - shard-mtlp: NOTRUN -> [FAIL][250] ([i915#1722]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-1/igt@perf@polling-small-buf.html * igt@perf_pmu@busy-idle@bcs0: - shard-mtlp: NOTRUN -> [FAIL][251] ([i915#4349]) +2 other tests fail [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-3/igt@perf_pmu@busy-idle@bcs0.html * igt@perf_pmu@frequency@gt0: - shard-apl: [PASS][252] -> [SKIP][253] ([fdo#109271]) [252]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13625/shard-apl1/igt@perf_pmu@frequency@gt0.html [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-apl4/igt@perf_pmu@frequency@gt0.html - shard-glk: [PASS][254] -> [SKIP][255] ([fdo#109271]) [254]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13625/shard-glk2/igt@perf_pmu@frequency@gt0.html [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-glk7/igt@perf_pmu@frequency@gt0.html - shard-snb: [PASS][256] -> [SKIP][257] ([fdo#109271]) [256]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13625/shard-snb6/igt@perf_pmu@frequency@gt0.html [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-snb6/igt@perf_pmu@frequency@gt0.html * igt@perf_pmu@rc6@gt0: - shard-mtlp: NOTRUN -> [ABORT][258] ([i915#9335]) [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-6/igt@perf_pmu@rc6@gt0.html * igt@perf_pmu@rc6@other-idle-gt1: - shard-mtlp: NOTRUN -> [INCOMPLETE][259] ([i915#9268]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-6/igt@perf_pmu@rc6@other-idle-gt1.html * igt@perf_pmu@rc6@runtime-pm-long-gt1: - shard-mtlp: NOTRUN -> [DMESG-WARN][260] ([i915#9335]) +5 other tests dmesg-warn [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-6/igt@perf_pmu@rc6@runtime-pm-long-gt1.html * igt@prime_udl: - shard-dg2: NOTRUN -> [SKIP][261] ([fdo#109291]) [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg2-11/igt@prime_udl.html * igt@prime_vgem@basic-fence-flip: - shard-dg2: NOTRUN -> [SKIP][262] ([i915#3708]) [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg2-7/igt@prime_vgem@basic-fence-flip.html * igt@prime_vgem@coherency-blt: - shard-mtlp: NOTRUN -> [FAIL][263] ([i915#8445]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-1/igt@prime_vgem@coherency-blt.html * igt@v3d/v3d_job_submission@multiple-singlesync-to-multisync: - shard-dg1: NOTRUN -> [SKIP][264] ([i915#2575]) +2 other tests skip [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg1-19/igt@v3d/v3d_job_submission@multiple-singlesync-to-multisync.html * igt@v3d/v3d_submit_csd@job-perfmon: - shard-dg2: NOTRUN -> [SKIP][265] ([i915#2575]) +10 other tests skip [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg2-3/igt@v3d/v3d_submit_csd@job-perfmon.html * igt@v3d/v3d_wait_bo@map-bo-0ns: - shard-mtlp: NOTRUN -> [SKIP][266] ([i915#2575]) +11 other tests skip [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-7/igt@v3d/v3d_wait_bo@map-bo-0ns.html * igt@vc4/vc4_perfmon@create-perfmon-exceed: - shard-mtlp: NOTRUN -> [SKIP][267] ([i915#7711]) +9 other tests skip [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-4/igt@vc4/vc4_perfmon@create-perfmon-exceed.html * igt@vc4/vc4_perfmon@create-perfmon-invalid-events: - shard-tglu: NOTRUN -> [SKIP][268] ([i915#2575]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-tglu-5/igt@vc4/vc4_perfmon@create-perfmon-invalid-events.html * igt@vc4/vc4_purgeable_bo@access-purgeable-bo-mem: - shard-dg1: NOTRUN -> [SKIP][269] ([i915#7711]) +2 other tests skip [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg1-19/igt@vc4/vc4_purgeable_bo@access-purgeable-bo-mem.html * igt@vc4/vc4_tiling@get-bad-modifier: - shard-dg2: NOTRUN -> [SKIP][270] ([i915#7711]) +9 other tests skip [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg2-10/igt@vc4/vc4_tiling@get-bad-modifier.html * igt@vc4/vc4_wait_seqno@bad-seqno-0ns: - shard-rkl: NOTRUN -> [SKIP][271] ([i915#7711]) +2 other tests skip [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-rkl-4/igt@vc4/vc4_wait_seqno@bad-seqno-0ns.html #### Possible fixes #### * igt@drm_fdinfo@virtual-idle: - shard-rkl: [FAIL][272] ([i915#7742]) -> [PASS][273] [272]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13625/shard-rkl-6/igt@drm_fdinfo@virtual-idle.html [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-rkl-7/igt@drm_fdinfo@virtual-idle.html * igt@gem_exec_fair@basic-pace-solo@rcs0: - shard-rkl: [FAIL][274] ([i915#2842]) -> [PASS][275] +3 other tests pass [274]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13625/shard-rkl-4/igt@gem_exec_fair@basic-pace-solo@rcs0.html [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-rkl-7/igt@gem_exec_fair@basic-pace-solo@rcs0.html * igt@gem_exec_schedule@noreorder@bcs0: - shard-mtlp: [FAIL][276] ([i915#8102]) -> [PASS][277] [276]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13625/shard-mtlp-4/igt@gem_exec_schedule@noreorder@bcs0.html [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-7/igt@gem_exec_schedule@noreorder@bcs0.html * igt@gem_exec_schedule@noreorder@ccs0: - shard-mtlp: [DMESG-FAIL][278] ([i915#8962] / [i915#9121]) -> [PASS][279] [278]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13625/shard-mtlp-4/igt@gem_exec_schedule@noreorder@ccs0.html [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-7/igt@gem_exec_schedule@noreorder@ccs0.html * igt@gem_exec_schedule@noreorder@vcs0: - shard-mtlp: [DMESG-FAIL][280] ([i915#9121]) -> [PASS][281] +1 other test pass [280]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13625/shard-mtlp-4/igt@gem_exec_schedule@noreorder@vcs0.html [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-7/igt@gem_exec_schedule@noreorder@vcs0.html * igt@i915_pipe_stress@stress-xrgb8888-untiled: - shard-mtlp: [FAIL][282] ([i915#8691]) -> [PASS][283] [282]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13625/shard-mtlp-6/igt@i915_pipe_stress@stress-xrgb8888-untiled.html [283]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-2/igt@i915_pipe_stress@stress-xrgb8888-untiled.html * igt@i915_pm_rpm@modeset-non-lpsp-stress: - shard-rkl: [SKIP][284] ([i915#1397]) -> [PASS][285] +1 other test pass [284]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13625/shard-rkl-7/igt@i915_pm_rpm@modeset-non-lpsp-stress.html [285]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-rkl-6/igt@i915_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_ccs@pipe-b-crc-primary-rotation-180-4_tiled_mtl_mc_ccs: - shard-mtlp: [ABORT][286] ([i915#9262]) -> [PASS][287] +1 other test pass [286]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13625/shard-mtlp-7/igt@kms_ccs@pipe-b-crc-primary-rotation-180-4_tiled_mtl_mc_ccs.html [287]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-1/igt@kms_ccs@pipe-b-crc-primary-rotation-180-4_tiled_mtl_mc_ccs.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-glk: [FAIL][288] ([i915#2346]) -> [PASS][289] [288]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13625/shard-glk2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-glk7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-edp-1: - shard-mtlp: [DMESG-WARN][290] ([i915#9262]) -> [PASS][291] +1 other test pass [290]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13625/shard-mtlp-2/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-edp-1.html [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-7/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-edp-1.html * igt@kms_rotation_crc@sprite-rotation-90-pos-100-0: - shard-dg1: [DMESG-WARN][292] ([i915#1982]) -> [PASS][293] [292]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13625/shard-dg1-13/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg1-16/igt@kms_rotation_crc@sprite-rotation-90-pos-100-0.html * igt@kms_universal_plane@cursor-fb-leak-pipe-a: - shard-glk: [FAIL][294] ([i915#9196]) -> [PASS][295] [294]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13625/shard-glk6/igt@kms_universal_plane@cursor-fb-leak-pipe-a.html [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-glk9/igt@kms_universal_plane@cursor-fb-leak-pipe-a.html * igt@perf@gen12-oa-tlb-invalidate@0-rcs0: - shard-rkl: [FAIL][296] ([i915#8102]) -> [PASS][297] [296]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13625/shard-rkl-2/igt@perf@gen12-oa-tlb-invalidate@0-rcs0.html [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-rkl-7/igt@perf@gen12-oa-tlb-invalidate@0-rcs0.html * igt@perf_pmu@busy-idle@vcs0: - shard-dg2: [FAIL][298] ([i915#4349]) -> [PASS][299] +7 other tests pass [298]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13625/shard-dg2-3/igt@perf_pmu@busy-idle@vcs0.html [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg2-6/igt@perf_pmu@busy-idle@vcs0.html - shard-dg1: [FAIL][300] ([i915#4349]) -> [PASS][301] +2 other tests pass [300]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13625/shard-dg1-12/igt@perf_pmu@busy-idle@vcs0.html [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg1-13/igt@perf_pmu@busy-idle@vcs0.html * igt@perf_pmu@frequency@gt0: - shard-dg2: [FAIL][302] ([i915#6806]) -> [PASS][303] [302]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13625/shard-dg2-1/igt@perf_pmu@frequency@gt0.html [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg2-3/igt@perf_pmu@frequency@gt0.html - shard-dg1: [FAIL][304] ([i915#6806]) -> [PASS][305] [304]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13625/shard-dg1-12/igt@perf_pmu@frequency@gt0.html [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg1-15/igt@perf_pmu@frequency@gt0.html * igt@sysfs_preempt_timeout@timeout@vecs0: - shard-mtlp: [ABORT][306] ([i915#8521] / [i915#8865]) -> [PASS][307] [306]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13625/shard-mtlp-8/igt@sysfs_preempt_timeout@timeout@vecs0.html [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-mtlp-1/igt@sysfs_preempt_timeout@timeout@vecs0.html #### Warnings #### * igt@i915_pm_rc6_residency@rc6-idle@vecs0: - shard-tglu: [WARN][308] ([i915#2681]) -> [FAIL][309] ([i915#2681] / [i915#3591]) [308]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13625/shard-tglu-3/igt@i915_pm_rc6_residency@rc6-idle@vecs0.html [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-tglu-8/igt@i915_pm_rc6_residency@rc6-idle@vecs0.html * igt@kms_content_protection@mei_interface: - shard-dg1: [SKIP][310] ([fdo#109300]) -> [SKIP][311] ([i915#7116]) [310]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13625/shard-dg1-12/igt@kms_content_protection@mei_interface.html [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg1-14/igt@kms_content_protection@mei_interface.html * igt@kms_force_connector_basic@force-load-detect: - shard-rkl: [SKIP][312] ([fdo#109285]) -> [SKIP][313] ([fdo#109285] / [i915#4098]) [312]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13625/shard-rkl-7/igt@kms_force_connector_basic@force-load-detect.html [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-rkl-1/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-rkl: [SKIP][314] ([i915#4070] / [i915#4816]) -> [SKIP][315] ([i915#4816]) [314]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13625/shard-rkl-1/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-rkl-7/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_psr@primary_page_flip: - shard-dg1: [SKIP][316] ([i915#1072] / [i915#4078]) -> [SKIP][317] ([i915#1072]) +1 other test skip [316]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13625/shard-dg1-18/igt@kms_psr@primary_page_flip.html [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/shard-dg1-14/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#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#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291 [fdo#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300 [fdo#109302]: https://bugs.freedesktop.org/show_bug.cgi?id=109302 [fdo#109303]: https://bugs.freedesktop.org/show_bug.cgi?id=109303 [fdo#109309]: https://bugs.freedesktop.org/show_bug.cgi?id=109309 [fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314 [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [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 [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099 [i915#1339]: https://gitlab.freedesktop.org/drm/intel/issues/1339 [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#1937]: https://gitlab.freedesktop.org/drm/intel/issues/1937 [i915#1982]: https://gitlab.freedesktop.org/drm/intel/issues/1982 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2410]: https://gitlab.freedesktop.org/drm/intel/issues/2410 [i915#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#2724]: https://gitlab.freedesktop.org/drm/intel/issues/2724 [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 [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#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#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#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#4423]: https://gitlab.freedesktop.org/drm/intel/issues/4423 [i915#4473]: https://gitlab.freedesktop.org/drm/intel/issues/4473 [i915#4537]: https://gitlab.freedesktop.org/drm/intel/issues/4537 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#4565]: https://gitlab.freedesktop.org/drm/intel/issues/4565 [i915#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#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880 [i915#4881]: https://gitlab.freedesktop.org/drm/intel/issues/4881 [i915#4958]: https://gitlab.freedesktop.org/drm/intel/issues/4958 [i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461 [i915#5465]: https://gitlab.freedesktop.org/drm/intel/issues/5465 [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#6187]: https://gitlab.freedesktop.org/drm/intel/issues/6187 [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268 [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6805]: https://gitlab.freedesktop.org/drm/intel/issues/6805 [i915#6806]: https://gitlab.freedesktop.org/drm/intel/issues/6806 [i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880 [i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944 [i915#7061]: https://gitlab.freedesktop.org/drm/intel/issues/7061 [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7213]: https://gitlab.freedesktop.org/drm/intel/issues/7213 [i915#7297]: https://gitlab.freedesktop.org/drm/intel/issues/7297 [i915#7387]: https://gitlab.freedesktop.org/drm/intel/issues/7387 [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697 [i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#8102]: https://gitlab.freedesktop.org/drm/intel/issues/8102 [i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228 [i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247 [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#8502]: https://gitlab.freedesktop.org/drm/intel/issues/8502 [i915#8521]: https://gitlab.freedesktop.org/drm/intel/issues/8521 [i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555 [i915#8561]: https://gitlab.freedesktop.org/drm/intel/issues/8561 [i915#8562]: https://gitlab.freedesktop.org/drm/intel/issues/8562 [i915#8617]: https://gitlab.freedesktop.org/drm/intel/issues/8617 [i915#8623]: https://gitlab.freedesktop.org/drm/intel/issues/8623 [i915#8661]: https://gitlab.freedesktop.org/drm/intel/issues/8661 [i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668 [i915#8691]: https://gitlab.freedesktop.org/drm/intel/issues/8691 [i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708 [i915#8709]: https://gitlab.freedesktop.org/drm/intel/issues/8709 [i915#8806]: https://gitlab.freedesktop.org/drm/intel/issues/8806 [i915#8808]: https://gitlab.freedesktop.org/drm/intel/issues/8808 [i915#8810]: https://gitlab.freedesktop.org/drm/intel/issues/8810 [i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814 [i915#8821]: https://gitlab.freedesktop.org/drm/intel/issues/8821 [i915#8841]: https://gitlab.freedesktop.org/drm/intel/issues/8841 [i915#8865]: https://gitlab.freedesktop.org/drm/intel/issues/8865 [i915#8962]: https://gitlab.freedesktop.org/drm/intel/issues/8962 [i915#9010]: https://gitlab.freedesktop.org/drm/intel/issues/9010 [i915#9067]: https://gitlab.freedesktop.org/drm/intel/issues/9067 [i915#9121]: https://gitlab.freedesktop.org/drm/intel/issues/9121 [i915#9196]: https://gitlab.freedesktop.org/drm/intel/issues/9196 [i915#9226]: https://gitlab.freedesktop.org/drm/intel/issues/9226 [i915#9227]: https://gitlab.freedesktop.org/drm/intel/issues/9227 [i915#9261]: https://gitlab.freedesktop.org/drm/intel/issues/9261 [i915#9262]: https://gitlab.freedesktop.org/drm/intel/issues/9262 [i915#9268]: https://gitlab.freedesktop.org/drm/intel/issues/9268 [i915#9270]: https://gitlab.freedesktop.org/drm/intel/issues/9270 [i915#9278]: https://gitlab.freedesktop.org/drm/intel/issues/9278 [i915#9283]: https://gitlab.freedesktop.org/drm/intel/issues/9283 [i915#9290]: https://gitlab.freedesktop.org/drm/intel/issues/9290 [i915#9335]: https://gitlab.freedesktop.org/drm/intel/issues/9335 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7486 -> IGTPW_9781 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_13625: df710849c4a552f8516480ccaf5b215b4b086530 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_9781: 9781 IGT_7486: afd9a940c8247291baadd1977fe881d4f2edf0c7 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_9781/index.html [-- Attachment #2: Type: text/html, Size: 103593 bytes --] ^ permalink raw reply [flat|nested] 12+ messages in thread
end of thread, other threads:[~2023-09-14 12:14 UTC | newest] Thread overview: 12+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-09-13 14:24 [igt-dev] [PATCH i-g-t 0/2] Add missing Meteorlake gpgpu fill condition Zbigniew Kempczyński 2023-09-13 14:24 ` [igt-dev] [PATCH i-g-t 1/2] lib/intel_batchbuffer: Add Meteorlake gpgpu fill entry Zbigniew Kempczyński 2023-09-13 15:59 ` Kamil Konieczny 2023-09-14 6:00 ` Zbigniew Kempczyński 2023-09-13 14:24 ` [igt-dev] [PATCH i-g-t 2/2] tests/i915_pipe_stress: Remove stack variables Zbigniew Kempczyński 2023-09-13 15:15 ` Lisovskiy, Stanislav 2023-09-13 17:58 ` [igt-dev] ✓ CI.xeBAT: success for Add missing Meteorlake gpgpu fill condition Patchwork 2023-09-13 18:01 ` [igt-dev] ✓ Fi.CI.BAT: " Patchwork 2023-09-13 21:31 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 2023-09-14 6:03 ` Zbigniew Kempczyński 2023-09-14 12:14 ` Yedireswarapu, SaiX Nandan 2023-09-14 12:13 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox