* [PATCH i-g-t v2 0/2] Update kms_plane test
@ 2024-05-24 8:48 Pranay Samala
2024-05-24 8:48 ` [PATCH i-g-t v2 1/2] tests/kms_plane: Reduce CI logging Pranay Samala
` (8 more replies)
0 siblings, 9 replies; 12+ messages in thread
From: Pranay Samala @ 2024-05-24 8:48 UTC (permalink / raw)
To: igt-dev; +Cc: karthik.b.s, jeevan.b, sameer.lattannavar, pranay.samala
First patch reduces the CI loggings.
Second patch converts the test structure to execute on multiple planes
on dynamic level.
Pranay Samala (2):
tests/kms_plane: Reduce CI logging
tests/kms_plane: Convert to dynamic subtests
tests/kms_plane.c | 72 +++++++++++++++++++++++++++--------------------
1 file changed, 42 insertions(+), 30 deletions(-)
--
2.34.1
^ permalink raw reply [flat|nested] 12+ messages in thread* [PATCH i-g-t v2 1/2] tests/kms_plane: Reduce CI logging 2024-05-24 8:48 [PATCH i-g-t v2 0/2] Update kms_plane test Pranay Samala @ 2024-05-24 8:48 ` Pranay Samala 2024-05-27 15:58 ` Juha-Pekka Heikkila 2024-05-24 8:48 ` [PATCH i-g-t v2 2/2] tests/kms_plane: Convert to dynamic subtests Pranay Samala ` (7 subsequent siblings) 8 siblings, 1 reply; 12+ messages in thread From: Pranay Samala @ 2024-05-24 8:48 UTC (permalink / raw) To: igt-dev Cc: karthik.b.s, jeevan.b, sameer.lattannavar, pranay.samala, Kamil Konieczny, Juha-pekka Heikkila Replacing igt_info with igt_debug to reduce CI logging. Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com> Cc: Juha-pekka Heikkila <juha-pekka.heikkila@intel.com> Cc: Karthik B S <karthik.b.s@intel.com> Signed-off-by: Pranay Samala <pranay.samala@intel.com> --- tests/kms_plane.c | 45 +++++++++++++++++++++++++-------------------- 1 file changed, 25 insertions(+), 20 deletions(-) diff --git a/tests/kms_plane.c b/tests/kms_plane.c index 406aecc04..9062320e1 100644 --- a/tests/kms_plane.c +++ b/tests/kms_plane.c @@ -275,8 +275,8 @@ test_plane_position_with_output(data_t *data, drmModeModeInfo *mode; igt_crc_t crc, crc2; - igt_info("Testing connector %s using pipe %s plane %d\n", - igt_output_name(output), kmstest_pipe_name(pipe), plane); + igt_debug("Testing connector %s using pipe %s plane %d\n", + igt_output_name(output), kmstest_pipe_name(pipe), plane); igt_output_set_pipe(output, pipe); @@ -285,8 +285,8 @@ test_plane_position_with_output(data_t *data, sprite = igt_output_get_plane(output, plane); if (primary->drm_plane->plane_id > sprite->drm_plane->plane_id) { - igt_info("primary plane ID (%d) > sprite plane ID (%d), skipping plane %d\n", - primary->drm_plane->plane_id, sprite->drm_plane->plane_id, plane); + igt_debug("primary plane ID (%d) > sprite plane ID (%d), skipping plane %d\n", + primary->drm_plane->plane_id, sprite->drm_plane->plane_id, plane); return; } @@ -415,8 +415,8 @@ test_plane_panning_with_output(data_t *data, mode = igt_output_get_mode(output); primary = igt_output_get_plane(output, 0); - igt_info("Testing connector %s using pipe %s, mode %s\n", - igt_output_name(output), kmstest_pipe_name(pipe), mode->name); + igt_debug("Testing connector %s using pipe %s, mode %s\n", + igt_output_name(output), kmstest_pipe_name(pipe), mode->name); create_fb_for_mode_panning(data, mode, &primary_fb); igt_plane_set_fb(primary, &primary_fb); @@ -889,9 +889,9 @@ static bool test_format_plane_rgb(data_t *data, enum pipe pipe, igt_crc_t ref_crc[], struct igt_fb *fb) { - igt_info("Testing format " IGT_FORMAT_FMT " / modifier " IGT_MODIFIER_FMT " on %s.%u\n", - IGT_FORMAT_ARGS(format), IGT_MODIFIER_ARGS(modifier), - kmstest_pipe_name(pipe), plane->index); + igt_debug("Testing format " IGT_FORMAT_FMT " / modifier " IGT_MODIFIER_FMT " on %s.%u\n", + IGT_FORMAT_ARGS(format), IGT_MODIFIER_ARGS(modifier), + kmstest_pipe_name(pipe), plane->index); return test_format_plane_colors(data, pipe, plane, format, modifier, @@ -927,11 +927,13 @@ static bool test_format_plane_yuv(data_t *data, enum pipe pipe, igt_color_range_to_str(r))) continue; - igt_info("Testing format " IGT_FORMAT_FMT " / modifier " IGT_MODIFIER_FMT " (%s, %s) on %s.%u\n", - IGT_FORMAT_ARGS(format), IGT_MODIFIER_ARGS(modifier), - igt_color_encoding_to_str(e), - igt_color_range_to_str(r), - kmstest_pipe_name(pipe), plane->index); + igt_debug("Testing format " IGT_FORMAT_FMT " / modifier " IGT_MODIFIER_FMT + " (%s, %s) on %s.%u\n", IGT_FORMAT_ARGS(format), + IGT_MODIFIER_ARGS(modifier), + igt_color_encoding_to_str(e), + igt_color_range_to_str(r), + kmstest_pipe_name(pipe), + plane->index); result &= test_format_plane_colors(data, pipe, plane, format, modifier, @@ -1043,9 +1045,9 @@ static bool test_format_plane(data_t *data, enum pipe pipe, igt_pipe_crc_start(data->pipe_crc); - igt_info("Testing format " IGT_FORMAT_FMT " / modifier " IGT_MODIFIER_FMT " on %s.%u\n", - IGT_FORMAT_ARGS(ref.format), IGT_MODIFIER_ARGS(ref.modifier), - kmstest_pipe_name(pipe), plane->index); + igt_debug("Testing format " IGT_FORMAT_FMT " / modifier " IGT_MODIFIER_FMT " on %s.%u\n", + IGT_FORMAT_ARGS(ref.format), IGT_MODIFIER_ARGS(ref.modifier), + kmstest_pipe_name(pipe), plane->index); check_allowed_plane_size_64x64(data, plane, &width, &height, ref.format); @@ -1089,9 +1091,12 @@ static bool test_format_plane(data_t *data, enum pipe pipe, }; if (igt_vec_index(&tested_formats, &rf) >= 0) { - igt_info("Skipping format " IGT_FORMAT_FMT " / modifier " IGT_MODIFIER_FMT " on %s.%u\n", - IGT_FORMAT_ARGS(f.format), IGT_MODIFIER_ARGS(f.modifier), - kmstest_pipe_name(pipe), plane->index); + igt_debug("Skipping format " IGT_FORMAT_FMT " / modifier " + IGT_MODIFIER_FMT " on %s.%u\n", + IGT_FORMAT_ARGS(f.format), + IGT_MODIFIER_ARGS(f.modifier), + kmstest_pipe_name(pipe), + plane->index); continue; } -- 2.34.1 ^ permalink raw reply related [flat|nested] 12+ messages in thread
* Re: [PATCH i-g-t v2 1/2] tests/kms_plane: Reduce CI logging 2024-05-24 8:48 ` [PATCH i-g-t v2 1/2] tests/kms_plane: Reduce CI logging Pranay Samala @ 2024-05-27 15:58 ` Juha-Pekka Heikkila 0 siblings, 0 replies; 12+ messages in thread From: Juha-Pekka Heikkila @ 2024-05-27 15:58 UTC (permalink / raw) To: Pranay Samala, igt-dev Cc: karthik.b.s, jeevan.b, sameer.lattannavar, Kamil Konieczny, Juha-pekka Heikkila Hi Pranay, you have indentation off here in several places. You can see those with checkpatch script from kernel source tree, run it with '--strict' parameter against this patch. /Juha-Pekka On 24.5.2024 11.48, Pranay Samala wrote: > Replacing igt_info with igt_debug to reduce CI logging. > > Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com> > Cc: Juha-pekka Heikkila <juha-pekka.heikkila@intel.com> > Cc: Karthik B S <karthik.b.s@intel.com> > > Signed-off-by: Pranay Samala <pranay.samala@intel.com> > --- > tests/kms_plane.c | 45 +++++++++++++++++++++++++-------------------- > 1 file changed, 25 insertions(+), 20 deletions(-) > > diff --git a/tests/kms_plane.c b/tests/kms_plane.c > index 406aecc04..9062320e1 100644 > --- a/tests/kms_plane.c > +++ b/tests/kms_plane.c > @@ -275,8 +275,8 @@ test_plane_position_with_output(data_t *data, > drmModeModeInfo *mode; > igt_crc_t crc, crc2; > > - igt_info("Testing connector %s using pipe %s plane %d\n", > - igt_output_name(output), kmstest_pipe_name(pipe), plane); > + igt_debug("Testing connector %s using pipe %s plane %d\n", > + igt_output_name(output), kmstest_pipe_name(pipe), plane); > > igt_output_set_pipe(output, pipe); > > @@ -285,8 +285,8 @@ test_plane_position_with_output(data_t *data, > sprite = igt_output_get_plane(output, plane); > > if (primary->drm_plane->plane_id > sprite->drm_plane->plane_id) { > - igt_info("primary plane ID (%d) > sprite plane ID (%d), skipping plane %d\n", > - primary->drm_plane->plane_id, sprite->drm_plane->plane_id, plane); > + igt_debug("primary plane ID (%d) > sprite plane ID (%d), skipping plane %d\n", > + primary->drm_plane->plane_id, sprite->drm_plane->plane_id, plane); > return; > } > > @@ -415,8 +415,8 @@ test_plane_panning_with_output(data_t *data, > mode = igt_output_get_mode(output); > primary = igt_output_get_plane(output, 0); > > - igt_info("Testing connector %s using pipe %s, mode %s\n", > - igt_output_name(output), kmstest_pipe_name(pipe), mode->name); > + igt_debug("Testing connector %s using pipe %s, mode %s\n", > + igt_output_name(output), kmstest_pipe_name(pipe), mode->name); > > create_fb_for_mode_panning(data, mode, &primary_fb); > igt_plane_set_fb(primary, &primary_fb); > @@ -889,9 +889,9 @@ static bool test_format_plane_rgb(data_t *data, enum pipe pipe, > igt_crc_t ref_crc[], > struct igt_fb *fb) > { > - igt_info("Testing format " IGT_FORMAT_FMT " / modifier " IGT_MODIFIER_FMT " on %s.%u\n", > - IGT_FORMAT_ARGS(format), IGT_MODIFIER_ARGS(modifier), > - kmstest_pipe_name(pipe), plane->index); > + igt_debug("Testing format " IGT_FORMAT_FMT " / modifier " IGT_MODIFIER_FMT " on %s.%u\n", > + IGT_FORMAT_ARGS(format), IGT_MODIFIER_ARGS(modifier), > + kmstest_pipe_name(pipe), plane->index); > > return test_format_plane_colors(data, pipe, plane, > format, modifier, > @@ -927,11 +927,13 @@ static bool test_format_plane_yuv(data_t *data, enum pipe pipe, > igt_color_range_to_str(r))) > continue; > > - igt_info("Testing format " IGT_FORMAT_FMT " / modifier " IGT_MODIFIER_FMT " (%s, %s) on %s.%u\n", > - IGT_FORMAT_ARGS(format), IGT_MODIFIER_ARGS(modifier), > - igt_color_encoding_to_str(e), > - igt_color_range_to_str(r), > - kmstest_pipe_name(pipe), plane->index); > + igt_debug("Testing format " IGT_FORMAT_FMT " / modifier " IGT_MODIFIER_FMT > + " (%s, %s) on %s.%u\n", IGT_FORMAT_ARGS(format), > + IGT_MODIFIER_ARGS(modifier), > + igt_color_encoding_to_str(e), > + igt_color_range_to_str(r), > + kmstest_pipe_name(pipe), > + plane->index); > > result &= test_format_plane_colors(data, pipe, plane, > format, modifier, > @@ -1043,9 +1045,9 @@ static bool test_format_plane(data_t *data, enum pipe pipe, > > igt_pipe_crc_start(data->pipe_crc); > > - igt_info("Testing format " IGT_FORMAT_FMT " / modifier " IGT_MODIFIER_FMT " on %s.%u\n", > - IGT_FORMAT_ARGS(ref.format), IGT_MODIFIER_ARGS(ref.modifier), > - kmstest_pipe_name(pipe), plane->index); > + igt_debug("Testing format " IGT_FORMAT_FMT " / modifier " IGT_MODIFIER_FMT " on %s.%u\n", > + IGT_FORMAT_ARGS(ref.format), IGT_MODIFIER_ARGS(ref.modifier), > + kmstest_pipe_name(pipe), plane->index); > > check_allowed_plane_size_64x64(data, plane, &width, &height, ref.format); > > @@ -1089,9 +1091,12 @@ static bool test_format_plane(data_t *data, enum pipe pipe, > }; > > if (igt_vec_index(&tested_formats, &rf) >= 0) { > - igt_info("Skipping format " IGT_FORMAT_FMT " / modifier " IGT_MODIFIER_FMT " on %s.%u\n", > - IGT_FORMAT_ARGS(f.format), IGT_MODIFIER_ARGS(f.modifier), > - kmstest_pipe_name(pipe), plane->index); > + igt_debug("Skipping format " IGT_FORMAT_FMT " / modifier " > + IGT_MODIFIER_FMT " on %s.%u\n", > + IGT_FORMAT_ARGS(f.format), > + IGT_MODIFIER_ARGS(f.modifier), > + kmstest_pipe_name(pipe), > + plane->index); > continue; > } > ^ permalink raw reply [flat|nested] 12+ messages in thread
* [PATCH i-g-t v2 2/2] tests/kms_plane: Convert to dynamic subtests 2024-05-24 8:48 [PATCH i-g-t v2 0/2] Update kms_plane test Pranay Samala 2024-05-24 8:48 ` [PATCH i-g-t v2 1/2] tests/kms_plane: Reduce CI logging Pranay Samala @ 2024-05-24 8:48 ` Pranay Samala 2024-05-27 15:59 ` Juha-Pekka Heikkila 2024-05-24 10:44 ` ✗ Fi.CI.BAT: failure for Update kms_plane test Patchwork ` (6 subsequent siblings) 8 siblings, 1 reply; 12+ messages in thread From: Pranay Samala @ 2024-05-24 8:48 UTC (permalink / raw) To: igt-dev Cc: karthik.b.s, jeevan.b, sameer.lattannavar, pranay.samala, Kamil Konieczny, Juha-pekka Heikkila The test runs on all pipes on dynamic level to test all the supported pixel-formats and modifiers on current plane of that pipe. Updating the test to execute on multiple planes on dynamic level. Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com> Cc: Juha-pekka Heikkila <juha-pekka.heikkila@intel.com> Cc: Karthik B S <karthik.b.s@intel.com> Signed-off-by: Pranay Samala <pranay.samala@intel.com> --- tests/kms_plane.c | 27 +++++++++++++++++---------- 1 file changed, 17 insertions(+), 10 deletions(-) diff --git a/tests/kms_plane.c b/tests/kms_plane.c index 9062320e1..55473f61e 100644 --- a/tests/kms_plane.c +++ b/tests/kms_plane.c @@ -351,10 +351,11 @@ test_plane_position(data_t *data, enum pipe pipe) test_init(data, pipe); test_grab_crc(data, output, pipe, &green, data->flags, &reference_crc); - for (int plane = 1; plane < n_planes; plane++) - test_plane_position_with_output(data, pipe, plane, - output, &reference_crc, - data->flags); + for (int plane = 1; plane < n_planes; plane++) { + igt_dynamic_f("pipe-%s-plane-%d", kmstest_pipe_name(pipe), plane) + test_plane_position_with_output(data, pipe, plane, output, + &reference_crc, data->flags); + } test_fini(data); } @@ -1216,7 +1217,8 @@ test_pixel_formats(data_t *data, enum pipe pipe) for_each_plane_on_pipe(&data->display, pipe, plane) { if (skip_plane(data, plane)) continue; - result &= test_format_plane(data, pipe, output, plane, &primary_fb); + igt_dynamic_f("pipe-%s-plane-%u", kmstest_pipe_name(pipe), plane->index) + result &= test_format_plane(data, pipe, output, plane, &primary_fb); } test_fini(data); @@ -1322,14 +1324,19 @@ static void run_test(data_t *data, void (*test)(data_t *, enum pipe)) continue; igt_output_set_pipe(data->output, PIPE_NONE); - igt_dynamic_f("pipe-%s", kmstest_pipe_name(pipe)) - test(data, pipe); + test(data, pipe); if (is_pipe_limit_reached(++count)) break; } } +static void dynamic_test_handler(data_t *data, enum pipe pipe) +{ + igt_dynamic_f("pipe-%s", kmstest_pipe_name(pipe)) + test_plane_panning(data, pipe); +} + static void run_tests_for_pipe_plane(data_t *data) { @@ -1366,20 +1373,20 @@ run_tests_for_pipe_plane(data_t *data) igt_describe("verify plane panning at top-left position using primary plane"); igt_subtest_with_dynamic_f("plane-panning-top-left") { data->flags = TEST_PANNING_TOP_LEFT; - run_test(data, test_plane_panning); + run_test(data, dynamic_test_handler); } igt_describe("verify plane panning at bottom-right position using primary plane"); igt_subtest_with_dynamic_f("plane-panning-bottom-right") { data->flags = TEST_PANNING_BOTTOM_RIGHT; - run_test(data, test_plane_panning); + run_test(data, dynamic_test_handler); } igt_describe("verify plane panning at bottom-right position using primary plane and executes system" "suspend cycles"); igt_subtest_with_dynamic_f("plane-panning-bottom-right-suspend") { data->flags = TEST_PANNING_BOTTOM_RIGHT | TEST_SUSPEND_RESUME; - run_test(data, test_plane_panning); + run_test(data, dynamic_test_handler); } igt_describe("verify planar settings for pixel format are accepted or rejected correctly"); -- 2.34.1 ^ permalink raw reply related [flat|nested] 12+ messages in thread
* Re: [PATCH i-g-t v2 2/2] tests/kms_plane: Convert to dynamic subtests 2024-05-24 8:48 ` [PATCH i-g-t v2 2/2] tests/kms_plane: Convert to dynamic subtests Pranay Samala @ 2024-05-27 15:59 ` Juha-Pekka Heikkila 0 siblings, 0 replies; 12+ messages in thread From: Juha-Pekka Heikkila @ 2024-05-27 15:59 UTC (permalink / raw) To: Pranay Samala, igt-dev Cc: karthik.b.s, jeevan.b, sameer.lattannavar, Kamil Konieczny, Juha-pekka Heikkila Look ok to me Reviewed-by: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com> On 24.5.2024 11.48, Pranay Samala wrote: > The test runs on all pipes on dynamic level to test all the supported > pixel-formats and modifiers on current plane of that pipe. > > Updating the test to execute on multiple planes on dynamic level. > > Cc: Kamil Konieczny <kamil.konieczny@linux.intel.com> > Cc: Juha-pekka Heikkila <juha-pekka.heikkila@intel.com> > Cc: Karthik B S <karthik.b.s@intel.com> > > Signed-off-by: Pranay Samala <pranay.samala@intel.com> > --- > tests/kms_plane.c | 27 +++++++++++++++++---------- > 1 file changed, 17 insertions(+), 10 deletions(-) > > diff --git a/tests/kms_plane.c b/tests/kms_plane.c > index 9062320e1..55473f61e 100644 > --- a/tests/kms_plane.c > +++ b/tests/kms_plane.c > @@ -351,10 +351,11 @@ test_plane_position(data_t *data, enum pipe pipe) > test_init(data, pipe); > test_grab_crc(data, output, pipe, &green, data->flags, &reference_crc); > > - for (int plane = 1; plane < n_planes; plane++) > - test_plane_position_with_output(data, pipe, plane, > - output, &reference_crc, > - data->flags); > + for (int plane = 1; plane < n_planes; plane++) { > + igt_dynamic_f("pipe-%s-plane-%d", kmstest_pipe_name(pipe), plane) > + test_plane_position_with_output(data, pipe, plane, output, > + &reference_crc, data->flags); > + } > > test_fini(data); > } > @@ -1216,7 +1217,8 @@ test_pixel_formats(data_t *data, enum pipe pipe) > for_each_plane_on_pipe(&data->display, pipe, plane) { > if (skip_plane(data, plane)) > continue; > - result &= test_format_plane(data, pipe, output, plane, &primary_fb); > + igt_dynamic_f("pipe-%s-plane-%u", kmstest_pipe_name(pipe), plane->index) > + result &= test_format_plane(data, pipe, output, plane, &primary_fb); > } > > test_fini(data); > @@ -1322,14 +1324,19 @@ static void run_test(data_t *data, void (*test)(data_t *, enum pipe)) > continue; > > igt_output_set_pipe(data->output, PIPE_NONE); > - igt_dynamic_f("pipe-%s", kmstest_pipe_name(pipe)) > - test(data, pipe); > + test(data, pipe); > > if (is_pipe_limit_reached(++count)) > break; > } > } > > +static void dynamic_test_handler(data_t *data, enum pipe pipe) > +{ > + igt_dynamic_f("pipe-%s", kmstest_pipe_name(pipe)) > + test_plane_panning(data, pipe); > +} > + > static void > run_tests_for_pipe_plane(data_t *data) > { > @@ -1366,20 +1373,20 @@ run_tests_for_pipe_plane(data_t *data) > igt_describe("verify plane panning at top-left position using primary plane"); > igt_subtest_with_dynamic_f("plane-panning-top-left") { > data->flags = TEST_PANNING_TOP_LEFT; > - run_test(data, test_plane_panning); > + run_test(data, dynamic_test_handler); > } > > igt_describe("verify plane panning at bottom-right position using primary plane"); > igt_subtest_with_dynamic_f("plane-panning-bottom-right") { > data->flags = TEST_PANNING_BOTTOM_RIGHT; > - run_test(data, test_plane_panning); > + run_test(data, dynamic_test_handler); > } > > igt_describe("verify plane panning at bottom-right position using primary plane and executes system" > "suspend cycles"); > igt_subtest_with_dynamic_f("plane-panning-bottom-right-suspend") { > data->flags = TEST_PANNING_BOTTOM_RIGHT | TEST_SUSPEND_RESUME; > - run_test(data, test_plane_panning); > + run_test(data, dynamic_test_handler); > } > > igt_describe("verify planar settings for pixel format are accepted or rejected correctly"); ^ permalink raw reply [flat|nested] 12+ messages in thread
* ✗ Fi.CI.BAT: failure for Update kms_plane test 2024-05-24 8:48 [PATCH i-g-t v2 0/2] Update kms_plane test Pranay Samala 2024-05-24 8:48 ` [PATCH i-g-t v2 1/2] tests/kms_plane: Reduce CI logging Pranay Samala 2024-05-24 8:48 ` [PATCH i-g-t v2 2/2] tests/kms_plane: Convert to dynamic subtests Pranay Samala @ 2024-05-24 10:44 ` Patchwork 2024-05-24 11:07 ` ✓ CI.xeBAT: success " Patchwork ` (5 subsequent siblings) 8 siblings, 0 replies; 12+ messages in thread From: Patchwork @ 2024-05-24 10:44 UTC (permalink / raw) To: Pranay Samala; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 4325 bytes --] == Series Details == Series: Update kms_plane test URL : https://patchwork.freedesktop.org/series/134006/ State : failure == Summary == CI Bug Log - changes from CI_DRM_14815 -> IGTPW_11188 ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_11188 absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_11188, 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_11188/index.html Participating hosts (41 -> 40) ------------------------------ Missing (1): fi-snb-2520m Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_11188: ### IGT changes ### #### Possible regressions #### * igt@dmabuf@all-tests@dma_fence: - bat-adlp-11: [PASS][1] -> [ABORT][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14815/bat-adlp-11/igt@dmabuf@all-tests@dma_fence.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11188/bat-adlp-11/igt@dmabuf@all-tests@dma_fence.html * igt@dmabuf@all-tests@dma_fence_chain: - bat-adlp-11: [PASS][3] -> [DMESG-FAIL][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14815/bat-adlp-11/igt@dmabuf@all-tests@dma_fence_chain.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11188/bat-adlp-11/igt@dmabuf@all-tests@dma_fence_chain.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@kms_pipe_crc_basic@nonblocking-crc@pipe-d-dp-6: - {bat-mtlp-9}: NOTRUN -> [FAIL][5] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11188/bat-mtlp-9/igt@kms_pipe_crc_basic@nonblocking-crc@pipe-d-dp-6.html Known issues ------------ Here are the changes found in IGTPW_11188 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_module_load@load: - bat-arls-3: [PASS][6] -> [ABORT][7] ([i915#11041]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14815/bat-arls-3/igt@i915_module_load@load.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11188/bat-arls-3/igt@i915_module_load@load.html #### Possible fixes #### * igt@kms_pipe_crc_basic@hang-read-crc@pipe-a-dp-6: - {bat-mtlp-9}: [DMESG-FAIL][8] ([i915#11009]) -> [PASS][9] [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14815/bat-mtlp-9/igt@kms_pipe_crc_basic@hang-read-crc@pipe-a-dp-6.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11188/bat-mtlp-9/igt@kms_pipe_crc_basic@hang-read-crc@pipe-a-dp-6.html * igt@kms_pipe_crc_basic@hang-read-crc@pipe-c-dp-6: - {bat-mtlp-9}: [FAIL][10] ([i915#10979]) -> [PASS][11] +2 other tests pass [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14815/bat-mtlp-9/igt@kms_pipe_crc_basic@hang-read-crc@pipe-c-dp-6.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11188/bat-mtlp-9/igt@kms_pipe_crc_basic@hang-read-crc@pipe-c-dp-6.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [i915#10979]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10979 [i915#11009]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11009 [i915#11041]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11041 [i915#11060]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11060 [i915#6121]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6121 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7871 -> IGTPW_11188 CI-20190529: 20190529 CI_DRM_14815: 20495a62e9c3838fda495585fb4bda8e38cc1c6f @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_11188: e0c0a4762dea825ff5c95b7c638542e3e3d504f6 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_7871: 1d7b961235e345db20933c057f265898e2e96fd2 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11188/index.html [-- Attachment #2: Type: text/html, Size: 4945 bytes --] ^ permalink raw reply [flat|nested] 12+ messages in thread
* ✓ CI.xeBAT: success for Update kms_plane test 2024-05-24 8:48 [PATCH i-g-t v2 0/2] Update kms_plane test Pranay Samala ` (2 preceding siblings ...) 2024-05-24 10:44 ` ✗ Fi.CI.BAT: failure for Update kms_plane test Patchwork @ 2024-05-24 11:07 ` Patchwork 2024-05-24 13:21 ` ✗ CI.xeFULL: failure " Patchwork ` (4 subsequent siblings) 8 siblings, 0 replies; 12+ messages in thread From: Patchwork @ 2024-05-24 11:07 UTC (permalink / raw) To: Pranay Samala; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 3819 bytes --] == Series Details == Series: Update kms_plane test URL : https://patchwork.freedesktop.org/series/134006/ State : success == Summary == CI Bug Log - changes from XEIGT_7871_BAT -> XEIGTPW_11188_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (4 -> 4) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_11188_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@xe_exec_compute_mode@twice-rebind: - bat-atsm-2: [PASS][1] -> [ABORT][2] ([Intel XE#1908]) [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/bat-atsm-2/igt@xe_exec_compute_mode@twice-rebind.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/bat-atsm-2/igt@xe_exec_compute_mode@twice-rebind.html * igt@xe_exec_threads@threads-mixed-shared-vm-basic: - bat-dg2-oem2: [PASS][3] -> [INCOMPLETE][4] ([Intel XE#1169] / [Intel XE#1356]) [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/bat-dg2-oem2/igt@xe_exec_threads@threads-mixed-shared-vm-basic.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/bat-dg2-oem2/igt@xe_exec_threads@threads-mixed-shared-vm-basic.html * igt@xe_gt_freq@freq_range_idle: - bat-pvc-2: NOTRUN -> [SKIP][5] ([Intel XE#1021]) +1 other test skip [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/bat-pvc-2/igt@xe_gt_freq@freq_range_idle.html * igt@xe_huc_copy@huc_copy: - bat-pvc-2: NOTRUN -> [SKIP][6] ([Intel XE#255]) [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/bat-pvc-2/igt@xe_huc_copy@huc_copy.html * igt@xe_intel_bb@render: - bat-pvc-2: NOTRUN -> [SKIP][7] ([Intel XE#532]) [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/bat-pvc-2/igt@xe_intel_bb@render.html * igt@xe_pm_residency@gt-c6-on-idle: - bat-pvc-2: NOTRUN -> [SKIP][8] ([Intel XE#531]) [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/bat-pvc-2/igt@xe_pm_residency@gt-c6-on-idle.html #### Possible fixes #### * igt@xe_exec_compute_mode@twice-bindexecqueue: - bat-pvc-2: [ABORT][9] ([Intel XE#1939]) -> [PASS][10] [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/bat-pvc-2/igt@xe_exec_compute_mode@twice-bindexecqueue.html [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/bat-pvc-2/igt@xe_exec_compute_mode@twice-bindexecqueue.html [Intel XE#1021]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1021 [Intel XE#1169]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1169 [Intel XE#1356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1356 [Intel XE#1908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1908 [Intel XE#1939]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1939 [Intel XE#255]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/255 [Intel XE#531]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/531 [Intel XE#532]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/532 Build changes ------------- * IGT: IGT_7871 -> IGTPW_11188 * Linux: xe-1337-1cea2d72e1159a0a7923af196458aa68e6074f90 -> xe-1340-20495a62e9c3838fda495585fb4bda8e38cc1c6f IGTPW_11188: e0c0a4762dea825ff5c95b7c638542e3e3d504f6 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_7871: 1d7b961235e345db20933c057f265898e2e96fd2 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-1337-1cea2d72e1159a0a7923af196458aa68e6074f90: 1cea2d72e1159a0a7923af196458aa68e6074f90 xe-1340-20495a62e9c3838fda495585fb4bda8e38cc1c6f: 20495a62e9c3838fda495585fb4bda8e38cc1c6f == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/index.html [-- Attachment #2: Type: text/html, Size: 4541 bytes --] ^ permalink raw reply [flat|nested] 12+ messages in thread
* ✗ CI.xeFULL: failure for Update kms_plane test 2024-05-24 8:48 [PATCH i-g-t v2 0/2] Update kms_plane test Pranay Samala ` (3 preceding siblings ...) 2024-05-24 11:07 ` ✓ CI.xeBAT: success " Patchwork @ 2024-05-24 13:21 ` Patchwork 2024-05-27 5:33 ` ✓ Fi.CI.BAT: success for Update kms_plane test (rev2) Patchwork ` (3 subsequent siblings) 8 siblings, 0 replies; 12+ messages in thread From: Patchwork @ 2024-05-24 13:21 UTC (permalink / raw) To: Pranay Samala; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 76875 bytes --] == Series Details == Series: Update kms_plane test URL : https://patchwork.freedesktop.org/series/134006/ State : failure == Summary == CI Bug Log - changes from XEIGT_7871_full -> XEIGTPW_11188_full ==================================================== Summary ------- **WARNING** Minor unknown changes coming with XEIGTPW_11188_full need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_11188_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 (3 -> 2) ------------------------------ Missing (1): shard-adlp Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_11188_full: ### IGT changes ### #### Warnings #### * igt@xe_pm@d3cold-mmap-vram: - shard-dg2-set2: [SKIP][1] ([Intel XE#1201]) -> [SKIP][2] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-dg2-436/igt@xe_pm@d3cold-mmap-vram.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-432/igt@xe_pm@d3cold-mmap-vram.html New tests --------- New tests have been introduced between XEIGT_7871_full and XEIGTPW_11188_full: ### New IGT tests (26) ### * igt@kms_plane@pixel-format@pipe-a-plane-0: - Statuses : 2 pass(s) - Exec time: [6.68, 8.43] s * igt@kms_plane@pixel-format@pipe-a-plane-3: - Statuses : 2 pass(s) - Exec time: [3.92, 5.00] s * igt@kms_plane@pixel-format@pipe-a-plane-5: - Statuses : 2 pass(s) - Exec time: [0.21, 0.22] s * igt@kms_plane@pixel-format@pipe-b-plane-0: - Statuses : 2 pass(s) - Exec time: [6.73, 8.23] s * igt@kms_plane@pixel-format@pipe-b-plane-3: - Statuses : 2 pass(s) - Exec time: [3.83, 4.87] s * igt@kms_plane@pixel-format@pipe-b-plane-5: - Statuses : 2 pass(s) - Exec time: [0.21] s * igt@kms_plane@plane-position-hole-dpms@pipe-a-plane-1: - Statuses : 2 pass(s) - Exec time: [0.48, 2.63] s * igt@kms_plane@plane-position-hole-dpms@pipe-a-plane-2: - Statuses : 2 pass(s) - Exec time: [0.48, 2.68] s * igt@kms_plane@plane-position-hole-dpms@pipe-a-plane-3: - Statuses : 2 pass(s) - Exec time: [0.49, 2.68] s * igt@kms_plane@plane-position-hole-dpms@pipe-a-plane-4: - Statuses : 2 pass(s) - Exec time: [0.49, 2.76] s * igt@kms_plane@plane-position-hole-dpms@pipe-a-plane-5: - Statuses : 2 pass(s) - Exec time: [0.02] s * igt@kms_plane@plane-position-hole-dpms@pipe-b-plane-1: - Statuses : 2 pass(s) - Exec time: [0.51, 2.73] s * igt@kms_plane@plane-position-hole-dpms@pipe-b-plane-2: - Statuses : 2 pass(s) - Exec time: [0.50, 2.99] s * igt@kms_plane@plane-position-hole-dpms@pipe-b-plane-3: - Statuses : 2 pass(s) - Exec time: [0.50, 2.72] s * igt@kms_plane@plane-position-hole-dpms@pipe-b-plane-4: - Statuses : 2 pass(s) - Exec time: [0.48, 2.70] s * igt@kms_plane@plane-position-hole-dpms@pipe-b-plane-5: - Statuses : 2 pass(s) - Exec time: [0.01, 0.02] s * igt@kms_plane@plane-position-hole@pipe-a-plane-1: - Statuses : 2 pass(s) - Exec time: [0.35, 1.54] s * igt@kms_plane@plane-position-hole@pipe-a-plane-2: - Statuses : 2 pass(s) - Exec time: [0.35, 1.48] s * igt@kms_plane@plane-position-hole@pipe-a-plane-3: - Statuses : 2 pass(s) - Exec time: [0.35, 1.46] s * igt@kms_plane@plane-position-hole@pipe-a-plane-4: - Statuses : 2 pass(s) - Exec time: [0.36, 1.48] s * igt@kms_plane@plane-position-hole@pipe-a-plane-5: - Statuses : 2 pass(s) - Exec time: [0.01, 0.02] s * igt@kms_plane@plane-position-hole@pipe-b-plane-1: - Statuses : 2 pass(s) - Exec time: [0.36, 1.50] s * igt@kms_plane@plane-position-hole@pipe-b-plane-2: - Statuses : 2 pass(s) - Exec time: [0.36, 1.52] s * igt@kms_plane@plane-position-hole@pipe-b-plane-3: - Statuses : 2 pass(s) - Exec time: [0.36, 1.44] s * igt@kms_plane@plane-position-hole@pipe-b-plane-4: - Statuses : 2 pass(s) - Exec time: [0.36, 1.47] s * igt@kms_plane@plane-position-hole@pipe-b-plane-5: - Statuses : 2 pass(s) - Exec time: [0.01, 0.02] s Known issues ------------ Here are the changes found in XEIGTPW_11188_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@core_setmaster@master-drop-set-user: - shard-dg2-set2: [PASS][3] -> [DMESG-WARN][4] ([Intel XE#1162] / [Intel XE#1214]) +1 other test dmesg-warn [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-dg2-432/igt@core_setmaster@master-drop-set-user.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-433/igt@core_setmaster@master-drop-set-user.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip: - shard-dg2-set2: [PASS][5] -> [SKIP][6] ([Intel XE#1201] / [Intel XE#829]) [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-dg2-464/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-435/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_big_fb@linear-16bpp-rotate-270: - shard-dg2-set2: NOTRUN -> [SKIP][7] ([Intel XE#1201] / [Intel XE#316]) +1 other test skip [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-464/igt@kms_big_fb@linear-16bpp-rotate-270.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-dg2-set2: NOTRUN -> [SKIP][8] ([Intel XE#1124] / [Intel XE#1201]) +7 other tests skip [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-466/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-180: - shard-dg2-set2: NOTRUN -> [SKIP][9] ([Intel XE#1124]) [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-432/igt@kms_big_fb@yf-tiled-32bpp-rotate-180.html * igt@kms_bw@linear-tiling-2-displays-2160x1440p: - shard-dg2-set2: NOTRUN -> [SKIP][10] ([Intel XE#1201] / [Intel XE#367]) +2 other tests skip [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-436/igt@kms_bw@linear-tiling-2-displays-2160x1440p.html * igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][11] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) +7 other tests skip [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-433/igt@kms_ccs@bad-pixel-format-4-tiled-mtl-rc-ccs.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][12] ([Intel XE#455] / [Intel XE#787]) +3 other tests skip [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-432/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs@pipe-d-dp-4.html * igt@kms_ccs@bad-rotation-90-4-tiled-xe2-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][13] ([Intel XE#1201] / [Intel XE#1252]) [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-434/igt@kms_ccs@bad-rotation-90-4-tiled-xe2-ccs.html * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs@pipe-c-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][14] ([Intel XE#787]) +13 other tests skip [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-432/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs@pipe-c-dp-4.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-xe2-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][15] ([Intel XE#1201] / [Intel XE#829]) +1 other test skip [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-435/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-xe2-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [SKIP][16] ([Intel XE#1201] / [Intel XE#787]) +27 other tests skip [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-463/igt@kms_ccs@crc-sprite-planes-basic-y-tiled-gen12-mc-ccs@pipe-b-hdmi-a-6.html * igt@kms_chamelium_color@ctm-negative: - shard-dg2-set2: NOTRUN -> [SKIP][17] ([Intel XE#1201] / [Intel XE#306]) [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-464/igt@kms_chamelium_color@ctm-negative.html * igt@kms_chamelium_frames@hdmi-aspect-ratio: - shard-dg2-set2: NOTRUN -> [SKIP][18] ([Intel XE#373]) [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-432/igt@kms_chamelium_frames@hdmi-aspect-ratio.html * igt@kms_chamelium_hpd@hdmi-hpd: - shard-dg2-set2: NOTRUN -> [SKIP][19] ([Intel XE#1201] / [Intel XE#373]) +3 other tests skip [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-436/igt@kms_chamelium_hpd@hdmi-hpd.html * igt@kms_content_protection@atomic-dpms: - shard-dg2-set2: NOTRUN -> [FAIL][20] ([Intel XE#1178]) +1 other test fail [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-432/igt@kms_content_protection@atomic-dpms.html * igt@kms_cursor_crc@cursor-dpms@pipe-d-hdmi-a-6: - shard-dg2-set2: [PASS][21] -> [DMESG-WARN][22] ([Intel XE#282]) [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-dg2-463/igt@kms_cursor_crc@cursor-dpms@pipe-d-hdmi-a-6.html [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-432/igt@kms_cursor_crc@cursor-dpms@pipe-d-hdmi-a-6.html * igt@kms_cursor_crc@cursor-onscreen-512x170: - shard-dg2-set2: NOTRUN -> [SKIP][23] ([Intel XE#1201] / [Intel XE#308]) [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-466/igt@kms_cursor_crc@cursor-onscreen-512x170.html * igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic: - shard-dg2-set2: [PASS][24] -> [DMESG-WARN][25] ([Intel XE#1214] / [Intel XE#282]) +1 other test dmesg-warn [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-dg2-464/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-466/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html * igt@kms_cursor_legacy@flip-vs-cursor-busy-crc-legacy: - shard-dg2-set2: [PASS][26] -> [SKIP][27] ([Intel XE#1201] / [Intel XE#1234]) [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-dg2-463/igt@kms_cursor_legacy@flip-vs-cursor-busy-crc-legacy.html [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-435/igt@kms_cursor_legacy@flip-vs-cursor-busy-crc-legacy.html * igt@kms_cursor_legacy@short-flip-before-cursor-atomic-transitions: - shard-dg2-set2: [PASS][28] -> [DMESG-WARN][29] ([Intel XE#1214]) +2 other tests dmesg-warn [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-dg2-435/igt@kms_cursor_legacy@short-flip-before-cursor-atomic-transitions.html [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-433/igt@kms_cursor_legacy@short-flip-before-cursor-atomic-transitions.html * igt@kms_display_modes@extended-mode-basic: - shard-dg2-set2: [PASS][30] -> [INCOMPLETE][31] ([Intel XE#1195]) +1 other test incomplete [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-dg2-435/igt@kms_display_modes@extended-mode-basic.html [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-433/igt@kms_display_modes@extended-mode-basic.html * igt@kms_feature_discovery@display: - shard-dg2-set2: [PASS][32] -> [SKIP][33] ([Intel XE#1201]) +6 other tests skip [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-dg2-466/igt@kms_feature_discovery@display.html [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-435/igt@kms_feature_discovery@display.html * igt@kms_feature_discovery@psr1: - shard-dg2-set2: NOTRUN -> [SKIP][34] ([Intel XE#1135] / [Intel XE#1201]) [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-464/igt@kms_feature_discovery@psr1.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode: - shard-dg2-set2: NOTRUN -> [SKIP][35] ([Intel XE#455]) [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-432/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-msflip-blt: - shard-dg2-set2: NOTRUN -> [SKIP][36] ([Intel XE#651]) [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-432/igt@kms_frontbuffer_tracking@drrs-2p-primscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-msflip-blt: - shard-dg2-set2: NOTRUN -> [SKIP][37] ([Intel XE#1201] / [Intel XE#651]) +9 other tests skip [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-466/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move: - shard-dg2-set2: NOTRUN -> [SKIP][38] ([Intel XE#1201] / [Intel XE#653]) +11 other tests skip [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary: - shard-dg2-set2: NOTRUN -> [SKIP][39] ([Intel XE#653]) +3 other tests skip [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html * igt@kms_getfb@getfb2-into-addfb2: - shard-dg2-set2: [PASS][40] -> [SKIP][41] ([Intel XE#1201] / [Intel XE#687]) [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-dg2-433/igt@kms_getfb@getfb2-into-addfb2.html [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-435/igt@kms_getfb@getfb2-into-addfb2.html * igt@kms_hdr@invalid-hdr: - shard-dg2-set2: NOTRUN -> [SKIP][42] ([Intel XE#1201] / [Intel XE#455]) +11 other tests skip [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-433/igt@kms_hdr@invalid-hdr.html * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12: - shard-dg2-set2: [PASS][43] -> [ABORT][44] ([Intel XE#1939]) +8 other tests abort [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-dg2-463/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12.html [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-436/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12.html * igt@kms_pipe_crc_basic@suspend-read-crc: - shard-dg2-set2: NOTRUN -> [DMESG-WARN][45] ([Intel XE#1162]) +1 other test dmesg-warn [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-432/igt@kms_pipe_crc_basic@suspend-read-crc.html * igt@kms_plane_cursor@primary@pipe-a-hdmi-a-6-size-256: - shard-dg2-set2: NOTRUN -> [FAIL][46] ([Intel XE#616]) +3 other tests fail [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-466/igt@kms_plane_cursor@primary@pipe-a-hdmi-a-6-size-256.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4: - shard-dg2-set2: [PASS][47] -> [FAIL][48] ([Intel XE#361]) [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-dg2-432/igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4.html [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-464/igt@kms_plane_scaling@intel-max-src-size@pipe-a-dp-4.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation: - shard-dg2-set2: NOTRUN -> [SKIP][49] ([Intel XE#1201]) [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-435/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-rotation.html * igt@kms_pm_dc@dc5-psr: - shard-dg2-set2: NOTRUN -> [SKIP][50] ([Intel XE#1129] / [Intel XE#1201]) [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-435/igt@kms_pm_dc@dc5-psr.html * igt@kms_psr@fbc-psr-sprite-render: - shard-dg2-set2: NOTRUN -> [SKIP][51] ([Intel XE#1201] / [Intel XE#929]) +4 other tests skip [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-433/igt@kms_psr@fbc-psr-sprite-render.html * igt@kms_psr@psr2-cursor-render: - shard-dg2-set2: NOTRUN -> [SKIP][52] ([Intel XE#929]) [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-432/igt@kms_psr@psr2-cursor-render.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-270: - shard-dg2-set2: NOTRUN -> [SKIP][53] ([Intel XE#1201] / [Intel XE#327]) [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-466/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html * igt@kms_universal_plane@cursor-fb-leak: - shard-dg2-set2: NOTRUN -> [FAIL][54] ([Intel XE#771] / [Intel XE#899]) [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-466/igt@kms_universal_plane@cursor-fb-leak.html * igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [FAIL][55] ([Intel XE#899]) [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-466/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-6.html * igt@kms_vblank@crtc-id: - shard-dg2-set2: [PASS][56] -> [ABORT][57] ([Intel XE#1908] / [Intel XE#1939]) [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-dg2-436/igt@kms_vblank@crtc-id.html [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-464/igt@kms_vblank@crtc-id.html * igt@xe_compute_preempt@compute-threadgroup-preempt@engine-drm_xe_engine_class_compute: - shard-dg2-set2: NOTRUN -> [SKIP][58] ([Intel XE#1201] / [Intel XE#1280] / [Intel XE#455]) +1 other test skip [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-464/igt@xe_compute_preempt@compute-threadgroup-preempt@engine-drm_xe_engine_class_compute.html * igt@xe_copy_basic@mem-copy-linear-0x3fff: - shard-dg2-set2: NOTRUN -> [SKIP][59] ([Intel XE#1123] / [Intel XE#1201]) [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-436/igt@xe_copy_basic@mem-copy-linear-0x3fff.html * igt@xe_evict@evict-beng-threads-large: - shard-dg2-set2: NOTRUN -> [TIMEOUT][60] ([Intel XE#1473]) [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-463/igt@xe_evict@evict-beng-threads-large.html * igt@xe_evict@evict-mixed-threads-large: - shard-dg2-set2: [PASS][61] -> [TIMEOUT][62] ([Intel XE#1473] / [Intel XE#392]) [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-dg2-436/igt@xe_evict@evict-mixed-threads-large.html [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-466/igt@xe_evict@evict-mixed-threads-large.html * igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-prefetch: - shard-dg2-set2: NOTRUN -> [SKIP][63] ([Intel XE#1201] / [Intel XE#288]) +12 other tests skip [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-464/igt@xe_exec_fault_mode@many-execqueues-userptr-invalidate-prefetch.html * igt@xe_live_ktest@xe_bo: - shard-dg2-set2: [PASS][64] -> [SKIP][65] ([Intel XE#1192]) [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-dg2-433/igt@xe_live_ktest@xe_bo.html [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-432/igt@xe_live_ktest@xe_bo.html * igt@xe_media_fill@media-fill: - shard-dg2-set2: NOTRUN -> [SKIP][66] ([Intel XE#560]) [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-432/igt@xe_media_fill@media-fill.html * igt@xe_pm@s3-d3cold-basic-exec: - shard-dg2-set2: NOTRUN -> [SKIP][67] ([Intel XE#1201] / [Intel XE#366]) +1 other test skip [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-464/igt@xe_pm@s3-d3cold-basic-exec.html * igt@xe_query@multigpu-query-cs-cycles: - shard-dg2-set2: NOTRUN -> [SKIP][68] ([Intel XE#1201] / [Intel XE#944]) +1 other test skip [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-466/igt@xe_query@multigpu-query-cs-cycles.html #### Possible fixes #### * igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-6: - shard-dg2-set2: [FAIL][69] ([Intel XE#1388]) -> [PASS][70] +1 other test pass [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-dg2-433/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-6.html [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-434/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-hdmi-a-6.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6: - shard-dg2-set2: [ABORT][71] ([Intel XE#1939]) -> [PASS][72] +8 other tests pass [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-dg2-433/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6.html [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-432/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-d-dp-4: - shard-dg2-set2: [DMESG-WARN][73] ([Intel XE#1214]) -> [PASS][74] [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-dg2-433/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-d-dp-4.html [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-432/igt@kms_ccs@crc-primary-rotation-180-4-tiled-dg2-mc-ccs@pipe-d-dp-4.html * igt@kms_cursor_edge_walk@128x128-right-edge: - shard-dg2-set2: [FAIL][75] ([Intel XE#581]) -> [PASS][76] [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-dg2-436/igt@kms_cursor_edge_walk@128x128-right-edge.html [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-466/igt@kms_cursor_edge_walk@128x128-right-edge.html * igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy: - shard-dg2-set2: [DMESG-WARN][77] ([Intel XE#282] / [Intel XE#910]) -> [PASS][78] [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-dg2-432/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-435/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html * igt@kms_cursor_legacy@cursor-vs-flip-atomic: - shard-dg2-set2: [DMESG-WARN][79] ([Intel XE#282]) -> [PASS][80] [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-dg2-432/igt@kms_cursor_legacy@cursor-vs-flip-atomic.html [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-463/igt@kms_cursor_legacy@cursor-vs-flip-atomic.html * igt@kms_cursor_legacy@cursor-vs-flip-toggle: - shard-dg2-set2: [DMESG-WARN][81] ([Intel XE#1214] / [Intel XE#282]) -> [PASS][82] +6 other tests pass [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-dg2-433/igt@kms_cursor_legacy@cursor-vs-flip-toggle.html [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-433/igt@kms_cursor_legacy@cursor-vs-flip-toggle.html * igt@kms_cursor_legacy@torture-move@pipe-a: - shard-dg2-set2: [DMESG-WARN][83] ([Intel XE#1214] / [Intel XE#877]) -> [PASS][84] +1 other test pass [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-dg2-463/igt@kms_cursor_legacy@torture-move@pipe-a.html [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-464/igt@kms_cursor_legacy@torture-move@pipe-a.html * igt@kms_flip@flip-vs-panning-vs-hang: - {shard-lnl}: [SKIP][85] ([Intel XE#1646] / [Intel XE#1650]) -> [PASS][86] +1 other test pass [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-lnl-6/igt@kms_flip@flip-vs-panning-vs-hang.html [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-lnl-5/igt@kms_flip@flip-vs-panning-vs-hang.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-render: - {shard-lnl}: [ABORT][87] ([Intel XE#1939]) -> [PASS][88] +1 other test pass [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-lnl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-render.html [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-lnl-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-render.html * igt@kms_lease@multimaster-lease: - shard-dg2-set2: [SKIP][89] ([Intel XE#1201]) -> [PASS][90] +5 other tests pass [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-dg2-436/igt@kms_lease@multimaster-lease.html [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-436/igt@kms_lease@multimaster-lease.html * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence: - shard-dg2-set2: [SKIP][91] ([Intel XE#1201] / [Intel XE#829]) -> [PASS][92] +2 other tests pass [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-dg2-436/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-436/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html - {shard-lnl}: [SKIP][93] ([Intel XE#829]) -> [PASS][94] [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-lnl-6/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-lnl-4/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html * igt@kms_prop_blob@blob-prop-validate: - shard-dg2-set2: [SKIP][95] ([Intel XE#1201] / [Intel XE#780]) -> [PASS][96] [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-dg2-436/igt@kms_prop_blob@blob-prop-validate.html [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-466/igt@kms_prop_blob@blob-prop-validate.html * igt@kms_rotation_crc@sprite-rotation-180: - shard-dg2-set2: [INCOMPLETE][97] ([Intel XE#1195]) -> [PASS][98] +2 other tests pass [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-dg2-463/igt@kms_rotation_crc@sprite-rotation-180.html [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-434/igt@kms_rotation_crc@sprite-rotation-180.html * igt@xe_evict@evict-large-multi-vm-cm: - shard-dg2-set2: [FAIL][99] ([Intel XE#1600]) -> [PASS][100] [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-dg2-432/igt@xe_evict@evict-large-multi-vm-cm.html [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-432/igt@xe_evict@evict-large-multi-vm-cm.html * igt@xe_evict@evict-threads-large: - shard-dg2-set2: [TIMEOUT][101] ([Intel XE#1473] / [Intel XE#392]) -> [PASS][102] [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-dg2-464/igt@xe_evict@evict-threads-large.html [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-463/igt@xe_evict@evict-threads-large.html * igt@xe_exec_compute_mode@many-execqueues-bindexecqueue-userptr-invalidate: - {shard-lnl}: [DMESG-WARN][103] ([Intel XE#1330]) -> [PASS][104] [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-lnl-7/igt@xe_exec_compute_mode@many-execqueues-bindexecqueue-userptr-invalidate.html [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-lnl-3/igt@xe_exec_compute_mode@many-execqueues-bindexecqueue-userptr-invalidate.html * igt@xe_module_load@unload: - shard-dg2-set2: [DMESG-WARN][105] ([Intel XE#1162] / [Intel XE#1214]) -> [PASS][106] +2 other tests pass [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-dg2-463/igt@xe_module_load@unload.html [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-463/igt@xe_module_load@unload.html * igt@xe_pm@s2idle-vm-bind-userptr: - {shard-lnl}: [DMESG-WARN][107] ([Intel XE#1595]) -> [PASS][108] [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-lnl-2/igt@xe_pm@s2idle-vm-bind-userptr.html [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-lnl-5/igt@xe_pm@s2idle-vm-bind-userptr.html * igt@xe_pm_residency@gt-c6-freeze: - {shard-lnl}: [DMESG-WARN][109] ([Intel XE#1830]) -> [PASS][110] [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-lnl-5/igt@xe_pm_residency@gt-c6-freeze.html [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-lnl-3/igt@xe_pm_residency@gt-c6-freeze.html * igt@xe_pm_residency@idle-residency: - {shard-lnl}: [FAIL][111] ([Intel XE#1442]) -> [PASS][112] [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-lnl-6/igt@xe_pm_residency@idle-residency.html [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-lnl-7/igt@xe_pm_residency@idle-residency.html * igt@xe_vm@large-misaligned-binds-2097152: - shard-dg2-set2: [DMESG-WARN][113] -> [PASS][114] [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-dg2-432/igt@xe_vm@large-misaligned-binds-2097152.html [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-432/igt@xe_vm@large-misaligned-binds-2097152.html #### Warnings #### * igt@kms_big_fb@4-tiled-8bpp-rotate-270: - shard-dg2-set2: [SKIP][115] ([Intel XE#316]) -> [SKIP][116] ([Intel XE#1201] / [Intel XE#316]) +2 other tests skip [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-dg2-432/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-435/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html * igt@kms_big_fb@x-tiled-32bpp-rotate-90: - shard-dg2-set2: [SKIP][117] ([Intel XE#1201] / [Intel XE#316]) -> [SKIP][118] ([Intel XE#316]) +1 other test skip [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-dg2-434/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-432/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html * igt@kms_big_fb@y-tiled-32bpp-rotate-180: - shard-dg2-set2: [SKIP][119] ([Intel XE#1201] / [Intel XE#829]) -> [SKIP][120] ([Intel XE#1124] / [Intel XE#1201]) [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-dg2-436/igt@kms_big_fb@y-tiled-32bpp-rotate-180.html [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-435/igt@kms_big_fb@y-tiled-32bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-64bpp-rotate-180: - shard-dg2-set2: [SKIP][121] ([Intel XE#1124] / [Intel XE#1201]) -> [SKIP][122] ([Intel XE#1124]) +5 other tests skip [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-dg2-464/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-432/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0: - shard-dg2-set2: [SKIP][123] ([Intel XE#1124] / [Intel XE#1201]) -> [SKIP][124] ([Intel XE#1201] / [Intel XE#829]) [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-dg2-434/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-435/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-0.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-dg2-set2: [SKIP][125] ([Intel XE#1124]) -> [SKIP][126] ([Intel XE#1124] / [Intel XE#1201]) +8 other tests skip [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-dg2-432/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-463/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_big_joiner@basic: - shard-dg2-set2: [SKIP][127] ([Intel XE#346]) -> [SKIP][128] ([Intel XE#1201] / [Intel XE#346]) [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-dg2-432/igt@kms_big_joiner@basic.html [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-433/igt@kms_big_joiner@basic.html * igt@kms_big_joiner@invalid-modeset: - shard-dg2-set2: [SKIP][129] ([Intel XE#1201]) -> [SKIP][130] ([Intel XE#346]) [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-dg2-436/igt@kms_big_joiner@invalid-modeset.html [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-432/igt@kms_big_joiner@invalid-modeset.html * igt@kms_bw@linear-tiling-1-displays-3840x2160p: - shard-dg2-set2: [SKIP][131] ([Intel XE#367]) -> [SKIP][132] ([Intel XE#1201] / [Intel XE#367]) [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-dg2-432/igt@kms_bw@linear-tiling-1-displays-3840x2160p.html [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-463/igt@kms_bw@linear-tiling-1-displays-3840x2160p.html * igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-6: - shard-dg2-set2: [SKIP][133] ([Intel XE#787]) -> [SKIP][134] ([Intel XE#1201] / [Intel XE#787]) +27 other tests skip [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-dg2-432/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-6.html [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-434/igt@kms_ccs@bad-aux-stride-4-tiled-mtl-mc-ccs@pipe-a-hdmi-a-6.html * igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs: - shard-dg2-set2: [SKIP][135] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) -> [SKIP][136] ([Intel XE#1201] / [Intel XE#829]) [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-dg2-436/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs.html [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-435/igt@kms_ccs@bad-rotation-90-y-tiled-gen12-mc-ccs.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-6: - shard-dg2-set2: [SKIP][137] ([Intel XE#1201] / [Intel XE#787]) -> [SKIP][138] ([Intel XE#787]) +48 other tests skip [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-dg2-466/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-6.html [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-432/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-rc-ccs-cc@pipe-c-hdmi-a-6.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs: - shard-dg2-set2: [TIMEOUT][139] ([Intel XE#1850]) -> [INCOMPLETE][140] ([Intel XE#1195]) [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-dg2-435/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs.html [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-433/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6: - shard-dg2-set2: [TIMEOUT][141] ([Intel XE#1713]) -> [INCOMPLETE][142] ([Intel XE#1195]) [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-dg2-435/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6.html [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-433/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-mc-ccs@pipe-a-hdmi-a-6.html * igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-dp-4: - shard-dg2-set2: [SKIP][143] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][144] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) +7 other tests skip [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-dg2-432/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-dp-4.html [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-466/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-mc-ccs@pipe-d-dp-4.html * igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-d-dp-4: - shard-dg2-set2: [SKIP][145] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#787]) -> [SKIP][146] ([Intel XE#455] / [Intel XE#787]) +13 other tests skip [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-dg2-435/igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-d-dp-4.html [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-432/igt@kms_ccs@random-ccs-data-y-tiled-gen12-mc-ccs@pipe-d-dp-4.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-dg2-set2: [SKIP][147] ([Intel XE#314]) -> [SKIP][148] ([Intel XE#1201] / [Intel XE#314]) [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-dg2-432/igt@kms_cdclk@mode-transition-all-outputs.html [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-464/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_chamelium_audio@dp-audio: - shard-dg2-set2: [SKIP][149] ([Intel XE#373]) -> [SKIP][150] ([Intel XE#1201] / [Intel XE#373]) +2 other tests skip [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-dg2-432/igt@kms_chamelium_audio@dp-audio.html [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-433/igt@kms_chamelium_audio@dp-audio.html * igt@kms_chamelium_color@ctm-0-75: - shard-dg2-set2: [SKIP][151] ([Intel XE#1201] / [Intel XE#306]) -> [SKIP][152] ([Intel XE#306]) [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-dg2-436/igt@kms_chamelium_color@ctm-0-75.html [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-432/igt@kms_chamelium_color@ctm-0-75.html * igt@kms_chamelium_color@ctm-limited-range: - shard-dg2-set2: [SKIP][153] ([Intel XE#1201]) -> [SKIP][154] ([Intel XE#1201] / [Intel XE#306]) [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-dg2-436/igt@kms_chamelium_color@ctm-limited-range.html [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-435/igt@kms_chamelium_color@ctm-limited-range.html * igt@kms_chamelium_edid@hdmi-edid-change-during-suspend: - shard-dg2-set2: [SKIP][155] ([Intel XE#1201]) -> [SKIP][156] ([Intel XE#1201] / [Intel XE#373]) [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-dg2-436/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-466/igt@kms_chamelium_edid@hdmi-edid-change-during-suspend.html * igt@kms_chamelium_hpd@vga-hpd-for-each-pipe: - shard-dg2-set2: [SKIP][157] ([Intel XE#1201] / [Intel XE#373]) -> [SKIP][158] ([Intel XE#373]) +5 other tests skip [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-dg2-434/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-432/igt@kms_chamelium_hpd@vga-hpd-for-each-pipe.html * igt@kms_chamelium_hpd@vga-hpd-without-ddc: - shard-dg2-set2: [SKIP][159] ([Intel XE#1201] / [Intel XE#373]) -> [SKIP][160] ([Intel XE#1201]) +1 other test skip [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-dg2-436/igt@kms_chamelium_hpd@vga-hpd-without-ddc.html [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-435/igt@kms_chamelium_hpd@vga-hpd-without-ddc.html * igt@kms_cursor_crc@cursor-offscreen-512x512: - shard-dg2-set2: [SKIP][161] ([Intel XE#1201] / [Intel XE#308]) -> [SKIP][162] ([Intel XE#308]) [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-dg2-463/igt@kms_cursor_crc@cursor-offscreen-512x512.html [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-432/igt@kms_cursor_crc@cursor-offscreen-512x512.html * igt@kms_cursor_crc@cursor-random-512x512: - shard-dg2-set2: [SKIP][163] ([Intel XE#308]) -> [SKIP][164] ([Intel XE#1201] / [Intel XE#308]) [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-dg2-432/igt@kms_cursor_crc@cursor-random-512x512.html [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-434/igt@kms_cursor_crc@cursor-random-512x512.html * igt@kms_cursor_crc@cursor-sliding-512x512: - shard-dg2-set2: [SKIP][165] ([Intel XE#1201]) -> [SKIP][166] ([Intel XE#1201] / [Intel XE#308]) [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-dg2-436/igt@kms_cursor_crc@cursor-sliding-512x512.html [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-435/igt@kms_cursor_crc@cursor-sliding-512x512.html * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic: - shard-dg2-set2: [DMESG-WARN][167] ([Intel XE#1214] / [Intel XE#282] / [Intel XE#910]) -> [DMESG-WARN][168] ([Intel XE#1214] / [Intel XE#282]) [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-dg2-464/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-464/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-dg2-set2: [SKIP][169] ([Intel XE#323]) -> [SKIP][170] ([Intel XE#1201] / [Intel XE#323]) [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-dg2-432/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-463/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size: - shard-dg2-set2: [SKIP][171] ([Intel XE#1201]) -> [DMESG-WARN][172] ([Intel XE#1214] / [Intel XE#282]) [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-dg2-436/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-433/igt@kms_cursor_legacy@cursora-vs-flipb-atomic-transitions-varying-size.html * igt@kms_cursor_legacy@flip-vs-cursor-varying-size: - shard-dg2-set2: [DMESG-WARN][173] ([Intel XE#282]) -> [DMESG-WARN][174] ([Intel XE#1214] / [Intel XE#282]) [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-dg2-432/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-435/igt@kms_cursor_legacy@flip-vs-cursor-varying-size.html * igt@kms_cursor_legacy@forked-move: - shard-dg2-set2: [DMESG-WARN][175] ([Intel XE#1214] / [Intel XE#282]) -> [SKIP][176] ([Intel XE#1201]) [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-dg2-464/igt@kms_cursor_legacy@forked-move.html [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-435/igt@kms_cursor_legacy@forked-move.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle: - shard-dg2-set2: [SKIP][177] ([Intel XE#1201] / [Intel XE#323]) -> [SKIP][178] ([Intel XE#323]) [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-dg2-464/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-432/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html * igt@kms_cursor_legacy@single-bo@all-pipes: - shard-dg2-set2: [DMESG-WARN][179] ([Intel XE#1214] / [Intel XE#282]) -> [DMESG-WARN][180] ([Intel XE#282]) +3 other tests dmesg-warn [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-dg2-466/igt@kms_cursor_legacy@single-bo@all-pipes.html [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-432/igt@kms_cursor_legacy@single-bo@all-pipes.html * igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-dp-4: - shard-dg2-set2: [SKIP][181] ([Intel XE#1201] / [Intel XE#455] / [Intel XE#929]) -> [SKIP][182] ([Intel XE#455] / [Intel XE#929]) [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-dg2-436/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-dp-4.html [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-432/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-dp-4.html * igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-6: - shard-dg2-set2: [SKIP][183] ([Intel XE#1201] / [Intel XE#1927]) -> [SKIP][184] ([Intel XE#1927]) [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-dg2-436/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-6.html [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-432/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-6.html * igt@kms_dsc@dsc-with-bpc-formats: - shard-dg2-set2: [SKIP][185] ([Intel XE#1201] / [Intel XE#455]) -> [SKIP][186] ([Intel XE#455]) +4 other tests skip [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-dg2-433/igt@kms_dsc@dsc-with-bpc-formats.html [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-432/igt@kms_dsc@dsc-with-bpc-formats.html * igt@kms_feature_discovery@chamelium: - shard-dg2-set2: [SKIP][187] ([Intel XE#701]) -> [SKIP][188] ([Intel XE#1201] / [Intel XE#701]) [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-dg2-432/igt@kms_feature_discovery@chamelium.html [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-463/igt@kms_feature_discovery@chamelium.html * igt@kms_feature_discovery@display-3x: - shard-dg2-set2: [SKIP][189] ([Intel XE#703]) -> [SKIP][190] ([Intel XE#1201] / [Intel XE#703]) [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-dg2-432/igt@kms_feature_discovery@display-3x.html [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-436/igt@kms_feature_discovery@display-3x.html * igt@kms_feature_discovery@psr2: - shard-dg2-set2: [SKIP][191] ([Intel XE#1135] / [Intel XE#1201]) -> [SKIP][192] ([Intel XE#1135]) [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-dg2-464/igt@kms_feature_discovery@psr2.html [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-432/igt@kms_feature_discovery@psr2.html * igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a6: - shard-dg2-set2: [DMESG-WARN][193] ([Intel XE#1162] / [Intel XE#1214]) -> [ABORT][194] ([Intel XE#1162] / [Intel XE#1939]) +1 other test abort [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-dg2-463/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a6.html [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-434/igt@kms_flip@flip-vs-suspend-interruptible@a-hdmi-a6.html * igt@kms_flip@flip-vs-suspend@a-hdmi-a6: - shard-dg2-set2: [DMESG-WARN][195] ([Intel XE#1162] / [Intel XE#1214]) -> [DMESG-WARN][196] ([Intel XE#1162]) +1 other test dmesg-warn [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-dg2-463/igt@kms_flip@flip-vs-suspend@a-hdmi-a6.html [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-432/igt@kms_flip@flip-vs-suspend@a-hdmi-a6.html * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling: - shard-dg2-set2: [SKIP][197] ([Intel XE#1201]) -> [SKIP][198] ([Intel XE#455]) [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-dg2-436/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-432/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling: - shard-dg2-set2: [SKIP][199] ([Intel XE#455]) -> [SKIP][200] ([Intel XE#1201] / [Intel XE#455]) +11 other tests skip [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-dg2-432/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-433/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling.html * igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-indfb-draw-mmap-wc: - shard-dg2-set2: [SKIP][201] ([Intel XE#1201]) -> [SKIP][202] ([Intel XE#1201] / [Intel XE#651]) +1 other test skip [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-indfb-draw-mmap-wc.html [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcdrrs-1p-offscren-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-mmap-wc: - shard-dg2-set2: [SKIP][203] ([Intel XE#1201] / [Intel XE#651]) -> [SKIP][204] ([Intel XE#1201]) [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-mmap-wc.html [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render: - shard-dg2-set2: [SKIP][205] ([Intel XE#1201] / [Intel XE#651]) -> [SKIP][206] ([Intel XE#651]) +14 other tests skip [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-1p-primscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcdrrs-tiling-linear: - shard-dg2-set2: [SKIP][207] ([Intel XE#651]) -> [SKIP][208] ([Intel XE#1201] / [Intel XE#651]) +14 other tests skip [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-linear.html [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-linear.html * igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y: - shard-dg2-set2: [SKIP][209] ([Intel XE#1201] / [Intel XE#658]) -> [SKIP][210] ([Intel XE#658]) [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-dg2-466/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcdrrs-tiling-y.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-wc: - shard-dg2-set2: [SKIP][211] ([Intel XE#1201]) -> [SKIP][212] ([Intel XE#653]) [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-wc.html [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-432/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-msflip-blt: - shard-dg2-set2: [SKIP][213] ([Intel XE#1201] / [Intel XE#653]) -> [SKIP][214] ([Intel XE#1201]) +2 other tests skip [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-msflip-blt.html [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-435/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-blt: - shard-dg2-set2: [SKIP][215] ([Intel XE#1201]) -> [SKIP][216] ([Intel XE#1201] / [Intel XE#653]) +3 other tests skip [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-dg2-436/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-blt.html [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-463/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-pgflip-blt: - shard-dg2-set2: [SKIP][217] ([Intel XE#1201] / [Intel XE#653]) -> [SKIP][218] ([Intel XE#653]) +10 other tests skip [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-dg2-436/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-pgflip-blt.html [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-onoff: - shard-dg2-set2: [SKIP][219] ([Intel XE#1201] / [Intel XE#653]) -> [SKIP][220] ([Intel XE#1201] / [Intel XE#783]) [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-dg2-466/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-onoff.html [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-435/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-blt: - shard-dg2-set2: [SKIP][221] ([Intel XE#653]) -> [SKIP][222] ([Intel XE#1201] / [Intel XE#653]) +12 other tests skip [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-dg2-432/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-blt.html [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-435/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-indfb-draw-blt.html * igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b: - shard-dg2-set2: [FAIL][223] ([Intel XE#616]) -> [DMESG-FAIL][224] ([Intel XE#1162]) +1 other test dmesg-fail [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-dg2-464/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b.html [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-463/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-b.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25: - shard-dg2-set2: [SKIP][225] ([Intel XE#1201] / [Intel XE#305] / [Intel XE#455]) -> [SKIP][226] ([Intel XE#305] / [Intel XE#455]) +1 other test skip [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-dg2-436/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-432/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c-hdmi-a-6: - shard-dg2-set2: [SKIP][227] ([Intel XE#1201] / [Intel XE#305]) -> [SKIP][228] ([Intel XE#305]) +2 other tests skip [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-dg2-436/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c-hdmi-a-6.html [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-432/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25@pipe-c-hdmi-a-6.html * igt@kms_pm_backlight@basic-brightness: - shard-dg2-set2: [SKIP][229] ([Intel XE#870]) -> [SKIP][230] ([Intel XE#1201] / [Intel XE#870]) [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-dg2-432/igt@kms_pm_backlight@basic-brightness.html [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-433/igt@kms_pm_backlight@basic-brightness.html * igt@kms_pm_backlight@fade-with-suspend: - shard-dg2-set2: [SKIP][231] ([Intel XE#1201] / [Intel XE#870]) -> [SKIP][232] ([Intel XE#870]) [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-dg2-464/igt@kms_pm_backlight@fade-with-suspend.html [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-432/igt@kms_pm_backlight@fade-with-suspend.html * igt@kms_psr2_sf@overlay-plane-move-continuous-sf: - shard-dg2-set2: [SKIP][233] ([Intel XE#1201]) -> [SKIP][234] ([Intel XE#1201] / [Intel XE#929]) [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-dg2-436/igt@kms_psr2_sf@overlay-plane-move-continuous-sf.html [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-466/igt@kms_psr2_sf@overlay-plane-move-continuous-sf.html * igt@kms_psr2_su@page_flip-p010: - shard-dg2-set2: [SKIP][235] ([Intel XE#1122]) -> [SKIP][236] ([Intel XE#1122] / [Intel XE#1201]) +1 other test skip [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-dg2-432/igt@kms_psr2_su@page_flip-p010.html [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-435/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr@fbc-psr-primary-page-flip: - shard-dg2-set2: [SKIP][237] ([Intel XE#1201] / [Intel XE#929]) -> [SKIP][238] ([Intel XE#929]) +12 other tests skip [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-dg2-436/igt@kms_psr@fbc-psr-primary-page-flip.html [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-432/igt@kms_psr@fbc-psr-primary-page-flip.html * igt@kms_psr@fbc-psr-sprite-plane-onoff: - shard-dg2-set2: [SKIP][239] ([Intel XE#1201] / [Intel XE#929]) -> [SKIP][240] ([Intel XE#1201]) [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-dg2-436/igt@kms_psr@fbc-psr-sprite-plane-onoff.html [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-435/igt@kms_psr@fbc-psr-sprite-plane-onoff.html * igt@kms_psr@fbc-psr2-primary-blt: - shard-dg2-set2: [SKIP][241] ([Intel XE#929]) -> [SKIP][242] ([Intel XE#1201] / [Intel XE#929]) +6 other tests skip [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-dg2-432/igt@kms_psr@fbc-psr2-primary-blt.html [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-433/igt@kms_psr@fbc-psr2-primary-blt.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-180: - shard-dg2-set2: [SKIP][243] ([Intel XE#1201] / [Intel XE#829]) -> [SKIP][244] ([Intel XE#1127] / [Intel XE#1201]) [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-dg2-436/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-463/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-dg2-set2: [SKIP][245] ([Intel XE#1127] / [Intel XE#1201]) -> [SKIP][246] ([Intel XE#1127]) [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-dg2-466/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-432/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-dg2-set2: [SKIP][247] ([Intel XE#1127]) -> [SKIP][248] ([Intel XE#1127] / [Intel XE#1201]) [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-dg2-432/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-463/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-dg2-set2: [SKIP][249] ([Intel XE#1201] / [Intel XE#327]) -> [SKIP][250] ([Intel XE#327]) +2 other tests skip [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-dg2-434/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-432/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_scaling_modes@scaling-mode-full: - shard-dg2-set2: [SKIP][251] ([Intel XE#1201]) -> [SKIP][252] ([Intel XE#1201] / [Intel XE#455]) +2 other tests skip [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-dg2-436/igt@kms_scaling_modes@scaling-mode-full.html [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-463/igt@kms_scaling_modes@scaling-mode-full.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-dg2-set2: [SKIP][253] ([Intel XE#1201]) -> [SKIP][254] ([Intel XE#1201] / [Intel XE#362]) [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-dg2-466/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-463/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_vblank@ts-continuation-dpms-suspend: - shard-dg2-set2: [DMESG-WARN][255] ([Intel XE#1162]) -> [DMESG-WARN][256] ([Intel XE#1162] / [Intel XE#1214]) +1 other test dmesg-warn [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-dg2-432/igt@kms_vblank@ts-continuation-dpms-suspend.html [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-463/igt@kms_vblank@ts-continuation-dpms-suspend.html * igt@kms_vblank@ts-continuation-suspend: - shard-dg2-set2: [DMESG-WARN][257] ([Intel XE#1162] / [Intel XE#1214]) -> [SKIP][258] ([Intel XE#1201] / [Intel XE#1234]) [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-dg2-434/igt@kms_vblank@ts-continuation-suspend.html [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-435/igt@kms_vblank@ts-continuation-suspend.html * igt@kms_writeback@writeback-fb-id-xrgb2101010: - shard-dg2-set2: [SKIP][259] ([Intel XE#1201] / [Intel XE#756]) -> [SKIP][260] ([Intel XE#756]) [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-dg2-464/igt@kms_writeback@writeback-fb-id-xrgb2101010.html [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-432/igt@kms_writeback@writeback-fb-id-xrgb2101010.html * igt@sriov_basic@bind-unbind-vf: - shard-dg2-set2: [SKIP][261] ([Intel XE#1091]) -> [SKIP][262] ([Intel XE#1091] / [Intel XE#1201]) [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-dg2-432/igt@sriov_basic@bind-unbind-vf.html [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-435/igt@sriov_basic@bind-unbind-vf.html * igt@sriov_basic@enable-vfs-bind-unbind-each: - shard-dg2-set2: [SKIP][263] ([Intel XE#1091] / [Intel XE#1201]) -> [SKIP][264] ([Intel XE#1091]) [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-dg2-436/igt@sriov_basic@enable-vfs-bind-unbind-each.html [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-432/igt@sriov_basic@enable-vfs-bind-unbind-each.html * igt@xe_copy_basic@mem-copy-linear-0xfd: - shard-dg2-set2: [SKIP][265] ([Intel XE#1123]) -> [SKIP][266] ([Intel XE#1123] / [Intel XE#1201]) [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-dg2-432/igt@xe_copy_basic@mem-copy-linear-0xfd.html [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-466/igt@xe_copy_basic@mem-copy-linear-0xfd.html * igt@xe_copy_basic@mem-set-linear-0xfd: - shard-dg2-set2: [SKIP][267] ([Intel XE#1126] / [Intel XE#1201]) -> [SKIP][268] ([Intel XE#1126]) [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-dg2-466/igt@xe_copy_basic@mem-set-linear-0xfd.html [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-432/igt@xe_copy_basic@mem-set-linear-0xfd.html * igt@xe_evict@evict-beng-mixed-many-threads-large: - shard-dg2-set2: [INCOMPLETE][269] ([Intel XE#1195] / [Intel XE#1473] / [Intel XE#392]) -> [INCOMPLETE][270] ([Intel XE#1473] / [Intel XE#392]) [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-dg2-463/igt@xe_evict@evict-beng-mixed-many-threads-large.html [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-432/igt@xe_evict@evict-beng-mixed-many-threads-large.html * igt@xe_evict@evict-beng-mixed-threads-large: - shard-dg2-set2: [TIMEOUT][271] ([Intel XE#1473] / [Intel XE#392]) -> [INCOMPLETE][272] ([Intel XE#1195] / [Intel XE#1473] / [Intel XE#392]) [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-dg2-432/igt@xe_evict@evict-beng-mixed-threads-large.html [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-466/igt@xe_evict@evict-beng-mixed-threads-large.html * igt@xe_exec_fault_mode@once-invalid-userptr-fault: - shard-dg2-set2: [SKIP][273] ([Intel XE#1201] / [Intel XE#288]) -> [SKIP][274] ([Intel XE#288]) +11 other tests skip [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-dg2-436/igt@xe_exec_fault_mode@once-invalid-userptr-fault.html [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-432/igt@xe_exec_fault_mode@once-invalid-userptr-fault.html * igt@xe_exec_fault_mode@twice-userptr-rebind-imm: - shard-dg2-set2: [SKIP][275] ([Intel XE#288]) -> [SKIP][276] ([Intel XE#1201] / [Intel XE#288]) +11 other tests skip [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-dg2-432/igt@xe_exec_fault_mode@twice-userptr-rebind-imm.html [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-435/igt@xe_exec_fault_mode@twice-userptr-rebind-imm.html * igt@xe_exec_reset@gt-reset-stress: - shard-dg2-set2: [DMESG-WARN][277] ([Intel XE#1638]) -> [DMESG-WARN][278] ([Intel XE#1214] / [Intel XE#1638]) [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-dg2-432/igt@xe_exec_reset@gt-reset-stress.html [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-436/igt@xe_exec_reset@gt-reset-stress.html * igt@xe_pat@pat-index-xehpc: - shard-dg2-set2: [SKIP][279] ([Intel XE#1201] / [Intel XE#979]) -> [SKIP][280] ([Intel XE#979]) [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-dg2-464/igt@xe_pat@pat-index-xehpc.html [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-432/igt@xe_pat@pat-index-xehpc.html * igt@xe_pm@s3-basic-exec: - shard-dg2-set2: [ABORT][281] ([Intel XE#1162] / [Intel XE#1358]) -> [DMESG-WARN][282] ([Intel XE#1162] / [Intel XE#1214]) [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-dg2-436/igt@xe_pm@s3-basic-exec.html [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-466/igt@xe_pm@s3-basic-exec.html * igt@xe_query@multigpu-query-topology: - shard-dg2-set2: [SKIP][283] ([Intel XE#944]) -> [SKIP][284] ([Intel XE#1201] / [Intel XE#944]) [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-dg2-432/igt@xe_query@multigpu-query-topology.html [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-466/igt@xe_query@multigpu-query-topology.html * igt@xe_query@multigpu-query-uc-fw-version-huc: - shard-dg2-set2: [SKIP][285] ([Intel XE#1201] / [Intel XE#944]) -> [SKIP][286] ([Intel XE#944]) +1 other test skip [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-dg2-433/igt@xe_query@multigpu-query-uc-fw-version-huc.html [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-432/igt@xe_query@multigpu-query-uc-fw-version-huc.html * igt@xe_wedged@basic-wedged: - shard-dg2-set2: [DMESG-WARN][287] ([Intel XE#1214] / [Intel XE#1760]) -> [DMESG-WARN][288] ([Intel XE#1760]) [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-dg2-436/igt@xe_wedged@basic-wedged.html [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-432/igt@xe_wedged@basic-wedged.html * igt@xe_wedged@wedged-at-any-timeout: - shard-dg2-set2: [DMESG-WARN][289] ([Intel XE#1214] / [Intel XE#1760]) -> [DMESG-FAIL][290] ([Intel XE#1760]) [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-dg2-464/igt@xe_wedged@wedged-at-any-timeout.html [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/shard-dg2-463/igt@xe_wedged@wedged-at-any-timeout.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [Intel XE#1091]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1091 [Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122 [Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123 [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1125]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1125 [Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126 [Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127 [Intel XE#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128 [Intel XE#1129]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1129 [Intel XE#1135]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1135 [Intel XE#1137]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1137 [Intel XE#1162]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1162 [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178 [Intel XE#1192]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1192 [Intel XE#1195]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1195 [Intel XE#1201]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1201 [Intel XE#1214]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1214 [Intel XE#1234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1234 [Intel XE#1252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1252 [Intel XE#1280]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1280 [Intel XE#1330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1330 [Intel XE#1358]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1358 [Intel XE#1388]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1388 [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392 [Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397 [Intel XE#1399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1399 [Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401 [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#1413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1413 [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#1437]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1437 [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439 [Intel XE#1442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1442 [Intel XE#1446]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1446 [Intel XE#1450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1450 [Intel XE#1468]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1468 [Intel XE#1469]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1469 [Intel XE#1470]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1470 [Intel XE#1473]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1473 [Intel XE#1477]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1477 [Intel XE#1488]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1488 [Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512 [Intel XE#1595]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1595 [Intel XE#1600]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1600 [Intel XE#1607]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1607 [Intel XE#1616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1616 [Intel XE#1638]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1638 [Intel XE#1646]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1646 [Intel XE#1650]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1650 [Intel XE#1663]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1663 [Intel XE#1713]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1713 [Intel XE#1725]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1725 [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745 [Intel XE#1760]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1760 [Intel XE#1761]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1761 [Intel XE#1830]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1830 [Intel XE#1850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1850 [Intel XE#1873]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1873 [Intel XE#1908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1908 [Intel XE#1927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1927 [Intel XE#1939]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1939 [Intel XE#282]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/282 [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288 [Intel XE#305]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/305 [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306 [Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308 [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309 [Intel XE#314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/314 [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316 [Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323 [Intel XE#327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/327 [Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346 [Intel XE#352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/352 [Intel XE#361]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/361 [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#374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/374 [Intel XE#378]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/378 [Intel XE#392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/392 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#480]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/480 [Intel XE#560]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/560 [Intel XE#581]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/581 [Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584 [Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599 [Intel XE#605]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/605 [Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616 [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651 [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653 [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656 [Intel XE#658]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/658 [Intel XE#687]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/687 [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/701 [Intel XE#703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/703 [Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756 [Intel XE#771]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/771 [Intel XE#780]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/780 [Intel XE#783]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/783 [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787 [Intel XE#829]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/829 [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870 [Intel XE#877]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/877 [Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886 [Intel XE#899]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/899 [Intel XE#910]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/910 [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 [Intel XE#979]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/979 Build changes ------------- * IGT: IGT_7871 -> IGTPW_11188 * Linux: xe-1337-1cea2d72e1159a0a7923af196458aa68e6074f90 -> xe-1340-20495a62e9c3838fda495585fb4bda8e38cc1c6f IGTPW_11188: e0c0a4762dea825ff5c95b7c638542e3e3d504f6 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_7871: 1d7b961235e345db20933c057f265898e2e96fd2 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-1337-1cea2d72e1159a0a7923af196458aa68e6074f90: 1cea2d72e1159a0a7923af196458aa68e6074f90 xe-1340-20495a62e9c3838fda495585fb4bda8e38cc1c6f: 20495a62e9c3838fda495585fb4bda8e38cc1c6f == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11188/index.html [-- Attachment #2: Type: text/html, Size: 101080 bytes --] ^ permalink raw reply [flat|nested] 12+ messages in thread
* ✓ Fi.CI.BAT: success for Update kms_plane test (rev2) 2024-05-24 8:48 [PATCH i-g-t v2 0/2] Update kms_plane test Pranay Samala ` (4 preceding siblings ...) 2024-05-24 13:21 ` ✗ CI.xeFULL: failure " Patchwork @ 2024-05-27 5:33 ` Patchwork 2024-05-27 5:37 ` ✗ CI.xeBAT: failure " Patchwork ` (2 subsequent siblings) 8 siblings, 0 replies; 12+ messages in thread From: Patchwork @ 2024-05-27 5:33 UTC (permalink / raw) To: Pranay Samala; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 3327 bytes --] == Series Details == Series: Update kms_plane test (rev2) URL : https://patchwork.freedesktop.org/series/134006/ State : success == Summary == CI Bug Log - changes from CI_DRM_14818 -> IGTPW_11194 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/index.html Participating hosts (38 -> 35) ------------------------------ Missing (3): fi-kbl-8809g fi-elk-e7500 fi-bsw-n3050 Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_11194: ### IGT changes ### #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@kms_pipe_crc_basic@nonblocking-crc: - {bat-mtlp-9}: NOTRUN -> [INCOMPLETE][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/bat-mtlp-9/igt@kms_pipe_crc_basic@nonblocking-crc.html Known issues ------------ Here are the changes found in IGTPW_11194 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-a-edp-1: - bat-mtlp-8: [PASS][2] -> [DMESG-WARN][3] ([i915#9157]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14818/bat-mtlp-8/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-a-edp-1.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/bat-mtlp-8/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-a-edp-1.html #### Possible fixes #### * igt@kms_flip@basic-flip-vs-modeset@b-dp6: - {bat-mtlp-9}: [DMESG-FAIL][4] ([i915#11009]) -> [PASS][5] [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14818/bat-mtlp-9/igt@kms_flip@basic-flip-vs-modeset@b-dp6.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/bat-mtlp-9/igt@kms_flip@basic-flip-vs-modeset@b-dp6.html * igt@kms_flip@basic-flip-vs-modeset@d-dp7: - {bat-mtlp-9}: [FAIL][6] ([i915#6121]) -> [PASS][7] +5 other tests pass [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14818/bat-mtlp-9/igt@kms_flip@basic-flip-vs-modeset@d-dp7.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/bat-mtlp-9/igt@kms_flip@basic-flip-vs-modeset@d-dp7.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [i915#10979]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10979 [i915#11009]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11009 [i915#6121]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6121 [i915#9157]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9157 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7871 -> IGTPW_11194 CI-20190529: 20190529 CI_DRM_14818: ecacdcfd7d3355d063c223b9b2abb09d1ba0cb1c @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_11194: 9f492fa860cd7ab2dc1edfa41d21e8ed35d04d4c @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_7871: 1d7b961235e345db20933c057f265898e2e96fd2 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/index.html [-- Attachment #2: Type: text/html, Size: 3939 bytes --] ^ permalink raw reply [flat|nested] 12+ messages in thread
* ✗ CI.xeBAT: failure for Update kms_plane test (rev2) 2024-05-24 8:48 [PATCH i-g-t v2 0/2] Update kms_plane test Pranay Samala ` (5 preceding siblings ...) 2024-05-27 5:33 ` ✓ Fi.CI.BAT: success for Update kms_plane test (rev2) Patchwork @ 2024-05-27 5:37 ` Patchwork 2024-05-27 7:04 ` ✗ CI.xeFULL: " Patchwork 2024-05-27 8:24 ` ✗ Fi.CI.IGT: " Patchwork 8 siblings, 0 replies; 12+ messages in thread From: Patchwork @ 2024-05-27 5:37 UTC (permalink / raw) To: Pranay Samala; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 3083 bytes --] == Series Details == Series: Update kms_plane test (rev2) URL : https://patchwork.freedesktop.org/series/134006/ State : failure == Summary == CI Bug Log - changes from XEIGT_7871_BAT -> XEIGTPW_11194_BAT ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_11194_BAT absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_11194_BAT, 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 (4 -> 5) ------------------------------ Additional (1): bat-adlp-7 Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_11194_BAT: ### IGT changes ### #### Possible regressions #### * igt@runner@aborted: - bat-adlp-7: NOTRUN -> [FAIL][1] [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11194/bat-adlp-7/igt@runner@aborted.html - bat-pvc-2: NOTRUN -> [FAIL][2] [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11194/bat-pvc-2/igt@runner@aborted.html * igt@xe_exec_compute_mode@twice-userptr: - bat-atsm-2: [PASS][3] -> [DMESG-WARN][4] [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/bat-atsm-2/igt@xe_exec_compute_mode@twice-userptr.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11194/bat-atsm-2/igt@xe_exec_compute_mode@twice-userptr.html Known issues ------------ Here are the changes found in XEIGTPW_11194_BAT that come from known issues: ### IGT changes ### #### Possible fixes #### * igt@xe_exec_threads@threads-mixed-fd-basic: - bat-dg2-oem2: [ABORT][5] ([Intel XE#1908]) -> [PASS][6] [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/bat-dg2-oem2/igt@xe_exec_threads@threads-mixed-fd-basic.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11194/bat-dg2-oem2/igt@xe_exec_threads@threads-mixed-fd-basic.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [Intel XE#1908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1908 [Intel XE#1939]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1939 Build changes ------------- * IGT: IGT_7871 -> IGTPW_11194 * Linux: xe-1337-1cea2d72e1159a0a7923af196458aa68e6074f90 -> xe-1343-ecacdcfd7d3355d063c223b9b2abb09d1ba0cb1c IGTPW_11194: 9f492fa860cd7ab2dc1edfa41d21e8ed35d04d4c @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_7871: 1d7b961235e345db20933c057f265898e2e96fd2 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-1337-1cea2d72e1159a0a7923af196458aa68e6074f90: 1cea2d72e1159a0a7923af196458aa68e6074f90 xe-1343-ecacdcfd7d3355d063c223b9b2abb09d1ba0cb1c: ecacdcfd7d3355d063c223b9b2abb09d1ba0cb1c == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11194/index.html [-- Attachment #2: Type: text/html, Size: 3681 bytes --] ^ permalink raw reply [flat|nested] 12+ messages in thread
* ✗ CI.xeFULL: failure for Update kms_plane test (rev2) 2024-05-24 8:48 [PATCH i-g-t v2 0/2] Update kms_plane test Pranay Samala ` (6 preceding siblings ...) 2024-05-27 5:37 ` ✗ CI.xeBAT: failure " Patchwork @ 2024-05-27 7:04 ` Patchwork 2024-05-27 8:24 ` ✗ Fi.CI.IGT: " Patchwork 8 siblings, 0 replies; 12+ messages in thread From: Patchwork @ 2024-05-27 7:04 UTC (permalink / raw) To: Pranay Samala; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 15936 bytes --] == Series Details == Series: Update kms_plane test (rev2) URL : https://patchwork.freedesktop.org/series/134006/ State : failure == Summary == CI Bug Log - changes from XEIGT_7871_full -> XEIGTPW_11194_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with XEIGTPW_11194_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in XEIGTPW_11194_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 (3 -> 2) ------------------------------ Missing (1): shard-adlp Possible new issues ------------------- Here are the unknown changes that may have been introduced in XEIGTPW_11194_full: ### IGT changes ### #### Possible regressions #### * igt@runner@aborted: - shard-dg2-set2: NOTRUN -> ([FAIL][1], [FAIL][2], [FAIL][3], [FAIL][4], [FAIL][5], [FAIL][6], [FAIL][7], [FAIL][8], [FAIL][9], [FAIL][10], [FAIL][11], [FAIL][12], [FAIL][13], [FAIL][14], [FAIL][15], [FAIL][16], [FAIL][17], [FAIL][18], [FAIL][19], [FAIL][20], [FAIL][21], [FAIL][22], [FAIL][23], [FAIL][24], [FAIL][25]) [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11194/shard-dg2-432/igt@runner@aborted.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11194/shard-dg2-464/igt@runner@aborted.html [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11194/shard-dg2-466/igt@runner@aborted.html [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11194/shard-dg2-436/igt@runner@aborted.html [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11194/shard-dg2-463/igt@runner@aborted.html [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11194/shard-dg2-435/igt@runner@aborted.html [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11194/shard-dg2-433/igt@runner@aborted.html [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11194/shard-dg2-432/igt@runner@aborted.html [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11194/shard-dg2-434/igt@runner@aborted.html [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11194/shard-dg2-435/igt@runner@aborted.html [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11194/shard-dg2-433/igt@runner@aborted.html [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11194/shard-dg2-466/igt@runner@aborted.html [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11194/shard-dg2-463/igt@runner@aborted.html [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11194/shard-dg2-434/igt@runner@aborted.html [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11194/shard-dg2-436/igt@runner@aborted.html [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11194/shard-dg2-463/igt@runner@aborted.html [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11194/shard-dg2-433/igt@runner@aborted.html [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11194/shard-dg2-434/igt@runner@aborted.html [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11194/shard-dg2-436/igt@runner@aborted.html [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11194/shard-dg2-464/igt@runner@aborted.html [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11194/shard-dg2-436/igt@runner@aborted.html [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11194/shard-dg2-464/igt@runner@aborted.html [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11194/shard-dg2-432/igt@runner@aborted.html [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11194/shard-dg2-466/igt@runner@aborted.html [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11194/shard-dg2-435/igt@runner@aborted.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@kms_lease@lease-get: - {shard-lnl}: NOTRUN -> [INCOMPLETE][26] [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11194/shard-lnl-2/igt@kms_lease@lease-get.html * igt@kms_psr@psr2-suspend: - {shard-lnl}: [PASS][27] -> [INCOMPLETE][28] +1 other test incomplete [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-lnl-4/igt@kms_psr@psr2-suspend.html [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11194/shard-lnl-5/igt@kms_psr@psr2-suspend.html New tests --------- New tests have been introduced between XEIGT_7871_full and XEIGTPW_11194_full: ### New IGT tests (19) ### * igt@kms_plane@pixel-format@pipe-a-plane-0: - Statuses : 1 pass(s) - Exec time: [7.38] s * igt@kms_plane@pixel-format@pipe-a-plane-3: - Statuses : 1 pass(s) - Exec time: [4.55] s * igt@kms_plane@pixel-format@pipe-a-plane-5: - Statuses : 1 pass(s) - Exec time: [0.21] s * igt@kms_plane@pixel-format@pipe-b-plane-0: - Statuses : 1 pass(s) - Exec time: [7.45] s * igt@kms_plane@pixel-format@pipe-b-plane-3: - Statuses : 1 pass(s) - Exec time: [4.45] s * igt@kms_plane@pixel-format@pipe-b-plane-5: - Statuses : 1 pass(s) - Exec time: [0.21] s * igt@kms_plane@plane-position-hole@pipe-a-plane-1: - Statuses : 1 pass(s) - Exec time: [1.46] s * igt@kms_plane@plane-position-hole@pipe-a-plane-2: - Statuses : 1 pass(s) - Exec time: [1.52] s * igt@kms_plane@plane-position-hole@pipe-a-plane-3: - Statuses : 1 pass(s) - Exec time: [1.52] s * igt@kms_plane@plane-position-hole@pipe-a-plane-4: - Statuses : 1 pass(s) - Exec time: [1.47] s * igt@kms_plane@plane-position-hole@pipe-a-plane-5: - Statuses : 1 pass(s) - Exec time: [0.02] s * igt@kms_plane@plane-position-hole@pipe-b-plane-1: - Statuses : 1 pass(s) - Exec time: [1.52] s * igt@kms_plane@plane-position-hole@pipe-b-plane-2: - Statuses : 1 pass(s) - Exec time: [1.48] s * igt@kms_plane@plane-position-hole@pipe-b-plane-3: - Statuses : 1 pass(s) - Exec time: [1.46] s * igt@kms_plane@plane-position-hole@pipe-b-plane-4: - Statuses : 1 pass(s) - Exec time: [1.49] s * igt@kms_plane@plane-position-hole@pipe-b-plane-5: - Statuses : 1 pass(s) - Exec time: [0.03] s * igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-a-edp-1: - Statuses : 1 skip(s) - Exec time: [0.01] s * igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-b-edp-1: - Statuses : 1 skip(s) - Exec time: [0.01] s * igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-c-edp-1: - Statuses : 1 skip(s) - Exec time: [0.01] s Known issues ------------ Here are the changes found in XEIGTPW_11194_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-a-edp-1 (NEW): - {shard-lnl}: NOTRUN -> [SKIP][29] ([Intel XE#305]) +2 other tests skip [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11194/shard-lnl-1/igt@kms_plane_scaling@planes-downscale-factor-0-75@pipe-a-edp-1.html #### Possible fixes #### * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip: - {shard-lnl}: [FAIL][30] ([Intel XE#1659]) -> [PASS][31] [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-lnl-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11194/shard-lnl-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_ccs@random-ccs-data-4-tiled-xe2-ccs@pipe-c-edp-1: - {shard-lnl}: [DMESG-WARN][32] -> [PASS][33] [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-lnl-4/igt@kms_ccs@random-ccs-data-4-tiled-xe2-ccs@pipe-c-edp-1.html [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11194/shard-lnl-3/igt@kms_ccs@random-ccs-data-4-tiled-xe2-ccs@pipe-c-edp-1.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-render: - {shard-lnl}: [ABORT][34] ([Intel XE#1939]) -> [PASS][35] +2 other tests pass [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-lnl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-render.html [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11194/shard-lnl-7/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-render.html * igt@kms_pm_dc@dc6-dpms: - {shard-lnl}: [FAIL][36] ([Intel XE#1430]) -> [PASS][37] [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-lnl-8/igt@kms_pm_dc@dc6-dpms.html [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11194/shard-lnl-3/igt@kms_pm_dc@dc6-dpms.html * igt@kms_psr@psr-sprite-blt: - {shard-lnl}: [SKIP][38] ([Intel XE#1646] / [Intel XE#1650]) -> [PASS][39] +2 other tests pass [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-lnl-6/igt@kms_psr@psr-sprite-blt.html [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11194/shard-lnl-1/igt@kms_psr@psr-sprite-blt.html * igt@xe_exec_compute_mode@many-execqueues-bindexecqueue-userptr-invalidate: - {shard-lnl}: [DMESG-WARN][40] ([Intel XE#1330]) -> [PASS][41] [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-lnl-7/igt@xe_exec_compute_mode@many-execqueues-bindexecqueue-userptr-invalidate.html [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11194/shard-lnl-3/igt@xe_exec_compute_mode@many-execqueues-bindexecqueue-userptr-invalidate.html * igt@xe_exec_fault_mode@many-invalid-fault: - {shard-lnl}: [DMESG-WARN][42] ([Intel XE#1638]) -> [PASS][43] [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-lnl-1/igt@xe_exec_fault_mode@many-invalid-fault.html [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11194/shard-lnl-7/igt@xe_exec_fault_mode@many-invalid-fault.html * igt@xe_pm_residency@idle-residency: - {shard-lnl}: [FAIL][44] ([Intel XE#1442]) -> [PASS][45] [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7871/shard-lnl-6/igt@xe_pm_residency@idle-residency.html [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11194/shard-lnl-7/igt@xe_pm_residency@idle-residency.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127 [Intel XE#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128 [Intel XE#1137]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1137 [Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138 [Intel XE#1330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1330 [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392 [Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397 [Intel XE#1399]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1399 [Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401 [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#1413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1413 [Intel XE#1420]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1420 [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#1430]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1430 [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435 [Intel XE#1437]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1437 [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439 [Intel XE#1442]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1442 [Intel XE#1446]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1446 [Intel XE#1450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1450 [Intel XE#1468]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1468 [Intel XE#1494]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1494 [Intel XE#1504]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1504 [Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512 [Intel XE#1638]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1638 [Intel XE#1641]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1641 [Intel XE#1646]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1646 [Intel XE#1650]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1650 [Intel XE#1659]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1659 [Intel XE#1661]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1661 [Intel XE#1701]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1701 [Intel XE#1725]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1725 [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745 [Intel XE#1794]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1794 [Intel XE#1830]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1830 [Intel XE#1908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1908 [Intel XE#1926]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1926 [Intel XE#1939]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1939 [Intel XE#305]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/305 [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306 [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309 [Intel XE#314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/314 [Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323 [Intel XE#324]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/324 [Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346 [Intel XE#352]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/352 [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#374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/374 [Intel XE#498]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/498 [Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584 [Intel XE#605]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/605 [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#664]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/664 [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#703]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/703 [Intel XE#829]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/829 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 Build changes ------------- * IGT: IGT_7871 -> IGTPW_11194 * Linux: xe-1337-1cea2d72e1159a0a7923af196458aa68e6074f90 -> xe-1343-ecacdcfd7d3355d063c223b9b2abb09d1ba0cb1c IGTPW_11194: 9f492fa860cd7ab2dc1edfa41d21e8ed35d04d4c @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_7871: 1d7b961235e345db20933c057f265898e2e96fd2 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git xe-1337-1cea2d72e1159a0a7923af196458aa68e6074f90: 1cea2d72e1159a0a7923af196458aa68e6074f90 xe-1343-ecacdcfd7d3355d063c223b9b2abb09d1ba0cb1c: ecacdcfd7d3355d063c223b9b2abb09d1ba0cb1c == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_11194/index.html [-- Attachment #2: Type: text/html, Size: 13440 bytes --] ^ permalink raw reply [flat|nested] 12+ messages in thread
* ✗ Fi.CI.IGT: failure for Update kms_plane test (rev2) 2024-05-24 8:48 [PATCH i-g-t v2 0/2] Update kms_plane test Pranay Samala ` (7 preceding siblings ...) 2024-05-27 7:04 ` ✗ CI.xeFULL: " Patchwork @ 2024-05-27 8:24 ` Patchwork 8 siblings, 0 replies; 12+ messages in thread From: Patchwork @ 2024-05-27 8:24 UTC (permalink / raw) To: Pranay Samala; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 91295 bytes --] == Series Details == Series: Update kms_plane test (rev2) URL : https://patchwork.freedesktop.org/series/134006/ State : failure == Summary == CI Bug Log - changes from CI_DRM_14818_full -> IGTPW_11194_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_11194_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_11194_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_11194/index.html Participating hosts (9 -> 9) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_11194_full: ### IGT changes ### #### Possible regressions #### * igt@gem_linear_blits@normal: - shard-snb: [PASS][1] -> [ABORT][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14818/shard-snb2/igt@gem_linear_blits@normal.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-snb6/igt@gem_linear_blits@normal.html * igt@kms_busy@extended-modeset-hang-newfb@pipe-a: - shard-mtlp: [PASS][3] -> [INCOMPLETE][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14818/shard-mtlp-5/igt@kms_busy@extended-modeset-hang-newfb@pipe-a.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-mtlp-7/igt@kms_busy@extended-modeset-hang-newfb@pipe-a.html New tests --------- New tests have been introduced between CI_DRM_14818_full and IGTPW_11194_full: ### New IGT tests (76) ### * igt@kms_flip@2x-absolute-wf_vblank@ab-hdmi-a1-hdmi-a2: - Statuses : 1 pass(s) - Exec time: [10.65] s * igt@kms_flip@2x-absolute-wf_vblank@ac-hdmi-a1-hdmi-a2: - Statuses : 1 pass(s) - Exec time: [10.57] s * igt@kms_flip@2x-absolute-wf_vblank@bc-hdmi-a1-hdmi-a2: - Statuses : 1 pass(s) - Exec time: [10.55] s * igt@kms_flip@2x-flip-vs-panning@ab-hdmi-a1-hdmi-a2: - Statuses : 1 pass(s) - Exec time: [10.82] s * igt@kms_flip@2x-flip-vs-panning@ac-hdmi-a1-hdmi-a2: - Statuses : 1 pass(s) - Exec time: [10.58] s * igt@kms_flip@2x-flip-vs-panning@bc-hdmi-a1-hdmi-a2: - Statuses : 1 pass(s) - Exec time: [10.60] s * igt@kms_flip@2x-flip-vs-rmfb-interruptible@ab-hdmi-a1-hdmi-a2: - Statuses : 1 pass(s) - Exec time: [10.54] s * igt@kms_flip@2x-flip-vs-rmfb-interruptible@ac-hdmi-a1-hdmi-a2: - Statuses : 1 pass(s) - Exec time: [10.53] s * igt@kms_flip@2x-flip-vs-rmfb-interruptible@bc-hdmi-a1-hdmi-a2: - Statuses : 1 pass(s) - Exec time: [10.49] s * igt@kms_plane@pixel-format-source-clamping@pipe-a-plane-0: - Statuses : 2 pass(s) - Exec time: [2.46, 5.89] s * igt@kms_plane@pixel-format-source-clamping@pipe-a-plane-1: - Statuses : 1 pass(s) - Exec time: [1.06] s * igt@kms_plane@pixel-format-source-clamping@pipe-a-plane-2: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane@pixel-format-source-clamping@pipe-a-plane-3: - Statuses : 1 pass(s) - Exec time: [3.49] s * igt@kms_plane@pixel-format-source-clamping@pipe-a-plane-5: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane@pixel-format-source-clamping@pipe-b-plane-0: - Statuses : 2 pass(s) - Exec time: [2.46, 5.88] s * igt@kms_plane@pixel-format-source-clamping@pipe-b-plane-1: - Statuses : 1 pass(s) - Exec time: [1.06] s * igt@kms_plane@pixel-format-source-clamping@pipe-b-plane-2: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane@pixel-format-source-clamping@pipe-b-plane-3: - Statuses : 1 pass(s) - Exec time: [3.50] s * igt@kms_plane@pixel-format-source-clamping@pipe-b-plane-5: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_plane@pixel-format@pipe-a-plane-0: - Statuses : 3 pass(s) - Exec time: [2.01, 7.93] s * igt@kms_plane@pixel-format@pipe-a-plane-1: - Statuses : 1 pass(s) - Exec time: [1.06] s * igt@kms_plane@pixel-format@pipe-a-plane-2: - Statuses : 1 pass(s) - Exec time: [0.21] s * igt@kms_plane@pixel-format@pipe-a-plane-3: - Statuses : 2 pass(s) - Exec time: [3.53, 4.78] s * igt@kms_plane@pixel-format@pipe-a-plane-5: - Statuses : 2 pass(s) - Exec time: [0.18, 0.27] s * igt@kms_plane@pixel-format@pipe-b-plane-0: - Statuses : 3 pass(s) - Exec time: [2.00, 7.62] s * igt@kms_plane@pixel-format@pipe-b-plane-1: - Statuses : 1 pass(s) - Exec time: [1.06] s * igt@kms_plane@pixel-format@pipe-b-plane-2: - Statuses : 1 pass(s) - Exec time: [0.21] s * igt@kms_plane@pixel-format@pipe-b-plane-3: - Statuses : 2 pass(s) - Exec time: [3.48, 4.75] s * igt@kms_plane@pixel-format@pipe-b-plane-5: - Statuses : 2 pass(s) - Exec time: [0.18, 0.25] s * igt@kms_plane@plane-position-covered@pipe-a-plane-1: - Statuses : 3 pass(s) - Exec time: [0.36, 1.34] s * igt@kms_plane@plane-position-covered@pipe-a-plane-2: - Statuses : 3 pass(s) - Exec time: [0.01, 1.36] s * igt@kms_plane@plane-position-covered@pipe-a-plane-3: - Statuses : 2 pass(s) - Exec time: [0.33, 1.34] s * igt@kms_plane@plane-position-covered@pipe-a-plane-4: - Statuses : 2 pass(s) - Exec time: [0.33, 1.34] s * igt@kms_plane@plane-position-covered@pipe-a-plane-5: - Statuses : 2 pass(s) - Exec time: [0.02, 0.03] s * igt@kms_plane@plane-position-covered@pipe-b-plane-1: - Statuses : 3 pass(s) - Exec time: [0.33, 1.37] s * igt@kms_plane@plane-position-covered@pipe-b-plane-2: - Statuses : 3 pass(s) - Exec time: [0.01, 1.34] s * igt@kms_plane@plane-position-covered@pipe-b-plane-3: - Statuses : 2 pass(s) - Exec time: [0.33, 1.34] s * igt@kms_plane@plane-position-covered@pipe-b-plane-4: - Statuses : 2 pass(s) - Exec time: [0.32, 1.33] s * igt@kms_plane@plane-position-covered@pipe-b-plane-5: - Statuses : 2 pass(s) - Exec time: [0.02, 0.03] s * igt@kms_plane@plane-position-hole-dpms@pipe-a-plane-1: - Statuses : 5 pass(s) - Exec time: [0.38, 0.72] s * igt@kms_plane@plane-position-hole-dpms@pipe-a-plane-2: - Statuses : 5 pass(s) - Exec time: [0.01, 0.73] s * igt@kms_plane@plane-position-hole-dpms@pipe-a-plane-3: - Statuses : 4 pass(s) - Exec time: [0.39, 0.69] s * igt@kms_plane@plane-position-hole-dpms@pipe-a-plane-4: - Statuses : 4 pass(s) - Exec time: [0.01, 0.40] s * igt@kms_plane@plane-position-hole-dpms@pipe-a-plane-5: - Statuses : 3 pass(s) - Exec time: [0.00, 0.39] s * igt@kms_plane@plane-position-hole-dpms@pipe-a-plane-6: - Statuses : 1 pass(s) - Exec time: [0.39] s * igt@kms_plane@plane-position-hole-dpms@pipe-a-plane-7: - Statuses : 1 pass(s) - Exec time: [0.02] s * igt@kms_plane@plane-position-hole-dpms@pipe-b-plane-1: - Statuses : 5 pass(s) - Exec time: [0.35, 0.68] s * igt@kms_plane@plane-position-hole-dpms@pipe-b-plane-2: - Statuses : 5 pass(s) - Exec time: [0.01, 0.68] s * igt@kms_plane@plane-position-hole-dpms@pipe-b-plane-3: - Statuses : 4 pass(s) - Exec time: [0.35, 0.69] s * igt@kms_plane@plane-position-hole-dpms@pipe-b-plane-4: - Statuses : 4 pass(s) - Exec time: [0.01, 0.38] s * igt@kms_plane@plane-position-hole-dpms@pipe-b-plane-5: - Statuses : 3 pass(s) - Exec time: [0.00, 0.37] s * igt@kms_plane@plane-position-hole-dpms@pipe-b-plane-6: - Statuses : 1 pass(s) - Exec time: [0.35] s * igt@kms_plane@plane-position-hole-dpms@pipe-b-plane-7: - Statuses : 1 pass(s) - Exec time: [0.03] s * igt@kms_plane@plane-position-hole@pipe-a-plane-1: - Statuses : 4 pass(s) - Exec time: [0.34, 1.36] s * igt@kms_plane@plane-position-hole@pipe-a-plane-2: - Statuses : 4 pass(s) - Exec time: [0.01, 1.34] s * igt@kms_plane@plane-position-hole@pipe-a-plane-3: - Statuses : 3 pass(s) - Exec time: [0.32, 1.35] s * igt@kms_plane@plane-position-hole@pipe-a-plane-4: - Statuses : 3 pass(s) - Exec time: [0.32, 1.34] s * igt@kms_plane@plane-position-hole@pipe-a-plane-5: - Statuses : 3 pass(s) - Exec time: [0.02, 0.33] s * igt@kms_plane@plane-position-hole@pipe-a-plane-6: - Statuses : 1 pass(s) - Exec time: [0.33] s * igt@kms_plane@plane-position-hole@pipe-a-plane-7: - Statuses : 1 pass(s) - Exec time: [0.02] s * igt@kms_plane@plane-position-hole@pipe-b-plane-1: - Statuses : 4 pass(s) - Exec time: [0.32, 1.36] s * igt@kms_plane@plane-position-hole@pipe-b-plane-2: - Statuses : 4 pass(s) - Exec time: [0.01, 1.35] s * igt@kms_plane@plane-position-hole@pipe-b-plane-3: - Statuses : 3 pass(s) - Exec time: [0.33, 1.34] s * igt@kms_plane@plane-position-hole@pipe-b-plane-4: - Statuses : 3 pass(s) - Exec time: [0.30, 1.33] s * igt@kms_plane@plane-position-hole@pipe-b-plane-5: - Statuses : 3 pass(s) - Exec time: [0.02, 0.33] s * igt@kms_plane@plane-position-hole@pipe-b-plane-6: - Statuses : 1 pass(s) - Exec time: [0.34] s * igt@kms_plane@plane-position-hole@pipe-b-plane-7: - Statuses : 1 pass(s) - Exec time: [0.03] s * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-a-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.12] s * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-b-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.12] s * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-c-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.12] s * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-d-hdmi-a-1: - Statuses : 1 pass(s) - Exec time: [0.09] s * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-5@pipe-d-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.12] s * igt@kms_plane_scaling@planes-upscale-factor-0-25@pipe-a-hdmi-a-3: - Statuses : 2 pass(s) - Exec time: [0.09, 0.10] s * igt@kms_plane_scaling@planes-upscale-factor-0-25@pipe-b-hdmi-a-3: - Statuses : 2 pass(s) - Exec time: [0.12] s * igt@kms_plane_scaling@planes-upscale-factor-0-25@pipe-c-hdmi-a-3: - Statuses : 2 pass(s) - Exec time: [0.10] s * igt@kms_plane_scaling@planes-upscale-factor-0-25@pipe-d-hdmi-a-3: - Statuses : 2 pass(s) - Exec time: [0.09, 0.10] s Known issues ------------ Here are the changes found in IGTPW_11194_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-reloc-keep-cache: - shard-dg1: NOTRUN -> [SKIP][5] ([i915#8411]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg1-15/igt@api_intel_bb@blit-reloc-keep-cache.html * igt@api_intel_bb@crc32: - shard-dg1: NOTRUN -> [SKIP][6] ([i915#6230]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg1-15/igt@api_intel_bb@crc32.html * igt@api_intel_bb@object-reloc-keep-cache: - shard-mtlp: NOTRUN -> [SKIP][7] ([i915#8411]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-mtlp-7/igt@api_intel_bb@object-reloc-keep-cache.html * igt@api_intel_bb@object-reloc-purge-cache: - shard-dg2: NOTRUN -> [SKIP][8] ([i915#8411]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg2-7/igt@api_intel_bb@object-reloc-purge-cache.html * igt@debugfs_test@basic-hwmon: - shard-rkl: NOTRUN -> [SKIP][9] ([i915#9318]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-rkl-3/igt@debugfs_test@basic-hwmon.html * igt@device_reset@unbind-cold-reset-rebind: - shard-dg1: NOTRUN -> [SKIP][10] ([i915#11078]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg1-18/igt@device_reset@unbind-cold-reset-rebind.html - shard-mtlp: NOTRUN -> [SKIP][11] ([i915#11078]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-mtlp-4/igt@device_reset@unbind-cold-reset-rebind.html * igt@drm_fdinfo@busy-idle-check-all@ccs0: - shard-mtlp: NOTRUN -> [SKIP][12] ([i915#8414]) +6 other tests skip [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-mtlp-4/igt@drm_fdinfo@busy-idle-check-all@ccs0.html * igt@drm_fdinfo@busy-idle-check-all@vcs1: - shard-dg1: NOTRUN -> [SKIP][13] ([i915#8414]) +4 other tests skip [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg1-13/igt@drm_fdinfo@busy-idle-check-all@vcs1.html * igt@drm_fdinfo@isolation@vcs1: - shard-dg2: NOTRUN -> [SKIP][14] ([i915#8414]) +14 other tests skip [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg2-5/igt@drm_fdinfo@isolation@vcs1.html * igt@drm_fdinfo@virtual-idle: - shard-rkl: NOTRUN -> [FAIL][15] ([i915#7742]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-rkl-3/igt@drm_fdinfo@virtual-idle.html * igt@gem_basic@multigpu-create-close: - shard-snb: NOTRUN -> [SKIP][16] +16 other tests skip [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-snb5/igt@gem_basic@multigpu-create-close.html * igt@gem_ccs@ctrl-surf-copy-new-ctx: - shard-mtlp: NOTRUN -> [SKIP][17] ([i915#9323]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-mtlp-5/igt@gem_ccs@ctrl-surf-copy-new-ctx.html - shard-dg1: NOTRUN -> [SKIP][18] ([i915#9323]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg1-13/igt@gem_ccs@ctrl-surf-copy-new-ctx.html * igt@gem_close_race@multigpu-basic-process: - shard-dg1: NOTRUN -> [SKIP][19] ([i915#7697]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg1-15/igt@gem_close_race@multigpu-basic-process.html * igt@gem_close_race@multigpu-basic-threads: - shard-rkl: NOTRUN -> [SKIP][20] ([i915#7697]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-rkl-2/igt@gem_close_race@multigpu-basic-threads.html * igt@gem_create@create-ext-cpu-access-big: - shard-mtlp: NOTRUN -> [SKIP][21] ([i915#6335]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-mtlp-2/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_create@create-ext-set-pat: - shard-dg2: NOTRUN -> [SKIP][22] ([i915#8562]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg2-1/igt@gem_create@create-ext-set-pat.html - shard-rkl: NOTRUN -> [SKIP][23] ([i915#8562]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-rkl-3/igt@gem_create@create-ext-set-pat.html * igt@gem_ctx_persistence@heartbeat-close: - shard-dg2: NOTRUN -> [SKIP][24] ([i915#8555]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg2-7/igt@gem_ctx_persistence@heartbeat-close.html * igt@gem_ctx_persistence@heartbeat-many: - shard-dg1: NOTRUN -> [SKIP][25] ([i915#8555]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg1-18/igt@gem_ctx_persistence@heartbeat-many.html * igt@gem_ctx_persistence@saturated-hostile-nopreempt@ccs0: - shard-dg2: NOTRUN -> [SKIP][26] ([i915#5882]) +6 other tests skip [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg2-10/igt@gem_ctx_persistence@saturated-hostile-nopreempt@ccs0.html * igt@gem_ctx_persistence@saturated-hostile-nopreempt@vcs0: - shard-mtlp: NOTRUN -> [SKIP][27] ([i915#5882]) +5 other tests skip [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-mtlp-7/igt@gem_ctx_persistence@saturated-hostile-nopreempt@vcs0.html * igt@gem_eio@hibernate: - shard-dg2: NOTRUN -> [ABORT][28] ([i915#10030] / [i915#7975] / [i915#8213]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg2-8/igt@gem_eio@hibernate.html * igt@gem_eio@kms: - shard-dg2: NOTRUN -> [INCOMPLETE][29] ([i915#10513]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg2-5/igt@gem_eio@kms.html - shard-dg1: NOTRUN -> [INCOMPLETE][30] ([i915#10513]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg1-15/igt@gem_eio@kms.html * igt@gem_eio@unwedge-stress: - shard-dg1: NOTRUN -> [FAIL][31] ([i915#5784]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg1-16/igt@gem_eio@unwedge-stress.html * igt@gem_exec_balancer@bonded-sync: - shard-dg2: NOTRUN -> [SKIP][32] ([i915#4771]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg2-7/igt@gem_exec_balancer@bonded-sync.html * igt@gem_exec_balancer@hog: - shard-dg1: NOTRUN -> [SKIP][33] ([i915#4812]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg1-17/igt@gem_exec_balancer@hog.html * igt@gem_exec_balancer@parallel-bb-first: - shard-rkl: NOTRUN -> [SKIP][34] ([i915#4525]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-rkl-3/igt@gem_exec_balancer@parallel-bb-first.html * igt@gem_exec_fair@basic-none: - shard-dg1: NOTRUN -> [SKIP][35] ([i915#3539] / [i915#4852]) +3 other tests skip [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg1-18/igt@gem_exec_fair@basic-none.html * igt@gem_exec_fair@basic-none-share: - shard-dg2: NOTRUN -> [SKIP][36] ([i915#3539] / [i915#4852]) +2 other tests skip [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg2-2/igt@gem_exec_fair@basic-none-share.html * igt@gem_exec_fair@basic-none-solo: - shard-mtlp: NOTRUN -> [SKIP][37] ([i915#4473]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-mtlp-2/igt@gem_exec_fair@basic-none-solo.html * igt@gem_exec_fair@basic-pace@vecs0: - shard-rkl: [PASS][38] -> [FAIL][39] ([i915#2842]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14818/shard-rkl-3/igt@gem_exec_fair@basic-pace@vecs0.html [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-rkl-3/igt@gem_exec_fair@basic-pace@vecs0.html * igt@gem_exec_fair@basic-sync: - shard-mtlp: NOTRUN -> [SKIP][40] ([i915#4473] / [i915#4771]) +1 other test skip [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-mtlp-4/igt@gem_exec_fair@basic-sync.html - shard-dg2: NOTRUN -> [SKIP][41] ([i915#3539]) +1 other test skip [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg2-2/igt@gem_exec_fair@basic-sync.html * igt@gem_exec_fair@basic-throttle@rcs0: - shard-glk: NOTRUN -> [FAIL][42] ([i915#2842]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-glk8/igt@gem_exec_fair@basic-throttle@rcs0.html * igt@gem_exec_params@rsvd2-dirt: - shard-mtlp: NOTRUN -> [SKIP][43] ([i915#5107]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-mtlp-6/igt@gem_exec_params@rsvd2-dirt.html * igt@gem_exec_reloc@basic-gtt-read: - shard-dg2: NOTRUN -> [SKIP][44] ([i915#3281]) +12 other tests skip [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg2-1/igt@gem_exec_reloc@basic-gtt-read.html * igt@gem_exec_reloc@basic-gtt-wc: - shard-mtlp: NOTRUN -> [SKIP][45] ([i915#3281]) +8 other tests skip [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-mtlp-4/igt@gem_exec_reloc@basic-gtt-wc.html * igt@gem_exec_reloc@basic-gtt-wc-noreloc: - shard-rkl: NOTRUN -> [SKIP][46] ([i915#3281]) +8 other tests skip [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-rkl-3/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html * igt@gem_exec_reloc@basic-write-cpu-active: - shard-dg1: NOTRUN -> [SKIP][47] ([i915#3281]) +9 other tests skip [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg1-17/igt@gem_exec_reloc@basic-write-cpu-active.html * igt@gem_exec_schedule@preempt-queue-chain: - shard-mtlp: NOTRUN -> [SKIP][48] ([i915#4537] / [i915#4812]) +2 other tests skip [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-mtlp-4/igt@gem_exec_schedule@preempt-queue-chain.html * igt@gem_exec_schedule@semaphore-power: - shard-dg2: NOTRUN -> [SKIP][49] ([i915#4537] / [i915#4812]) [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg2-8/igt@gem_exec_schedule@semaphore-power.html * igt@gem_fenced_exec_thrash@2-spare-fences: - shard-dg2: NOTRUN -> [SKIP][50] ([i915#4860]) +2 other tests skip [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg2-8/igt@gem_fenced_exec_thrash@2-spare-fences.html * igt@gem_fenced_exec_thrash@too-many-fences: - shard-mtlp: NOTRUN -> [SKIP][51] ([i915#4860]) +1 other test skip [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-mtlp-2/igt@gem_fenced_exec_thrash@too-many-fences.html * igt@gem_lmem_swapping@heavy-random: - shard-glk: NOTRUN -> [SKIP][52] ([i915#4613]) +2 other tests skip [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-glk3/igt@gem_lmem_swapping@heavy-random.html * igt@gem_lmem_swapping@heavy-verify-multi: - shard-mtlp: NOTRUN -> [SKIP][53] ([i915#4613]) +3 other tests skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-mtlp-7/igt@gem_lmem_swapping@heavy-verify-multi.html * igt@gem_lmem_swapping@parallel-multi: - shard-rkl: NOTRUN -> [SKIP][54] ([i915#4613]) +1 other test skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-rkl-3/igt@gem_lmem_swapping@parallel-multi.html * igt@gem_lmem_swapping@verify-ccs@lmem0: - shard-dg2: NOTRUN -> [FAIL][55] ([i915#10378]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg2-8/igt@gem_lmem_swapping@verify-ccs@lmem0.html * igt@gem_media_fill@media-fill: - shard-dg2: NOTRUN -> [SKIP][56] ([i915#8289]) [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg2-5/igt@gem_media_fill@media-fill.html * igt@gem_media_vme: - shard-rkl: NOTRUN -> [SKIP][57] ([i915#284]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-rkl-2/igt@gem_media_vme.html * igt@gem_mmap_gtt@basic-write: - shard-dg2: NOTRUN -> [SKIP][58] ([i915#4077]) +11 other tests skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg2-2/igt@gem_mmap_gtt@basic-write.html * igt@gem_mmap_gtt@cpuset-basic-small-copy-xy: - shard-dg1: NOTRUN -> [SKIP][59] ([i915#4077]) +13 other tests skip [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg1-18/igt@gem_mmap_gtt@cpuset-basic-small-copy-xy.html * igt@gem_mmap_gtt@cpuset-medium-copy-odd: - shard-mtlp: NOTRUN -> [SKIP][60] ([i915#4077]) +6 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-mtlp-3/igt@gem_mmap_gtt@cpuset-medium-copy-odd.html * igt@gem_mmap_wc@read: - shard-dg1: NOTRUN -> [SKIP][61] ([i915#4083]) +3 other tests skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg1-16/igt@gem_mmap_wc@read.html * igt@gem_mmap_wc@write-wc-read-gtt: - shard-dg2: NOTRUN -> [SKIP][62] ([i915#4083]) +3 other tests skip [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg2-10/igt@gem_mmap_wc@write-wc-read-gtt.html - shard-mtlp: NOTRUN -> [SKIP][63] ([i915#4083]) +1 other test skip [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-mtlp-7/igt@gem_mmap_wc@write-wc-read-gtt.html * igt@gem_partial_pwrite_pread@write: - shard-dg2: NOTRUN -> [SKIP][64] ([i915#3282]) +4 other tests skip [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg2-10/igt@gem_partial_pwrite_pread@write.html * igt@gem_partial_pwrite_pread@writes-after-reads-uncached: - shard-mtlp: NOTRUN -> [SKIP][65] ([i915#3282]) +4 other tests skip [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-mtlp-4/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html * igt@gem_pread@bench: - shard-dg1: NOTRUN -> [SKIP][66] ([i915#3282]) +2 other tests skip [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg1-17/igt@gem_pread@bench.html * igt@gem_pwrite@basic-exhaustion: - shard-rkl: NOTRUN -> [SKIP][67] ([i915#3282]) +2 other tests skip [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-rkl-2/igt@gem_pwrite@basic-exhaustion.html * igt@gem_pxp@display-protected-crc: - shard-dg2: NOTRUN -> [SKIP][68] ([i915#4270]) +4 other tests skip [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg2-5/igt@gem_pxp@display-protected-crc.html - shard-rkl: NOTRUN -> [SKIP][69] ([i915#4270]) +2 other tests skip [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-rkl-3/igt@gem_pxp@display-protected-crc.html * igt@gem_pxp@reject-modify-context-protection-off-3: - shard-dg1: NOTRUN -> [SKIP][70] ([i915#4270]) +1 other test skip [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg1-17/igt@gem_pxp@reject-modify-context-protection-off-3.html * igt@gem_pxp@verify-pxp-key-change-after-suspend-resume: - shard-mtlp: NOTRUN -> [SKIP][71] ([i915#4270]) +2 other tests skip [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-mtlp-1/igt@gem_pxp@verify-pxp-key-change-after-suspend-resume.html * igt@gem_render_copy@y-tiled-ccs-to-y-tiled: - shard-dg2: NOTRUN -> [SKIP][72] ([i915#5190] / [i915#8428]) +4 other tests skip [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg2-2/igt@gem_render_copy@y-tiled-ccs-to-y-tiled.html * igt@gem_render_copy@y-tiled-ccs-to-yf-tiled: - shard-mtlp: NOTRUN -> [SKIP][73] ([i915#8428]) +4 other tests skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-mtlp-2/igt@gem_render_copy@y-tiled-ccs-to-yf-tiled.html * igt@gem_render_tiled_blits@basic: - shard-dg2: NOTRUN -> [SKIP][74] ([i915#4079]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg2-7/igt@gem_render_tiled_blits@basic.html * igt@gem_set_tiling_vs_blt@untiled-to-tiled: - shard-rkl: NOTRUN -> [SKIP][75] ([i915#8411]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-rkl-3/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html * igt@gem_set_tiling_vs_pwrite: - shard-dg1: NOTRUN -> [SKIP][76] ([i915#4079]) +1 other test skip [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg1-18/igt@gem_set_tiling_vs_pwrite.html * igt@gem_softpin@evict-snoop: - shard-dg1: NOTRUN -> [SKIP][77] ([i915#4885]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg1-13/igt@gem_softpin@evict-snoop.html * igt@gem_unfence_active_buffers: - shard-dg2: NOTRUN -> [SKIP][78] ([i915#4879]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg2-5/igt@gem_unfence_active_buffers.html * igt@gem_userptr_blits@create-destroy-unsync: - shard-dg1: NOTRUN -> [SKIP][79] ([i915#3297]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg1-13/igt@gem_userptr_blits@create-destroy-unsync.html * igt@gem_userptr_blits@invalid-mmap-offset-unsync: - shard-dg2: NOTRUN -> [SKIP][80] ([i915#3297]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg2-2/igt@gem_userptr_blits@invalid-mmap-offset-unsync.html * igt@gem_userptr_blits@map-fixed-invalidate-overlap: - shard-dg2: NOTRUN -> [SKIP][81] ([i915#3297] / [i915#4880]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg2-10/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html * igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy: - shard-dg1: NOTRUN -> [SKIP][82] ([i915#3297] / [i915#4880]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg1-16/igt@gem_userptr_blits@map-fixed-invalidate-overlap-busy.html * igt@gem_userptr_blits@readonly-pwrite-unsync: - shard-mtlp: NOTRUN -> [SKIP][83] ([i915#3297]) +1 other test skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-mtlp-4/igt@gem_userptr_blits@readonly-pwrite-unsync.html * igt@gem_userptr_blits@sd-probe: - shard-dg2: NOTRUN -> [SKIP][84] ([i915#3297] / [i915#4958]) [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg2-10/igt@gem_userptr_blits@sd-probe.html * igt@gen9_exec_parse@basic-rejected-ctx-param: - shard-mtlp: NOTRUN -> [SKIP][85] ([i915#2856]) +1 other test skip [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-mtlp-5/igt@gen9_exec_parse@basic-rejected-ctx-param.html * igt@gen9_exec_parse@bb-start-out: - shard-rkl: NOTRUN -> [SKIP][86] ([i915#2527]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-rkl-3/igt@gen9_exec_parse@bb-start-out.html - shard-dg1: NOTRUN -> [SKIP][87] ([i915#2527]) +5 other tests skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg1-17/igt@gen9_exec_parse@bb-start-out.html * igt@gen9_exec_parse@shadow-peek: - shard-dg2: NOTRUN -> [SKIP][88] ([i915#2856]) +2 other tests skip [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg2-11/igt@gen9_exec_parse@shadow-peek.html * igt@i915_module_load@load: - shard-dg2: NOTRUN -> [SKIP][89] ([i915#6227]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg2-10/igt@i915_module_load@load.html * igt@i915_module_load@reload-with-fault-injection: - shard-rkl: NOTRUN -> [ABORT][90] ([i915#9820]) [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-rkl-3/igt@i915_module_load@reload-with-fault-injection.html - shard-snb: [PASS][91] -> [INCOMPLETE][92] ([i915#9849]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14818/shard-snb2/igt@i915_module_load@reload-with-fault-injection.html [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-snb5/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pipe_stress@stress-xrgb8888-ytiled: - shard-mtlp: NOTRUN -> [SKIP][93] ([i915#8436]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-mtlp-4/igt@i915_pipe_stress@stress-xrgb8888-ytiled.html * igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0: - shard-dg1: [PASS][94] -> [FAIL][95] ([i915#3591]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14818/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg1-15/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html * igt@i915_pm_sseu@full-enable: - shard-dg1: NOTRUN -> [SKIP][96] ([i915#4387]) [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg1-16/igt@i915_pm_sseu@full-enable.html - shard-mtlp: NOTRUN -> [SKIP][97] ([i915#8437]) [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-mtlp-3/igt@i915_pm_sseu@full-enable.html * igt@kms_addfb_basic@basic-x-tiled-legacy: - shard-mtlp: NOTRUN -> [SKIP][98] ([i915#4212]) [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-mtlp-6/igt@kms_addfb_basic@basic-x-tiled-legacy.html * igt@kms_addfb_basic@framebuffer-vs-set-tiling: - shard-dg2: NOTRUN -> [SKIP][99] ([i915#4212]) +1 other test skip [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg2-4/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html * igt@kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-mtlp: NOTRUN -> [SKIP][100] ([i915#3826]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-mtlp-7/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-1-4-mc-ccs: - shard-dg2: NOTRUN -> [SKIP][101] ([i915#8709]) +11 other tests skip [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg2-10/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-1-4-mc-ccs.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing: - shard-mtlp: NOTRUN -> [SKIP][102] ([i915#1769] / [i915#3555]) [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-mtlp-5/igt@kms_atomic_transition@plane-all-modeset-transition-fencing.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-glk: NOTRUN -> [SKIP][103] ([i915#1769]) [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-glk3/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_big_fb@4-tiled-8bpp-rotate-0: - shard-dg1: NOTRUN -> [SKIP][104] ([i915#4538] / [i915#5286]) +3 other tests skip [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg1-17/igt@kms_big_fb@4-tiled-8bpp-rotate-0.html * igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0: - shard-rkl: NOTRUN -> [SKIP][105] ([i915#5286]) +5 other tests skip [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-rkl-3/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0.html * igt@kms_big_fb@linear-64bpp-rotate-270: - shard-mtlp: NOTRUN -> [SKIP][106] +21 other tests skip [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-mtlp-4/igt@kms_big_fb@linear-64bpp-rotate-270.html * igt@kms_big_fb@linear-64bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][107] ([i915#3638]) +1 other test skip [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-rkl-3/igt@kms_big_fb@linear-64bpp-rotate-90.html * igt@kms_big_fb@linear-8bpp-rotate-270: - shard-dg1: NOTRUN -> [SKIP][108] ([i915#3638]) +4 other tests skip [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg1-16/igt@kms_big_fb@linear-8bpp-rotate-270.html * igt@kms_big_fb@y-tiled-addfb: - shard-mtlp: NOTRUN -> [SKIP][109] ([i915#6187]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-mtlp-1/igt@kms_big_fb@y-tiled-addfb.html * igt@kms_big_fb@y-tiled-addfb-size-offset-overflow: - shard-dg2: NOTRUN -> [SKIP][110] ([i915#5190]) +1 other test skip [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg2-4/igt@kms_big_fb@y-tiled-addfb-size-offset-overflow.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip: - shard-dg2: NOTRUN -> [SKIP][111] ([i915#4538] / [i915#5190]) +16 other tests skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg2-7/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180: - shard-dg1: NOTRUN -> [SKIP][112] ([i915#4538]) +5 other tests skip [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg1-13/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180.html * igt@kms_big_joiner@basic-force-joiner: - shard-dg2: NOTRUN -> [SKIP][113] ([i915#10656]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg2-2/igt@kms_big_joiner@basic-force-joiner.html - shard-rkl: NOTRUN -> [SKIP][114] ([i915#10656]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-rkl-3/igt@kms_big_joiner@basic-force-joiner.html * igt@kms_ccs@bad-pixel-format-y-tiled-ccs@pipe-d-hdmi-a-1: - shard-dg2: NOTRUN -> [SKIP][115] ([i915#10307] / [i915#10434] / [i915#6095]) +5 other tests skip [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg2-8/igt@kms_ccs@bad-pixel-format-y-tiled-ccs@pipe-d-hdmi-a-1.html * igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][116] ([i915#6095]) +79 other tests skip [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg1-15/igt@kms_ccs@bad-rotation-90-4-tiled-mtl-rc-ccs-cc@pipe-b-hdmi-a-4.html * igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][117] ([i915#10307] / [i915#6095]) +133 other tests skip [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg2-7/igt@kms_ccs@ccs-on-another-bo-yf-tiled-ccs@pipe-a-hdmi-a-3.html * igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [SKIP][118] ([i915#6095]) +31 other tests skip [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-mtlp-6/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc@pipe-b-edp-1.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2: - shard-glk: NOTRUN -> [SKIP][119] +197 other tests skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-glk3/igt@kms_ccs@crc-primary-rotation-180-4-tiled-mtl-mc-ccs@pipe-c-hdmi-a-2.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-xe2-ccs: - shard-dg2: NOTRUN -> [SKIP][120] ([i915#10278]) +1 other test skip [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg2-5/igt@kms_ccs@crc-primary-rotation-180-4-tiled-xe2-ccs.html - shard-dg1: NOTRUN -> [SKIP][121] ([i915#10278]) +1 other test skip [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg1-15/igt@kms_ccs@crc-primary-rotation-180-4-tiled-xe2-ccs.html * igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][122] ([i915#6095]) +15 other tests skip [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-rkl-3/igt@kms_ccs@crc-sprite-planes-basic-4-tiled-dg2-rc-ccs@pipe-b-hdmi-a-2.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-dg1: NOTRUN -> [SKIP][123] ([i915#3742]) +1 other test skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg1-16/igt@kms_cdclk@mode-transition-all-outputs.html - shard-dg2: NOTRUN -> [SKIP][124] ([i915#7213]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg2-7/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_cdclk@plane-scaling: - shard-rkl: NOTRUN -> [SKIP][125] ([i915#3742]) [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-rkl-2/igt@kms_cdclk@plane-scaling.html * igt@kms_chamelium_color@degamma: - shard-dg2: NOTRUN -> [SKIP][126] +23 other tests skip [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg2-10/igt@kms_chamelium_color@degamma.html * igt@kms_chamelium_edid@dp-edid-stress-resolution-4k: - shard-rkl: NOTRUN -> [SKIP][127] ([i915#7828]) +6 other tests skip [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-rkl-3/igt@kms_chamelium_edid@dp-edid-stress-resolution-4k.html * igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k: - shard-dg2: NOTRUN -> [SKIP][128] ([i915#7828]) +8 other tests skip [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg2-2/igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k.html * igt@kms_chamelium_edid@vga-edid-read: - shard-mtlp: NOTRUN -> [SKIP][129] ([i915#7828]) +5 other tests skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-mtlp-8/igt@kms_chamelium_edid@vga-edid-read.html * igt@kms_chamelium_frames@dp-crc-single: - shard-dg1: NOTRUN -> [SKIP][130] ([i915#7828]) +7 other tests skip [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg1-18/igt@kms_chamelium_frames@dp-crc-single.html * igt@kms_content_protection@content-type-change: - shard-mtlp: NOTRUN -> [SKIP][131] ([i915#6944] / [i915#9424]) [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-mtlp-3/igt@kms_content_protection@content-type-change.html - shard-dg1: NOTRUN -> [SKIP][132] ([i915#9424]) [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg1-16/igt@kms_content_protection@content-type-change.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-mtlp: NOTRUN -> [SKIP][133] ([i915#3299]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-mtlp-3/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-rkl: NOTRUN -> [SKIP][134] ([i915#3116]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-rkl-3/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@dp-mst-type-1: - shard-dg1: NOTRUN -> [SKIP][135] ([i915#3299]) [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg1-17/igt@kms_content_protection@dp-mst-type-1.html * igt@kms_content_protection@legacy: - shard-rkl: NOTRUN -> [SKIP][136] ([i915#7118] / [i915#9424]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-rkl-2/igt@kms_content_protection@legacy.html * igt@kms_content_protection@srm: - shard-dg2: NOTRUN -> [SKIP][137] ([i915#7118]) [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg2-1/igt@kms_content_protection@srm.html - shard-rkl: NOTRUN -> [SKIP][138] ([i915#7118]) [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-rkl-3/igt@kms_content_protection@srm.html - shard-mtlp: NOTRUN -> [SKIP][139] ([i915#6944]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-mtlp-6/igt@kms_content_protection@srm.html * igt@kms_content_protection@uevent: - shard-dg2: NOTRUN -> [SKIP][140] ([i915#7118] / [i915#9424]) +1 other test skip [140]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg2-5/igt@kms_content_protection@uevent.html - shard-dg1: NOTRUN -> [SKIP][141] ([i915#7116] / [i915#9424]) [141]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg1-15/igt@kms_content_protection@uevent.html * igt@kms_cursor_crc@cursor-offscreen-64x21: - shard-mtlp: NOTRUN -> [SKIP][142] ([i915#8814]) +3 other tests skip [142]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-mtlp-3/igt@kms_cursor_crc@cursor-offscreen-64x21.html * igt@kms_cursor_crc@cursor-onscreen-512x512: - shard-mtlp: NOTRUN -> [SKIP][143] ([i915#3359]) +2 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-mtlp-3/igt@kms_cursor_crc@cursor-onscreen-512x512.html - shard-dg2: NOTRUN -> [SKIP][144] ([i915#3359]) +2 other tests skip [144]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg2-5/igt@kms_cursor_crc@cursor-onscreen-512x512.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-rkl: NOTRUN -> [SKIP][145] ([i915#3359]) +2 other tests skip [145]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-rkl-3/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_crc@cursor-random-512x512: - shard-dg1: NOTRUN -> [SKIP][146] ([i915#3359]) +2 other tests skip [146]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg1-17/igt@kms_cursor_crc@cursor-random-512x512.html * igt@kms_cursor_crc@cursor-rapid-movement-32x10: - shard-dg1: NOTRUN -> [SKIP][147] ([i915#3555]) +6 other tests skip [147]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg1-16/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html * igt@kms_cursor_crc@cursor-rapid-movement-max-size: - shard-dg2: NOTRUN -> [SKIP][148] ([i915#3555]) +4 other tests skip [148]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg2-8/igt@kms_cursor_crc@cursor-rapid-movement-max-size.html * igt@kms_cursor_crc@cursor-sliding-32x10: - shard-rkl: NOTRUN -> [SKIP][149] ([i915#3555]) +1 other test skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-rkl-3/igt@kms_cursor_crc@cursor-sliding-32x10.html * igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic: - shard-mtlp: NOTRUN -> [SKIP][150] ([i915#9809]) +2 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-mtlp-4/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-mtlp: NOTRUN -> [SKIP][151] ([i915#4213]) [151]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-mtlp-3/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@cursorb-vs-flipa-legacy: - shard-snb: [PASS][152] -> [SKIP][153] +1 other test skip [152]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14818/shard-snb7/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html [153]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-snb2/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-glk: NOTRUN -> [FAIL][154] ([i915#2346]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-dg1: NOTRUN -> [SKIP][155] ([i915#4103] / [i915#4213]) [155]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg1-18/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt@kms_cursor_legacy@torture-move@pipe-a: - shard-snb: [PASS][156] -> [DMESG-WARN][157] ([i915#10166]) [156]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14818/shard-snb5/igt@kms_cursor_legacy@torture-move@pipe-a.html [157]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-snb4/igt@kms_cursor_legacy@torture-move@pipe-a.html * igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][158] ([i915#9227]) [158]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg2-5/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-3.html * igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][159] ([i915#9723]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg1-17/igt@kms_dirtyfb@fbc-dirtyfb-ioctl@a-hdmi-a-4.html * igt@kms_dirtyfb@psr-dirtyfb-ioctl: - shard-rkl: NOTRUN -> [SKIP][160] ([i915#9723]) +1 other test skip [160]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-rkl-2/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html * igt@kms_dp_aux_dev: - shard-dg1: NOTRUN -> [SKIP][161] ([i915#1257]) [161]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg1-15/igt@kms_dp_aux_dev.html * igt@kms_draw_crc@draw-method-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][162] ([i915#3555] / [i915#8812]) [162]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-mtlp-2/igt@kms_draw_crc@draw-method-mmap-gtt.html * igt@kms_dsc@dsc-basic: - shard-mtlp: NOTRUN -> [SKIP][163] ([i915#3555] / [i915#3840] / [i915#9159]) [163]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-mtlp-4/igt@kms_dsc@dsc-basic.html * igt@kms_dsc@dsc-fractional-bpp: - shard-dg1: NOTRUN -> [SKIP][164] ([i915#3840]) [164]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg1-18/igt@kms_dsc@dsc-fractional-bpp.html * igt@kms_dsc@dsc-with-bpc: - shard-dg2: NOTRUN -> [SKIP][165] ([i915#3555] / [i915#3840]) [165]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg2-10/igt@kms_dsc@dsc-with-bpc.html * igt@kms_dsc@dsc-with-output-formats: - shard-dg1: NOTRUN -> [SKIP][166] ([i915#3555] / [i915#3840]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg1-18/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_dsc@dsc-with-output-formats-with-bpc: - shard-mtlp: NOTRUN -> [SKIP][167] ([i915#3555] / [i915#3840] / [i915#9053]) [167]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-mtlp-1/igt@kms_dsc@dsc-with-output-formats-with-bpc.html - shard-dg2: NOTRUN -> [SKIP][168] ([i915#3840] / [i915#9053]) [168]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg2-10/igt@kms_dsc@dsc-with-output-formats-with-bpc.html * igt@kms_fbcon_fbt@psr: - shard-dg2: NOTRUN -> [SKIP][169] ([i915#3469]) +1 other test skip [169]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg2-8/igt@kms_fbcon_fbt@psr.html * igt@kms_feature_discovery@display-4x: - shard-rkl: NOTRUN -> [SKIP][170] ([i915#1839]) +1 other test skip [170]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-rkl-3/igt@kms_feature_discovery@display-4x.html - shard-dg1: NOTRUN -> [SKIP][171] ([i915#1839]) +2 other tests skip [171]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg1-17/igt@kms_feature_discovery@display-4x.html * igt@kms_feature_discovery@psr1: - shard-rkl: NOTRUN -> [SKIP][172] ([i915#658]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-rkl-3/igt@kms_feature_discovery@psr1.html * igt@kms_flip@2x-dpms-vs-vblank-race-interruptible@ab-vga1-hdmi-a1: - shard-snb: [PASS][173] -> [FAIL][174] ([i915#10826]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14818/shard-snb2/igt@kms_flip@2x-dpms-vs-vblank-race-interruptible@ab-vga1-hdmi-a1.html [174]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-snb7/igt@kms_flip@2x-dpms-vs-vblank-race-interruptible@ab-vga1-hdmi-a1.html * igt@kms_flip@2x-flip-vs-modeset-vs-hang: - shard-dg1: NOTRUN -> [SKIP][175] ([i915#9934]) +5 other tests skip [175]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg1-15/igt@kms_flip@2x-flip-vs-modeset-vs-hang.html * igt@kms_flip@2x-flip-vs-rmfb: - shard-mtlp: NOTRUN -> [SKIP][176] ([i915#3637]) +3 other tests skip [176]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-mtlp-3/igt@kms_flip@2x-flip-vs-rmfb.html * igt@kms_flip@2x-plain-flip: - shard-rkl: NOTRUN -> [SKIP][177] +33 other tests skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-rkl-3/igt@kms_flip@2x-plain-flip.html * igt@kms_flip@2x-wf_vblank-ts-check@ab-vga1-hdmi-a1: - shard-snb: [PASS][178] -> [FAIL][179] ([i915#2122]) [178]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14818/shard-snb2/igt@kms_flip@2x-wf_vblank-ts-check@ab-vga1-hdmi-a1.html [179]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-snb7/igt@kms_flip@2x-wf_vblank-ts-check@ab-vga1-hdmi-a1.html * igt@kms_flip@flip-vs-fences: - shard-mtlp: NOTRUN -> [SKIP][180] ([i915#8381]) +1 other test skip [180]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-mtlp-3/igt@kms_flip@flip-vs-fences.html - shard-dg1: NOTRUN -> [SKIP][181] ([i915#8381]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg1-16/igt@kms_flip@flip-vs-fences.html * igt@kms_flip@flip-vs-fences-interruptible: - shard-dg2: NOTRUN -> [SKIP][182] ([i915#8381]) [182]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg2-2/igt@kms_flip@flip-vs-fences-interruptible.html * igt@kms_flip@wf_vblank-ts-check@a-vga1: - shard-snb: NOTRUN -> [FAIL][183] ([i915#2122]) [183]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-snb7/igt@kms_flip@wf_vblank-ts-check@a-vga1.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode: - shard-dg1: NOTRUN -> [SKIP][184] ([i915#2587] / [i915#2672]) +3 other tests skip [184]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg1-16/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][185] ([i915#2672]) +1 other test skip [185]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-mtlp-2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][186] ([i915#2672]) +3 other tests skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg2-2/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][187] ([i915#2672] / [i915#3555]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-mtlp-7/igt@kms_flip_scaled_crc@flip-64bpp-ytile-to-32bpp-ytile-downscaling@pipe-a-default-mode.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][188] ([i915#8708]) +6 other tests skip [188]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-dg1: NOTRUN -> [SKIP][189] ([i915#8708]) +17 other tests skip [189]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg1-13/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite: - shard-dg2: NOTRUN -> [SKIP][190] ([i915#3458]) +19 other tests skip [190]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt: - shard-dg2: NOTRUN -> [SKIP][191] ([i915#5354]) +41 other tests skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg2-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-pwrite: - shard-dg1: NOTRUN -> [SKIP][192] +46 other tests skip [192]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg1-16/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render: - shard-dg1: NOTRUN -> [SKIP][193] ([i915#3458]) +14 other tests skip [193]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg1-15/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite: - shard-rkl: NOTRUN -> [SKIP][194] ([i915#3023]) +17 other tests skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-pwrite: - shard-mtlp: NOTRUN -> [SKIP][195] ([i915#1825]) +23 other tests skip [195]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-mtlp-1/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-plflip-blt: - shard-rkl: NOTRUN -> [SKIP][196] ([i915#1825]) +28 other tests skip [196]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][197] ([i915#8708]) +21 other tests skip [197]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg2-5/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt.html * igt@kms_getfb@getfb-reject-ccs: - shard-dg2: NOTRUN -> [SKIP][198] ([i915#6118]) [198]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg2-10/igt@kms_getfb@getfb-reject-ccs.html * igt@kms_hdr@bpc-switch: - shard-dg2: NOTRUN -> [SKIP][199] ([i915#3555] / [i915#8228]) +1 other test skip [199]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg2-10/igt@kms_hdr@bpc-switch.html * igt@kms_hdr@invalid-hdr: - shard-rkl: NOTRUN -> [SKIP][200] ([i915#3555] / [i915#8228]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-rkl-3/igt@kms_hdr@invalid-hdr.html * igt@kms_hdr@static-toggle: - shard-dg1: NOTRUN -> [SKIP][201] ([i915#3555] / [i915#8228]) +2 other tests skip [201]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg1-15/igt@kms_hdr@static-toggle.html - shard-mtlp: NOTRUN -> [SKIP][202] ([i915#3555] / [i915#8228]) +1 other test skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-mtlp-2/igt@kms_hdr@static-toggle.html * igt@kms_panel_fitting@atomic-fastset: - shard-dg2: NOTRUN -> [SKIP][203] ([i915#6301]) [203]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg2-10/igt@kms_panel_fitting@atomic-fastset.html - shard-rkl: NOTRUN -> [SKIP][204] ([i915#6301]) [204]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-rkl-3/igt@kms_panel_fitting@atomic-fastset.html - shard-dg1: NOTRUN -> [SKIP][205] ([i915#6301]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg1-17/igt@kms_panel_fitting@atomic-fastset.html * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-b-edp-1: - shard-mtlp: NOTRUN -> [DMESG-WARN][206] ([i915#9157]) +1 other test dmesg-warn [206]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-mtlp-4/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-b-edp-1.html * igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][207] ([i915#10647]) +1 other test fail [207]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-glk3/igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-hdmi-a-1.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4: - shard-dg1: NOTRUN -> [FAIL][208] ([i915#8292]) [208]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg1-15/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-b-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][209] ([i915#9423]) +7 other tests skip [209]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg1-18/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-modifiers@pipe-b-hdmi-a-4.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][210] ([i915#9423]) +7 other tests skip [210]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg2-7/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b-hdmi-a-3.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][211] ([i915#5176] / [i915#9423]) +1 other test skip [211]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-rkl-3/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b-hdmi-a-2.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-c-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][212] ([i915#5176] / [i915#9423]) +3 other tests skip [212]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg1-17/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-c-hdmi-a-4.html * igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-a-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][213] ([i915#9423]) +3 other tests skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-rkl-3/igt@kms_plane_scaling@plane-upscale-factor-0-25-with-rotation@pipe-a-hdmi-a-2.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-c-hdmi-a-2: - shard-dg2: NOTRUN -> [SKIP][214] ([i915#5235] / [i915#9423] / [i915#9728]) +3 other tests skip [214]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg2-2/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-c-hdmi-a-2.html * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][215] ([i915#5235]) +5 other tests skip [215]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-mtlp-3/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-a-edp-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-c-hdmi-a-4: - shard-dg1: NOTRUN -> [SKIP][216] ([i915#5235]) +7 other tests skip [216]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg1-15/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-c-hdmi-a-4.html * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][217] ([i915#5235] / [i915#9423]) +7 other tests skip [217]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg2-5/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-3.html * igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][218] ([i915#3555] / [i915#5235]) +1 other test skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-mtlp-4/igt@kms_plane_scaling@planes-upscale-20x20-downscale-factor-0-5@pipe-d-edp-1.html * igt@kms_pm_dc@dc3co-vpb-simulation: - shard-dg2: NOTRUN -> [SKIP][219] ([i915#9685]) [219]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg2-10/igt@kms_pm_dc@dc3co-vpb-simulation.html - shard-dg1: NOTRUN -> [SKIP][220] ([i915#9685]) [220]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg1-17/igt@kms_pm_dc@dc3co-vpb-simulation.html * igt@kms_pm_lpsp@kms-lpsp: - shard-dg2: NOTRUN -> [SKIP][221] ([i915#9340]) [221]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg2-11/igt@kms_pm_lpsp@kms-lpsp.html - shard-dg1: NOTRUN -> [SKIP][222] ([i915#9340]) [222]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg1-17/igt@kms_pm_lpsp@kms-lpsp.html * igt@kms_pm_lpsp@screens-disabled: - shard-dg1: NOTRUN -> [SKIP][223] ([i915#8430]) [223]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg1-15/igt@kms_pm_lpsp@screens-disabled.html - shard-mtlp: NOTRUN -> [SKIP][224] ([i915#8430]) [224]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-mtlp-4/igt@kms_pm_lpsp@screens-disabled.html * igt@kms_pm_rpm@dpms-mode-unset-non-lpsp: - shard-dg2: NOTRUN -> [SKIP][225] ([i915#9519]) +1 other test skip [225]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg2-8/igt@kms_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@kms_pm_rpm@dpms-non-lpsp: - shard-mtlp: NOTRUN -> [SKIP][226] ([i915#9519]) [226]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-mtlp-1/igt@kms_pm_rpm@dpms-non-lpsp.html * igt@kms_psr2_sf@fbc-cursor-plane-update-sf@psr2-pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][227] ([i915#9808]) +3 other tests skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-mtlp-2/igt@kms_psr2_sf@fbc-cursor-plane-update-sf@psr2-pipe-a-edp-1.html * igt@kms_psr2_su@page_flip-xrgb8888: - shard-mtlp: NOTRUN -> [SKIP][228] ([i915#4348]) [228]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-mtlp-7/igt@kms_psr2_su@page_flip-xrgb8888.html - shard-dg1: NOTRUN -> [SKIP][229] ([i915#9683]) [229]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg1-17/igt@kms_psr2_su@page_flip-xrgb8888.html * igt@kms_psr@pr-sprite-blt: - shard-mtlp: NOTRUN -> [SKIP][230] ([i915#9688]) +9 other tests skip [230]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-mtlp-1/igt@kms_psr@pr-sprite-blt.html * igt@kms_psr@psr-cursor-plane-onoff: - shard-dg1: NOTRUN -> [SKIP][231] ([i915#1072] / [i915#9732]) +25 other tests skip [231]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg1-16/igt@kms_psr@psr-cursor-plane-onoff.html * igt@kms_psr@psr-primary-blt: - shard-dg2: NOTRUN -> [SKIP][232] ([i915#1072] / [i915#9673] / [i915#9732]) +1 other test skip [232]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg2-11/igt@kms_psr@psr-primary-blt.html * igt@kms_psr@psr2-primary-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][233] ([i915#1072] / [i915#9732]) +23 other tests skip [233]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg2-6/igt@kms_psr@psr2-primary-mmap-gtt.html * igt@kms_psr@psr2-sprite-mmap-cpu: - shard-rkl: NOTRUN -> [SKIP][234] ([i915#1072] / [i915#9732]) +12 other tests skip [234]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-rkl-3/igt@kms_psr@psr2-sprite-mmap-cpu.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-rkl: NOTRUN -> [SKIP][235] ([i915#9685]) +1 other test skip [235]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-rkl-3/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-dg1: NOTRUN -> [SKIP][236] ([i915#5289]) +1 other test skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg1-18/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html - shard-mtlp: NOTRUN -> [SKIP][237] ([i915#5289]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-mtlp-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-dg2: NOTRUN -> [SKIP][238] ([i915#4235] / [i915#5190]) +1 other test skip [238]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg2-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_rotation_crc@sprite-rotation-270: - shard-mtlp: NOTRUN -> [SKIP][239] ([i915#4235]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-mtlp-4/igt@kms_rotation_crc@sprite-rotation-270.html * igt@kms_rotation_crc@sprite-rotation-90: - shard-dg2: NOTRUN -> [SKIP][240] ([i915#4235]) [240]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg2-7/igt@kms_rotation_crc@sprite-rotation-90.html * igt@kms_sysfs_edid_timing: - shard-dg2: [PASS][241] -> [FAIL][242] ([IGT#2]) [241]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14818/shard-dg2-11/igt@kms_sysfs_edid_timing.html [242]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg2-2/igt@kms_sysfs_edid_timing.html * igt@kms_tiled_display@basic-test-pattern: - shard-glk: NOTRUN -> [FAIL][243] ([i915#10959]) [243]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-glk7/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_vrr@flip-basic: - shard-mtlp: NOTRUN -> [SKIP][244] ([i915#3555] / [i915#8808]) [244]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-mtlp-3/igt@kms_vrr@flip-basic.html * igt@kms_vrr@flip-basic-fastset: - shard-mtlp: NOTRUN -> [SKIP][245] ([i915#8808] / [i915#9906]) [245]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-mtlp-2/igt@kms_vrr@flip-basic-fastset.html - shard-dg2: NOTRUN -> [SKIP][246] ([i915#9906]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg2-8/igt@kms_vrr@flip-basic-fastset.html * igt@kms_vrr@max-min: - shard-dg1: NOTRUN -> [SKIP][247] ([i915#9906]) +1 other test skip [247]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg1-15/igt@kms_vrr@max-min.html * igt@kms_writeback@writeback-check-output-xrgb2101010: - shard-mtlp: NOTRUN -> [SKIP][248] ([i915#2437] / [i915#9412]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-mtlp-7/igt@kms_writeback@writeback-check-output-xrgb2101010.html * igt@kms_writeback@writeback-fb-id: - shard-rkl: NOTRUN -> [SKIP][249] ([i915#2437]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-rkl-3/igt@kms_writeback@writeback-fb-id.html * igt@kms_writeback@writeback-invalid-parameters: - shard-dg1: NOTRUN -> [SKIP][250] ([i915#2437]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg1-16/igt@kms_writeback@writeback-invalid-parameters.html - shard-mtlp: NOTRUN -> [SKIP][251] ([i915#2437]) [251]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-mtlp-3/igt@kms_writeback@writeback-invalid-parameters.html * igt@kms_writeback@writeback-pixel-formats: - shard-glk: NOTRUN -> [SKIP][252] ([i915#2437]) +1 other test skip [252]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-glk7/igt@kms_writeback@writeback-pixel-formats.html * igt@perf@global-sseu-config: - shard-dg2: NOTRUN -> [SKIP][253] ([i915#7387]) [253]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg2-2/igt@perf@global-sseu-config.html * igt@perf@mi-rpc: - shard-dg2: NOTRUN -> [SKIP][254] ([i915#2434]) [254]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg2-6/igt@perf@mi-rpc.html - shard-mtlp: NOTRUN -> [SKIP][255] ([i915#2434]) [255]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-mtlp-7/igt@perf@mi-rpc.html * igt@perf_pmu@busy-double-start@rcs0: - shard-mtlp: NOTRUN -> [FAIL][256] ([i915#4349]) +1 other test fail [256]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-mtlp-7/igt@perf_pmu@busy-double-start@rcs0.html * igt@perf_pmu@faulting-read@gtt: - shard-mtlp: NOTRUN -> [SKIP][257] ([i915#8440]) [257]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-mtlp-8/igt@perf_pmu@faulting-read@gtt.html * igt@perf_pmu@frequency@gt0: - shard-dg2: NOTRUN -> [FAIL][258] ([i915#6806]) [258]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg2-10/igt@perf_pmu@frequency@gt0.html * igt@perf_pmu@rc6-all-gts: - shard-dg1: NOTRUN -> [SKIP][259] ([i915#8516]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg1-17/igt@perf_pmu@rc6-all-gts.html - shard-dg2: NOTRUN -> [SKIP][260] ([i915#8516]) [260]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg2-2/igt@perf_pmu@rc6-all-gts.html - shard-rkl: NOTRUN -> [SKIP][261] ([i915#8516]) [261]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-rkl-3/igt@perf_pmu@rc6-all-gts.html * igt@prime_vgem@basic-fence-read: - shard-rkl: NOTRUN -> [SKIP][262] ([i915#3291] / [i915#3708]) [262]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-rkl-3/igt@prime_vgem@basic-fence-read.html - shard-dg1: NOTRUN -> [SKIP][263] ([i915#3708]) [263]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg1-17/igt@prime_vgem@basic-fence-read.html * igt@prime_vgem@basic-write: - shard-dg2: NOTRUN -> [SKIP][264] ([i915#3291] / [i915#3708]) [264]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg2-11/igt@prime_vgem@basic-write.html * igt@prime_vgem@fence-read-hang: - shard-rkl: NOTRUN -> [SKIP][265] ([i915#3708]) [265]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-rkl-2/igt@prime_vgem@fence-read-hang.html * igt@sriov_basic@bind-unbind-vf: - shard-dg1: NOTRUN -> [SKIP][266] ([i915#9917]) [266]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg1-16/igt@sriov_basic@bind-unbind-vf.html * igt@sriov_basic@enable-vfs-autoprobe-off: - shard-dg2: NOTRUN -> [SKIP][267] ([i915#9917]) [267]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg2-5/igt@sriov_basic@enable-vfs-autoprobe-off.html * igt@v3d/v3d_mmap@mmap-bad-flags: - shard-dg1: NOTRUN -> [SKIP][268] ([i915#2575]) +11 other tests skip [268]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg1-17/igt@v3d/v3d_mmap@mmap-bad-flags.html * igt@v3d/v3d_submit_cl@bad-multisync-pad: - shard-mtlp: NOTRUN -> [SKIP][269] ([i915#2575]) +10 other tests skip [269]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-mtlp-5/igt@v3d/v3d_submit_cl@bad-multisync-pad.html * igt@v3d/v3d_submit_csd@bad-flag: - shard-dg2: NOTRUN -> [SKIP][270] ([i915#2575]) +11 other tests skip [270]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg2-7/igt@v3d/v3d_submit_csd@bad-flag.html * igt@vc4/vc4_perfmon@create-perfmon-exceed: - shard-mtlp: NOTRUN -> [SKIP][271] ([i915#7711]) +4 other tests skip [271]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-mtlp-7/igt@vc4/vc4_perfmon@create-perfmon-exceed.html * igt@vc4/vc4_perfmon@get-values-invalid-perfmon: - shard-rkl: NOTRUN -> [SKIP][272] ([i915#7711]) +6 other tests skip [272]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-rkl-3/igt@vc4/vc4_perfmon@get-values-invalid-perfmon.html * igt@vc4/vc4_purgeable_bo@access-purgeable-bo-mem: - shard-dg1: NOTRUN -> [SKIP][273] ([i915#7711]) +11 other tests skip [273]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg1-17/igt@vc4/vc4_purgeable_bo@access-purgeable-bo-mem.html * igt@vc4/vc4_purgeable_bo@mark-unpurgeable-check-retained: - shard-dg2: NOTRUN -> [SKIP][274] ([i915#7711]) +6 other tests skip [274]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg2-6/igt@vc4/vc4_purgeable_bo@mark-unpurgeable-check-retained.html #### Possible fixes #### * igt@gem_create@create-ext-cpu-access-big: - shard-dg2: [ABORT][275] ([i915#9846]) -> [PASS][276] [275]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14818/shard-dg2-8/igt@gem_create@create-ext-cpu-access-big.html [276]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg2-4/igt@gem_create@create-ext-cpu-access-big.html * igt@gem_lmem_swapping@heavy-verify-multi@lmem0: - shard-dg2: [FAIL][277] ([i915#10378]) -> [PASS][278] [277]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14818/shard-dg2-11/igt@gem_lmem_swapping@heavy-verify-multi@lmem0.html [278]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg2-6/igt@gem_lmem_swapping@heavy-verify-multi@lmem0.html * igt@i915_selftest@live@evict: - shard-dg1: [INCOMPLETE][279] -> [PASS][280] [279]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14818/shard-dg1-14/igt@i915_selftest@live@evict.html [280]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg1-17/igt@i915_selftest@live@evict.html * igt@kms_flip@plain-flip-ts-check@b-hdmi-a1: - shard-snb: [FAIL][281] ([i915#2122]) -> [PASS][282] [281]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14818/shard-snb7/igt@kms_flip@plain-flip-ts-check@b-hdmi-a1.html [282]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-snb6/igt@kms_flip@plain-flip-ts-check@b-hdmi-a1.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move: - shard-dg2: [FAIL][283] ([i915#6880]) -> [PASS][284] [283]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14818/shard-dg2-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move.html [284]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-move.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt: - shard-snb: [SKIP][285] -> [PASS][286] +1 other test pass [285]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14818/shard-snb6/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html [286]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-snb7/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-blt.html * igt@kms_pm_rpm@modeset-lpsp-stress-no-wait: - shard-dg2: [SKIP][287] ([i915#9519]) -> [PASS][288] [287]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14818/shard-dg2-11/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html [288]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg2-4/igt@kms_pm_rpm@modeset-lpsp-stress-no-wait.html #### Warnings #### * igt@i915_module_load@reload-with-fault-injection: - shard-dg1: [INCOMPLETE][289] ([i915#1982] / [i915#9849]) -> [INCOMPLETE][290] ([i915#1982] / [i915#4391] / [i915#4423] / [i915#9849]) [289]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14818/shard-dg1-15/igt@i915_module_load@reload-with-fault-injection.html [290]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg1-17/igt@i915_module_load@reload-with-fault-injection.html * igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render: - shard-dg2: [SKIP][291] ([i915#3458]) -> [SKIP][292] ([i915#10433] / [i915#3458]) [291]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14818/shard-dg2-5/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render.html [292]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg2-4/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-render.html * igt@kms_psr@psr-cursor-render: - shard-dg2: [SKIP][293] ([i915#1072] / [i915#9673] / [i915#9732]) -> [SKIP][294] ([i915#1072] / [i915#9732]) +9 other tests skip [293]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14818/shard-dg2-11/igt@kms_psr@psr-cursor-render.html [294]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg2-10/igt@kms_psr@psr-cursor-render.html * igt@perf@non-zero-reason@0-rcs0: - shard-dg2: [FAIL][295] ([i915#7484]) -> [FAIL][296] ([i915#9100]) [295]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_14818/shard-dg2-3/igt@perf@non-zero-reason@0-rcs0.html [296]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_11194/shard-dg2-1/igt@perf@non-zero-reason@0-rcs0.html [IGT#2]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2 [i915#10030]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10030 [i915#10166]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10166 [i915#10278]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10278 [i915#10307]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10307 [i915#10378]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10378 [i915#10433]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10433 [i915#10434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10434 [i915#10513]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10513 [i915#10647]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10647 [i915#10656]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10656 [i915#1072]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1072 [i915#10826]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10826 [i915#10959]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/10959 [i915#11078]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/11078 [i915#1257]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1257 [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#1982]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/1982 [i915#2122]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2122 [i915#2346]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2346 [i915#2434]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2434 [i915#2437]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2527 [i915#2575]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2575 [i915#2587]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2587 [i915#2672]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2672 [i915#284]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/284 [i915#2842]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/2842 [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#3299]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3299 [i915#3359]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3359 [i915#3458]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3458 [i915#3469]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3469 [i915#3539]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3555 [i915#3591]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3591 [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#3826]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3826 [i915#3840]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3840 [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#4212]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4213 [i915#4235]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4235 [i915#4270]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4270 [i915#4348]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4348 [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#4473]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4473 [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#4852]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4852 [i915#4860]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4860 [i915#4879]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4879 [i915#4880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4880 [i915#4885]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4885 [i915#4958]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/4958 [i915#5107]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5107 [i915#5176]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5176 [i915#5190]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5190 [i915#5235]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5235 [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#5784]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5784 [i915#5882]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/5882 [i915#6095]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6095 [i915#6118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6118 [i915#6187]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6187 [i915#6227]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6227 [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#658]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/658 [i915#6806]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6806 [i915#6880]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6880 [i915#6944]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/6944 [i915#7116]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7118 [i915#7213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7213 [i915#7387]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7387 [i915#7484]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7484 [i915#7697]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7697 [i915#7711]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7711 [i915#7742]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7742 [i915#7828]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7828 [i915#7975]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/7975 [i915#8213]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8213 [i915#8228]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8228 [i915#8289]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8289 [i915#8292]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8292 [i915#8381]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8381 [i915#8411]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8411 [i915#8414]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8414 [i915#8428]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8428 [i915#8430]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8430 [i915#8436]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8436 [i915#8437]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8437 [i915#8440]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8440 [i915#8516]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8516 [i915#8555]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8555 [i915#8562]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8562 [i915#8708]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8708 [i915#8709]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8709 [i915#8808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8808 [i915#8812]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8812 [i915#8814]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/8814 [i915#9053]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9053 [i915#9100]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9100 [i915#9157]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9157 [i915#9159]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9159 [i915#9227]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9227 [i915#9318]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9318 [i915#9323]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9323 [i915#9340]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9340 [i915#9412]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9412 [i915#9423]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9423 [i915#9424]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9424 [i915#9519]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9519 [i915#9673]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9673 [i915#9683]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9683 [i915#9685]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9685 [i915#9688]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9688 [i915#9723]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9723 [i915#9728]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9728 [i915#9732]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9732 [i915#9808]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9808 [i915#9809]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9809 [i915#9820]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9820 [i915#9846]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9846 [i915#9849]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/9849 [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_7871 -> IGTPW_11194 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_14818: ecacdcfd7d3355d063c223b9b2abb09d1ba0cb1c @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_11194: 9f492fa860cd7ab2dc1edfa41d21e8ed35d04d4c @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git IGT_7871: 1d7b961235e345db20933c057f265898e2e96fd2 @ 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_11194/index.html [-- Attachment #2: Type: text/html, Size: 113321 bytes --] ^ permalink raw reply [flat|nested] 12+ messages in thread
end of thread, other threads:[~2024-05-27 15:59 UTC | newest] Thread overview: 12+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-05-24 8:48 [PATCH i-g-t v2 0/2] Update kms_plane test Pranay Samala 2024-05-24 8:48 ` [PATCH i-g-t v2 1/2] tests/kms_plane: Reduce CI logging Pranay Samala 2024-05-27 15:58 ` Juha-Pekka Heikkila 2024-05-24 8:48 ` [PATCH i-g-t v2 2/2] tests/kms_plane: Convert to dynamic subtests Pranay Samala 2024-05-27 15:59 ` Juha-Pekka Heikkila 2024-05-24 10:44 ` ✗ Fi.CI.BAT: failure for Update kms_plane test Patchwork 2024-05-24 11:07 ` ✓ CI.xeBAT: success " Patchwork 2024-05-24 13:21 ` ✗ CI.xeFULL: failure " Patchwork 2024-05-27 5:33 ` ✓ Fi.CI.BAT: success for Update kms_plane test (rev2) Patchwork 2024-05-27 5:37 ` ✗ CI.xeBAT: failure " Patchwork 2024-05-27 7:04 ` ✗ CI.xeFULL: " Patchwork 2024-05-27 8:24 ` ✗ Fi.CI.IGT: " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox