* [PATCH i-g-t 0/2] tests/kms_plane: Refine clamping and modifier skips
@ 2026-02-04 8:39 Pranay Samala
2026-02-04 8:39 ` [PATCH i-g-t 1/2] tests/kms_plane: Skip cursor plane for source clamping Pranay Samala
` (5 more replies)
0 siblings, 6 replies; 11+ messages in thread
From: Pranay Samala @ 2026-02-04 8:39 UTC (permalink / raw)
To: igt-dev; +Cc: karthik.b.s, ramanaidu.naladala, sameer.lattannavar,
pranay.samala
These changes avoid running source clamping tests on cursor planes and
skip modifier subtests that are not supported on the target display
platform.
Pranay Samala (2):
tests/kms_plane: Skip cursor plane for source clamping
tests/kms_plane: Skip unsupported modifiers
tests/kms_plane.c | 17 +++++++++++------
1 file changed, 11 insertions(+), 6 deletions(-)
--
2.34.1
^ permalink raw reply [flat|nested] 11+ messages in thread* [PATCH i-g-t 1/2] tests/kms_plane: Skip cursor plane for source clamping 2026-02-04 8:39 [PATCH i-g-t 0/2] tests/kms_plane: Refine clamping and modifier skips Pranay Samala @ 2026-02-04 8:39 ` Pranay Samala 2026-02-09 5:19 ` B, Jeevan 2026-02-04 8:39 ` [PATCH i-g-t 2/2] tests/kms_plane: Skip unsupported modifiers Pranay Samala ` (4 subsequent siblings) 5 siblings, 1 reply; 11+ messages in thread From: Pranay Samala @ 2026-02-04 8:39 UTC (permalink / raw) To: igt-dev; +Cc: karthik.b.s, ramanaidu.naladala, sameer.lattannavar, pranay.samala Avoid running source clamping tests on cursor plane, which do not support clamping. Signed-off-by: Pranay Samala <pranay.samala@intel.com> --- tests/kms_plane.c | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/tests/kms_plane.c b/tests/kms_plane.c index 2be10f032..a7b1bf25d 100644 --- a/tests/kms_plane.c +++ b/tests/kms_plane.c @@ -1090,12 +1090,6 @@ static void test_format_plane(data_t *data, enum pipe pipe, bool result = true; bool found = false; - /* - * No clamping test for cursor plane - */ - if (data->crop != 0 && plane->type == DRM_PLANE_TYPE_CURSOR) - igt_skip("Clamping is invalid for the cursor plane.\n"); - for (int i = 0; i < plane->format_mod_count; i++) { if (data->mod == plane->modifiers[i]) { found = true; @@ -1288,6 +1282,9 @@ test_pixel_formats(data_t *data, enum pipe pipe) for_each_plane_on_pipe(&data->display, pipe, plane) { if (skip_plane(data, plane)) continue; + if (data->crop != 0 && plane->type == DRM_PLANE_TYPE_CURSOR) + continue; + igt_dynamic_f("pipe-%s-plane-%u", kmstest_pipe_name(pipe), plane->index) test_format_plane(data, pipe, output, plane, &primary_fb); } -- 2.34.1 ^ permalink raw reply related [flat|nested] 11+ messages in thread
* RE: [PATCH i-g-t 1/2] tests/kms_plane: Skip cursor plane for source clamping 2026-02-04 8:39 ` [PATCH i-g-t 1/2] tests/kms_plane: Skip cursor plane for source clamping Pranay Samala @ 2026-02-09 5:19 ` B, Jeevan 0 siblings, 0 replies; 11+ messages in thread From: B, Jeevan @ 2026-02-09 5:19 UTC (permalink / raw) To: Samala, Pranay, igt-dev@lists.freedesktop.org Cc: B S, Karthik, Naladala, Ramanaidu, Lattannavar, Sameer, Samala, Pranay > -----Original Message----- > From: igt-dev <igt-dev-bounces@lists.freedesktop.org> On Behalf Of Pranay > Samala > Sent: Wednesday, February 4, 2026 2:09 PM > To: igt-dev@lists.freedesktop.org > Cc: B S, Karthik <karthik.b.s@intel.com>; Naladala, Ramanaidu > <ramanaidu.naladala@intel.com>; Lattannavar, Sameer > <sameer.lattannavar@intel.com>; Samala, Pranay <pranay.samala@intel.com> > Subject: [PATCH i-g-t 1/2] tests/kms_plane: Skip cursor plane for source clamping > > Avoid running source clamping tests on cursor plane, which do not support > clamping. > > Signed-off-by: Pranay Samala <pranay.samala@intel.com> > --- > tests/kms_plane.c | 9 +++------ > 1 file changed, 3 insertions(+), 6 deletions(-) > > diff --git a/tests/kms_plane.c b/tests/kms_plane.c index 2be10f032..a7b1bf25d > 100644 > --- a/tests/kms_plane.c > +++ b/tests/kms_plane.c > @@ -1090,12 +1090,6 @@ static void test_format_plane(data_t *data, enum > pipe pipe, > bool result = true; > bool found = false; > > - /* > - * No clamping test for cursor plane > - */ > - if (data->crop != 0 && plane->type == DRM_PLANE_TYPE_CURSOR) > - igt_skip("Clamping is invalid for the cursor plane.\n"); > - > for (int i = 0; i < plane->format_mod_count; i++) { > if (data->mod == plane->modifiers[i]) { > found = true; > @@ -1288,6 +1282,9 @@ test_pixel_formats(data_t *data, enum pipe pipe) > for_each_plane_on_pipe(&data->display, pipe, plane) { > if (skip_plane(data, plane)) > continue; Add a short comment explaining intent: /* Cursor planes do not support cropping, Skip generating subtest*/ > + if (data->crop != 0 && plane->type == > DRM_PLANE_TYPE_CURSOR) > + continue; > + > igt_dynamic_f("pipe-%s-plane-%u", kmstest_pipe_name(pipe), > plane->index) > test_format_plane(data, pipe, output, plane, > &primary_fb); > } > -- > 2.34.1 ^ permalink raw reply [flat|nested] 11+ messages in thread
* [PATCH i-g-t 2/2] tests/kms_plane: Skip unsupported modifiers 2026-02-04 8:39 [PATCH i-g-t 0/2] tests/kms_plane: Refine clamping and modifier skips Pranay Samala 2026-02-04 8:39 ` [PATCH i-g-t 1/2] tests/kms_plane: Skip cursor plane for source clamping Pranay Samala @ 2026-02-04 8:39 ` Pranay Samala 2026-02-04 10:40 ` Reddy Guddati, Santhosh 2026-02-05 1:15 ` Naladala, Ramanaidu 2026-02-04 9:34 ` ✓ Xe.CI.BAT: success for tests/kms_plane: Refine clamping and modifier skips Patchwork ` (3 subsequent siblings) 5 siblings, 2 replies; 11+ messages in thread From: Pranay Samala @ 2026-02-04 8:39 UTC (permalink / raw) To: igt-dev; +Cc: karthik.b.s, ramanaidu.naladala, sameer.lattannavar, pranay.samala Skip modifier subtests that are not supported. Signed-off-by: Pranay Samala <pranay.samala@intel.com> --- tests/kms_plane.c | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/tests/kms_plane.c b/tests/kms_plane.c index a7b1bf25d..69d06d627 100644 --- a/tests/kms_plane.c +++ b/tests/kms_plane.c @@ -1495,6 +1495,10 @@ run_tests_for_pipe_plane(data_t *data) for (int i = 0; i < ARRAY_SIZE(modifiers); i++) { igt_describe("verify the pixel formats for given plane and pipe"); igt_subtest_with_dynamic_f("pixel-format-%s-modifier", modifiers[i].str) { + igt_require_f(igt_display_has_format_mod(&data->display, + DRM_FORMAT_XRGB8888, + modifiers[i].modifier), + "Modifier not supported\n"); data->mod = modifiers[i].modifier; run_test(data, test_pixel_formats); } @@ -1504,6 +1508,10 @@ run_tests_for_pipe_plane(data_t *data) igt_describe("verify the pixel formats for given plane and pipe with source clamping"); igt_subtest_with_dynamic_f("pixel-format-%s-modifier-source-clamping", modifiers[i].str) { + igt_require_f(igt_display_has_format_mod(&data->display, + DRM_FORMAT_XRGB8888, + modifiers[i].modifier), + "Modifier not supported\n"); data->mod = modifiers[i].modifier; data->crop = 4; run_test(data, test_pixel_formats); -- 2.34.1 ^ permalink raw reply related [flat|nested] 11+ messages in thread
* Re: [PATCH i-g-t 2/2] tests/kms_plane: Skip unsupported modifiers 2026-02-04 8:39 ` [PATCH i-g-t 2/2] tests/kms_plane: Skip unsupported modifiers Pranay Samala @ 2026-02-04 10:40 ` Reddy Guddati, Santhosh 2026-02-04 18:04 ` Naladala, Ramanaidu 2026-02-05 1:15 ` Naladala, Ramanaidu 1 sibling, 1 reply; 11+ messages in thread From: Reddy Guddati, Santhosh @ 2026-02-04 10:40 UTC (permalink / raw) To: igt-dev Hi Pranay, On 04-02-2026 14:09, Pranay Samala wrote: > Skip modifier subtests that are not supported. > > Signed-off-by: Pranay Samala <pranay.samala@intel.com> > --- > tests/kms_plane.c | 8 ++++++++ > 1 file changed, 8 insertions(+) > > diff --git a/tests/kms_plane.c b/tests/kms_plane.c > index a7b1bf25d..69d06d627 100644 > --- a/tests/kms_plane.c > +++ b/tests/kms_plane.c > @@ -1495,6 +1495,10 @@ run_tests_for_pipe_plane(data_t *data) > for (int i = 0; i < ARRAY_SIZE(modifiers); i++) { > igt_describe("verify the pixel formats for given plane and pipe"); > igt_subtest_with_dynamic_f("pixel-format-%s-modifier", modifiers[i].str) { > + igt_require_f(igt_display_has_format_mod(&data->display, > + DRM_FORMAT_XRGB8888, > + modifiers[i].modifier), > + "Modifier not supported\n"); This looks to be a redundant check here , as the same is handled in test_format_plane. igt_skip_on_f(!found, "Modifier " IGT_MODIFIER_FMT " not supported on plane %d\n", IGT_MODIFIER_ARGS(data->mod), plane->index); Thanks, Santhosh > data->mod = modifiers[i].modifier; > run_test(data, test_pixel_formats); > } > @@ -1504,6 +1508,10 @@ run_tests_for_pipe_plane(data_t *data) > igt_describe("verify the pixel formats for given plane and pipe with source clamping"); > igt_subtest_with_dynamic_f("pixel-format-%s-modifier-source-clamping", > modifiers[i].str) { > + igt_require_f(igt_display_has_format_mod(&data->display, > + DRM_FORMAT_XRGB8888, > + modifiers[i].modifier), > + "Modifier not supported\n"); > data->mod = modifiers[i].modifier; > data->crop = 4; > run_test(data, test_pixel_formats); ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH i-g-t 2/2] tests/kms_plane: Skip unsupported modifiers 2026-02-04 10:40 ` Reddy Guddati, Santhosh @ 2026-02-04 18:04 ` Naladala, Ramanaidu 0 siblings, 0 replies; 11+ messages in thread From: Naladala, Ramanaidu @ 2026-02-04 18:04 UTC (permalink / raw) To: igt-dev [-- Attachment #1: Type: text/plain, Size: 2663 bytes --] Hi Santhosh, On 2/4/2026 4:10 PM, Reddy Guddati, Santhosh wrote: > Hi Pranay, > > On 04-02-2026 14:09, Pranay Samala wrote: >> Skip modifier subtests that are not supported. >> >> Signed-off-by: Pranay Samala <pranay.samala@intel.com> >> --- >> tests/kms_plane.c | 8 ++++++++ >> 1 file changed, 8 insertions(+) >> >> diff --git a/tests/kms_plane.c b/tests/kms_plane.c >> index a7b1bf25d..69d06d627 100644 >> --- a/tests/kms_plane.c >> +++ b/tests/kms_plane.c >> @@ -1495,6 +1495,10 @@ run_tests_for_pipe_plane(data_t *data) >> for (int i = 0; i < ARRAY_SIZE(modifiers); i++) { >> igt_describe("verify the pixel formats for given plane and >> pipe"); >> igt_subtest_with_dynamic_f("pixel-format-%s-modifier", >> modifiers[i].str) { >> + igt_require_f(igt_display_has_format_mod(&data->display, >> + DRM_FORMAT_XRGB8888, >> + modifiers[i].modifier), >> + "Modifier not supported\n"); > > This looks to be a redundant check here , as the same is handled in > test_format_plane. Both checks must stay. The cursor plane only supports linear formats, so without the modifier check, |test_format_plane()| would incorrectly pass non‑linear modifiers, causing false positives. > > igt_skip_on_f(!found, > "Modifier " IGT_MODIFIER_FMT " not supported on plane > %d\n", > IGT_MODIFIER_ARGS(data->mod), plane->index); > > Thanks, > Santhosh > >> data->mod = modifiers[i].modifier; >> run_test(data, test_pixel_formats); >> } >> @@ -1504,6 +1508,10 @@ run_tests_for_pipe_plane(data_t *data) >> igt_describe("verify the pixel formats for given plane and >> pipe with source clamping"); >> igt_subtest_with_dynamic_f("pixel-format-%s-modifier-source-clamping", >> modifiers[i].str) { >> + igt_require_f(igt_display_has_format_mod(&data->display, >> + DRM_FORMAT_XRGB8888, >> + modifiers[i].modifier), >> + "Modifier not supported\n"); >> data->mod = modifiers[i].modifier; >> data->crop = 4; >> run_test(data, test_pixel_formats); > Thanks, Ramanaidu N. [-- Attachment #2: Type: text/html, Size: 6052 bytes --] ^ permalink raw reply [flat|nested] 11+ messages in thread
* Re: [PATCH i-g-t 2/2] tests/kms_plane: Skip unsupported modifiers 2026-02-04 8:39 ` [PATCH i-g-t 2/2] tests/kms_plane: Skip unsupported modifiers Pranay Samala 2026-02-04 10:40 ` Reddy Guddati, Santhosh @ 2026-02-05 1:15 ` Naladala, Ramanaidu 1 sibling, 0 replies; 11+ messages in thread From: Naladala, Ramanaidu @ 2026-02-05 1:15 UTC (permalink / raw) To: Pranay Samala, igt-dev; +Cc: karthik.b.s, sameer.lattannavar [-- Attachment #1: Type: text/plain, Size: 1577 bytes --] Hi Pranay, On 2/4/2026 2:09 PM, Pranay Samala wrote: > Skip modifier subtests that are not supported. > > Signed-off-by: Pranay Samala<pranay.samala@intel.com> > --- > tests/kms_plane.c | 8 ++++++++ > 1 file changed, 8 insertions(+) > > diff --git a/tests/kms_plane.c b/tests/kms_plane.c > index a7b1bf25d..69d06d627 100644 > --- a/tests/kms_plane.c > +++ b/tests/kms_plane.c > @@ -1495,6 +1495,10 @@ run_tests_for_pipe_plane(data_t *data) > for (int i = 0; i < ARRAY_SIZE(modifiers); i++) { > igt_describe("verify the pixel formats for given plane and pipe"); > igt_subtest_with_dynamic_f("pixel-format-%s-modifier", modifiers[i].str) { > + igt_require_f(igt_display_has_format_mod(&data->display, > + DRM_FORMAT_XRGB8888, > + modifiers[i].modifier), > + "Modifier not supported\n"); > data->mod = modifiers[i].modifier; > run_test(data, test_pixel_formats); > } > @@ -1504,6 +1508,10 @@ run_tests_for_pipe_plane(data_t *data) > igt_describe("verify the pixel formats for given plane and pipe with source clamping"); > igt_subtest_with_dynamic_f("pixel-format-%s-modifier-source-clamping", > modifiers[i].str) { > + igt_require_f(igt_display_has_format_mod(&data->display, > + DRM_FORMAT_XRGB8888, > + modifiers[i].modifier), > + "Modifier not supported\n"); > data->mod = modifiers[i].modifier; > data->crop = 4; > run_test(data, test_pixel_formats); I suggest moving this check into |run_test()| to avoid duplicate code across subtests. Thanks, Ramanaidu N. [-- Attachment #2: Type: text/html, Size: 2600 bytes --] ^ permalink raw reply [flat|nested] 11+ messages in thread
* ✓ Xe.CI.BAT: success for tests/kms_plane: Refine clamping and modifier skips 2026-02-04 8:39 [PATCH i-g-t 0/2] tests/kms_plane: Refine clamping and modifier skips Pranay Samala 2026-02-04 8:39 ` [PATCH i-g-t 1/2] tests/kms_plane: Skip cursor plane for source clamping Pranay Samala 2026-02-04 8:39 ` [PATCH i-g-t 2/2] tests/kms_plane: Skip unsupported modifiers Pranay Samala @ 2026-02-04 9:34 ` Patchwork 2026-02-04 9:46 ` ✓ i915.CI.BAT: " Patchwork ` (2 subsequent siblings) 5 siblings, 0 replies; 11+ messages in thread From: Patchwork @ 2026-02-04 9:34 UTC (permalink / raw) To: Pranay Samala; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 1081 bytes --] == Series Details == Series: tests/kms_plane: Refine clamping and modifier skips URL : https://patchwork.freedesktop.org/series/161133/ State : success == Summary == CI Bug Log - changes from XEIGT_8732_BAT -> XEIGTPW_14486_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (12 -> 10) ------------------------------ Missing (2): bat-adlp-7 bat-bmg-3 Changes ------- No changes found Build changes ------------- * IGT: IGT_8732 -> IGTPW_14486 * Linux: xe-4493-ff449f153b0966cfd7a7291670c927f6b6971d2a -> xe-4495-241994730989320c926da9f2d0a5ec80b48f993d IGTPW_14486: 14486 IGT_8732: 020b7f0da24d0772e73338791288901d717d95f2 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-4493-ff449f153b0966cfd7a7291670c927f6b6971d2a: ff449f153b0966cfd7a7291670c927f6b6971d2a xe-4495-241994730989320c926da9f2d0a5ec80b48f993d: 241994730989320c926da9f2d0a5ec80b48f993d == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14486/index.html [-- Attachment #2: Type: text/html, Size: 1640 bytes --] ^ permalink raw reply [flat|nested] 11+ messages in thread
* ✓ i915.CI.BAT: success for tests/kms_plane: Refine clamping and modifier skips 2026-02-04 8:39 [PATCH i-g-t 0/2] tests/kms_plane: Refine clamping and modifier skips Pranay Samala ` (2 preceding siblings ...) 2026-02-04 9:34 ` ✓ Xe.CI.BAT: success for tests/kms_plane: Refine clamping and modifier skips Patchwork @ 2026-02-04 9:46 ` Patchwork 2026-02-04 20:16 ` ✗ Xe.CI.FULL: failure " Patchwork 2026-02-04 21:44 ` ✗ i915.CI.Full: " Patchwork 5 siblings, 0 replies; 11+ messages in thread From: Patchwork @ 2026-02-04 9:46 UTC (permalink / raw) To: Pranay Samala; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 1662 bytes --] == Series Details == Series: tests/kms_plane: Refine clamping and modifier skips URL : https://patchwork.freedesktop.org/series/161133/ State : success == Summary == CI Bug Log - changes from IGT_8732 -> IGTPW_14486 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/index.html Participating hosts (43 -> 40) ------------------------------ Missing (3): bat-dg2-13 bat-atsm-1 fi-snb-2520m Known issues ------------ Here are the changes found in IGTPW_14486 that come from known issues: ### IGT changes ### #### Possible fixes #### * igt@i915_selftest@live: - bat-jsl-1: [DMESG-FAIL][1] ([i915#15394]) -> [PASS][2] +1 other test pass [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8732/bat-jsl-1/igt@i915_selftest@live.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/bat-jsl-1/igt@i915_selftest@live.html [i915#15394]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15394 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8732 -> IGTPW_14486 * Linux: CI_DRM_17928 -> CI_DRM_17930 CI-20190529: 20190529 CI_DRM_17928: ff449f153b0966cfd7a7291670c927f6b6971d2a @ git://anongit.freedesktop.org/gfx-ci/linux CI_DRM_17930: 241994730989320c926da9f2d0a5ec80b48f993d @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_14486: 14486 IGT_8732: 020b7f0da24d0772e73338791288901d717d95f2 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/index.html [-- Attachment #2: Type: text/html, Size: 2262 bytes --] ^ permalink raw reply [flat|nested] 11+ messages in thread
* ✗ Xe.CI.FULL: failure for tests/kms_plane: Refine clamping and modifier skips 2026-02-04 8:39 [PATCH i-g-t 0/2] tests/kms_plane: Refine clamping and modifier skips Pranay Samala ` (3 preceding siblings ...) 2026-02-04 9:46 ` ✓ i915.CI.BAT: " Patchwork @ 2026-02-04 20:16 ` Patchwork 2026-02-04 21:44 ` ✗ i915.CI.Full: " Patchwork 5 siblings, 0 replies; 11+ messages in thread From: Patchwork @ 2026-02-04 20:16 UTC (permalink / raw) To: Pranay Samala; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 46997 bytes --] == Series Details == Series: tests/kms_plane: Refine clamping and modifier skips URL : https://patchwork.freedesktop.org/series/161133/ State : failure == Summary == CI Bug Log - changes from XEIGT_8732_FULL -> XEIGTPW_14486_FULL ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_14486_FULL absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_14486_FULL, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. Participating hosts (2 -> 2) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_14486_FULL: ### IGT changes ### #### Possible regressions #### * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-render: - shard-lnl: NOTRUN -> [INCOMPLETE][1] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14486/shard-lnl-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-render.html * igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier: - shard-lnl: NOTRUN -> [SKIP][2] +1 other test skip [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14486/shard-lnl-8/igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier.html - shard-bmg: NOTRUN -> [SKIP][3] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14486/shard-bmg-7/igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier.html * igt@kms_sharpness_filter@filter-suspend@pipe-b-edp-1-suspend: - shard-lnl: [PASS][4] -> [INCOMPLETE][5] [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8732/shard-lnl-2/igt@kms_sharpness_filter@filter-suspend@pipe-b-edp-1-suspend.html [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14486/shard-lnl-1/igt@kms_sharpness_filter@filter-suspend@pipe-b-edp-1-suspend.html #### Warnings #### * igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier: - shard-lnl: [SKIP][6] ([Intel XE#7130]) -> [SKIP][7] +10 other tests skip [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8732/shard-lnl-4/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier.html [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14486/shard-lnl-2/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier.html * igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier-source-clamping: - shard-lnl: [SKIP][8] ([Intel XE#7130] / [Intel XE#7131]) -> [SKIP][9] +13 other tests skip [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8732/shard-lnl-8/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier-source-clamping.html [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14486/shard-lnl-8/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-cc-modifier-source-clamping.html * igt@kms_plane@pixel-format-y-tiled-ccs-modifier-source-clamping: - shard-bmg: [SKIP][10] ([Intel XE#7111] / [Intel XE#7130] / [Intel XE#7131]) -> [SKIP][11] +12 other tests skip [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8732/shard-bmg-7/igt@kms_plane@pixel-format-y-tiled-ccs-modifier-source-clamping.html [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14486/shard-bmg-9/igt@kms_plane@pixel-format-y-tiled-ccs-modifier-source-clamping.html * igt@kms_plane@pixel-format-y-tiled-modifier: - shard-bmg: [SKIP][12] ([Intel XE#7111] / [Intel XE#7130]) -> [SKIP][13] +10 other tests skip [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8732/shard-bmg-3/igt@kms_plane@pixel-format-y-tiled-modifier.html [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14486/shard-bmg-9/igt@kms_plane@pixel-format-y-tiled-modifier.html Known issues ------------ Here are the changes found in XEIGTPW_14486_FULL that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1: - shard-lnl: [PASS][14] -> [FAIL][15] ([Intel XE#6054]) +3 other tests fail [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8732/shard-lnl-4/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1.html [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14486/shard-lnl-7/igt@kms_async_flips@async-flip-with-page-flip-events-linear-atomic@pipe-c-edp-1.html * igt@kms_atomic_transition@plane-all-transition: - shard-bmg: [PASS][16] -> [INCOMPLETE][17] ([Intel XE#2594]) [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8732/shard-bmg-8/igt@kms_atomic_transition@plane-all-transition.html [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14486/shard-bmg-4/igt@kms_atomic_transition@plane-all-transition.html * igt@kms_big_fb@linear-64bpp-rotate-90: - shard-lnl: NOTRUN -> [SKIP][18] ([Intel XE#1407]) +1 other test skip [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14486/shard-lnl-3/igt@kms_big_fb@linear-64bpp-rotate-90.html * igt@kms_big_fb@x-tiled-32bpp-rotate-270: - shard-bmg: NOTRUN -> [SKIP][19] ([Intel XE#2327]) [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14486/shard-bmg-1/igt@kms_big_fb@x-tiled-32bpp-rotate-270.html * igt@kms_big_fb@y-tiled-32bpp-rotate-0: - shard-lnl: NOTRUN -> [SKIP][20] ([Intel XE#1124]) +4 other tests skip [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14486/shard-lnl-2/igt@kms_big_fb@y-tiled-32bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-addfb-size-overflow: - shard-lnl: NOTRUN -> [SKIP][21] ([Intel XE#1428]) [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14486/shard-lnl-7/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip: - shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#1124]) +2 other tests skip [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14486/shard-bmg-5/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0-hflip.html * igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p: - shard-lnl: NOTRUN -> [SKIP][23] ([Intel XE#2191]) +1 other test skip [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14486/shard-lnl-6/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html - shard-bmg: [PASS][24] -> [SKIP][25] ([Intel XE#2314] / [Intel XE#2894]) [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8732/shard-bmg-3/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14486/shard-bmg-5/igt@kms_bw@connected-linear-tiling-2-displays-1920x1080p.html * igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p: - shard-bmg: NOTRUN -> [SKIP][26] ([Intel XE#2314] / [Intel XE#2894]) [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14486/shard-bmg-5/igt@kms_bw@connected-linear-tiling-2-displays-3840x2160p.html * igt@kms_bw@linear-tiling-2-displays-1920x1080p: - shard-bmg: NOTRUN -> [SKIP][27] ([Intel XE#367]) [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14486/shard-bmg-1/igt@kms_bw@linear-tiling-2-displays-1920x1080p.html * igt@kms_bw@linear-tiling-3-displays-3840x2160p: - shard-lnl: NOTRUN -> [SKIP][28] ([Intel XE#367]) [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14486/shard-lnl-2/igt@kms_bw@linear-tiling-3-displays-3840x2160p.html * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs: - shard-lnl: NOTRUN -> [SKIP][29] ([Intel XE#2887]) +6 other tests skip [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14486/shard-lnl-2/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-mc-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs@pipe-c-dp-2: - shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#2652] / [Intel XE#787]) +7 other tests skip [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14486/shard-bmg-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-lnl-ccs@pipe-c-dp-2.html * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-bmg: NOTRUN -> [INCOMPLETE][31] ([Intel XE#7084]) +1 other test incomplete [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14486/shard-bmg-7/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs: - shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#3432]) [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14486/shard-bmg-4/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-rc-ccs.html * igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs: - shard-bmg: NOTRUN -> [SKIP][33] ([Intel XE#2887]) +2 other tests skip [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14486/shard-bmg-2/igt@kms_ccs@random-ccs-data-y-tiled-gen12-rc-ccs.html * igt@kms_chamelium_color@ctm-0-75: - shard-bmg: NOTRUN -> [SKIP][34] ([Intel XE#2325]) [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14486/shard-bmg-3/igt@kms_chamelium_color@ctm-0-75.html * igt@kms_chamelium_edid@hdmi-edid-change-during-suspend: - shard-lnl: NOTRUN -> [SKIP][35] ([Intel XE#373]) +3 other tests skip [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14486/shard-lnl-3/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html * igt@kms_chamelium_hpd@vga-hpd-fast: - shard-bmg: NOTRUN -> [SKIP][36] ([Intel XE#2252]) +1 other test skip [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14486/shard-bmg-1/igt@kms_chamelium_hpd@vga-hpd-fast.html * igt@kms_color_pipeline@plane-lut1d-ctm3x4@pipe-c-edp-1: - shard-lnl: NOTRUN -> [FAIL][37] ([Intel XE#6968]) +3 other tests fail [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14486/shard-lnl-2/igt@kms_color_pipeline@plane-lut1d-ctm3x4@pipe-c-edp-1.html * igt@kms_content_protection@atomic-dpms: - shard-bmg: NOTRUN -> [SKIP][38] ([Intel XE#2341]) [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14486/shard-bmg-5/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@suspend-resume@pipe-a-dp-2: - shard-bmg: NOTRUN -> [FAIL][39] ([Intel XE#1178] / [Intel XE#3304]) +2 other tests fail [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14486/shard-bmg-9/igt@kms_content_protection@suspend-resume@pipe-a-dp-2.html * igt@kms_content_protection@uevent-hdcp14: - shard-lnl: NOTRUN -> [SKIP][40] ([Intel XE#6973]) [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14486/shard-lnl-7/igt@kms_content_protection@uevent-hdcp14.html * igt@kms_cursor_crc@cursor-onscreen-512x170: - shard-lnl: NOTRUN -> [SKIP][41] ([Intel XE#2321]) [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14486/shard-lnl-5/igt@kms_cursor_crc@cursor-onscreen-512x170.html * igt@kms_cursor_crc@cursor-rapid-movement-64x21: - shard-lnl: NOTRUN -> [SKIP][42] ([Intel XE#1424]) +1 other test skip [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14486/shard-lnl-2/igt@kms_cursor_crc@cursor-rapid-movement-64x21.html * igt@kms_cursor_crc@cursor-sliding-64x21: - shard-bmg: NOTRUN -> [SKIP][43] ([Intel XE#2320]) [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14486/shard-bmg-3/igt@kms_cursor_crc@cursor-sliding-64x21.html * igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size: - shard-bmg: [PASS][44] -> [DMESG-WARN][45] ([Intel XE#5354]) [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8732/shard-bmg-4/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14486/shard-bmg-1/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@cursora-vs-flipb-legacy: - shard-bmg: [PASS][46] -> [SKIP][47] ([Intel XE#2291]) +2 other tests skip [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8732/shard-bmg-7/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14486/shard-bmg-5/igt@kms_cursor_legacy@cursora-vs-flipb-legacy.html * igt@kms_dirtyfb@fbc-dirtyfb-ioctl: - shard-bmg: NOTRUN -> [SKIP][48] ([Intel XE#4210]) [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14486/shard-bmg-2/igt@kms_dirtyfb@fbc-dirtyfb-ioctl.html * igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-out-visible-area: - shard-lnl: NOTRUN -> [SKIP][49] ([Intel XE#4422]) [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14486/shard-lnl-5/igt@kms_fbc_dirty_rect@fbc-dirty-rectangle-out-visible-area.html * igt@kms_feature_discovery@psr2: - shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#2374]) [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14486/shard-bmg-1/igt@kms_feature_discovery@psr2.html * igt@kms_flip@2x-dpms-vs-vblank-race: - shard-lnl: NOTRUN -> [SKIP][51] ([Intel XE#1421]) +3 other tests skip [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14486/shard-lnl-8/igt@kms_flip@2x-dpms-vs-vblank-race.html * igt@kms_flip@2x-nonexisting-fb: - shard-bmg: [PASS][52] -> [SKIP][53] ([Intel XE#2316]) +5 other tests skip [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8732/shard-bmg-9/igt@kms_flip@2x-nonexisting-fb.html [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14486/shard-bmg-5/igt@kms_flip@2x-nonexisting-fb.html * igt@kms_flip@flip-vs-expired-vblank@c-edp1: - shard-lnl: [PASS][54] -> [FAIL][55] ([Intel XE#301] / [Intel XE#3149]) +1 other test fail [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8732/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14486/shard-lnl-3/igt@kms_flip@flip-vs-expired-vblank@c-edp1.html * igt@kms_flip@flip-vs-suspend-interruptible: - shard-bmg: [PASS][56] -> [DMESG-WARN][57] ([Intel XE#3428] / [Intel XE#5208]) [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8732/shard-bmg-1/igt@kms_flip@flip-vs-suspend-interruptible.html [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14486/shard-bmg-3/igt@kms_flip@flip-vs-suspend-interruptible.html * igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a3: - shard-bmg: [PASS][58] -> [DMESG-WARN][59] ([Intel XE#3428]) [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8732/shard-bmg-1/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a3.html [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14486/shard-bmg-3/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a3.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling: - shard-lnl: NOTRUN -> [SKIP][60] ([Intel XE#7178]) [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14486/shard-lnl-5/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling.html * igt@kms_frontbuffer_tracking@drrs-1p-offscreen-pri-indfb-draw-mmap-wc: - shard-lnl: NOTRUN -> [SKIP][61] ([Intel XE#6312]) [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14486/shard-lnl-4/igt@kms_frontbuffer_tracking@drrs-1p-offscreen-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-fullscreen: - shard-lnl: NOTRUN -> [SKIP][62] ([Intel XE#651]) [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14486/shard-lnl-3/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][63] ([Intel XE#2311]) +6 other tests skip [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14486/shard-bmg-7/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-argb161616f-draw-blt: - shard-bmg: NOTRUN -> [SKIP][64] ([Intel XE#7061]) +1 other test skip [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14486/shard-bmg-7/igt@kms_frontbuffer_tracking@fbc-argb161616f-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render: - shard-bmg: NOTRUN -> [SKIP][65] ([Intel XE#4141]) [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14486/shard-bmg-2/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-render.html * igt@kms_frontbuffer_tracking@fbcdrrs-abgr161616f-draw-blt: - shard-lnl: NOTRUN -> [SKIP][66] ([Intel XE#7061]) +2 other tests skip [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14486/shard-lnl-2/igt@kms_frontbuffer_tracking@fbcdrrs-abgr161616f-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt: - shard-bmg: NOTRUN -> [SKIP][67] ([Intel XE#2312]) +2 other tests skip [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14486/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt: - shard-lnl: NOTRUN -> [SKIP][68] ([Intel XE#656]) +14 other tests skip [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14486/shard-lnl-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-onoff: - shard-bmg: NOTRUN -> [SKIP][69] ([Intel XE#2313]) +3 other tests skip [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14486/shard-bmg-1/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-onoff.html * igt@kms_hdmi_inject@inject-audio: - shard-lnl: NOTRUN -> [SKIP][70] ([Intel XE#1470] / [Intel XE#2853]) [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14486/shard-lnl-2/igt@kms_hdmi_inject@inject-audio.html * igt@kms_joiner@invalid-modeset-force-big-joiner: - shard-bmg: [PASS][71] -> [SKIP][72] ([Intel XE#7086]) [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8732/shard-bmg-1/igt@kms_joiner@invalid-modeset-force-big-joiner.html [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14486/shard-bmg-5/igt@kms_joiner@invalid-modeset-force-big-joiner.html * igt@kms_plane_lowres@tiling-none@pipe-b-edp-1: - shard-lnl: NOTRUN -> [SKIP][73] ([Intel XE#599]) +3 other tests skip [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14486/shard-lnl-8/igt@kms_plane_lowres@tiling-none@pipe-b-edp-1.html * igt@kms_plane_multiple@2x-tiling-4: - shard-lnl: NOTRUN -> [SKIP][74] ([Intel XE#4596]) [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14486/shard-lnl-4/igt@kms_plane_multiple@2x-tiling-4.html * igt@kms_plane_multiple@2x-tiling-none: - shard-bmg: [PASS][75] -> [SKIP][76] ([Intel XE#4596]) [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8732/shard-bmg-9/igt@kms_plane_multiple@2x-tiling-none.html [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14486/shard-bmg-5/igt@kms_plane_multiple@2x-tiling-none.html * igt@kms_plane_multiple@2x-tiling-x: - shard-bmg: NOTRUN -> [SKIP][77] ([Intel XE#4596]) [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14486/shard-bmg-5/igt@kms_plane_multiple@2x-tiling-x.html * igt@kms_plane_scaling@2x-scaler-multi-pipe: - shard-bmg: [PASS][78] -> [SKIP][79] ([Intel XE#2571]) [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8732/shard-bmg-8/igt@kms_plane_scaling@2x-scaler-multi-pipe.html [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14486/shard-bmg-5/igt@kms_plane_scaling@2x-scaler-multi-pipe.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b: - shard-bmg: NOTRUN -> [SKIP][80] ([Intel XE#6886]) +4 other tests skip [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14486/shard-bmg-5/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-b.html * igt@kms_pm_backlight@fade-with-dpms: - shard-bmg: NOTRUN -> [SKIP][81] ([Intel XE#870]) [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14486/shard-bmg-7/igt@kms_pm_backlight@fade-with-dpms.html * igt@kms_pm_dc@dc3co-vpb-simulation: - shard-lnl: NOTRUN -> [SKIP][82] ([Intel XE#736]) [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14486/shard-lnl-6/igt@kms_pm_dc@dc3co-vpb-simulation.html * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-lnl: NOTRUN -> [SKIP][83] ([Intel XE#1439] / [Intel XE#836]) [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14486/shard-lnl-2/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area: - shard-lnl: NOTRUN -> [SKIP][84] ([Intel XE#1406] / [Intel XE#2893]) [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14486/shard-lnl-3/igt@kms_psr2_sf@fbc-pr-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf: - shard-lnl: NOTRUN -> [SKIP][85] ([Intel XE#1406] / [Intel XE#2893] / [Intel XE#4608]) [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14486/shard-lnl-7/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf@pipe-b-edp-1: - shard-lnl: NOTRUN -> [SKIP][86] ([Intel XE#1406] / [Intel XE#4608]) +1 other test skip [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14486/shard-lnl-7/igt@kms_psr2_sf@fbc-psr2-cursor-plane-move-continuous-exceed-fully-sf@pipe-b-edp-1.html * igt@kms_psr2_sf@psr2-cursor-plane-update-sf: - shard-bmg: NOTRUN -> [SKIP][87] ([Intel XE#1406] / [Intel XE#1489]) +1 other test skip [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14486/shard-bmg-8/igt@kms_psr2_sf@psr2-cursor-plane-update-sf.html * igt@kms_psr@fbc-psr2-sprite-blt: - shard-lnl: NOTRUN -> [SKIP][88] ([Intel XE#1406]) +1 other test skip [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14486/shard-lnl-7/igt@kms_psr@fbc-psr2-sprite-blt.html * igt@kms_psr@fbc-psr2-sprite-blt@edp-1: - shard-lnl: NOTRUN -> [SKIP][89] ([Intel XE#1406] / [Intel XE#4609]) [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14486/shard-lnl-7/igt@kms_psr@fbc-psr2-sprite-blt@edp-1.html * igt@kms_psr@psr2-no-drrs: - shard-bmg: NOTRUN -> [SKIP][90] ([Intel XE#1406] / [Intel XE#2234] / [Intel XE#2850]) +2 other tests skip [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14486/shard-bmg-9/igt@kms_psr@psr2-no-drrs.html * igt@kms_setmode@invalid-clone-single-crtc: - shard-bmg: [PASS][91] -> [SKIP][92] ([Intel XE#1435]) [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8732/shard-bmg-8/igt@kms_setmode@invalid-clone-single-crtc.html [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14486/shard-bmg-5/igt@kms_setmode@invalid-clone-single-crtc.html * igt@kms_sharpness_filter@filter-suspend: - shard-lnl: [PASS][93] -> [ABORT][94] ([Intel XE#1727] / [Intel XE#7169]) [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8732/shard-lnl-2/igt@kms_sharpness_filter@filter-suspend.html [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14486/shard-lnl-1/igt@kms_sharpness_filter@filter-suspend.html * igt@kms_sharpness_filter@filter-suspend@pipe-a-edp-1-suspend: - shard-lnl: [PASS][95] -> [ABORT][96] ([Intel XE#7169]) [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8732/shard-lnl-2/igt@kms_sharpness_filter@filter-suspend@pipe-a-edp-1-suspend.html [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14486/shard-lnl-1/igt@kms_sharpness_filter@filter-suspend@pipe-a-edp-1-suspend.html * igt@kms_sharpness_filter@filter-tap: - shard-bmg: NOTRUN -> [SKIP][97] ([Intel XE#6503]) [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14486/shard-bmg-8/igt@kms_sharpness_filter@filter-tap.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-lnl: NOTRUN -> [SKIP][98] ([Intel XE#362]) [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14486/shard-lnl-8/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html - shard-bmg: NOTRUN -> [SKIP][99] ([Intel XE#2426]) [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14486/shard-bmg-7/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_vrr@flipline: - shard-bmg: NOTRUN -> [SKIP][100] ([Intel XE#1499]) [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14486/shard-bmg-10/igt@kms_vrr@flipline.html * igt@kms_vrr@seamless-rr-switch-vrr: - shard-lnl: NOTRUN -> [SKIP][101] ([Intel XE#1499]) [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14486/shard-lnl-1/igt@kms_vrr@seamless-rr-switch-vrr.html * igt@xe_eudebug@basic-vm-access-parameters-userptr: - shard-lnl: NOTRUN -> [SKIP][102] ([Intel XE#4837]) +1 other test skip [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14486/shard-lnl-1/igt@xe_eudebug@basic-vm-access-parameters-userptr.html * igt@xe_eudebug@discovery-empty-clients: - shard-bmg: NOTRUN -> [SKIP][103] ([Intel XE#4837]) +4 other tests skip [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14486/shard-bmg-2/igt@xe_eudebug@discovery-empty-clients.html * igt@xe_eudebug_online@preempt-breakpoint: - shard-bmg: NOTRUN -> [SKIP][104] ([Intel XE#4837] / [Intel XE#6665]) [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14486/shard-bmg-10/igt@xe_eudebug_online@preempt-breakpoint.html * igt@xe_eudebug_online@stopped-thread: - shard-lnl: NOTRUN -> [SKIP][105] ([Intel XE#4837] / [Intel XE#6665]) [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14486/shard-lnl-5/igt@xe_eudebug_online@stopped-thread.html * igt@xe_evict@evict-beng-mixed-many-threads-large: - shard-lnl: NOTRUN -> [SKIP][106] ([Intel XE#688]) [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14486/shard-lnl-8/igt@xe_evict@evict-beng-mixed-many-threads-large.html * igt@xe_exec_basic@multigpu-no-exec-basic-defer-bind: - shard-lnl: NOTRUN -> [SKIP][107] ([Intel XE#1392]) +3 other tests skip [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14486/shard-lnl-8/igt@xe_exec_basic@multigpu-no-exec-basic-defer-bind.html * igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-rebind: - shard-bmg: NOTRUN -> [SKIP][108] ([Intel XE#2322]) +2 other tests skip [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14486/shard-bmg-5/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue-rebind.html * igt@xe_exec_fault_mode@many-execqueues-multi-queue-prefetch: - shard-lnl: NOTRUN -> [SKIP][109] ([Intel XE#7136]) +5 other tests skip [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14486/shard-lnl-5/igt@xe_exec_fault_mode@many-execqueues-multi-queue-prefetch.html * igt@xe_exec_fault_mode@twice-multi-queue-userptr-invalidate-race-prefetch: - shard-bmg: NOTRUN -> [SKIP][110] ([Intel XE#7136]) [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14486/shard-bmg-9/igt@xe_exec_fault_mode@twice-multi-queue-userptr-invalidate-race-prefetch.html * igt@xe_exec_multi_queue@many-queues-preempt-mode-close-fd-smem: - shard-lnl: NOTRUN -> [SKIP][111] ([Intel XE#6874]) +11 other tests skip [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14486/shard-lnl-4/igt@xe_exec_multi_queue@many-queues-preempt-mode-close-fd-smem.html * igt@xe_exec_multi_queue@two-queues-basic-smem: - shard-bmg: NOTRUN -> [SKIP][112] ([Intel XE#6874]) +6 other tests skip [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14486/shard-bmg-9/igt@xe_exec_multi_queue@two-queues-basic-smem.html * igt@xe_exec_system_allocator@threads-many-large-mmap-new-huge: - shard-bmg: NOTRUN -> [SKIP][113] ([Intel XE#4943]) +6 other tests skip [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14486/shard-bmg-3/igt@xe_exec_system_allocator@threads-many-large-mmap-new-huge.html * igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap-free-huge: - shard-lnl: NOTRUN -> [SKIP][114] ([Intel XE#4943]) +7 other tests skip [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14486/shard-lnl-5/igt@xe_exec_system_allocator@threads-shared-vm-many-execqueues-mmap-free-huge.html * igt@xe_exec_threads@threads-many-queues: - shard-bmg: NOTRUN -> [FAIL][115] ([Intel XE#7166]) [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14486/shard-bmg-3/igt@xe_exec_threads@threads-many-queues.html * igt@xe_exec_threads@threads-multi-queue-cm-fd-userptr-invalidate-race: - shard-lnl: NOTRUN -> [SKIP][116] ([Intel XE#7138]) +1 other test skip [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14486/shard-lnl-8/igt@xe_exec_threads@threads-multi-queue-cm-fd-userptr-invalidate-race.html * igt@xe_exec_threads@threads-multi-queue-mixed-basic: - shard-bmg: NOTRUN -> [SKIP][117] ([Intel XE#7138]) [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14486/shard-bmg-1/igt@xe_exec_threads@threads-multi-queue-mixed-basic.html * igt@xe_module_load@force-load: - shard-bmg: NOTRUN -> [DMESG-WARN][118] ([Intel XE#7145]) [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14486/shard-bmg-2/igt@xe_module_load@force-load.html * igt@xe_multigpu_svm@mgpu-pagefault-conflict: - shard-bmg: NOTRUN -> [SKIP][119] ([Intel XE#6964]) [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14486/shard-bmg-5/igt@xe_multigpu_svm@mgpu-pagefault-conflict.html * igt@xe_multigpu_svm@mgpu-xgpu-access-prefetch: - shard-lnl: NOTRUN -> [SKIP][120] ([Intel XE#6964]) [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14486/shard-lnl-1/igt@xe_multigpu_svm@mgpu-xgpu-access-prefetch.html * igt@xe_pm@d3cold-basic-exec: - shard-bmg: NOTRUN -> [SKIP][121] ([Intel XE#2284]) [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14486/shard-bmg-5/igt@xe_pm@d3cold-basic-exec.html * igt@xe_pm@s3-d3cold-basic-exec: - shard-lnl: NOTRUN -> [SKIP][122] ([Intel XE#2284] / [Intel XE#366]) [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14486/shard-lnl-3/igt@xe_pm@s3-d3cold-basic-exec.html * igt@xe_pmu@fn-engine-activity-sched-if-idle: - shard-lnl: NOTRUN -> [SKIP][123] ([Intel XE#4650]) [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14486/shard-lnl-3/igt@xe_pmu@fn-engine-activity-sched-if-idle.html * igt@xe_pxp@regular-src-to-pxp-dest-rendercopy: - shard-bmg: NOTRUN -> [SKIP][124] ([Intel XE#4733]) [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14486/shard-bmg-3/igt@xe_pxp@regular-src-to-pxp-dest-rendercopy.html * igt@xe_query@multigpu-query-engines: - shard-lnl: NOTRUN -> [SKIP][125] ([Intel XE#944]) [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14486/shard-lnl-5/igt@xe_query@multigpu-query-engines.html * igt@xe_sriov_auto_provisioning@selfconfig-reprovision-reduce-numvfs: - shard-lnl: NOTRUN -> [SKIP][126] ([Intel XE#4130]) [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14486/shard-lnl-7/igt@xe_sriov_auto_provisioning@selfconfig-reprovision-reduce-numvfs.html * igt@xe_sriov_flr@flr-vfs-parallel: - shard-bmg: [PASS][127] -> [FAIL][128] ([Intel XE#6569]) [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8732/shard-bmg-4/igt@xe_sriov_flr@flr-vfs-parallel.html [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14486/shard-bmg-1/igt@xe_sriov_flr@flr-vfs-parallel.html * igt@xe_vm@mixed-userptr-binds-3145728: - shard-bmg: NOTRUN -> [ABORT][129] ([Intel XE#7169]) [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14486/shard-bmg-2/igt@xe_vm@mixed-userptr-binds-3145728.html #### Possible fixes #### * igt@kms_color_pipeline@plane-lut1d-ctm3x4@pipe-d-dp-2: - shard-bmg: [DMESG-WARN][130] ([Intel XE#3428]) -> [PASS][131] +3 other tests pass [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8732/shard-bmg-3/igt@kms_color_pipeline@plane-lut1d-ctm3x4@pipe-d-dp-2.html [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14486/shard-bmg-1/igt@kms_color_pipeline@plane-lut1d-ctm3x4@pipe-d-dp-2.html * igt@kms_cursor_legacy@cursorb-vs-flipb-legacy: - shard-bmg: [SKIP][132] ([Intel XE#2291]) -> [PASS][133] +2 other tests pass [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8732/shard-bmg-5/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14486/shard-bmg-7/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-bmg: [DMESG-WARN][134] ([Intel XE#5354]) -> [PASS][135] [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8732/shard-bmg-9/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14486/shard-bmg-4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@flip-vs-cursor-legacy: - shard-bmg: [FAIL][136] ([Intel XE#4633]) -> [PASS][137] [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8732/shard-bmg-8/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14486/shard-bmg-7/igt@kms_cursor_legacy@flip-vs-cursor-legacy.html * igt@kms_flip@2x-busy-flip: - shard-bmg: [SKIP][138] ([Intel XE#2316]) -> [PASS][139] +2 other tests pass [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8732/shard-bmg-5/igt@kms_flip@2x-busy-flip.html [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14486/shard-bmg-9/igt@kms_flip@2x-busy-flip.html * igt@kms_flip@2x-flip-vs-blocking-wf-vblank@ab-dp2-hdmi-a3: - shard-bmg: [FAIL][140] ([Intel XE#6266]) -> [PASS][141] +1 other test pass [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8732/shard-bmg-9/igt@kms_flip@2x-flip-vs-blocking-wf-vblank@ab-dp2-hdmi-a3.html [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14486/shard-bmg-10/igt@kms_flip@2x-flip-vs-blocking-wf-vblank@ab-dp2-hdmi-a3.html * igt@kms_hdr@static-toggle-dpms: - shard-bmg: [SKIP][142] ([Intel XE#1503]) -> [PASS][143] +1 other test pass [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8732/shard-bmg-5/igt@kms_hdr@static-toggle-dpms.html [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14486/shard-bmg-2/igt@kms_hdr@static-toggle-dpms.html * igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1: - shard-lnl: [FAIL][144] ([Intel XE#2142]) -> [PASS][145] +1 other test pass [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8732/shard-lnl-8/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14486/shard-lnl-2/igt@kms_vrr@seamless-rr-switch-virtual@pipe-a-edp-1.html #### Warnings #### * igt@kms_content_protection@legacy-hdcp14: - shard-bmg: [FAIL][146] ([Intel XE#3304]) -> [SKIP][147] ([Intel XE#7194]) [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8732/shard-bmg-2/igt@kms_content_protection@legacy-hdcp14.html [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14486/shard-bmg-5/igt@kms_content_protection@legacy-hdcp14.html * igt@kms_content_protection@suspend-resume: - shard-bmg: [SKIP][148] ([Intel XE#6705]) -> [FAIL][149] ([Intel XE#1178] / [Intel XE#3304]) [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8732/shard-bmg-5/igt@kms_content_protection@suspend-resume.html [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14486/shard-bmg-9/igt@kms_content_protection@suspend-resume.html * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt: - shard-bmg: [SKIP][150] ([Intel XE#2312]) -> [SKIP][151] ([Intel XE#2311]) +13 other tests skip [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8732/shard-bmg-5/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14486/shard-bmg-9/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt: - shard-bmg: [SKIP][152] ([Intel XE#2312]) -> [SKIP][153] ([Intel XE#4141]) +4 other tests skip [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8732/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14486/shard-bmg-10/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render: - shard-bmg: [SKIP][154] ([Intel XE#4141]) -> [SKIP][155] ([Intel XE#2312]) +4 other tests skip [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8732/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14486/shard-bmg-5/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render: - shard-bmg: [SKIP][156] ([Intel XE#2311]) -> [SKIP][157] ([Intel XE#2312]) +12 other tests skip [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8732/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render.html [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14486/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt: - shard-bmg: [SKIP][158] ([Intel XE#2312]) -> [SKIP][159] ([Intel XE#2313]) +10 other tests skip [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8732/shard-bmg-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt.html [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14486/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc: - shard-bmg: [SKIP][160] ([Intel XE#2313]) -> [SKIP][161] ([Intel XE#2312]) +9 other tests skip [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8732/shard-bmg-9/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc.html [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14486/shard-bmg-5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-cur-indfb-draw-mmap-wc.html [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178 [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392 [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406 [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407 [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421 [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424 [Intel XE#1428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1428 [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435 [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439 [Intel XE#1470]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1470 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499 [Intel XE#1503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1503 [Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727 [Intel XE#2142]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2142 [Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252 [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284 [Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291 [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 [Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312 [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313 [Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314 [Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316 [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320 [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321 [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322 [Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325 [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327 [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341 [Intel XE#2374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374 [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426 [Intel XE#2571]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2571 [Intel XE#2594]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2594 [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#2853]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2853 [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893 [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#3149]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3149 [Intel XE#3304]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3304 [Intel XE#3428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3428 [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432 [Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362 [Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366 [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367 [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373 [Intel XE#4130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130 [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141 [Intel XE#4210]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4210 [Intel XE#4422]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4422 [Intel XE#4596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4596 [Intel XE#4608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4608 [Intel XE#4609]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4609 [Intel XE#4633]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4633 [Intel XE#4650]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4650 [Intel XE#4733]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4733 [Intel XE#4837]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4837 [Intel XE#4943]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4943 [Intel XE#5208]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5208 [Intel XE#5354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/5354 [Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599 [Intel XE#6054]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6054 [Intel XE#6266]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6266 [Intel XE#6312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6312 [Intel XE#6503]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6503 [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651 [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656 [Intel XE#6569]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6569 [Intel XE#6665]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6665 [Intel XE#6705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6705 [Intel XE#6874]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6874 [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#6886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6886 [Intel XE#6964]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6964 [Intel XE#6968]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6968 [Intel XE#6973]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/6973 [Intel XE#7061]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7061 [Intel XE#7084]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7084 [Intel XE#7086]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7086 [Intel XE#7111]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7111 [Intel XE#7130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7130 [Intel XE#7131]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7131 [Intel XE#7136]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7136 [Intel XE#7138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7138 [Intel XE#7145]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7145 [Intel XE#7166]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7166 [Intel XE#7169]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7169 [Intel XE#7178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7178 [Intel XE#7194]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/7194 [Intel XE#736]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/736 [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787 [Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836 [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 Build changes ------------- * IGT: IGT_8732 -> IGTPW_14486 * Linux: xe-4493-ff449f153b0966cfd7a7291670c927f6b6971d2a -> xe-4495-241994730989320c926da9f2d0a5ec80b48f993d IGTPW_14486: 14486 IGT_8732: 020b7f0da24d0772e73338791288901d717d95f2 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-4493-ff449f153b0966cfd7a7291670c927f6b6971d2a: ff449f153b0966cfd7a7291670c927f6b6971d2a xe-4495-241994730989320c926da9f2d0a5ec80b48f993d: 241994730989320c926da9f2d0a5ec80b48f993d == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_14486/index.html [-- Attachment #2: Type: text/html, Size: 54020 bytes --] ^ permalink raw reply [flat|nested] 11+ messages in thread
* ✗ i915.CI.Full: failure for tests/kms_plane: Refine clamping and modifier skips 2026-02-04 8:39 [PATCH i-g-t 0/2] tests/kms_plane: Refine clamping and modifier skips Pranay Samala ` (4 preceding siblings ...) 2026-02-04 20:16 ` ✗ Xe.CI.FULL: failure " Patchwork @ 2026-02-04 21:44 ` Patchwork 5 siblings, 0 replies; 11+ messages in thread From: Patchwork @ 2026-02-04 21:44 UTC (permalink / raw) To: Pranay Samala; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 126411 bytes --] == Series Details == Series: tests/kms_plane: Refine clamping and modifier skips URL : https://patchwork.freedesktop.org/series/161133/ State : failure == Summary == CI Bug Log - changes from CI_DRM_17930_full -> IGTPW_14486_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_14486_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_14486_full, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/index.html Participating hosts (10 -> 10) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_14486_full: ### IGT changes ### #### Possible regressions #### * igt@fbdev@write: - shard-dg2: [PASS][1] -> [FAIL][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-dg2-5/igt@fbdev@write.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-dg2-11/igt@fbdev@write.html * igt@kms_hdmi_inject@inject-audio: - shard-mtlp: [PASS][3] -> [SKIP][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-mtlp-4/igt@kms_hdmi_inject@inject-audio.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-mtlp-1/igt@kms_hdmi_inject@inject-audio.html * igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping: - shard-rkl: NOTRUN -> [SKIP][5] +1 other test skip [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-rkl-3/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping.html * igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping: - shard-dg1: NOTRUN -> [SKIP][6] +1 other test skip [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-dg1-12/igt@kms_plane@pixel-format-4-tiled-lnl-ccs-modifier-source-clamping.html * igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier: - shard-tglu: NOTRUN -> [SKIP][7] +2 other tests skip [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-tglu-4/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier.html * igt@kms_plane@pixel-format-yf-tiled-ccs-modifier: - shard-dg2: NOTRUN -> [SKIP][8] +1 other test skip [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-dg2-4/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier.html * igt@kms_plane@pixel-format-yf-tiled-modifier: - shard-tglu-1: NOTRUN -> [SKIP][9] +2 other tests skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-tglu-1/igt@kms_plane@pixel-format-yf-tiled-modifier.html #### Warnings #### * igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier: - shard-mtlp: [SKIP][10] ([i915#15608] / [i915#8825]) -> [SKIP][11] +11 other tests skip [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-mtlp-5/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-mtlp-6/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier.html * igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping: - shard-tglu-1: [SKIP][12] ([i915#15608] / [i915#15609] / [i915#8825]) -> [SKIP][13] [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-tglu-1/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-tglu-1/igt@kms_plane@pixel-format-4-tiled-bmg-ccs-modifier-source-clamping.html * igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier-source-clamping: - shard-tglu: [SKIP][14] ([i915#15608] / [i915#15609] / [i915#8825]) -> [SKIP][15] +7 other tests skip [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-tglu-3/igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier-source-clamping.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-tglu-8/igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier-source-clamping.html - shard-mtlp: [SKIP][16] ([i915#15608] / [i915#15609] / [i915#8825]) -> [SKIP][17] +9 other tests skip [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-mtlp-1/igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier-source-clamping.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-mtlp-3/igt@kms_plane@pixel-format-4-tiled-dg2-mc-ccs-modifier-source-clamping.html * igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier: - shard-tglu: [SKIP][18] ([i915#15608] / [i915#8825]) -> [SKIP][19] +8 other tests skip [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-tglu-8/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-tglu-3/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier.html * igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier-source-clamping: - shard-dg2: [SKIP][20] ([i915#15608] / [i915#15609] / [i915#8825]) -> [SKIP][21] +10 other tests skip [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-dg2-7/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier-source-clamping.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-dg2-1/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier-source-clamping.html * igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier: - shard-rkl: [SKIP][22] ([i915#15608] / [i915#8825]) -> [SKIP][23] +9 other tests skip [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-2/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-rkl-7/igt@kms_plane@pixel-format-4-tiled-mtl-mc-ccs-modifier.html * igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping: - shard-rkl: [SKIP][24] ([i915#15608] / [i915#15609] / [i915#8825]) -> [SKIP][25] +6 other tests skip [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-7/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-rkl-2/igt@kms_plane@pixel-format-4-tiled-mtl-rc-ccs-modifier-source-clamping.html * igt@kms_plane@pixel-format-y-tiled-ccs-modifier: - shard-dg2: [SKIP][26] ([i915#15608] / [i915#8825]) -> [SKIP][27] +12 other tests skip [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-dg2-11/igt@kms_plane@pixel-format-y-tiled-ccs-modifier.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-dg2-3/igt@kms_plane@pixel-format-y-tiled-ccs-modifier.html * igt@kms_plane@pixel-format-yf-tiled-ccs-modifier-source-clamping: - shard-dg1: [SKIP][28] ([i915#15608] / [i915#15609] / [i915#8825]) -> [SKIP][29] +10 other tests skip [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-dg1-13/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier-source-clamping.html [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-dg1-14/igt@kms_plane@pixel-format-yf-tiled-ccs-modifier-source-clamping.html * igt@kms_plane@pixel-format-yf-tiled-modifier: - shard-dg1: [SKIP][30] ([i915#15608] / [i915#8825]) -> [SKIP][31] +11 other tests skip [30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-dg1-12/igt@kms_plane@pixel-format-yf-tiled-modifier.html [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-dg1-14/igt@kms_plane@pixel-format-yf-tiled-modifier.html Known issues ------------ Here are the changes found in IGTPW_14486_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@crc32: - shard-tglu-1: NOTRUN -> [SKIP][32] ([i915#6230]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-tglu-1/igt@api_intel_bb@crc32.html * igt@device_reset@unbind-cold-reset-rebind: - shard-tglu: NOTRUN -> [SKIP][33] ([i915#11078]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-tglu-3/igt@device_reset@unbind-cold-reset-rebind.html * igt@gem_bad_reloc@negative-reloc-lut: - shard-rkl: NOTRUN -> [SKIP][34] ([i915#3281]) +6 other tests skip [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-rkl-5/igt@gem_bad_reloc@negative-reloc-lut.html * igt@gem_basic@multigpu-create-close: - shard-tglu-1: NOTRUN -> [SKIP][35] ([i915#7697]) +1 other test skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-tglu-1/igt@gem_basic@multigpu-create-close.html * igt@gem_ccs@ctrl-surf-copy: - shard-tglu-1: NOTRUN -> [SKIP][36] ([i915#3555] / [i915#9323]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-tglu-1/igt@gem_ccs@ctrl-surf-copy.html * igt@gem_ccs@large-ctrl-surf-copy: - shard-tglu: NOTRUN -> [SKIP][37] ([i915#13008]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-tglu-5/igt@gem_ccs@large-ctrl-surf-copy.html * igt@gem_create@create-ext-cpu-access-sanity-check: - shard-rkl: NOTRUN -> [SKIP][38] ([i915#6335]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-rkl-2/igt@gem_create@create-ext-cpu-access-sanity-check.html * igt@gem_ctx_persistence@heartbeat-close: - shard-dg2: NOTRUN -> [SKIP][39] ([i915#8555]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-dg2-5/igt@gem_ctx_persistence@heartbeat-close.html - shard-dg1: NOTRUN -> [SKIP][40] ([i915#8555]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-dg1-12/igt@gem_ctx_persistence@heartbeat-close.html * igt@gem_ctx_persistence@saturated-hostile-nopreempt: - shard-dg2: NOTRUN -> [SKIP][41] ([i915#5882]) +7 other tests skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-dg2-7/igt@gem_ctx_persistence@saturated-hostile-nopreempt.html * igt@gem_ctx_sseu@invalid-sseu: - shard-tglu-1: NOTRUN -> [SKIP][42] ([i915#280]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-tglu-1/igt@gem_ctx_sseu@invalid-sseu.html * igt@gem_eio@in-flight-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][43] ([i915#13390]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-glk5/igt@gem_eio@in-flight-suspend.html * igt@gem_exec_balancer@bonded-pair: - shard-dg1: NOTRUN -> [SKIP][44] ([i915#4771]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-dg1-13/igt@gem_exec_balancer@bonded-pair.html * igt@gem_exec_balancer@parallel-ordering: - shard-tglu-1: NOTRUN -> [SKIP][45] ([i915#4525]) +2 other tests skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-tglu-1/igt@gem_exec_balancer@parallel-ordering.html * igt@gem_exec_balancer@parallel-out-fence: - shard-tglu: NOTRUN -> [SKIP][46] ([i915#4525]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-tglu-4/igt@gem_exec_balancer@parallel-out-fence.html * igt@gem_exec_big@single: - shard-tglu: [PASS][47] -> [ABORT][48] ([i915#11713]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-tglu-5/igt@gem_exec_big@single.html [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-tglu-9/igt@gem_exec_big@single.html * igt@gem_exec_flush@basic-wb-ro-before-default: - shard-dg2: NOTRUN -> [SKIP][49] ([i915#3539] / [i915#4852]) +1 other test skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-dg2-8/igt@gem_exec_flush@basic-wb-ro-before-default.html * igt@gem_exec_flush@basic-wb-ro-default: - shard-dg1: NOTRUN -> [SKIP][50] ([i915#3539] / [i915#4852]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-dg1-18/igt@gem_exec_flush@basic-wb-ro-default.html * igt@gem_exec_reloc@basic-gtt-read: - shard-mtlp: NOTRUN -> [SKIP][51] ([i915#3281]) +2 other tests skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-mtlp-2/igt@gem_exec_reloc@basic-gtt-read.html * igt@gem_exec_reloc@basic-write-read-active: - shard-dg2: NOTRUN -> [SKIP][52] ([i915#3281]) +8 other tests skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-dg2-1/igt@gem_exec_reloc@basic-write-read-active.html - shard-rkl: NOTRUN -> [SKIP][53] ([i915#14544] / [i915#3281]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-rkl-6/igt@gem_exec_reloc@basic-write-read-active.html - shard-dg1: NOTRUN -> [SKIP][54] ([i915#3281]) +5 other tests skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-dg1-17/igt@gem_exec_reloc@basic-write-read-active.html * igt@gem_exec_schedule@preempt-queue-contexts: - shard-dg1: NOTRUN -> [SKIP][55] ([i915#4812]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-dg1-16/igt@gem_exec_schedule@preempt-queue-contexts.html - shard-dg2: NOTRUN -> [SKIP][56] ([i915#4537] / [i915#4812]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-dg2-7/igt@gem_exec_schedule@preempt-queue-contexts.html * igt@gem_exec_suspend@basic-s3: - shard-rkl: [PASS][57] -> [INCOMPLETE][58] ([i915#13356]) +1 other test incomplete [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-4/igt@gem_exec_suspend@basic-s3.html [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-rkl-6/igt@gem_exec_suspend@basic-s3.html * igt@gem_fenced_exec_thrash@2-spare-fences: - shard-dg2: NOTRUN -> [SKIP][59] ([i915#4860]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-dg2-1/igt@gem_fenced_exec_thrash@2-spare-fences.html - shard-dg1: NOTRUN -> [SKIP][60] ([i915#4860]) [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-dg1-17/igt@gem_fenced_exec_thrash@2-spare-fences.html * igt@gem_lmem_evict@dontneed-evict-race: - shard-tglu: NOTRUN -> [SKIP][61] ([i915#4613] / [i915#7582]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-tglu-7/igt@gem_lmem_evict@dontneed-evict-race.html * igt@gem_lmem_swapping@parallel-random: - shard-rkl: NOTRUN -> [SKIP][62] ([i915#14544] / [i915#4613]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-rkl-6/igt@gem_lmem_swapping@parallel-random.html * igt@gem_lmem_swapping@parallel-random-verify: - shard-rkl: NOTRUN -> [SKIP][63] ([i915#4613]) +1 other test skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-rkl-2/igt@gem_lmem_swapping@parallel-random-verify.html - shard-tglu-1: NOTRUN -> [SKIP][64] ([i915#4613]) +1 other test skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-tglu-1/igt@gem_lmem_swapping@parallel-random-verify.html * igt@gem_lmem_swapping@random-engines: - shard-glk: NOTRUN -> [SKIP][65] ([i915#4613]) +3 other tests skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-glk9/igt@gem_lmem_swapping@random-engines.html - shard-tglu: NOTRUN -> [SKIP][66] ([i915#4613]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-tglu-7/igt@gem_lmem_swapping@random-engines.html * igt@gem_mmap@bad-offset: - shard-dg2: NOTRUN -> [SKIP][67] ([i915#4083]) +2 other tests skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-dg2-3/igt@gem_mmap@bad-offset.html * igt@gem_mmap_gtt@flink-race: - shard-mtlp: NOTRUN -> [SKIP][68] ([i915#4077]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-mtlp-8/igt@gem_mmap_gtt@flink-race.html * igt@gem_mmap_offset@clear-via-pagefault: - shard-mtlp: [PASS][69] -> [ABORT][70] ([i915#14809]) +1 other test abort [69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-mtlp-8/igt@gem_mmap_offset@clear-via-pagefault.html [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-mtlp-8/igt@gem_mmap_offset@clear-via-pagefault.html * igt@gem_mmap_wc@read-write-distinct: - shard-dg1: NOTRUN -> [SKIP][71] ([i915#4083]) +1 other test skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-dg1-14/igt@gem_mmap_wc@read-write-distinct.html * igt@gem_partial_pwrite_pread@writes-after-reads: - shard-rkl: NOTRUN -> [SKIP][72] ([i915#3282]) +2 other tests skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-rkl-5/igt@gem_partial_pwrite_pread@writes-after-reads.html - shard-dg1: NOTRUN -> [SKIP][73] ([i915#3282]) +1 other test skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-dg1-16/igt@gem_partial_pwrite_pread@writes-after-reads.html * igt@gem_partial_pwrite_pread@writes-after-reads-uncached: - shard-rkl: NOTRUN -> [SKIP][74] ([i915#14544] / [i915#3282]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-rkl-6/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html * igt@gem_pread@exhaustion: - shard-tglu: NOTRUN -> [WARN][75] ([i915#2658]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-tglu-5/igt@gem_pread@exhaustion.html * igt@gem_pwrite@basic-exhaustion: - shard-dg2: NOTRUN -> [SKIP][76] ([i915#3282]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-dg2-6/igt@gem_pwrite@basic-exhaustion.html - shard-tglu-1: NOTRUN -> [WARN][77] ([i915#2658]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-tglu-1/igt@gem_pwrite@basic-exhaustion.html - shard-snb: NOTRUN -> [WARN][78] ([i915#2658]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-snb1/igt@gem_pwrite@basic-exhaustion.html - shard-mtlp: NOTRUN -> [SKIP][79] ([i915#3282]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-mtlp-3/igt@gem_pwrite@basic-exhaustion.html * igt@gem_pxp@create-valid-protected-context: - shard-tglu: [PASS][80] -> [SKIP][81] ([i915#4270]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-tglu-5/igt@gem_pxp@create-valid-protected-context.html [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-tglu-7/igt@gem_pxp@create-valid-protected-context.html * igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted: - shard-dg2: NOTRUN -> [SKIP][82] ([i915#4270]) +2 other tests skip [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-dg2-5/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html - shard-dg1: NOTRUN -> [SKIP][83] ([i915#4270]) +1 other test skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-dg1-12/igt@gem_pxp@dmabuf-shared-protected-dst-is-context-refcounted.html * igt@gem_pxp@reject-modify-context-protection-off-1: - shard-rkl: [PASS][84] -> [SKIP][85] ([i915#4270]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-7/igt@gem_pxp@reject-modify-context-protection-off-1.html [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-rkl-4/igt@gem_pxp@reject-modify-context-protection-off-1.html * igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs: - shard-glk: NOTRUN -> [SKIP][86] +388 other tests skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-glk5/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs.html * igt@gem_render_copy@yf-tiled-ccs-to-y-tiled: - shard-dg2: NOTRUN -> [SKIP][87] ([i915#5190] / [i915#8428]) +2 other tests skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-dg2-1/igt@gem_render_copy@yf-tiled-ccs-to-y-tiled.html * igt@gem_set_tiling_vs_blt@tiled-to-tiled: - shard-dg2: NOTRUN -> [SKIP][88] ([i915#4079]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-dg2-7/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html - shard-dg1: NOTRUN -> [SKIP][89] ([i915#4079]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-dg1-16/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html * igt@gem_tiled_swapping@non-threaded: - shard-dg2: NOTRUN -> [SKIP][90] ([i915#4077]) +5 other tests skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-dg2-1/igt@gem_tiled_swapping@non-threaded.html * igt@gem_userptr_blits@create-destroy-unsync: - shard-tglu-1: NOTRUN -> [SKIP][91] ([i915#3297]) +2 other tests skip [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-tglu-1/igt@gem_userptr_blits@create-destroy-unsync.html * igt@gem_userptr_blits@dmabuf-sync: - shard-dg2: NOTRUN -> [SKIP][92] ([i915#3297]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-dg2-7/igt@gem_userptr_blits@dmabuf-sync.html * igt@gem_userptr_blits@invalid-mmap-offset-unsync: - shard-dg1: NOTRUN -> [SKIP][93] ([i915#3297]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-dg1-14/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html - shard-tglu: NOTRUN -> [SKIP][94] ([i915#3297]) +1 other test skip [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-tglu-6/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html * igt@gem_userptr_blits@relocations: - shard-rkl: NOTRUN -> [SKIP][95] ([i915#3281] / [i915#3297]) [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-rkl-7/igt@gem_userptr_blits@relocations.html * igt@gem_userptr_blits@unsync-overlap: - shard-rkl: NOTRUN -> [SKIP][96] ([i915#3297]) +1 other test skip [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-rkl-3/igt@gem_userptr_blits@unsync-overlap.html * igt@gem_workarounds@suspend-resume-context: - shard-glk: [PASS][97] -> [INCOMPLETE][98] ([i915#13356]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-glk5/igt@gem_workarounds@suspend-resume-context.html [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-glk9/igt@gem_workarounds@suspend-resume-context.html * igt@gen7_exec_parse@basic-allowed: - shard-snb: NOTRUN -> [SKIP][99] +58 other tests skip [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-snb7/igt@gen7_exec_parse@basic-allowed.html * igt@gen9_exec_parse@basic-rejected: - shard-tglu: NOTRUN -> [SKIP][100] ([i915#2527] / [i915#2856]) +1 other test skip [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-tglu-4/igt@gen9_exec_parse@basic-rejected.html * igt@gen9_exec_parse@bb-large: - shard-dg1: NOTRUN -> [SKIP][101] ([i915#2527]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-dg1-18/igt@gen9_exec_parse@bb-large.html - shard-dg2: NOTRUN -> [SKIP][102] ([i915#2856]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-dg2-1/igt@gen9_exec_parse@bb-large.html * igt@gen9_exec_parse@shadow-peek: - shard-tglu-1: NOTRUN -> [SKIP][103] ([i915#2527] / [i915#2856]) +2 other tests skip [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-tglu-1/igt@gen9_exec_parse@shadow-peek.html * igt@i915_drm_fdinfo@all-busy-check-all: - shard-dg2: NOTRUN -> [SKIP][104] ([i915#14123]) [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-dg2-7/igt@i915_drm_fdinfo@all-busy-check-all.html - shard-dg1: NOTRUN -> [SKIP][105] ([i915#14123]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-dg1-13/igt@i915_drm_fdinfo@all-busy-check-all.html * igt@i915_drm_fdinfo@virtual-busy-idle-all: - shard-dg2: NOTRUN -> [SKIP][106] ([i915#14118]) [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-dg2-5/igt@i915_drm_fdinfo@virtual-busy-idle-all.html * igt@i915_module_load@fault-injection@intel_connector_register: - shard-glk: NOTRUN -> [ABORT][107] ([i915#15342]) +1 other test abort [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-glk9/igt@i915_module_load@fault-injection@intel_connector_register.html * igt@i915_pm_freq_api@freq-basic-api: - shard-tglu-1: NOTRUN -> [SKIP][108] ([i915#8399]) [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-tglu-1/igt@i915_pm_freq_api@freq-basic-api.html * igt@i915_pm_freq_api@freq-suspend@gt0: - shard-dg2: [PASS][109] -> [INCOMPLETE][110] ([i915#13356] / [i915#13820]) +1 other test incomplete [109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-dg2-11/igt@i915_pm_freq_api@freq-suspend@gt0.html [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-dg2-5/igt@i915_pm_freq_api@freq-suspend@gt0.html * igt@i915_pm_freq_mult@media-freq@gt0: - shard-rkl: NOTRUN -> [SKIP][111] ([i915#14544] / [i915#6590]) +1 other test skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-rkl-6/igt@i915_pm_freq_mult@media-freq@gt0.html - shard-dg1: NOTRUN -> [SKIP][112] ([i915#6590]) +1 other test skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-dg1-17/igt@i915_pm_freq_mult@media-freq@gt0.html - shard-tglu: NOTRUN -> [SKIP][113] ([i915#6590]) +1 other test skip [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-tglu-6/igt@i915_pm_freq_mult@media-freq@gt0.html * igt@i915_pm_freq_mult@media-freq@gt1: - shard-mtlp: NOTRUN -> [SKIP][114] ([i915#6590]) +2 other tests skip [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-mtlp-4/igt@i915_pm_freq_mult@media-freq@gt1.html * igt@i915_query@test-query-geometry-subslices: - shard-dg1: NOTRUN -> [SKIP][115] ([i915#5723]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-dg1-18/igt@i915_query@test-query-geometry-subslices.html * igt@i915_suspend@basic-s2idle-without-i915: - shard-rkl: [PASS][116] -> [ABORT][117] ([i915#15131]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-7/igt@i915_suspend@basic-s2idle-without-i915.html [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-rkl-1/igt@i915_suspend@basic-s2idle-without-i915.html * igt@i915_suspend@debugfs-reader: - shard-glk: NOTRUN -> [INCOMPLETE][118] ([i915#4817]) [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-glk1/igt@i915_suspend@debugfs-reader.html * igt@i915_suspend@forcewake: - shard-rkl: [PASS][119] -> [ABORT][120] ([i915#15140]) [119]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-2/igt@i915_suspend@forcewake.html [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-rkl-1/igt@i915_suspend@forcewake.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-rkl: NOTRUN -> [SKIP][121] ([i915#9531]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-rkl-5/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html - shard-tglu: NOTRUN -> [SKIP][122] ([i915#9531]) [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-tglu-6/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-tglu-1: NOTRUN -> [SKIP][123] ([i915#1769] / [i915#3555]) [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-tglu-1/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-glk: NOTRUN -> [SKIP][124] ([i915#1769]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-glk1/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1: - shard-dg2: [PASS][125] -> [FAIL][126] ([i915#5956]) +3 other tests fail [125]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-dg2-4/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-dg2-4/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html * igt@kms_big_fb@4-tiled-32bpp-rotate-0: - shard-tglu-1: NOTRUN -> [SKIP][127] ([i915#5286]) +3 other tests skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-tglu-1/igt@kms_big_fb@4-tiled-32bpp-rotate-0.html * igt@kms_big_fb@4-tiled-64bpp-rotate-180: - shard-rkl: NOTRUN -> [SKIP][128] ([i915#5286]) +1 other test skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-rkl-5/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html * igt@kms_big_fb@4-tiled-addfb-size-offset-overflow: - shard-tglu: NOTRUN -> [SKIP][129] ([i915#5286]) +3 other tests skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-tglu-5/igt@kms_big_fb@4-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip: - shard-dg1: NOTRUN -> [SKIP][130] ([i915#4538] / [i915#5286]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-dg1-12/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip: - shard-tglu-1: NOTRUN -> [SKIP][131] ([i915#3828]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-tglu-1/igt@kms_big_fb@linear-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_big_fb@y-tiled-8bpp-rotate-180: - shard-dg2: NOTRUN -> [SKIP][132] ([i915#4538] / [i915#5190]) +4 other tests skip [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-dg2-4/igt@kms_big_fb@y-tiled-8bpp-rotate-180.html - shard-mtlp: NOTRUN -> [SKIP][133] [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-mtlp-1/igt@kms_big_fb@y-tiled-8bpp-rotate-180.html * igt@kms_big_fb@y-tiled-8bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][134] ([i915#3638]) +1 other test skip [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-rkl-4/igt@kms_big_fb@y-tiled-8bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-270: - shard-rkl: NOTRUN -> [SKIP][135] +5 other tests skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-rkl-3/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-addfb: - shard-dg2: NOTRUN -> [SKIP][136] ([i915#5190]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-dg2-3/igt@kms_big_fb@yf-tiled-addfb.html * igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-3: - shard-dg2: NOTRUN -> [SKIP][137] ([i915#10307] / [i915#6095]) +108 other tests skip [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-dg2-11/igt@kms_ccs@bad-aux-stride-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-3.html * igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][138] ([i915#6095]) +71 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-dg2-7/igt@kms_ccs@bad-rotation-90-4-tiled-dg2-mc-ccs@pipe-d-hdmi-a-3.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][139] ([i915#6095]) +203 other tests skip [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-dg1-17/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4.html * igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc@pipe-c-edp-1: - shard-mtlp: NOTRUN -> [SKIP][140] ([i915#6095]) +4 other tests skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-mtlp-5/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-rc-ccs-cc@pipe-c-edp-1.html * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs: - shard-tglu: NOTRUN -> [SKIP][141] ([i915#6095]) +49 other tests skip [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-tglu-6/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs.html * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-2: - shard-glk10: NOTRUN -> [SKIP][142] +11 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-glk10/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-2.html * igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs: - shard-tglu: NOTRUN -> [SKIP][143] ([i915#12313]) [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-tglu-6/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs: - shard-tglu-1: NOTRUN -> [SKIP][144] ([i915#12313]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-tglu-1/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][145] ([i915#10307] / [i915#10434] / [i915#6095]) +2 other tests skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-dg2-4/igt@kms_ccs@crc-primary-rotation-180-yf-tiled-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [INCOMPLETE][146] ([i915#15582]) +1 other test incomplete [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-glk5/igt@kms_ccs@crc-primary-suspend-y-tiled-ccs@pipe-a-hdmi-a-1.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc: - shard-rkl: [PASS][147] -> [INCOMPLETE][148] ([i915#15582]) +1 other test incomplete [147]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-4/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-rc-ccs-cc.html * igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-c-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][149] ([i915#14098] / [i915#6095]) +47 other tests skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-rkl-7/igt@kms_ccs@crc-primary-suspend-yf-tiled-ccs@pipe-c-hdmi-a-2.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs: - shard-rkl: NOTRUN -> [SKIP][150] ([i915#12313]) +1 other test skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-rkl-8/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-lnl-ccs.html * igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][151] ([i915#6095]) +79 other tests skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-rkl-8/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-1.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc: - shard-tglu-1: NOTRUN -> [SKIP][152] ([i915#6095]) +49 other tests skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-tglu-1/igt@kms_ccs@random-ccs-data-4-tiled-dg2-rc-ccs-cc.html * igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][153] ([i915#14544] / [i915#6095]) +3 other tests skip [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-rkl-6/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-a-hdmi-a-2.html * igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-c-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][154] ([i915#14098] / [i915#14544] / [i915#6095]) +1 other test skip [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-rkl-6/igt@kms_ccs@random-ccs-data-yf-tiled-ccs@pipe-c-hdmi-a-2.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-rkl: NOTRUN -> [SKIP][155] ([i915#3742]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-rkl-8/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_chamelium_audio@dp-audio: - shard-tglu: NOTRUN -> [SKIP][156] ([i915#11151] / [i915#7828]) +5 other tests skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-tglu-6/igt@kms_chamelium_audio@dp-audio.html * igt@kms_chamelium_color@ctm-green-to-red: - shard-dg2: NOTRUN -> [SKIP][157] +5 other tests skip [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-dg2-1/igt@kms_chamelium_color@ctm-green-to-red.html * igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode: - shard-tglu-1: NOTRUN -> [SKIP][158] ([i915#11151] / [i915#7828]) +4 other tests skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-tglu-1/igt@kms_chamelium_hpd@dp-hpd-enable-disable-mode.html * igt@kms_chamelium_hpd@hdmi-hpd-storm-disable: - shard-dg2: NOTRUN -> [SKIP][159] ([i915#11151] / [i915#7828]) +1 other test skip [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-dg2-8/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html - shard-dg1: NOTRUN -> [SKIP][160] ([i915#11151] / [i915#7828]) +1 other test skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-dg1-14/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html * igt@kms_chamelium_hpd@vga-hpd-fast: - shard-rkl: NOTRUN -> [SKIP][161] ([i915#11151] / [i915#7828]) +5 other tests skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-rkl-5/igt@kms_chamelium_hpd@vga-hpd-fast.html * igt@kms_content_protection@atomic: - shard-tglu-1: NOTRUN -> [SKIP][162] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-tglu-1/igt@kms_content_protection@atomic.html * igt@kms_content_protection@atomic-dpms: - shard-tglu: NOTRUN -> [SKIP][163] ([i915#6944] / [i915#7116] / [i915#7118] / [i915#9424]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-tglu-7/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@content-type-change: - shard-tglu-1: NOTRUN -> [SKIP][164] ([i915#6944] / [i915#9424]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-tglu-1/igt@kms_content_protection@content-type-change.html * igt@kms_content_protection@legacy-hdcp14: - shard-rkl: NOTRUN -> [SKIP][165] ([i915#6944]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-rkl-3/igt@kms_content_protection@legacy-hdcp14.html - shard-dg1: NOTRUN -> [SKIP][166] ([i915#6944]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-dg1-16/igt@kms_content_protection@legacy-hdcp14.html - shard-tglu: NOTRUN -> [SKIP][167] ([i915#6944]) +1 other test skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-tglu-4/igt@kms_content_protection@legacy-hdcp14.html * igt@kms_content_protection@uevent-hdcp14@pipe-a-dp-3: - shard-dg2: NOTRUN -> [FAIL][168] ([i915#7173]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-dg2-11/igt@kms_content_protection@uevent-hdcp14@pipe-a-dp-3.html * igt@kms_cursor_crc@cursor-offscreen-512x170: - shard-tglu-1: NOTRUN -> [SKIP][169] ([i915#13049]) [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-tglu-1/igt@kms_cursor_crc@cursor-offscreen-512x170.html * igt@kms_cursor_crc@cursor-onscreen-32x32: - shard-rkl: NOTRUN -> [SKIP][170] ([i915#3555]) +1 other test skip [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-rkl-2/igt@kms_cursor_crc@cursor-onscreen-32x32.html * igt@kms_cursor_crc@cursor-onscreen-max-size: - shard-tglu-1: NOTRUN -> [SKIP][171] ([i915#3555]) +2 other tests skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-tglu-1/igt@kms_cursor_crc@cursor-onscreen-max-size.html * igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [FAIL][172] ([i915#13566]) +2 other tests fail [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-rkl-5/igt@kms_cursor_crc@cursor-random-128x42@pipe-a-hdmi-a-1.html * igt@kms_cursor_crc@cursor-rapid-movement-128x42: - shard-mtlp: NOTRUN -> [SKIP][173] ([i915#8814]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-mtlp-7/igt@kms_cursor_crc@cursor-rapid-movement-128x42.html * igt@kms_cursor_crc@cursor-sliding-256x85: - shard-rkl: [PASS][174] -> [FAIL][175] ([i915#13566]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-2/igt@kms_cursor_crc@cursor-sliding-256x85.html [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-rkl-3/igt@kms_cursor_crc@cursor-sliding-256x85.html - shard-tglu: NOTRUN -> [FAIL][176] ([i915#13566]) +3 other tests fail [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-tglu-4/igt@kms_cursor_crc@cursor-sliding-256x85.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-tglu-1: NOTRUN -> [SKIP][177] ([i915#4103]) [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-tglu-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_dirtyfb@drrs-dirtyfb-ioctl: - shard-tglu: NOTRUN -> [SKIP][178] ([i915#9723]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-tglu-5/igt@kms_dirtyfb@drrs-dirtyfb-ioctl.html * igt@kms_dp_aux_dev: - shard-dg2: [PASS][179] -> [SKIP][180] ([i915#1257]) [179]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-dg2-11/igt@kms_dp_aux_dev.html [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-dg2-1/igt@kms_dp_aux_dev.html - shard-rkl: NOTRUN -> [SKIP][181] ([i915#1257]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-rkl-5/igt@kms_dp_aux_dev.html * igt@kms_dp_link_training@non-uhbr-mst: - shard-dg2: NOTRUN -> [SKIP][182] ([i915#13749]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-dg2-7/igt@kms_dp_link_training@non-uhbr-mst.html - shard-tglu-1: NOTRUN -> [SKIP][183] ([i915#13749]) +1 other test skip [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-tglu-1/igt@kms_dp_link_training@non-uhbr-mst.html * igt@kms_dp_link_training@uhbr-mst: - shard-dg2: NOTRUN -> [SKIP][184] ([i915#13748]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-dg2-4/igt@kms_dp_link_training@uhbr-mst.html - shard-dg1: NOTRUN -> [SKIP][185] ([i915#13748]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-dg1-18/igt@kms_dp_link_training@uhbr-mst.html * igt@kms_draw_crc@draw-method-mmap-cpu: - shard-dg1: [PASS][186] -> [DMESG-WARN][187] ([i915#4423]) [186]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-dg1-14/igt@kms_draw_crc@draw-method-mmap-cpu.html [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-dg1-12/igt@kms_draw_crc@draw-method-mmap-cpu.html * igt@kms_dsc@dsc-fractional-bpp: - shard-tglu: NOTRUN -> [SKIP][188] ([i915#3840]) [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-tglu-6/igt@kms_dsc@dsc-fractional-bpp.html * igt@kms_dsc@dsc-with-bpc-formats: - shard-dg2: NOTRUN -> [SKIP][189] ([i915#3555] / [i915#3840]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-dg2-7/igt@kms_dsc@dsc-with-bpc-formats.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-glk10: NOTRUN -> [INCOMPLETE][190] ([i915#9878]) [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-glk10/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_fbcon_fbt@psr: - shard-rkl: NOTRUN -> [SKIP][191] ([i915#3955]) [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-rkl-2/igt@kms_fbcon_fbt@psr.html * igt@kms_feature_discovery@chamelium: - shard-tglu: NOTRUN -> [SKIP][192] ([i915#2065] / [i915#4854]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-tglu-2/igt@kms_feature_discovery@chamelium.html - shard-rkl: NOTRUN -> [SKIP][193] ([i915#4854]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-rkl-4/igt@kms_feature_discovery@chamelium.html * igt@kms_feature_discovery@display-3x: - shard-dg2: NOTRUN -> [SKIP][194] ([i915#1839]) [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-dg2-1/igt@kms_feature_discovery@display-3x.html - shard-tglu-1: NOTRUN -> [SKIP][195] ([i915#1839]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-tglu-1/igt@kms_feature_discovery@display-3x.html - shard-dg1: NOTRUN -> [SKIP][196] ([i915#1839]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-dg1-14/igt@kms_feature_discovery@display-3x.html * igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible: - shard-dg1: NOTRUN -> [SKIP][197] ([i915#9934]) +1 other test skip [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-dg1-16/igt@kms_flip@2x-blocking-absolute-wf_vblank-interruptible.html * igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset: - shard-dg2: NOTRUN -> [SKIP][198] ([i915#9934]) +2 other tests skip [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-dg2-8/igt@kms_flip@2x-flip-vs-dpms-off-vs-modeset.html * igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible: - shard-rkl: NOTRUN -> [SKIP][199] ([i915#9934]) +2 other tests skip [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-rkl-8/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html - shard-tglu: NOTRUN -> [SKIP][200] ([i915#9934]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-tglu-2/igt@kms_flip@2x-flip-vs-dpms-on-nop-interruptible.html * igt@kms_flip@2x-flip-vs-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][201] ([i915#12745] / [i915#4839]) [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-glk6/igt@kms_flip@2x-flip-vs-suspend.html * igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a1-hdmi-a2: - shard-glk: NOTRUN -> [INCOMPLETE][202] ([i915#4839]) [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-glk6/igt@kms_flip@2x-flip-vs-suspend@ab-hdmi-a1-hdmi-a2.html * igt@kms_flip@2x-plain-flip: - shard-tglu-1: NOTRUN -> [SKIP][203] ([i915#3637] / [i915#9934]) +2 other tests skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-tglu-1/igt@kms_flip@2x-plain-flip.html * igt@kms_flip@2x-plain-flip-ts-check: - shard-tglu: NOTRUN -> [SKIP][204] ([i915#3637] / [i915#9934]) +1 other test skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-tglu-3/igt@kms_flip@2x-plain-flip-ts-check.html * igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible: - shard-rkl: NOTRUN -> [SKIP][205] ([i915#14544] / [i915#9934]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-rkl-6/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset-interruptible.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling: - shard-tglu-1: NOTRUN -> [SKIP][206] ([i915#15643]) +1 other test skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-tglu-1/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling: - shard-rkl: NOTRUN -> [SKIP][207] ([i915#15643]) +1 other test skip [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-rkl-2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html - shard-tglu: NOTRUN -> [SKIP][208] ([i915#15643]) +1 other test skip [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-tglu-3/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling: - shard-dg1: NOTRUN -> [SKIP][209] ([i915#15643]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-dg1-14/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling: - shard-dg2: NOTRUN -> [SKIP][210] ([i915#15643] / [i915#5190]) [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-dg2-3/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-upscaling.html * igt@kms_flip_scaled_crc@flip-p016-linear-to-p016-linear-reflect-x: - shard-tglu-1: NOTRUN -> [SKIP][211] ([i915#15645]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-tglu-1/igt@kms_flip_scaled_crc@flip-p016-linear-to-p016-linear-reflect-x.html * igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-render: - shard-dg2: [PASS][212] -> [FAIL][213] ([i915#15389]) [212]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-dg2-6/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-render.html [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-dg2-5/igt@kms_frontbuffer_tracking@fbc-1p-offscreen-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt: - shard-mtlp: NOTRUN -> [SKIP][214] ([i915#1825]) +3 other tests skip [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-mtlp-2/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html - shard-rkl: NOTRUN -> [SKIP][215] ([i915#14544] / [i915#1825]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-msflip-blt: - shard-dg2: NOTRUN -> [SKIP][216] ([i915#5354]) +15 other tests skip [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbc-abgr161616f-draw-mmap-cpu: - shard-rkl: NOTRUN -> [SKIP][217] ([i915#15574]) [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-abgr161616f-draw-mmap-cpu.html - shard-dg1: NOTRUN -> [SKIP][218] ([i915#15574]) [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-dg1-14/igt@kms_frontbuffer_tracking@fbc-abgr161616f-draw-mmap-cpu.html - shard-tglu: NOTRUN -> [SKIP][219] ([i915#15574]) +2 other tests skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-tglu-10/igt@kms_frontbuffer_tracking@fbc-abgr161616f-draw-mmap-cpu.html - shard-mtlp: NOTRUN -> [SKIP][220] ([i915#15574]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-mtlp-4/igt@kms_frontbuffer_tracking@fbc-abgr161616f-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbc-suspend: - shard-rkl: [PASS][221] -> [INCOMPLETE][222] ([i915#10056]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-4/igt@kms_frontbuffer_tracking@fbc-suspend.html [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-rkl-3/igt@kms_frontbuffer_tracking@fbc-suspend.html * igt@kms_frontbuffer_tracking@fbc-tiling-4: - shard-tglu-1: NOTRUN -> [SKIP][223] ([i915#5439]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-tglu-1/igt@kms_frontbuffer_tracking@fbc-tiling-4.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-blt: - shard-dg2: NOTRUN -> [SKIP][224] ([i915#15102]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-blt.html - shard-dg1: NOTRUN -> [SKIP][225] ([i915#15102]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscreen-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-pwrite: - shard-rkl: NOTRUN -> [SKIP][226] ([i915#15102] / [i915#3023]) +7 other tests skip [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-rkl-7/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw: - shard-tglu-1: NOTRUN -> [SKIP][227] +43 other tests skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-2p-pri-indfb-multidraw.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][228] ([i915#8708]) +3 other tests skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html - shard-dg1: NOTRUN -> [SKIP][229] ([i915#8708]) +3 other tests skip [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc: - shard-tglu: NOTRUN -> [SKIP][230] +37 other tests skip [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-tglu-7/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt: - shard-dg1: NOTRUN -> [SKIP][231] +11 other tests skip [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-render: - shard-tglu-1: NOTRUN -> [SKIP][232] ([i915#15102]) +14 other tests skip [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-tglu-1/igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-cpu: - shard-dg2: NOTRUN -> [SKIP][233] ([i915#15102] / [i915#3458]) +5 other tests skip [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-dg2-1/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-cpu.html - shard-dg1: NOTRUN -> [SKIP][234] ([i915#15102] / [i915#3458]) +5 other tests skip [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-dg1-17/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render: - shard-rkl: NOTRUN -> [SKIP][235] ([i915#14544] / [i915#15102] / [i915#3023]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render.html * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-blt: - shard-rkl: NOTRUN -> [SKIP][236] ([i915#15102]) +1 other test skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt: - shard-dg1: NOTRUN -> [SKIP][237] ([i915#15104]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-dg1-18/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt.html - shard-dg2: NOTRUN -> [SKIP][238] ([i915#15104]) [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt: - shard-dg2: NOTRUN -> [SKIP][239] ([i915#10433] / [i915#15102] / [i915#3458]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-cpu: - shard-tglu: NOTRUN -> [SKIP][240] ([i915#15102]) +14 other tests skip [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-tglu-9/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt: - shard-rkl: NOTRUN -> [SKIP][241] ([i915#1825]) +18 other tests skip [241]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@psr-abgr161616f-draw-mmap-cpu: - shard-tglu-1: NOTRUN -> [SKIP][242] ([i915#15574]) +1 other test skip [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-tglu-1/igt@kms_frontbuffer_tracking@psr-abgr161616f-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@psr-abgr161616f-draw-pwrite: - shard-dg2: NOTRUN -> [SKIP][243] ([i915#15574]) +1 other test skip [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-abgr161616f-draw-pwrite.html * igt@kms_hdr@bpc-switch-suspend: - shard-tglu: NOTRUN -> [SKIP][244] ([i915#3555] / [i915#8228]) +1 other test skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-tglu-3/igt@kms_hdr@bpc-switch-suspend.html - shard-dg2: [PASS][245] -> [SKIP][246] ([i915#3555] / [i915#8228]) [245]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-dg2-11/igt@kms_hdr@bpc-switch-suspend.html [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-dg2-3/igt@kms_hdr@bpc-switch-suspend.html * igt@kms_hdr@bpc-switch-suspend@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [INCOMPLETE][247] ([i915#15436]) [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-rkl-6/igt@kms_hdr@bpc-switch-suspend@pipe-a-hdmi-a-2.html * igt@kms_hdr@brightness-with-hdr: - shard-rkl: NOTRUN -> [SKIP][248] ([i915#12713]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-rkl-7/igt@kms_hdr@brightness-with-hdr.html - shard-tglu: NOTRUN -> [SKIP][249] ([i915#12713]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-tglu-3/igt@kms_hdr@brightness-with-hdr.html * igt@kms_joiner@basic-force-big-joiner: - shard-dg2: NOTRUN -> [SKIP][250] ([i915#15459]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-dg2-1/igt@kms_joiner@basic-force-big-joiner.html - shard-dg1: NOTRUN -> [SKIP][251] ([i915#15459] / [i915#4423]) [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-dg1-17/igt@kms_joiner@basic-force-big-joiner.html * igt@kms_joiner@basic-force-ultra-joiner: - shard-rkl: NOTRUN -> [SKIP][252] ([i915#15458]) [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-rkl-5/igt@kms_joiner@basic-force-ultra-joiner.html - shard-tglu: NOTRUN -> [SKIP][253] ([i915#15458]) [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-tglu-7/igt@kms_joiner@basic-force-ultra-joiner.html * igt@kms_joiner@basic-max-non-joiner: - shard-tglu: NOTRUN -> [SKIP][254] ([i915#13688]) [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-tglu-2/igt@kms_joiner@basic-max-non-joiner.html * igt@kms_joiner@basic-ultra-joiner: - shard-tglu-1: NOTRUN -> [SKIP][255] ([i915#15458]) [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-tglu-1/igt@kms_joiner@basic-ultra-joiner.html * igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner: - shard-dg2: NOTRUN -> [SKIP][256] ([i915#15638]) [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-dg2-7/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html - shard-tglu-1: NOTRUN -> [SKIP][257] ([i915#15638]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-tglu-1/igt@kms_joiner@switch-modeset-ultra-joiner-big-joiner.html * igt@kms_panel_fitting@legacy: - shard-tglu-1: NOTRUN -> [SKIP][258] ([i915#6301]) [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-tglu-1/igt@kms_panel_fitting@legacy.html * igt@kms_pipe_stress@stress-xrgb8888-4tiled: - shard-rkl: NOTRUN -> [SKIP][259] ([i915#14712]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-rkl-2/igt@kms_pipe_stress@stress-xrgb8888-4tiled.html * igt@kms_plane@pixel-format-x-tiled-modifier@pipe-a-plane-7: - shard-tglu: NOTRUN -> [SKIP][260] ([i915#15608]) +1 other test skip [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-tglu-8/igt@kms_plane@pixel-format-x-tiled-modifier@pipe-a-plane-7.html * igt@kms_plane_lowres@tiling-y: - shard-dg2: NOTRUN -> [SKIP][261] ([i915#8821]) [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-dg2-7/igt@kms_plane_lowres@tiling-y.html * igt@kms_plane_multiple@2x-tiling-4: - shard-dg2: NOTRUN -> [SKIP][262] ([i915#13958]) [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-dg2-1/igt@kms_plane_multiple@2x-tiling-4.html - shard-tglu-1: NOTRUN -> [SKIP][263] ([i915#13958]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-tglu-1/igt@kms_plane_multiple@2x-tiling-4.html - shard-dg1: NOTRUN -> [SKIP][264] ([i915#13958]) [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-dg1-14/igt@kms_plane_multiple@2x-tiling-4.html - shard-mtlp: NOTRUN -> [SKIP][265] ([i915#13958]) [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-mtlp-5/igt@kms_plane_multiple@2x-tiling-4.html * igt@kms_plane_multiple@2x-tiling-y: - shard-tglu: NOTRUN -> [SKIP][266] ([i915#13958]) [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-tglu-5/igt@kms_plane_multiple@2x-tiling-y.html * igt@kms_plane_multiple@2x-tiling-yf: - shard-rkl: NOTRUN -> [SKIP][267] ([i915#13958]) [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-rkl-1/igt@kms_plane_multiple@2x-tiling-yf.html * igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a: - shard-rkl: NOTRUN -> [SKIP][268] ([i915#15329]) +3 other tests skip [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-rkl-3/igt@kms_plane_scaling@plane-downscale-factor-0-75-with-rotation@pipe-a.html * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d: - shard-tglu-1: NOTRUN -> [SKIP][269] ([i915#15329]) +9 other tests skip [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-tglu-1/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-d.html * igt@kms_plane_scaling@planes-downscale-factor-0-75: - shard-mtlp: NOTRUN -> [SKIP][270] ([i915#15329] / [i915#3555] / [i915#6953]) [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-mtlp-3/igt@kms_plane_scaling@planes-downscale-factor-0-75.html * igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-a: - shard-mtlp: NOTRUN -> [SKIP][271] ([i915#15329]) +3 other tests skip [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-mtlp-3/igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-a.html * igt@kms_pm_backlight@fade-with-dpms: - shard-rkl: NOTRUN -> [SKIP][272] ([i915#5354]) [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-rkl-4/igt@kms_pm_backlight@fade-with-dpms.html - shard-dg1: NOTRUN -> [SKIP][273] ([i915#5354]) +1 other test skip [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-dg1-12/igt@kms_pm_backlight@fade-with-dpms.html - shard-tglu: NOTRUN -> [SKIP][274] ([i915#9812]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-tglu-8/igt@kms_pm_backlight@fade-with-dpms.html * igt@kms_pm_dc@dc9-dpms: - shard-rkl: NOTRUN -> [SKIP][275] ([i915#4281]) [275]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-rkl-8/igt@kms_pm_dc@dc9-dpms.html - shard-tglu: NOTRUN -> [SKIP][276] ([i915#4281]) [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-tglu-9/igt@kms_pm_dc@dc9-dpms.html * igt@kms_pm_rpm@cursor: - shard-dg1: NOTRUN -> [SKIP][277] ([i915#4077]) +2 other tests skip [277]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-dg1-16/igt@kms_pm_rpm@cursor.html * igt@kms_pm_rpm@dpms-mode-unset-lpsp: - shard-rkl: [PASS][278] -> [SKIP][279] ([i915#14544] / [i915#15073]) [278]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-8/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html [279]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-rkl-6/igt@kms_pm_rpm@dpms-mode-unset-lpsp.html * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-dg1: [PASS][280] -> [SKIP][281] ([i915#15073]) +1 other test skip [280]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-dg1-17/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html [281]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-dg1-14/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@kms_pm_rpm@dpms-non-lpsp: - shard-tglu: NOTRUN -> [SKIP][282] ([i915#15073]) +1 other test skip [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-tglu-5/igt@kms_pm_rpm@dpms-non-lpsp.html * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait: - shard-rkl: [PASS][283] -> [SKIP][284] ([i915#15073]) [283]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-2/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-rkl-3/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-dg2: [PASS][285] -> [SKIP][286] ([i915#15073]) [285]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-dg2-1/igt@kms_pm_rpm@modeset-non-lpsp-stress.html [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-dg2-4/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_pm_rpm@system-suspend-idle: - shard-dg2: [PASS][287] -> [INCOMPLETE][288] ([i915#14419]) [287]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-dg2-6/igt@kms_pm_rpm@system-suspend-idle.html [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-dg2-6/igt@kms_pm_rpm@system-suspend-idle.html * igt@kms_prime@basic-modeset-hybrid: - shard-tglu: NOTRUN -> [SKIP][289] ([i915#6524]) [289]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-tglu-8/igt@kms_prime@basic-modeset-hybrid.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf: - shard-tglu: NOTRUN -> [SKIP][290] ([i915#11520]) +7 other tests skip [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-tglu-4/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf: - shard-rkl: NOTRUN -> [SKIP][291] ([i915#11520]) +6 other tests skip [291]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-rkl-2/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-sf: - shard-dg2: NOTRUN -> [SKIP][292] ([i915#11520]) +4 other tests skip [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-dg2-1/igt@kms_psr2_sf@fbc-pr-overlay-plane-move-continuous-sf.html * igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area: - shard-dg1: NOTRUN -> [SKIP][293] ([i915#11520]) +3 other tests skip [293]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-dg1-12/igt@kms_psr2_sf@fbc-pr-primary-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf: - shard-glk: NOTRUN -> [SKIP][294] ([i915#11520]) +12 other tests skip [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-glk6/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf.html * igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area: - shard-snb: NOTRUN -> [SKIP][295] ([i915#11520]) [295]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-snb6/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area.html * igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][296] ([i915#9808]) [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-mtlp-3/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area@pipe-a-edp-1.html * igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][297] ([i915#12316]) +1 other test skip [297]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-mtlp-3/igt@kms_psr2_sf@fbc-psr2-overlay-primary-update-sf-dmg-area@pipe-b-edp-1.html * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf: - shard-tglu-1: NOTRUN -> [SKIP][298] ([i915#11520]) +5 other tests skip [298]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-tglu-1/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-tglu-1: NOTRUN -> [SKIP][299] ([i915#9683]) [299]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-tglu-1/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@fbc-pr-cursor-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][300] ([i915#1072] / [i915#9732]) +8 other tests skip [300]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-dg2-3/igt@kms_psr@fbc-pr-cursor-mmap-gtt.html * igt@kms_psr@fbc-psr-cursor-plane-onoff: - shard-tglu: NOTRUN -> [SKIP][301] ([i915#9732]) +16 other tests skip [301]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-tglu-6/igt@kms_psr@fbc-psr-cursor-plane-onoff.html * igt@kms_psr@pr-cursor-blt: - shard-mtlp: NOTRUN -> [SKIP][302] ([i915#9688]) +1 other test skip [302]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-mtlp-7/igt@kms_psr@pr-cursor-blt.html * igt@kms_psr@pr-sprite-plane-onoff: - shard-tglu-1: NOTRUN -> [SKIP][303] ([i915#9732]) +13 other tests skip [303]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-tglu-1/igt@kms_psr@pr-sprite-plane-onoff.html * igt@kms_psr@psr-cursor-plane-move: - shard-rkl: NOTRUN -> [SKIP][304] ([i915#1072] / [i915#14544] / [i915#9732]) +1 other test skip [304]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-rkl-6/igt@kms_psr@psr-cursor-plane-move.html * igt@kms_psr@psr-sprite-plane-onoff: - shard-rkl: NOTRUN -> [SKIP][305] ([i915#1072] / [i915#9732]) +13 other tests skip [305]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-rkl-3/igt@kms_psr@psr-sprite-plane-onoff.html * igt@kms_psr@psr2-sprite-mmap-cpu: - shard-dg1: NOTRUN -> [SKIP][306] ([i915#1072] / [i915#9732]) +7 other tests skip [306]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-dg1-18/igt@kms_psr@psr2-sprite-mmap-cpu.html * igt@kms_rotation_crc@multiplane-rotation: - shard-glk: NOTRUN -> [INCOMPLETE][307] ([i915#15492]) [307]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-glk2/igt@kms_rotation_crc@multiplane-rotation.html * igt@kms_rotation_crc@primary-4-tiled-reflect-x-180: - shard-tglu: NOTRUN -> [SKIP][308] ([i915#5289]) [308]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-tglu-6/igt@kms_rotation_crc@primary-4-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-90: - shard-dg2: NOTRUN -> [SKIP][309] ([i915#12755] / [i915#5190]) [309]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-dg2-7/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html * igt@kms_scaling_modes@scaling-mode-none: - shard-tglu: NOTRUN -> [SKIP][310] ([i915#3555]) +3 other tests skip [310]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-tglu-4/igt@kms_scaling_modes@scaling-mode-none.html * igt@kms_setmode@basic: - shard-snb: NOTRUN -> [FAIL][311] ([i915#15106]) +2 other tests fail [311]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-snb5/igt@kms_setmode@basic.html * igt@kms_setmode@basic-clone-single-crtc: - shard-dg2: NOTRUN -> [SKIP][312] ([i915#3555]) [312]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-dg2-8/igt@kms_setmode@basic-clone-single-crtc.html * igt@kms_vblank@ts-continuation-suspend: - shard-glk: NOTRUN -> [INCOMPLETE][313] ([i915#12276]) +1 other test incomplete [313]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-glk2/igt@kms_vblank@ts-continuation-suspend.html * igt@kms_vrr@flip-dpms: - shard-rkl: NOTRUN -> [SKIP][314] ([i915#15243] / [i915#3555]) [314]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-rkl-7/igt@kms_vrr@flip-dpms.html * igt@kms_vrr@flipline: - shard-dg2: NOTRUN -> [SKIP][315] ([i915#15243] / [i915#3555]) [315]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-dg2-1/igt@kms_vrr@flipline.html - shard-dg1: NOTRUN -> [SKIP][316] ([i915#3555]) [316]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-dg1-14/igt@kms_vrr@flipline.html * igt@kms_vrr@negative-basic: - shard-rkl: NOTRUN -> [SKIP][317] ([i915#3555] / [i915#9906]) [317]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-rkl-5/igt@kms_vrr@negative-basic.html * igt@kms_vrr@seamless-rr-switch-drrs: - shard-tglu: NOTRUN -> [SKIP][318] ([i915#9906]) [318]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-tglu-6/igt@kms_vrr@seamless-rr-switch-drrs.html * igt@kms_vrr@seamless-rr-switch-vrr: - shard-rkl: NOTRUN -> [SKIP][319] ([i915#9906]) [319]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-rkl-2/igt@kms_vrr@seamless-rr-switch-vrr.html * igt@perf@non-zero-reason@0-rcs0: - shard-dg2: NOTRUN -> [FAIL][320] ([i915#9100]) +1 other test fail [320]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-dg2-1/igt@perf@non-zero-reason@0-rcs0.html * igt@perf_pmu@busy-double-start@vecs1: - shard-dg2: [PASS][321] -> [FAIL][322] ([i915#4349]) +8 other tests fail [321]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-dg2-6/igt@perf_pmu@busy-double-start@vecs1.html [322]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-dg2-4/igt@perf_pmu@busy-double-start@vecs1.html * igt@perf_pmu@module-unload: - shard-glk: NOTRUN -> [FAIL][323] ([i915#14433]) [323]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-glk9/igt@perf_pmu@module-unload.html * igt@perf_pmu@semaphore-busy@vcs1: - shard-dg1: [PASS][324] -> [FAIL][325] ([i915#4349]) +5 other tests fail [324]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-dg1-12/igt@perf_pmu@semaphore-busy@vcs1.html [325]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-dg1-14/igt@perf_pmu@semaphore-busy@vcs1.html - shard-mtlp: [PASS][326] -> [FAIL][327] ([i915#4349]) +1 other test fail [326]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-mtlp-4/igt@perf_pmu@semaphore-busy@vcs1.html [327]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-mtlp-5/igt@perf_pmu@semaphore-busy@vcs1.html * igt@prime_vgem@basic-fence-flip: - shard-dg1: NOTRUN -> [SKIP][328] ([i915#3708]) +1 other test skip [328]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-dg1-16/igt@prime_vgem@basic-fence-flip.html * igt@prime_vgem@basic-fence-read: - shard-rkl: NOTRUN -> [SKIP][329] ([i915#14544] / [i915#3291] / [i915#3708]) [329]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-rkl-6/igt@prime_vgem@basic-fence-read.html * igt@prime_vgem@basic-read: - shard-dg2: NOTRUN -> [SKIP][330] ([i915#3291] / [i915#3708]) [330]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-dg2-7/igt@prime_vgem@basic-read.html * igt@prime_vgem@basic-write: - shard-rkl: NOTRUN -> [SKIP][331] ([i915#3291] / [i915#3708]) [331]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-rkl-7/igt@prime_vgem@basic-write.html * igt@prime_vgem@coherency-gtt: - shard-rkl: NOTRUN -> [SKIP][332] ([i915#3708]) [332]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-rkl-3/igt@prime_vgem@coherency-gtt.html * igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-7: - shard-tglu-1: NOTRUN -> [FAIL][333] ([i915#12910]) +9 other tests fail [333]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-tglu-1/igt@sriov_basic@enable-vfs-autoprobe-on@numvfs-7.html #### Possible fixes #### * igt@gem_exec_suspend@basic-s4-devices: - shard-rkl: [ABORT][334] ([i915#7975]) -> [PASS][335] +1 other test pass [334]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-1/igt@gem_exec_suspend@basic-s4-devices.html [335]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-rkl-8/igt@gem_exec_suspend@basic-s4-devices.html * igt@gem_pxp@create-valid-protected-context: - shard-rkl: [SKIP][336] ([i915#4270]) -> [PASS][337] [336]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-4/igt@gem_pxp@create-valid-protected-context.html [337]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-rkl-3/igt@gem_pxp@create-valid-protected-context.html * igt@gem_workarounds@suspend-resume-context: - shard-rkl: [INCOMPLETE][338] ([i915#13356]) -> [PASS][339] +1 other test pass [338]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-6/igt@gem_workarounds@suspend-resume-context.html [339]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-rkl-4/igt@gem_workarounds@suspend-resume-context.html * igt@i915_pm_rpm@system-suspend: - shard-dg1: [DMESG-WARN][340] ([i915#4391] / [i915#4423]) -> [PASS][341] +1 other test pass [340]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-dg1-14/igt@i915_pm_rpm@system-suspend.html [341]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-dg1-14/igt@i915_pm_rpm@system-suspend.html * igt@i915_selftest@live@workarounds: - shard-dg2: [DMESG-FAIL][342] ([i915#12061]) -> [PASS][343] +1 other test pass [342]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-dg2-4/igt@i915_selftest@live@workarounds.html [343]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-dg2-3/igt@i915_selftest@live@workarounds.html * igt@i915_suspend@debugfs-reader: - shard-rkl: [INCOMPLETE][344] ([i915#4817]) -> [PASS][345] [344]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-3/igt@i915_suspend@debugfs-reader.html [345]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-rkl-8/igt@i915_suspend@debugfs-reader.html * igt@kms_3d@basic: - shard-mtlp: [SKIP][346] -> [PASS][347] +1 other test pass [346]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-mtlp-1/igt@kms_3d@basic.html [347]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-mtlp-2/igt@kms_3d@basic.html * igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1: - shard-tglu: [FAIL][348] -> [PASS][349] +3 other tests pass [348]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-tglu-4/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html [349]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-tglu-10/igt@kms_atomic_transition@plane-all-modeset-transition@pipe-a-hdmi-a-1.html * igt@kms_cursor_crc@cursor-onscreen-128x42: - shard-rkl: [FAIL][350] ([i915#13566]) -> [PASS][351] +4 other tests pass [350]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-2/igt@kms_cursor_crc@cursor-onscreen-128x42.html [351]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-rkl-4/igt@kms_cursor_crc@cursor-onscreen-128x42.html * igt@kms_cursor_crc@cursor-onscreen-256x85: - shard-tglu: [FAIL][352] ([i915#13566]) -> [PASS][353] +5 other tests pass [352]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-tglu-8/igt@kms_cursor_crc@cursor-onscreen-256x85.html [353]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-tglu-10/igt@kms_cursor_crc@cursor-onscreen-256x85.html * igt@kms_flip@2x-flip-vs-suspend@ab-vga1-hdmi-a1: - shard-snb: [TIMEOUT][354] ([i915#14033]) -> [PASS][355] +1 other test pass [354]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-snb6/igt@kms_flip@2x-flip-vs-suspend@ab-vga1-hdmi-a1.html [355]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-snb7/igt@kms_flip@2x-flip-vs-suspend@ab-vga1-hdmi-a1.html * igt@kms_flip@flip-vs-expired-vblank-interruptible: - shard-dg2: [FAIL][356] ([i915#13027]) -> [PASS][357] [356]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-dg2-4/igt@kms_flip@flip-vs-expired-vblank-interruptible.html [357]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-dg2-3/igt@kms_flip@flip-vs-expired-vblank-interruptible.html * igt@kms_pm_rpm@modeset-lpsp-stress: - shard-dg1: [SKIP][358] ([i915#15073]) -> [PASS][359] +2 other tests pass [358]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-dg1-17/igt@kms_pm_rpm@modeset-lpsp-stress.html [359]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-dg1-14/igt@kms_pm_rpm@modeset-lpsp-stress.html * igt@kms_pm_rpm@modeset-non-lpsp-stress: - shard-rkl: [SKIP][360] ([i915#15073]) -> [PASS][361] [360]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-5/igt@kms_pm_rpm@modeset-non-lpsp-stress.html [361]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-rkl-7/igt@kms_pm_rpm@modeset-non-lpsp-stress.html * igt@kms_vblank@wait-idle: - shard-dg1: [DMESG-WARN][362] ([i915#4423]) -> [PASS][363] +1 other test pass [362]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-dg1-13/igt@kms_vblank@wait-idle.html [363]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-dg1-14/igt@kms_vblank@wait-idle.html * igt@kms_vrr@negative-basic: - shard-mtlp: [FAIL][364] ([i915#15420]) -> [PASS][365] +1 other test pass [364]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-mtlp-2/igt@kms_vrr@negative-basic.html [365]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-mtlp-6/igt@kms_vrr@negative-basic.html * igt@perf_pmu@most-busy-idle-check-all: - shard-dg1: [FAIL][366] ([i915#15520]) -> [PASS][367] +1 other test pass [366]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-dg1-13/igt@perf_pmu@most-busy-idle-check-all.html [367]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-dg1-13/igt@perf_pmu@most-busy-idle-check-all.html - shard-mtlp: [FAIL][368] ([i915#15520]) -> [PASS][369] +1 other test pass [368]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-mtlp-5/igt@perf_pmu@most-busy-idle-check-all.html [369]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-mtlp-7/igt@perf_pmu@most-busy-idle-check-all.html #### Warnings #### * igt@api_intel_bb@object-reloc-keep-cache: - shard-rkl: [SKIP][370] ([i915#14544] / [i915#8411]) -> [SKIP][371] ([i915#8411]) [370]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-6/igt@api_intel_bb@object-reloc-keep-cache.html [371]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-rkl-3/igt@api_intel_bb@object-reloc-keep-cache.html * igt@gem_exec_balancer@parallel-balancer: - shard-rkl: [SKIP][372] ([i915#14544] / [i915#4525]) -> [SKIP][373] ([i915#4525]) +2 other tests skip [372]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-6/igt@gem_exec_balancer@parallel-balancer.html [373]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-rkl-4/igt@gem_exec_balancer@parallel-balancer.html * igt@gem_exec_reloc@basic-cpu-gtt-noreloc: - shard-rkl: [SKIP][374] ([i915#14544] / [i915#3281]) -> [SKIP][375] ([i915#3281]) +6 other tests skip [374]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-6/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html [375]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-rkl-2/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html * igt@gem_exec_reloc@basic-scanout: - shard-rkl: [SKIP][376] ([i915#3281]) -> [SKIP][377] ([i915#14544] / [i915#3281]) +1 other test skip [376]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-5/igt@gem_exec_reloc@basic-scanout.html [377]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-rkl-6/igt@gem_exec_reloc@basic-scanout.html * igt@gem_lmem_swapping@massive: - shard-rkl: [SKIP][378] ([i915#14544] / [i915#4613]) -> [SKIP][379] ([i915#4613]) +1 other test skip [378]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-6/igt@gem_lmem_swapping@massive.html [379]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-rkl-8/igt@gem_lmem_swapping@massive.html * igt@gem_pread@snoop: - shard-rkl: [SKIP][380] ([i915#3282]) -> [SKIP][381] ([i915#14544] / [i915#3282]) +2 other tests skip [380]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-3/igt@gem_pread@snoop.html [381]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-rkl-6/igt@gem_pread@snoop.html * igt@gem_readwrite@beyond-eob: - shard-rkl: [SKIP][382] ([i915#14544] / [i915#3282]) -> [SKIP][383] ([i915#3282]) +3 other tests skip [382]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-6/igt@gem_readwrite@beyond-eob.html [383]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-rkl-7/igt@gem_readwrite@beyond-eob.html * igt@gem_userptr_blits@dmabuf-unsync: - shard-rkl: [SKIP][384] ([i915#14544] / [i915#3297]) -> [SKIP][385] ([i915#3297]) +1 other test skip [384]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-6/igt@gem_userptr_blits@dmabuf-unsync.html [385]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-rkl-5/igt@gem_userptr_blits@dmabuf-unsync.html * igt@gem_userptr_blits@forbidden-operations: - shard-rkl: [SKIP][386] ([i915#14544] / [i915#3282] / [i915#3297]) -> [SKIP][387] ([i915#3282] / [i915#3297]) [386]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-6/igt@gem_userptr_blits@forbidden-operations.html [387]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-rkl-2/igt@gem_userptr_blits@forbidden-operations.html * igt@gen9_exec_parse@bb-start-param: - shard-rkl: [SKIP][388] ([i915#14544] / [i915#2527]) -> [SKIP][389] ([i915#2527]) +1 other test skip [388]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-6/igt@gen9_exec_parse@bb-start-param.html [389]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-rkl-3/igt@gen9_exec_parse@bb-start-param.html * igt@gen9_exec_parse@secure-batches: - shard-rkl: [SKIP][390] ([i915#2527]) -> [SKIP][391] ([i915#14544] / [i915#2527]) [390]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-2/igt@gen9_exec_parse@secure-batches.html [391]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-rkl-6/igt@gen9_exec_parse@secure-batches.html * igt@i915_pm_freq_api@freq-reset: - shard-rkl: [SKIP][392] ([i915#8399]) -> [SKIP][393] ([i915#14544] / [i915#8399]) [392]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-3/igt@i915_pm_freq_api@freq-reset.html [393]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-rkl-6/igt@i915_pm_freq_api@freq-reset.html * igt@i915_pm_rpm@gem-execbuf-stress-pc8: - shard-dg1: [SKIP][394] ([i915#4423]) -> [SKIP][395] [394]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-dg1-13/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html [395]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-dg1-17/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html * igt@i915_pm_sseu@full-enable: - shard-rkl: [SKIP][396] ([i915#14544] / [i915#4387]) -> [SKIP][397] ([i915#4387]) [396]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-6/igt@i915_pm_sseu@full-enable.html [397]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-rkl-7/igt@i915_pm_sseu@full-enable.html * igt@kms_big_fb@4-tiled-16bpp-rotate-90: - shard-rkl: [SKIP][398] ([i915#14544] / [i915#5286]) -> [SKIP][399] ([i915#5286]) +2 other tests skip [398]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-6/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html [399]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-rkl-8/igt@kms_big_fb@4-tiled-16bpp-rotate-90.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-rkl: [SKIP][400] ([i915#5286]) -> [SKIP][401] ([i915#14544] / [i915#5286]) +1 other test skip [400]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html [401]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-rkl-6/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_big_fb@x-tiled-32bpp-rotate-90: - shard-rkl: [SKIP][402] ([i915#14544] / [i915#3638]) -> [SKIP][403] ([i915#3638]) [402]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-6/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html [403]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-rkl-8/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html * igt@kms_big_fb@x-tiled-8bpp-rotate-270: - shard-rkl: [SKIP][404] ([i915#3638]) -> [SKIP][405] ([i915#14544] / [i915#3638]) [404]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-4/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html [405]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-rkl-6/igt@kms_big_fb@x-tiled-8bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-90: - shard-rkl: [SKIP][406] ([i915#14544]) -> [SKIP][407] +7 other tests skip [406]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-6/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html [407]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-rkl-8/igt@kms_big_fb@yf-tiled-64bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-addfb-size-overflow: - shard-rkl: [SKIP][408] -> [SKIP][409] ([i915#14544]) +5 other tests skip [408]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-4/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html [409]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-rkl-6/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html * igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs: - shard-rkl: [SKIP][410] ([i915#12313] / [i915#14544]) -> [SKIP][411] ([i915#12313]) [410]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-6/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html [411]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-rkl-4/igt@kms_ccs@crc-primary-basic-4-tiled-bmg-ccs.html * igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs: - shard-dg1: [SKIP][412] ([i915#12313]) -> [SKIP][413] ([i915#12313] / [i915#4423]) [412]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-dg1-17/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html [413]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-dg1-17/igt@kms_ccs@crc-primary-basic-4-tiled-lnl-ccs.html * igt@kms_ccs@crc-primary-rotation-180-y-tiled-ccs: - shard-rkl: [SKIP][414] ([i915#14098] / [i915#6095]) -> [SKIP][415] ([i915#14098] / [i915#14544] / [i915#6095]) +3 other tests skip [414]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-4/igt@kms_ccs@crc-primary-rotation-180-y-tiled-ccs.html [415]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-rkl-6/igt@kms_ccs@crc-primary-rotation-180-y-tiled-ccs.html * igt@kms_ccs@crc-primary-rotation-180-y-tiled-ccs@pipe-b-hdmi-a-2: - shard-rkl: [SKIP][416] ([i915#6095]) -> [SKIP][417] ([i915#14544] / [i915#6095]) +1 other test skip [416]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-4/igt@kms_ccs@crc-primary-rotation-180-y-tiled-ccs@pipe-b-hdmi-a-2.html [417]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-rkl-6/igt@kms_ccs@crc-primary-rotation-180-y-tiled-ccs@pipe-b-hdmi-a-2.html * igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs: - shard-rkl: [SKIP][418] ([i915#14098] / [i915#14544] / [i915#6095]) -> [SKIP][419] ([i915#14098] / [i915#6095]) +8 other tests skip [418]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-6/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs.html [419]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-rkl-3/igt@kms_ccs@crc-primary-suspend-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-2: - shard-rkl: [SKIP][420] ([i915#14544] / [i915#6095]) -> [SKIP][421] ([i915#6095]) +6 other tests skip [420]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-6/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-2.html [421]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-rkl-3/igt@kms_ccs@random-ccs-data-4-tiled-mtl-rc-ccs-cc@pipe-a-hdmi-a-2.html * igt@kms_chamelium_frames@hdmi-cmp-planar-formats: - shard-rkl: [SKIP][422] ([i915#11151] / [i915#7828]) -> [SKIP][423] ([i915#11151] / [i915#14544] / [i915#7828]) +2 other tests skip [422]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-2/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html [423]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-rkl-6/igt@kms_chamelium_frames@hdmi-cmp-planar-formats.html * igt@kms_chamelium_hpd@dp-hpd-storm: - shard-rkl: [SKIP][424] ([i915#11151] / [i915#14544] / [i915#7828]) -> [SKIP][425] ([i915#11151] / [i915#7828]) +2 other tests skip [424]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-6/igt@kms_chamelium_hpd@dp-hpd-storm.html [425]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-rkl-5/igt@kms_chamelium_hpd@dp-hpd-storm.html * igt@kms_content_protection@atomic-dpms: - shard-dg2: [FAIL][426] ([i915#7173]) -> [SKIP][427] ([i915#6944] / [i915#7118] / [i915#9424]) [426]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-dg2-11/igt@kms_content_protection@atomic-dpms.html [427]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-dg2-1/igt@kms_content_protection@atomic-dpms.html * igt@kms_content_protection@atomic-dpms-hdcp14: - shard-rkl: [SKIP][428] ([i915#6944]) -> [SKIP][429] ([i915#14544] / [i915#6944]) [428]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-1/igt@kms_content_protection@atomic-dpms-hdcp14.html [429]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-rkl-6/igt@kms_content_protection@atomic-dpms-hdcp14.html * igt@kms_content_protection@dp-mst-type-0: - shard-rkl: [SKIP][430] ([i915#14544] / [i915#15330] / [i915#3116]) -> [SKIP][431] ([i915#15330] / [i915#3116]) [430]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-6/igt@kms_content_protection@dp-mst-type-0.html [431]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-rkl-7/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@dp-mst-type-0-suspend-resume: - shard-rkl: [SKIP][432] ([i915#14544] / [i915#15330]) -> [SKIP][433] ([i915#15330]) [432]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-6/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html [433]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-rkl-7/igt@kms_content_protection@dp-mst-type-0-suspend-resume.html * igt@kms_content_protection@uevent-hdcp14: - shard-dg2: [SKIP][434] ([i915#6944]) -> [FAIL][435] ([i915#7173]) [434]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-dg2-6/igt@kms_content_protection@uevent-hdcp14.html [435]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-dg2-11/igt@kms_content_protection@uevent-hdcp14.html * igt@kms_cursor_crc@cursor-random-32x10: - shard-rkl: [SKIP][436] ([i915#14544] / [i915#3555]) -> [SKIP][437] ([i915#3555]) +2 other tests skip [436]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-6/igt@kms_cursor_crc@cursor-random-32x10.html [437]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-rkl-4/igt@kms_cursor_crc@cursor-random-32x10.html * igt@kms_cursor_crc@cursor-sliding-512x170: - shard-rkl: [SKIP][438] ([i915#13049] / [i915#14544]) -> [SKIP][439] ([i915#13049]) [438]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-6/igt@kms_cursor_crc@cursor-sliding-512x170.html [439]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-rkl-5/igt@kms_cursor_crc@cursor-sliding-512x170.html * igt@kms_dsc@dsc-with-bpc: - shard-rkl: [SKIP][440] ([i915#14544] / [i915#3555] / [i915#3840]) -> [SKIP][441] ([i915#3555] / [i915#3840]) [440]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-6/igt@kms_dsc@dsc-with-bpc.html [441]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-rkl-4/igt@kms_dsc@dsc-with-bpc.html * igt@kms_feature_discovery@display-4x: - shard-rkl: [SKIP][442] ([i915#14544] / [i915#1839]) -> [SKIP][443] ([i915#1839]) [442]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-6/igt@kms_feature_discovery@display-4x.html [443]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-rkl-8/igt@kms_feature_discovery@display-4x.html * igt@kms_feature_discovery@psr1: - shard-rkl: [SKIP][444] ([i915#658]) -> [SKIP][445] ([i915#14544] / [i915#658]) [444]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-8/igt@kms_feature_discovery@psr1.html [445]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-rkl-6/igt@kms_feature_discovery@psr1.html * igt@kms_flip@2x-blocking-wf_vblank: - shard-rkl: [SKIP][446] ([i915#14544] / [i915#9934]) -> [SKIP][447] ([i915#9934]) +2 other tests skip [446]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-6/igt@kms_flip@2x-blocking-wf_vblank.html [447]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-rkl-2/igt@kms_flip@2x-blocking-wf_vblank.html * igt@kms_flip@2x-flip-vs-dpms: - shard-rkl: [SKIP][448] ([i915#9934]) -> [SKIP][449] ([i915#14544] / [i915#9934]) +2 other tests skip [448]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-3/igt@kms_flip@2x-flip-vs-dpms.html [449]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-rkl-6/igt@kms_flip@2x-flip-vs-dpms.html * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling: - shard-rkl: [SKIP][450] ([i915#15643]) -> [SKIP][451] ([i915#14544] / [i915#15643]) +2 other tests skip [450]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-2/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html [451]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-64bpp-4tile-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling: - shard-rkl: [SKIP][452] ([i915#14544] / [i915#15643]) -> [SKIP][453] ([i915#15643]) [452]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html [453]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-rkl-7/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt: - shard-rkl: [SKIP][454] ([i915#14544] / [i915#1825]) -> [SKIP][455] ([i915#1825]) +20 other tests skip [454]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt.html [455]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-blt: - shard-rkl: [SKIP][456] ([i915#15102] / [i915#3023]) -> [SKIP][457] ([i915#14544] / [i915#15102] / [i915#3023]) +5 other tests skip [456]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-4/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-blt.html [457]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-rkl-6/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render: - shard-dg2: [SKIP][458] ([i915#10433] / [i915#15102] / [i915#3458]) -> [SKIP][459] ([i915#15102] / [i915#3458]) [458]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render.html [459]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-dg2-3/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render.html * igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-wc: - shard-rkl: [SKIP][460] ([i915#14544] / [i915#15102]) -> [SKIP][461] ([i915#15102]) +1 other test skip [460]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-wc.html [461]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-1p-offscreen-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt: - shard-rkl: [SKIP][462] ([i915#14544] / [i915#15102] / [i915#3023]) -> [SKIP][463] ([i915#15102] / [i915#3023]) +6 other tests skip [462]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html [463]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-rkl-8/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt: - shard-dg1: [SKIP][464] ([i915#4423] / [i915#8708]) -> [SKIP][465] ([i915#8708]) [464]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-dg1-13/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt.html [465]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-dg1-12/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-pwrite: - shard-rkl: [SKIP][466] ([i915#1825]) -> [SKIP][467] ([i915#14544] / [i915#1825]) +9 other tests skip [466]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-pwrite.html [467]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-abgr161616f-draw-mmap-gtt: - shard-rkl: [SKIP][468] ([i915#14544] / [i915#15574]) -> [SKIP][469] ([i915#15574]) [468]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-abgr161616f-draw-mmap-gtt.html [469]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-abgr161616f-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-abgr161616f-draw-pwrite: - shard-rkl: [SKIP][470] ([i915#15574]) -> [SKIP][471] ([i915#14544] / [i915#15574]) +1 other test skip [470]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-abgr161616f-draw-pwrite.html [471]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-abgr161616f-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary: - shard-dg2: [SKIP][472] ([i915#15102] / [i915#3458]) -> [SKIP][473] ([i915#10433] / [i915#15102] / [i915#3458]) +4 other tests skip [472]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-dg2-1/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html [473]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-dg2-4/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html * igt@kms_hdr@bpc-switch-suspend: - shard-rkl: [SKIP][474] ([i915#3555] / [i915#8228]) -> [INCOMPLETE][475] ([i915#15436]) [474]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-2/igt@kms_hdr@bpc-switch-suspend.html [475]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-rkl-6/igt@kms_hdr@bpc-switch-suspend.html * igt@kms_panel_fitting@legacy: - shard-rkl: [SKIP][476] ([i915#14544] / [i915#6301]) -> [SKIP][477] ([i915#6301]) [476]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-6/igt@kms_panel_fitting@legacy.html [477]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-rkl-2/igt@kms_panel_fitting@legacy.html * igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier-source-clamping: - shard-rkl: [SKIP][478] ([i915#15608] / [i915#15609] / [i915#8825]) -> [SKIP][479] ([i915#14544]) [478]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-3/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier-source-clamping.html [479]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-rkl-6/igt@kms_plane@pixel-format-4-tiled-dg2-rc-ccs-cc-modifier-source-clamping.html * igt@kms_plane@pixel-format-y-tiled-ccs-modifier: - shard-rkl: [SKIP][480] ([i915#15608] / [i915#8825]) -> [SKIP][481] ([i915#14544]) +1 other test skip [480]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-7/igt@kms_plane@pixel-format-y-tiled-ccs-modifier.html [481]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-rkl-6/igt@kms_plane@pixel-format-y-tiled-ccs-modifier.html * igt@kms_pm_dc@dc6-dpms: - shard-tglu: [FAIL][482] ([i915#9295]) -> [SKIP][483] ([i915#15128]) [482]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-tglu-8/igt@kms_pm_dc@dc6-dpms.html [483]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-tglu-6/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_lpsp@kms-lpsp: - shard-rkl: [SKIP][484] ([i915#9340]) -> [SKIP][485] ([i915#3828]) [484]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-3/igt@kms_pm_lpsp@kms-lpsp.html [485]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-rkl-5/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_rpm@package-g7: - shard-rkl: [SKIP][486] ([i915#15403]) -> [SKIP][487] ([i915#14544] / [i915#15403]) [486]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-4/igt@kms_pm_rpm@package-g7.html [487]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-rkl-6/igt@kms_pm_rpm@package-g7.html * igt@kms_pm_rpm@pc8-residency: - shard-dg1: [SKIP][488] -> [SKIP][489] ([i915#4423]) +1 other test skip [488]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-dg1-13/igt@kms_pm_rpm@pc8-residency.html [489]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-dg1-17/igt@kms_pm_rpm@pc8-residency.html * igt@kms_prime@basic-crc-hybrid: - shard-rkl: [SKIP][490] ([i915#14544] / [i915#6524]) -> [SKIP][491] ([i915#6524]) [490]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-6/igt@kms_prime@basic-crc-hybrid.html [491]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-rkl-5/igt@kms_prime@basic-crc-hybrid.html * igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf: - shard-rkl: [SKIP][492] ([i915#11520]) -> [SKIP][493] ([i915#11520] / [i915#14544]) +3 other tests skip [492]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-2/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html [493]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-rkl-6/igt@kms_psr2_sf@fbc-pr-cursor-plane-move-continuous-exceed-fully-sf.html * igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf: - shard-rkl: [SKIP][494] ([i915#11520] / [i915#14544]) -> [SKIP][495] ([i915#11520]) +2 other tests skip [494]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-6/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf.html [495]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-rkl-3/igt@kms_psr2_sf@pr-overlay-plane-move-continuous-exceed-sf.html * igt@kms_psr@fbc-pr-cursor-blt: - shard-dg1: [SKIP][496] ([i915#1072] / [i915#4423] / [i915#9732]) -> [SKIP][497] ([i915#1072] / [i915#9732]) [496]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-dg1-12/igt@kms_psr@fbc-pr-cursor-blt.html [497]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-dg1-18/igt@kms_psr@fbc-pr-cursor-blt.html * igt@kms_psr@fbc-psr-sprite-mmap-gtt: - shard-rkl: [SKIP][498] ([i915#1072] / [i915#14544] / [i915#9732]) -> [SKIP][499] ([i915#1072] / [i915#9732]) +5 other tests skip [498]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-6/igt@kms_psr@fbc-psr-sprite-mmap-gtt.html [499]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-rkl-3/igt@kms_psr@fbc-psr-sprite-mmap-gtt.html * igt@kms_psr@psr2-cursor-blt: - shard-rkl: [SKIP][500] ([i915#1072] / [i915#9732]) -> [SKIP][501] ([i915#1072] / [i915#14544] / [i915#9732]) +8 other tests skip [500]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-3/igt@kms_psr@psr2-cursor-blt.html [501]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-rkl-6/igt@kms_psr@psr2-cursor-blt.html * igt@kms_setmode@invalid-clone-single-crtc-stealing: - shard-rkl: [SKIP][502] ([i915#3555]) -> [SKIP][503] ([i915#14544] / [i915#3555]) [502]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-3/igt@kms_setmode@invalid-clone-single-crtc-stealing.html [503]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-rkl-6/igt@kms_setmode@invalid-clone-single-crtc-stealing.html * igt@perf@gen8-unprivileged-single-ctx-counters: - shard-rkl: [SKIP][504] ([i915#2436]) -> [SKIP][505] ([i915#14544] / [i915#2436]) [504]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-2/igt@perf@gen8-unprivileged-single-ctx-counters.html [505]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-rkl-6/igt@perf@gen8-unprivileged-single-ctx-counters.html * igt@perf_pmu@rc6-all-gts: - shard-rkl: [SKIP][506] ([i915#14544] / [i915#8516]) -> [SKIP][507] ([i915#8516]) [506]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-6/igt@perf_pmu@rc6-all-gts.html [507]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-rkl-5/igt@perf_pmu@rc6-all-gts.html * igt@sriov_basic@enable-vfs-bind-unbind-each: - shard-rkl: [SKIP][508] ([i915#9917]) -> [SKIP][509] ([i915#14544] / [i915#9917]) [508]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-5/igt@sriov_basic@enable-vfs-bind-unbind-each.html [509]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-rkl-6/igt@sriov_basic@enable-vfs-bind-unbind-each.html * igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all: - shard-rkl: [SKIP][510] ([i915#14544] / [i915#9917]) -> [SKIP][511] ([i915#9917]) [510]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_17930/shard-rkl-6/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html [511]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_14486/shard-rkl-4/igt@sriov_basic@enable-vfs-bind-unbind-each-numvfs-all.html [i915#10056]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10056 [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307 [i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433 [i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434 [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078 [i915#11151]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11151 [i915#11520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11520 [i915#11713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11713 [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#12276]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12276 [i915#12313]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12313 [i915#12316]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12316 [i915#1257]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257 [i915#12713]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12713 [i915#12745]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12745 [i915#12755]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12755 [i915#12910]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12910 [i915#13008]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13008 [i915#13027]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13027 [i915#13049]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13049 [i915#13356]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13356 [i915#13390]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13390 [i915#13566]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13566 [i915#13688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13688 [i915#13748]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13748 [i915#13749]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13749 [i915#13820]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13820 [i915#13958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13958 [i915#14033]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14033 [i915#14098]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14098 [i915#14118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14118 [i915#14123]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14123 [i915#14419]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14419 [i915#14433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14433 [i915#14544]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14544 [i915#14712]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14712 [i915#14809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/14809 [i915#15073]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15073 [i915#15102]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15102 [i915#15104]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15104 [i915#15106]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15106 [i915#15128]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15128 [i915#15131]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15131 [i915#15140]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15140 [i915#15243]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15243 [i915#15329]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15329 [i915#15330]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15330 [i915#15342]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15342 [i915#15389]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15389 [i915#15403]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15403 [i915#15420]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15420 [i915#15436]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15436 [i915#15458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15458 [i915#15459]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15459 [i915#15492]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15492 [i915#15520]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15520 [i915#15574]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15574 [i915#15582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15582 [i915#15608]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15608 [i915#15609]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15609 [i915#15638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15638 [i915#15643]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15643 [i915#15645]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/15645 [i915#1769]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1769 [i915#1825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1839 [i915#2065]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2065 [i915#2436]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2436 [i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527 [i915#2658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2658 [i915#280]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/280 [i915#2856]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3023 [i915#3116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3116 [i915#3281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3297 [i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458 [i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#3637]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3638 [i915#3708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3708 [i915#3742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3742 [i915#3828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3828 [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840 [i915#3955]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3955 [i915#4077]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4083 [i915#4103]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4103 [i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270 [i915#4281]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4281 [i915#4349]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4349 [i915#4387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4387 [i915#4391]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4391 [i915#4423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4423 [i915#4525]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4525 [i915#4537]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4537 [i915#4538]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4538 [i915#4613]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4613 [i915#4771]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4771 [i915#4812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4812 [i915#4817]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4817 [i915#4839]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4839 [i915#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852 [i915#4854]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4854 [i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860 [i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190 [i915#5286]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5289 [i915#5354]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5354 [i915#5439]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5439 [i915#5723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5723 [i915#5882]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5882 [i915#5956]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5956 [i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095 [i915#6230]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6230 [i915#6301]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6301 [i915#6335]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6335 [i915#6524]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6524 [i915#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658 [i915#6590]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6590 [i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944 [i915#6953]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6953 [i915#7116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118 [i915#7173]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7173 [i915#7582]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7582 [i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697 [i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828 [i915#7975]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7975 [i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228 [i915#8399]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8399 [i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411 [i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428 [i915#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516 [i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555 [i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708 [i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814 [i915#8821]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8821 [i915#8825]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8825 [i915#9100]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9100 [i915#9295]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9295 [i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323 [i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340 [i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424 [i915#9531]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9531 [i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683 [i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688 [i915#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723 [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 [i915#9808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9808 [i915#9812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9812 [i915#9878]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9878 [i915#9906]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9906 [i915#9917]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9917 [i915#9934]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9934 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8732 -> IGTPW_14486 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_17930: 241994730989320c926da9f2d0a5ec80b48f993d @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_14486: 14486 IGT_8732: 020b7f0da24d0772e73338791288901d717d95f2 @ 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_14486/index.html [-- Attachment #2: Type: text/html, Size: 168782 bytes --] ^ permalink raw reply [flat|nested] 11+ messages in thread
end of thread, other threads:[~2026-02-09 5:19 UTC | newest] Thread overview: 11+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2026-02-04 8:39 [PATCH i-g-t 0/2] tests/kms_plane: Refine clamping and modifier skips Pranay Samala 2026-02-04 8:39 ` [PATCH i-g-t 1/2] tests/kms_plane: Skip cursor plane for source clamping Pranay Samala 2026-02-09 5:19 ` B, Jeevan 2026-02-04 8:39 ` [PATCH i-g-t 2/2] tests/kms_plane: Skip unsupported modifiers Pranay Samala 2026-02-04 10:40 ` Reddy Guddati, Santhosh 2026-02-04 18:04 ` Naladala, Ramanaidu 2026-02-05 1:15 ` Naladala, Ramanaidu 2026-02-04 9:34 ` ✓ Xe.CI.BAT: success for tests/kms_plane: Refine clamping and modifier skips Patchwork 2026-02-04 9:46 ` ✓ i915.CI.BAT: " Patchwork 2026-02-04 20:16 ` ✗ Xe.CI.FULL: failure " Patchwork 2026-02-04 21:44 ` ✗ i915.CI.Full: " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox