* [igt-dev] [PATCH i-g-t 0/2] kms_rotation_crc fix and optimization
@ 2021-02-03 16:25 Juha-Pekka Heikkila
2021-02-03 16:25 ` [igt-dev] [PATCH i-g-t 1/2] tests/kms_rotation_crc: different display modes can have different crc Juha-Pekka Heikkila
` (4 more replies)
0 siblings, 5 replies; 10+ messages in thread
From: Juha-Pekka Heikkila @ 2021-02-03 16:25 UTC (permalink / raw)
To: igt-dev; +Cc: petri.latvala
I added some comments as on Petri's wish and made incrementing of
max_crc_in_use more obvious. I could mention here also I tried storing
those reference images for reuse mid test but it didn't show as significant
reduction in execution time so I figure added complexity wasn't worth it.
/Juha-Pekka
Juha-Pekka Heikkila (2):
tests/kms_rotation_crc: different display modes can have different crc
HAX remove kms_rotatation_crc from premerge blacklist
tests/intel-ci/blacklist-pre-merge.txt | 2 +-
tests/kms_rotation_crc.c | 62 ++++++++++++++++++++++----
2 files changed, 54 insertions(+), 10 deletions(-)
--
2.28.0
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 10+ messages in thread* [igt-dev] [PATCH i-g-t 1/2] tests/kms_rotation_crc: different display modes can have different crc 2021-02-03 16:25 [igt-dev] [PATCH i-g-t 0/2] kms_rotation_crc fix and optimization Juha-Pekka Heikkila @ 2021-02-03 16:25 ` Juha-Pekka Heikkila 2021-02-04 8:47 ` Petri Latvala 2021-02-04 8:52 ` Karthik B S 2021-02-03 16:25 ` [igt-dev] [PATCH i-g-t 2/2] HAX remove kms_rotatation_crc from premerge blacklist Juha-Pekka Heikkila ` (3 subsequent siblings) 4 siblings, 2 replies; 10+ messages in thread From: Juha-Pekka Heikkila @ 2021-02-03 16:25 UTC (permalink / raw) To: igt-dev; +Cc: petri.latvala Different resolutions with same content may have different crc hence generate buffer verification crcs for different modes if needed. Signed-off-by: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com> --- tests/kms_rotation_crc.c | 62 ++++++++++++++++++++++++++++++++++------ 1 file changed, 53 insertions(+), 9 deletions(-) diff --git a/tests/kms_rotation_crc.c b/tests/kms_rotation_crc.c index e7072e208..6d4e87ed9 100644 --- a/tests/kms_rotation_crc.c +++ b/tests/kms_rotation_crc.c @@ -30,6 +30,7 @@ #define MAXMULTIPLANESAMOUNT 2 #define TEST_MAX_WIDTH 640 #define TEST_MAX_HEIGHT 480 +#define MAX_TESTED_MODES 8 struct p_struct { igt_plane_t *plane; @@ -79,11 +80,15 @@ typedef struct { bool use_native_resolution; bool extended; + int output_crc_in_use, max_crc_in_use; struct crc_rect_tag { + int mode; bool valid; igt_crc_t ref_crc; igt_crc_t flip_crc; - } crc_rect[num_rectangle_types]; + } crc_rect[MAX_TESTED_MODES][num_rectangle_types]; + + igt_fb_t last_on_screen; } data_t; typedef struct { @@ -169,7 +174,6 @@ static void remove_fbs(data_t *data) { igt_remove_fb(data->gfx_fd, &data->fb); igt_remove_fb(data->gfx_fd, &data->fb_reference); - igt_remove_fb(data->gfx_fd, &data->fb_flip); } static void cleanup_crtc(data_t *data) @@ -272,7 +276,7 @@ static void prepare_fbs(data_t *data, igt_output_t *output, */ igt_require(igt_display_has_format_mod(display, pixel_format, tiling)); - if (!data->crc_rect[rect].valid) { + if (!data->crc_rect[data->output_crc_in_use][rect].valid) { /* * Create a reference software rotated flip framebuffer. */ @@ -285,7 +289,9 @@ static void prepare_fbs(data_t *data, igt_output_t *output, igt_plane_set_position(plane, data->pos_x, data->pos_y); igt_display_commit2(display, COMMIT_ATOMIC); - igt_pipe_crc_get_current(display->drm_fd, data->pipe_crc, &data->crc_rect[rect].flip_crc); + igt_pipe_crc_get_current(display->drm_fd, data->pipe_crc, + &data->crc_rect[data->output_crc_in_use][rect].flip_crc); + igt_remove_fb(data->gfx_fd, &data->fb_flip); /* @@ -300,10 +306,13 @@ static void prepare_fbs(data_t *data, igt_output_t *output, igt_plane_set_position(plane, data->pos_x, data->pos_y); igt_display_commit2(display, COMMIT_ATOMIC); - igt_pipe_crc_get_current(display->drm_fd, data->pipe_crc, &data->crc_rect[rect].ref_crc); - data->crc_rect[rect].valid = true; + igt_pipe_crc_get_current(display->drm_fd, data->pipe_crc, + &data->crc_rect[data->output_crc_in_use][rect].ref_crc); + + data->crc_rect[data->output_crc_in_use][rect].valid = true; } + data->last_on_screen = data->fb_flip; /* * Prepare the non-rotated flip fb. */ @@ -340,6 +349,13 @@ static void test_single_case(data_t *data, enum pipe pipe, igt_plane_set_size(plane, data->fb.height, data->fb.width); ret = igt_display_try_commit2(display, COMMIT_ATOMIC); + + /* + * Remove this last fb after it was taken out from screen + * to avoid unnecessary delays. + */ + igt_remove_fb(data->gfx_fd, &data->last_on_screen); + if (test_bad_format) { igt_pipe_crc_drain(data->pipe_crc); igt_assert_eq(ret, -EINVAL); @@ -351,7 +367,8 @@ static void test_single_case(data_t *data, enum pipe pipe, /* Check CRC */ igt_pipe_crc_get_current(display->drm_fd, data->pipe_crc, &crc_output); - igt_assert_crc_equal(&data->crc_rect[rect].ref_crc, &crc_output); + igt_assert_crc_equal(&data->crc_rect[data->output_crc_in_use][rect].ref_crc, + &crc_output); /* * If flips are requested flip to a different fb and @@ -374,7 +391,8 @@ static void test_single_case(data_t *data, enum pipe pipe, } kmstest_wait_for_pageflip(data->gfx_fd); igt_pipe_crc_get_current(display->drm_fd, data->pipe_crc, &crc_output); - igt_assert_crc_equal(&data->crc_rect[rect].flip_crc, &crc_output); + igt_assert_crc_equal(&data->crc_rect[data->output_crc_in_use][rect].flip_crc, + &crc_output); } } @@ -403,6 +421,7 @@ static bool test_format(data_t *data, static void test_plane_rotation(data_t *data, int plane_type, bool test_bad_format) { igt_display_t *display = &data->display; + drmModeModeInfo *mode; igt_output_t *output; enum pipe pipe; int pipe_count = 0; @@ -416,8 +435,33 @@ static void test_plane_rotation(data_t *data, int plane_type, bool test_bad_form igt_plane_t *plane; int i, j, c; + mode = igt_output_get_mode(output); + + /* + * Find mode which is in use in connector. If this is mode + * which was not run on earlier we'll end up on zeroed + * struct crc_rect and recalculate reference crcs. + */ + for (data->output_crc_in_use = 0; + data->output_crc_in_use < data->max_crc_in_use && + data->crc_rect[data->output_crc_in_use][0].mode != mode->vdisplay; + data->output_crc_in_use++) + ; + + /* + * This is if there was different mode on different connector + * and this mode was not run on before. + */ + if (data->crc_rect[data->output_crc_in_use][0].mode != mode->vdisplay) { + data->crc_rect[data->output_crc_in_use][0].mode = mode->vdisplay; + data->max_crc_in_use++; + + if (data->max_crc_in_use >= MAX_TESTED_MODES) + data->max_crc_in_use = MAX_TESTED_MODES - 1; + } + for (c = 0; c < num_rectangle_types; c++) - data->crc_rect[c].valid = false; + data->crc_rect[data->output_crc_in_use][c].valid = false; if (IS_CHERRYVIEW(data->devid) && pipe != PIPE_B) continue; -- 2.28.0 _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply related [flat|nested] 10+ messages in thread
* Re: [igt-dev] [PATCH i-g-t 1/2] tests/kms_rotation_crc: different display modes can have different crc 2021-02-03 16:25 ` [igt-dev] [PATCH i-g-t 1/2] tests/kms_rotation_crc: different display modes can have different crc Juha-Pekka Heikkila @ 2021-02-04 8:47 ` Petri Latvala 2021-02-04 8:52 ` Karthik B S 1 sibling, 0 replies; 10+ messages in thread From: Petri Latvala @ 2021-02-04 8:47 UTC (permalink / raw) To: Juha-Pekka Heikkila; +Cc: igt-dev On Wed, Feb 03, 2021 at 06:25:02PM +0200, Juha-Pekka Heikkila wrote: > > Different resolutions with same content may have different crc hence generate > buffer verification crcs for different modes if needed. > > Signed-off-by: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com> Reviewed-by: Petri Latvala <petri.latvala@intel.com> > --- > tests/kms_rotation_crc.c | 62 ++++++++++++++++++++++++++++++++++------ > 1 file changed, 53 insertions(+), 9 deletions(-) > > diff --git a/tests/kms_rotation_crc.c b/tests/kms_rotation_crc.c > index e7072e208..6d4e87ed9 100644 > --- a/tests/kms_rotation_crc.c > +++ b/tests/kms_rotation_crc.c > @@ -30,6 +30,7 @@ > #define MAXMULTIPLANESAMOUNT 2 > #define TEST_MAX_WIDTH 640 > #define TEST_MAX_HEIGHT 480 > +#define MAX_TESTED_MODES 8 > > struct p_struct { > igt_plane_t *plane; > @@ -79,11 +80,15 @@ typedef struct { > bool use_native_resolution; > bool extended; > > + int output_crc_in_use, max_crc_in_use; > struct crc_rect_tag { > + int mode; > bool valid; > igt_crc_t ref_crc; > igt_crc_t flip_crc; > - } crc_rect[num_rectangle_types]; > + } crc_rect[MAX_TESTED_MODES][num_rectangle_types]; > + > + igt_fb_t last_on_screen; > } data_t; > > typedef struct { > @@ -169,7 +174,6 @@ static void remove_fbs(data_t *data) > { > igt_remove_fb(data->gfx_fd, &data->fb); > igt_remove_fb(data->gfx_fd, &data->fb_reference); > - igt_remove_fb(data->gfx_fd, &data->fb_flip); > } > > static void cleanup_crtc(data_t *data) > @@ -272,7 +276,7 @@ static void prepare_fbs(data_t *data, igt_output_t *output, > */ > igt_require(igt_display_has_format_mod(display, pixel_format, tiling)); > > - if (!data->crc_rect[rect].valid) { > + if (!data->crc_rect[data->output_crc_in_use][rect].valid) { > /* > * Create a reference software rotated flip framebuffer. > */ > @@ -285,7 +289,9 @@ static void prepare_fbs(data_t *data, igt_output_t *output, > igt_plane_set_position(plane, data->pos_x, data->pos_y); > igt_display_commit2(display, COMMIT_ATOMIC); > > - igt_pipe_crc_get_current(display->drm_fd, data->pipe_crc, &data->crc_rect[rect].flip_crc); > + igt_pipe_crc_get_current(display->drm_fd, data->pipe_crc, > + &data->crc_rect[data->output_crc_in_use][rect].flip_crc); > + > igt_remove_fb(data->gfx_fd, &data->fb_flip); > > /* > @@ -300,10 +306,13 @@ static void prepare_fbs(data_t *data, igt_output_t *output, > igt_plane_set_position(plane, data->pos_x, data->pos_y); > igt_display_commit2(display, COMMIT_ATOMIC); > > - igt_pipe_crc_get_current(display->drm_fd, data->pipe_crc, &data->crc_rect[rect].ref_crc); > - data->crc_rect[rect].valid = true; > + igt_pipe_crc_get_current(display->drm_fd, data->pipe_crc, > + &data->crc_rect[data->output_crc_in_use][rect].ref_crc); > + > + data->crc_rect[data->output_crc_in_use][rect].valid = true; > } > > + data->last_on_screen = data->fb_flip; > /* > * Prepare the non-rotated flip fb. > */ > @@ -340,6 +349,13 @@ static void test_single_case(data_t *data, enum pipe pipe, > igt_plane_set_size(plane, data->fb.height, data->fb.width); > > ret = igt_display_try_commit2(display, COMMIT_ATOMIC); > + > + /* > + * Remove this last fb after it was taken out from screen > + * to avoid unnecessary delays. > + */ > + igt_remove_fb(data->gfx_fd, &data->last_on_screen); > + > if (test_bad_format) { > igt_pipe_crc_drain(data->pipe_crc); > igt_assert_eq(ret, -EINVAL); > @@ -351,7 +367,8 @@ static void test_single_case(data_t *data, enum pipe pipe, > > /* Check CRC */ > igt_pipe_crc_get_current(display->drm_fd, data->pipe_crc, &crc_output); > - igt_assert_crc_equal(&data->crc_rect[rect].ref_crc, &crc_output); > + igt_assert_crc_equal(&data->crc_rect[data->output_crc_in_use][rect].ref_crc, > + &crc_output); > > /* > * If flips are requested flip to a different fb and > @@ -374,7 +391,8 @@ static void test_single_case(data_t *data, enum pipe pipe, > } > kmstest_wait_for_pageflip(data->gfx_fd); > igt_pipe_crc_get_current(display->drm_fd, data->pipe_crc, &crc_output); > - igt_assert_crc_equal(&data->crc_rect[rect].flip_crc, &crc_output); > + igt_assert_crc_equal(&data->crc_rect[data->output_crc_in_use][rect].flip_crc, > + &crc_output); > } > } > > @@ -403,6 +421,7 @@ static bool test_format(data_t *data, > static void test_plane_rotation(data_t *data, int plane_type, bool test_bad_format) > { > igt_display_t *display = &data->display; > + drmModeModeInfo *mode; > igt_output_t *output; > enum pipe pipe; > int pipe_count = 0; > @@ -416,8 +435,33 @@ static void test_plane_rotation(data_t *data, int plane_type, bool test_bad_form > igt_plane_t *plane; > int i, j, c; > > + mode = igt_output_get_mode(output); > + > + /* > + * Find mode which is in use in connector. If this is mode > + * which was not run on earlier we'll end up on zeroed > + * struct crc_rect and recalculate reference crcs. > + */ > + for (data->output_crc_in_use = 0; > + data->output_crc_in_use < data->max_crc_in_use && > + data->crc_rect[data->output_crc_in_use][0].mode != mode->vdisplay; > + data->output_crc_in_use++) > + ; > + > + /* > + * This is if there was different mode on different connector > + * and this mode was not run on before. > + */ > + if (data->crc_rect[data->output_crc_in_use][0].mode != mode->vdisplay) { > + data->crc_rect[data->output_crc_in_use][0].mode = mode->vdisplay; > + data->max_crc_in_use++; > + > + if (data->max_crc_in_use >= MAX_TESTED_MODES) > + data->max_crc_in_use = MAX_TESTED_MODES - 1; > + } > + > for (c = 0; c < num_rectangle_types; c++) > - data->crc_rect[c].valid = false; > + data->crc_rect[data->output_crc_in_use][c].valid = false; > > if (IS_CHERRYVIEW(data->devid) && pipe != PIPE_B) > continue; > -- > 2.28.0 > _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [igt-dev] [PATCH i-g-t 1/2] tests/kms_rotation_crc: different display modes can have different crc 2021-02-03 16:25 ` [igt-dev] [PATCH i-g-t 1/2] tests/kms_rotation_crc: different display modes can have different crc Juha-Pekka Heikkila 2021-02-04 8:47 ` Petri Latvala @ 2021-02-04 8:52 ` Karthik B S 1 sibling, 0 replies; 10+ messages in thread From: Karthik B S @ 2021-02-04 8:52 UTC (permalink / raw) To: Juha-Pekka Heikkila, igt-dev; +Cc: petri.latvala On 2/3/2021 9:55 PM, Juha-Pekka Heikkila wrote: > Different resolutions with same content may have different crc hence generate > buffer verification crcs for different modes if needed. > > Signed-off-by: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com> Reviewed-by: Karthik B S <karthik.b.s@intel.com> > --- > tests/kms_rotation_crc.c | 62 ++++++++++++++++++++++++++++++++++------ > 1 file changed, 53 insertions(+), 9 deletions(-) > > diff --git a/tests/kms_rotation_crc.c b/tests/kms_rotation_crc.c > index e7072e208..6d4e87ed9 100644 > --- a/tests/kms_rotation_crc.c > +++ b/tests/kms_rotation_crc.c > @@ -30,6 +30,7 @@ > #define MAXMULTIPLANESAMOUNT 2 > #define TEST_MAX_WIDTH 640 > #define TEST_MAX_HEIGHT 480 > +#define MAX_TESTED_MODES 8 > > struct p_struct { > igt_plane_t *plane; > @@ -79,11 +80,15 @@ typedef struct { > bool use_native_resolution; > bool extended; > > + int output_crc_in_use, max_crc_in_use; > struct crc_rect_tag { > + int mode; > bool valid; > igt_crc_t ref_crc; > igt_crc_t flip_crc; > - } crc_rect[num_rectangle_types]; > + } crc_rect[MAX_TESTED_MODES][num_rectangle_types]; > + > + igt_fb_t last_on_screen; > } data_t; > > typedef struct { > @@ -169,7 +174,6 @@ static void remove_fbs(data_t *data) > { > igt_remove_fb(data->gfx_fd, &data->fb); > igt_remove_fb(data->gfx_fd, &data->fb_reference); > - igt_remove_fb(data->gfx_fd, &data->fb_flip); > } > > static void cleanup_crtc(data_t *data) > @@ -272,7 +276,7 @@ static void prepare_fbs(data_t *data, igt_output_t *output, > */ > igt_require(igt_display_has_format_mod(display, pixel_format, tiling)); > > - if (!data->crc_rect[rect].valid) { > + if (!data->crc_rect[data->output_crc_in_use][rect].valid) { > /* > * Create a reference software rotated flip framebuffer. > */ > @@ -285,7 +289,9 @@ static void prepare_fbs(data_t *data, igt_output_t *output, > igt_plane_set_position(plane, data->pos_x, data->pos_y); > igt_display_commit2(display, COMMIT_ATOMIC); > > - igt_pipe_crc_get_current(display->drm_fd, data->pipe_crc, &data->crc_rect[rect].flip_crc); > + igt_pipe_crc_get_current(display->drm_fd, data->pipe_crc, > + &data->crc_rect[data->output_crc_in_use][rect].flip_crc); > + > igt_remove_fb(data->gfx_fd, &data->fb_flip); > > /* > @@ -300,10 +306,13 @@ static void prepare_fbs(data_t *data, igt_output_t *output, > igt_plane_set_position(plane, data->pos_x, data->pos_y); > igt_display_commit2(display, COMMIT_ATOMIC); > > - igt_pipe_crc_get_current(display->drm_fd, data->pipe_crc, &data->crc_rect[rect].ref_crc); > - data->crc_rect[rect].valid = true; > + igt_pipe_crc_get_current(display->drm_fd, data->pipe_crc, > + &data->crc_rect[data->output_crc_in_use][rect].ref_crc); > + > + data->crc_rect[data->output_crc_in_use][rect].valid = true; > } > > + data->last_on_screen = data->fb_flip; > /* > * Prepare the non-rotated flip fb. > */ > @@ -340,6 +349,13 @@ static void test_single_case(data_t *data, enum pipe pipe, > igt_plane_set_size(plane, data->fb.height, data->fb.width); > > ret = igt_display_try_commit2(display, COMMIT_ATOMIC); > + > + /* > + * Remove this last fb after it was taken out from screen > + * to avoid unnecessary delays. > + */ > + igt_remove_fb(data->gfx_fd, &data->last_on_screen); > + > if (test_bad_format) { > igt_pipe_crc_drain(data->pipe_crc); > igt_assert_eq(ret, -EINVAL); > @@ -351,7 +367,8 @@ static void test_single_case(data_t *data, enum pipe pipe, > > /* Check CRC */ > igt_pipe_crc_get_current(display->drm_fd, data->pipe_crc, &crc_output); > - igt_assert_crc_equal(&data->crc_rect[rect].ref_crc, &crc_output); > + igt_assert_crc_equal(&data->crc_rect[data->output_crc_in_use][rect].ref_crc, > + &crc_output); > > /* > * If flips are requested flip to a different fb and > @@ -374,7 +391,8 @@ static void test_single_case(data_t *data, enum pipe pipe, > } > kmstest_wait_for_pageflip(data->gfx_fd); > igt_pipe_crc_get_current(display->drm_fd, data->pipe_crc, &crc_output); > - igt_assert_crc_equal(&data->crc_rect[rect].flip_crc, &crc_output); > + igt_assert_crc_equal(&data->crc_rect[data->output_crc_in_use][rect].flip_crc, > + &crc_output); > } > } > > @@ -403,6 +421,7 @@ static bool test_format(data_t *data, > static void test_plane_rotation(data_t *data, int plane_type, bool test_bad_format) > { > igt_display_t *display = &data->display; > + drmModeModeInfo *mode; > igt_output_t *output; > enum pipe pipe; > int pipe_count = 0; > @@ -416,8 +435,33 @@ static void test_plane_rotation(data_t *data, int plane_type, bool test_bad_form > igt_plane_t *plane; > int i, j, c; > > + mode = igt_output_get_mode(output); > + > + /* > + * Find mode which is in use in connector. If this is mode > + * which was not run on earlier we'll end up on zeroed > + * struct crc_rect and recalculate reference crcs. > + */ > + for (data->output_crc_in_use = 0; > + data->output_crc_in_use < data->max_crc_in_use && > + data->crc_rect[data->output_crc_in_use][0].mode != mode->vdisplay; > + data->output_crc_in_use++) > + ; > + > + /* > + * This is if there was different mode on different connector > + * and this mode was not run on before. > + */ > + if (data->crc_rect[data->output_crc_in_use][0].mode != mode->vdisplay) { > + data->crc_rect[data->output_crc_in_use][0].mode = mode->vdisplay; > + data->max_crc_in_use++; > + > + if (data->max_crc_in_use >= MAX_TESTED_MODES) > + data->max_crc_in_use = MAX_TESTED_MODES - 1; > + } > + > for (c = 0; c < num_rectangle_types; c++) > - data->crc_rect[c].valid = false; > + data->crc_rect[data->output_crc_in_use][c].valid = false; > > if (IS_CHERRYVIEW(data->devid) && pipe != PIPE_B) > continue; _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 10+ messages in thread
* [igt-dev] [PATCH i-g-t 2/2] HAX remove kms_rotatation_crc from premerge blacklist 2021-02-03 16:25 [igt-dev] [PATCH i-g-t 0/2] kms_rotation_crc fix and optimization Juha-Pekka Heikkila 2021-02-03 16:25 ` [igt-dev] [PATCH i-g-t 1/2] tests/kms_rotation_crc: different display modes can have different crc Juha-Pekka Heikkila @ 2021-02-03 16:25 ` Juha-Pekka Heikkila 2021-02-03 17:17 ` [igt-dev] ✓ Fi.CI.BAT: success for kms_rotation_crc fix and optimization Patchwork ` (2 subsequent siblings) 4 siblings, 0 replies; 10+ messages in thread From: Juha-Pekka Heikkila @ 2021-02-03 16:25 UTC (permalink / raw) To: igt-dev --- tests/intel-ci/blacklist-pre-merge.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/intel-ci/blacklist-pre-merge.txt b/tests/intel-ci/blacklist-pre-merge.txt index cddb77c1f..b46c7d050 100644 --- a/tests/intel-ci/blacklist-pre-merge.txt +++ b/tests/intel-ci/blacklist-pre-merge.txt @@ -17,7 +17,7 @@ # # Data acquired on 2020-02-19 by Martin Peres ############################################################################### -igt@kms_rotation_crc@.* +#igt@kms_rotation_crc@.* ############################################################################### -- 2.28.0 _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply related [flat|nested] 10+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for kms_rotation_crc fix and optimization 2021-02-03 16:25 [igt-dev] [PATCH i-g-t 0/2] kms_rotation_crc fix and optimization Juha-Pekka Heikkila 2021-02-03 16:25 ` [igt-dev] [PATCH i-g-t 1/2] tests/kms_rotation_crc: different display modes can have different crc Juha-Pekka Heikkila 2021-02-03 16:25 ` [igt-dev] [PATCH i-g-t 2/2] HAX remove kms_rotatation_crc from premerge blacklist Juha-Pekka Heikkila @ 2021-02-03 17:17 ` Patchwork 2021-02-03 21:58 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 2021-02-04 8:13 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork 4 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2021-02-03 17:17 UTC (permalink / raw) To: Juha-Pekka Heikkila; +Cc: igt-dev [-- Attachment #1.1: Type: text/plain, Size: 3487 bytes --] == Series Details == Series: kms_rotation_crc fix and optimization URL : https://patchwork.freedesktop.org/series/86655/ State : success == Summary == CI Bug Log - changes from CI_DRM_9725 -> IGTPW_5472 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/index.html Known issues ------------ Here are the changes found in IGTPW_5472 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@amdgpu/amd_cs_nop@sync-gfx0: - fi-bsw-n3050: NOTRUN -> [SKIP][1] ([fdo#109271]) +17 similar issues [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/fi-bsw-n3050/igt@amdgpu/amd_cs_nop@sync-gfx0.html * igt@debugfs_test@read_all_entries: - fi-tgl-y: [PASS][2] -> [DMESG-WARN][3] ([i915#402]) +1 similar issue [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9725/fi-tgl-y/igt@debugfs_test@read_all_entries.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/fi-tgl-y/igt@debugfs_test@read_all_entries.html * igt@gem_exec_suspend@basic-s3: - fi-tgl-y: [PASS][4] -> [DMESG-WARN][5] ([i915#2411] / [i915#402]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9725/fi-tgl-y/igt@gem_exec_suspend@basic-s3.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/fi-tgl-y/igt@gem_exec_suspend@basic-s3.html * igt@i915_selftest@live@sanitycheck: - fi-kbl-7500u: [PASS][6] -> [DMESG-WARN][7] ([i915#2605]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9725/fi-kbl-7500u/igt@i915_selftest@live@sanitycheck.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/fi-kbl-7500u/igt@i915_selftest@live@sanitycheck.html #### Possible fixes #### * igt@gem_close_race@basic-threads: - fi-tgl-y: [DMESG-WARN][8] ([i915#402]) -> [PASS][9] +1 similar issue [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9725/fi-tgl-y/igt@gem_close_race@basic-threads.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/fi-tgl-y/igt@gem_close_race@basic-threads.html * igt@i915_selftest@live@execlists: - fi-bsw-n3050: [INCOMPLETE][10] ([i915#2940]) -> [PASS][11] [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9725/fi-bsw-n3050/igt@i915_selftest@live@execlists.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/fi-bsw-n3050/igt@i915_selftest@live@execlists.html [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [i915#2411]: https://gitlab.freedesktop.org/drm/intel/issues/2411 [i915#2605]: https://gitlab.freedesktop.org/drm/intel/issues/2605 [i915#2940]: https://gitlab.freedesktop.org/drm/intel/issues/2940 [i915#402]: https://gitlab.freedesktop.org/drm/intel/issues/402 Participating hosts (45 -> 38) ------------------------------ Missing (7): fi-jsl-1 fi-ilk-m540 fi-hsw-4200u fi-bsw-cyan fi-ctg-p8600 fi-dg1-1 fi-bdw-samus Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_5989 -> IGTPW_5472 CI-20190529: 20190529 CI_DRM_9725: 4f97ebbb265a06654e2cc76a0e0115cc00bb6c91 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_5472: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/index.html IGT_5989: 57a96840fd5aa7ec48c2f84b30e0420f84ec7386 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/index.html [-- Attachment #1.2: Type: text/html, Size: 4357 bytes --] [-- Attachment #2: Type: text/plain, Size: 154 bytes --] _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 10+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for kms_rotation_crc fix and optimization 2021-02-03 16:25 [igt-dev] [PATCH i-g-t 0/2] kms_rotation_crc fix and optimization Juha-Pekka Heikkila ` (2 preceding siblings ...) 2021-02-03 17:17 ` [igt-dev] ✓ Fi.CI.BAT: success for kms_rotation_crc fix and optimization Patchwork @ 2021-02-03 21:58 ` Patchwork 2021-02-04 8:01 ` Juha-Pekka Heikkila 2021-02-04 8:13 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork 4 siblings, 1 reply; 10+ messages in thread From: Patchwork @ 2021-02-03 21:58 UTC (permalink / raw) To: Juha-Pekka Heikkila; +Cc: igt-dev [-- Attachment #1.1: Type: text/plain, Size: 30255 bytes --] == Series Details == Series: kms_rotation_crc fix and optimization URL : https://patchwork.freedesktop.org/series/86655/ State : failure == Summary == CI Bug Log - changes from CI_DRM_9725_full -> IGTPW_5472_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_5472_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_5472_full, please notify your bug team 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_5472/index.html Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_5472_full: ### IGT changes ### #### Possible regressions #### * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a: - shard-kbl: [PASS][1] -> [INCOMPLETE][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9725/shard-kbl2/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-kbl6/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * {igt@sysfs_clients@recycle-many}: - shard-tglb: [PASS][3] -> [FAIL][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9725/shard-tglb2/igt@sysfs_clients@recycle-many.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-tglb5/igt@sysfs_clients@recycle-many.html - shard-snb: [PASS][5] -> [FAIL][6] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9725/shard-snb5/igt@sysfs_clients@recycle-many.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-snb4/igt@sysfs_clients@recycle-many.html Known issues ------------ Here are the changes found in IGTPW_5472_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_ctx_param@set-priority-not-supported: - shard-iclb: NOTRUN -> [SKIP][7] ([fdo#109314]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-iclb1/igt@gem_ctx_param@set-priority-not-supported.html * igt@gem_ctx_persistence@clone: - shard-snb: NOTRUN -> [SKIP][8] ([fdo#109271] / [i915#1099]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-snb5/igt@gem_ctx_persistence@clone.html * igt@gem_ctx_persistence@legacy-engines-cleanup: - shard-hsw: NOTRUN -> [SKIP][9] ([fdo#109271] / [i915#1099]) +1 similar issue [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-hsw7/igt@gem_ctx_persistence@legacy-engines-cleanup.html * igt@gem_exec_fair@basic-none-share@rcs0: - shard-apl: [PASS][10] -> [SKIP][11] ([fdo#109271]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9725/shard-apl3/igt@gem_exec_fair@basic-none-share@rcs0.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-apl2/igt@gem_exec_fair@basic-none-share@rcs0.html * igt@gem_exec_fair@basic-none-solo@rcs0: - shard-kbl: NOTRUN -> [FAIL][12] ([i915#2842]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-kbl1/igt@gem_exec_fair@basic-none-solo@rcs0.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-glk: [PASS][13] -> [FAIL][14] ([i915#2842]) +1 similar issue [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9725/shard-glk3/igt@gem_exec_fair@basic-pace-share@rcs0.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-glk4/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_fair@basic-throttle@rcs0: - shard-iclb: [PASS][15] -> [FAIL][16] ([i915#2849]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9725/shard-iclb5/igt@gem_exec_fair@basic-throttle@rcs0.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-iclb1/igt@gem_exec_fair@basic-throttle@rcs0.html * igt@gem_exec_params@no-vebox: - shard-tglb: NOTRUN -> [SKIP][17] ([fdo#109283]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-tglb1/igt@gem_exec_params@no-vebox.html * igt@gem_exec_whisper@basic-fds-forked-all: - shard-glk: NOTRUN -> [DMESG-WARN][18] ([i915#118] / [i915#95]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-glk4/igt@gem_exec_whisper@basic-fds-forked-all.html * igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled: - shard-iclb: NOTRUN -> [SKIP][19] ([i915#768]) +3 similar issues [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-iclb6/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled.html * igt@gem_userptr_blits@process-exit-mmap-busy@uc: - shard-kbl: NOTRUN -> [SKIP][20] ([fdo#109271] / [i915#1699]) +3 similar issues [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-kbl2/igt@gem_userptr_blits@process-exit-mmap-busy@uc.html * igt@gem_userptr_blits@vma-merge: - shard-apl: NOTRUN -> [INCOMPLETE][21] ([i915#2502] / [i915#2667]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-apl2/igt@gem_userptr_blits@vma-merge.html - shard-glk: NOTRUN -> [INCOMPLETE][22] ([i915#2502] / [i915#2667]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-glk7/igt@gem_userptr_blits@vma-merge.html * igt@gem_vm_create@destroy-race: - shard-tglb: NOTRUN -> [TIMEOUT][23] ([i915#2795]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-tglb5/igt@gem_vm_create@destroy-race.html * igt@gen3_render_mixed_blits: - shard-tglb: NOTRUN -> [SKIP][24] ([fdo#109289]) +1 similar issue [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-tglb2/igt@gen3_render_mixed_blits.html * igt@gen9_exec_parse@allowed-all: - shard-iclb: NOTRUN -> [SKIP][25] ([fdo#112306]) +2 similar issues [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-iclb7/igt@gen9_exec_parse@allowed-all.html * igt@gen9_exec_parse@bb-start-param: - shard-tglb: NOTRUN -> [SKIP][26] ([fdo#112306]) +3 similar issues [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-tglb7/igt@gen9_exec_parse@bb-start-param.html * igt@gen9_exec_parse@shadow-peek: - shard-tglb: NOTRUN -> [SKIP][27] ([i915#2856]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-tglb8/igt@gen9_exec_parse@shadow-peek.html * igt@i915_pm_dc@dc6-dpms: - shard-tglb: NOTRUN -> [FAIL][28] ([i915#454]) [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-tglb2/igt@i915_pm_dc@dc6-dpms.html * igt@i915_pm_rc6_residency@rc6-fence: - shard-hsw: [PASS][29] -> [WARN][30] ([i915#1519]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9725/shard-hsw1/igt@i915_pm_rc6_residency@rc6-fence.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-hsw6/igt@i915_pm_rc6_residency@rc6-fence.html * igt@i915_pm_rpm@dpms-non-lpsp: - shard-iclb: NOTRUN -> [SKIP][31] ([fdo#110892]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-iclb7/igt@i915_pm_rpm@dpms-non-lpsp.html * igt@i915_pm_rpm@modeset-non-lpsp-stress: - shard-tglb: NOTRUN -> [SKIP][32] ([fdo#111644] / [i915#1397] / [i915#2411]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-tglb2/igt@i915_pm_rpm@modeset-non-lpsp-stress.html * igt@i915_query@query-topology-unsupported: - shard-tglb: NOTRUN -> [SKIP][33] ([fdo#109302]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-tglb8/igt@i915_query@query-topology-unsupported.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-tglb: NOTRUN -> [SKIP][34] ([i915#404]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-tglb1/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_big_fb@linear-64bpp-rotate-90: - shard-iclb: NOTRUN -> [SKIP][35] ([fdo#110725] / [fdo#111614]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-iclb8/igt@kms_big_fb@linear-64bpp-rotate-90.html * igt@kms_big_fb@x-tiled-16bpp-rotate-90: - shard-tglb: NOTRUN -> [SKIP][36] ([fdo#111614]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-tglb8/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-8bpp-rotate-180: - shard-iclb: NOTRUN -> [SKIP][37] ([fdo#110723]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-iclb6/igt@kms_big_fb@yf-tiled-8bpp-rotate-180.html * igt@kms_big_joiner@basic: - shard-kbl: NOTRUN -> [SKIP][38] ([fdo#109271] / [i915#2705]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-kbl7/igt@kms_big_joiner@basic.html * igt@kms_chamelium@dp-edid-change-during-suspend: - shard-apl: NOTRUN -> [SKIP][39] ([fdo#109271] / [fdo#111827]) +11 similar issues [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-apl2/igt@kms_chamelium@dp-edid-change-during-suspend.html * igt@kms_chamelium@dp-hpd-storm: - shard-iclb: NOTRUN -> [SKIP][40] ([fdo#109284] / [fdo#111827]) +7 similar issues [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-iclb3/igt@kms_chamelium@dp-hpd-storm.html * igt@kms_chamelium@dp-hpd-with-enabled-mode: - shard-glk: NOTRUN -> [SKIP][41] ([fdo#109271] / [fdo#111827]) +4 similar issues [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-glk7/igt@kms_chamelium@dp-hpd-with-enabled-mode.html * igt@kms_chamelium@vga-hpd-for-each-pipe: - shard-kbl: NOTRUN -> [SKIP][42] ([fdo#109271] / [fdo#111827]) +21 similar issues [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-kbl1/igt@kms_chamelium@vga-hpd-for-each-pipe.html * igt@kms_color@pipe-c-ctm-0-25: - shard-iclb: NOTRUN -> [FAIL][43] ([i915#1149] / [i915#315]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-iclb5/igt@kms_color@pipe-c-ctm-0-25.html * igt@kms_color@pipe-c-legacy-gamma-reset: - shard-kbl: [PASS][44] -> [FAIL][45] ([i915#2964]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9725/shard-kbl7/igt@kms_color@pipe-c-legacy-gamma-reset.html [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-kbl7/igt@kms_color@pipe-c-legacy-gamma-reset.html - shard-apl: [PASS][46] -> [FAIL][47] ([i915#2964]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9725/shard-apl3/igt@kms_color@pipe-c-legacy-gamma-reset.html [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-apl2/igt@kms_color@pipe-c-legacy-gamma-reset.html - shard-glk: [PASS][48] -> [FAIL][49] ([i915#2964]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9725/shard-glk8/igt@kms_color@pipe-c-legacy-gamma-reset.html [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-glk4/igt@kms_color@pipe-c-legacy-gamma-reset.html - shard-hsw: [PASS][50] -> [FAIL][51] ([i915#2964]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9725/shard-hsw6/igt@kms_color@pipe-c-legacy-gamma-reset.html [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-hsw4/igt@kms_color@pipe-c-legacy-gamma-reset.html * igt@kms_color@pipe-d-ctm-0-25: - shard-iclb: NOTRUN -> [SKIP][52] ([fdo#109278] / [i915#1149]) +1 similar issue [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-iclb8/igt@kms_color@pipe-d-ctm-0-25.html * igt@kms_color_chamelium@pipe-b-ctm-green-to-red: - shard-hsw: NOTRUN -> [SKIP][53] ([fdo#109271] / [fdo#111827]) +3 similar issues [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-hsw2/igt@kms_color_chamelium@pipe-b-ctm-green-to-red.html * igt@kms_color_chamelium@pipe-d-ctm-0-5: - shard-snb: NOTRUN -> [SKIP][54] ([fdo#109271] / [fdo#111827]) +1 similar issue [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-snb4/igt@kms_color_chamelium@pipe-d-ctm-0-5.html * igt@kms_color_chamelium@pipe-d-ctm-limited-range: - shard-iclb: NOTRUN -> [SKIP][55] ([fdo#109278] / [fdo#109284] / [fdo#111827]) +1 similar issue [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-iclb4/igt@kms_color_chamelium@pipe-d-ctm-limited-range.html * igt@kms_color_chamelium@pipe-d-ctm-red-to-blue: - shard-tglb: NOTRUN -> [SKIP][56] ([fdo#109284] / [fdo#111827]) +9 similar issues [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-tglb7/igt@kms_color_chamelium@pipe-d-ctm-red-to-blue.html * igt@kms_content_protection@atomic-dpms: - shard-kbl: NOTRUN -> [TIMEOUT][57] ([i915#1319]) +1 similar issue [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-kbl4/igt@kms_content_protection@atomic-dpms.html * igt@kms_cursor_crc@pipe-a-cursor-512x512-sliding: - shard-iclb: NOTRUN -> [SKIP][58] ([fdo#109278] / [fdo#109279]) +1 similar issue [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-iclb7/igt@kms_cursor_crc@pipe-a-cursor-512x512-sliding.html * igt@kms_cursor_crc@pipe-c-cursor-512x170-onscreen: - shard-tglb: NOTRUN -> [SKIP][59] ([fdo#109279]) +2 similar issues [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-tglb2/igt@kms_cursor_crc@pipe-c-cursor-512x170-onscreen.html * igt@kms_cursor_edge_walk@pipe-d-128x128-top-edge: - shard-iclb: NOTRUN -> [SKIP][60] ([fdo#109278]) +21 similar issues [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-iclb3/igt@kms_cursor_edge_walk@pipe-d-128x128-top-edge.html * igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic: - shard-snb: NOTRUN -> [SKIP][61] ([fdo#109271]) +49 similar issues [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-snb2/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html * igt@kms_cursor_legacy@cursora-vs-flipb-varying-size: - shard-iclb: NOTRUN -> [SKIP][62] ([fdo#109274] / [fdo#109278]) +4 similar issues [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-iclb7/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic: - shard-glk: [PASS][63] -> [FAIL][64] ([i915#2346]) [63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9725/shard-glk6/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-glk8/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@pipe-d-torture-bo: - shard-kbl: NOTRUN -> [SKIP][65] ([fdo#109271] / [i915#533]) +2 similar issues [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-kbl2/igt@kms_cursor_legacy@pipe-d-torture-bo.html * igt@kms_dp_dsc@basic-dsc-enable-dp: - shard-iclb: NOTRUN -> [SKIP][66] ([fdo#109349]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-iclb1/igt@kms_dp_dsc@basic-dsc-enable-dp.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-apl: NOTRUN -> [INCOMPLETE][67] ([i915#180]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-apl4/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a1-hdmi-a2: - shard-glk: [PASS][68] -> [FAIL][69] ([i915#2122]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9725/shard-glk6/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a1-hdmi-a2.html [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-glk3/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a1-hdmi-a2.html * igt@kms_flip@2x-flip-vs-wf_vblank-interruptible: - shard-iclb: NOTRUN -> [SKIP][70] ([fdo#109274]) +2 similar issues [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-iclb8/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html * igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a2: - shard-glk: [PASS][71] -> [FAIL][72] ([i915#79]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9725/shard-glk1/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a2.html [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-glk8/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a2.html * igt@kms_flip@flip-vs-suspend-interruptible@c-hdmi-a1: - shard-hsw: [PASS][73] -> [INCOMPLETE][74] ([i915#2295]) [73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9725/shard-hsw6/igt@kms_flip@flip-vs-suspend-interruptible@c-hdmi-a1.html [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-hsw1/igt@kms_flip@flip-vs-suspend-interruptible@c-hdmi-a1.html * igt@kms_flip@flip-vs-suspend@c-dp1: - shard-kbl: [PASS][75] -> [DMESG-WARN][76] ([i915#180]) +1 similar issue [75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9725/shard-kbl6/igt@kms_flip@flip-vs-suspend@c-dp1.html [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-kbl6/igt@kms_flip@flip-vs-suspend@c-dp1.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs: - shard-kbl: NOTRUN -> [FAIL][77] ([i915#2641]) +1 similar issue [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-kbl1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs: - shard-kbl: NOTRUN -> [SKIP][78] ([fdo#109271] / [i915#2672]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-kbl7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile: - shard-apl: NOTRUN -> [SKIP][79] ([fdo#109271] / [i915#2642]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-apl7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile.html - shard-glk: NOTRUN -> [SKIP][80] ([fdo#109271] / [i915#2642]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-glk1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile.html - shard-kbl: NOTRUN -> [SKIP][81] ([fdo#109271] / [i915#2642]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-kbl7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack: - shard-tglb: NOTRUN -> [SKIP][82] ([fdo#111825]) +38 similar issues [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-tglb3/igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-msflip-blt: - shard-hsw: NOTRUN -> [SKIP][83] ([fdo#109271]) +57 similar issues [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-hsw7/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-pgflip-blt: - shard-glk: NOTRUN -> [SKIP][84] ([fdo#109271]) +33 similar issues [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-glk8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt: - shard-iclb: NOTRUN -> [SKIP][85] ([fdo#109280]) +27 similar issues [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-iclb4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-pwrite: - shard-apl: NOTRUN -> [SKIP][86] ([fdo#109271]) +134 similar issues [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-apl3/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-pwrite.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-tglb: NOTRUN -> [SKIP][87] ([i915#1839]) +1 similar issue [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-tglb1/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html - shard-iclb: NOTRUN -> [SKIP][88] ([i915#1839]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-iclb2/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c: - shard-iclb: NOTRUN -> [SKIP][89] ([fdo#109289]) +2 similar issues [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-iclb8/igt@kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c.html * igt@kms_plane_alpha_blend@pipe-a-alpha-7efc: - shard-apl: NOTRUN -> [FAIL][90] ([fdo#108145] / [i915#265]) +1 similar issue [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-apl7/igt@kms_plane_alpha_blend@pipe-a-alpha-7efc.html - shard-kbl: NOTRUN -> [FAIL][91] ([fdo#108145] / [i915#265]) +1 similar issue [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-kbl7/igt@kms_plane_alpha_blend@pipe-a-alpha-7efc.html * igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb: - shard-glk: NOTRUN -> [FAIL][92] ([i915#265]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-glk9/igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb.html - shard-apl: NOTRUN -> [FAIL][93] ([i915#265]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-apl7/igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb.html * igt@kms_plane_multiple@atomic-pipe-d-tiling-yf: - shard-tglb: NOTRUN -> [SKIP][94] ([fdo#112054]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-tglb3/igt@kms_plane_multiple@atomic-pipe-d-tiling-yf.html * igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-1: - shard-tglb: NOTRUN -> [SKIP][95] ([i915#2920]) +2 similar issues [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-tglb1/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-1.html - shard-kbl: NOTRUN -> [SKIP][96] ([fdo#109271] / [i915#658]) +5 similar issues [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-kbl1/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-1.html * igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-2: - shard-glk: NOTRUN -> [SKIP][97] ([fdo#109271] / [i915#658]) +1 similar issue [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-glk2/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-2.html * igt@kms_psr2_sf@plane-move-sf-dmg-area-2: - shard-apl: NOTRUN -> [SKIP][98] ([fdo#109271] / [i915#658]) +4 similar issues [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-apl8/igt@kms_psr2_sf@plane-move-sf-dmg-area-2.html * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-3: - shard-iclb: NOTRUN -> [SKIP][99] ([i915#658]) +1 similar issue [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-iclb8/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-3.html * igt@kms_psr@cursor_plane_onoff: - shard-kbl: NOTRUN -> [SKIP][100] ([fdo#109271]) +189 similar issues [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-kbl2/igt@kms_psr@cursor_plane_onoff.html * igt@kms_psr@primary_page_flip: - shard-hsw: NOTRUN -> [SKIP][101] ([fdo#109271] / [i915#1072]) +1 similar issue [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-hsw6/igt@kms_psr@primary_page_flip.html * igt@kms_psr@psr2_cursor_render: - shard-iclb: [PASS][102] -> [SKIP][103] ([fdo#109441]) +1 similar issue [102]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9725/shard-iclb2/igt@kms_psr@psr2_cursor_render.html [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-iclb8/igt@kms_psr@psr2_cursor_render.html * igt@kms_psr@psr2_sprite_plane_move: - shard-iclb: NOTRUN -> [SKIP][104] ([fdo#109441]) +2 similar issues [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-iclb1/igt@kms_psr@psr2_sprite_plane_move.html * igt@kms_rotation_crc@multiplane-rotation: - shard-glk: NOTRUN -> [TIMEOUT][105] ([i915#1280]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-glk8/igt@kms_rotation_crc@multiplane-rotation.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-tglb: NOTRUN -> [SKIP][106] ([fdo#111615]) +4 similar issues [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-tglb3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt@kms_vblank@pipe-b-ts-continuation-suspend: - shard-kbl: NOTRUN -> [DMESG-WARN][107] ([i915#180]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-kbl7/igt@kms_vblank@pipe-b-ts-continuation-suspend.html * igt@kms_vblank@pipe-d-wait-forked-busy: - shard-hsw: NOTRUN -> [SKIP][108] ([fdo#109271] / [i915#533]) +6 similar issues [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-hsw2/igt@kms_vblank@pipe-d-wait-forked-busy.html * igt@kms_vrr@flip-basic: - shard-iclb: NOTRUN -> [SKIP][109] ([fdo#109502]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-iclb3/igt@kms_vrr@flip-basic.html * igt@kms_writeback@writeback-check-output: - shard-tglb: NOTRUN -> [SKIP][110] ([i915#2437]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-tglb3/igt@kms_writeback@writeback-check-output.html * igt@kms_writeback@writeback-invalid-parameters: - shard-apl: NOTRUN -> [SKIP][111] ([fdo#109271] / [i915#2437]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-apl4/igt@kms_writeback@writeback-invalid-parameters.html * igt@kms_writeback@writeback-pixel-formats: - shard-kbl: NOTRUN -> [SKIP][112] ([fdo#109271] / [i915#2437]) +1 similar issue [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-kbl2/igt@kms_writeback@writeback-pixel-formats.html * igt@nouveau_crc@pipe-a-source-rg: - shard-iclb: NOTRUN -> [SKIP][113] ([i915#2530]) +3 similar issues [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-iclb6/igt@nouveau_crc@pipe-a-source-rg.html * igt@nouveau_crc@pipe-c-source-outp-inactive: - shard-tglb: NOTRUN -> [SKIP][114] ([i915#2530]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-tglb1/igt@nouveau_crc@pipe-c-source-outp-inactive.html * igt@perf@polling-parameterized: - shard-glk: [PASS][115] -> [FAIL][116] ([i915#1542]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9725/shard-glk2/igt@perf@polling-parameterized.html [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-glk4/igt@perf@polling-parameterized.html * igt@perf_pmu@event-wait@rcs0: - shard-tglb: NOTRUN -> [SKIP][117] ([fdo#112283]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-tglb1/igt@perf_pmu@event-wait@rcs0.html * igt@prime_nv_api@i915_nv_reimport_twice_check_flink_name: - shard-iclb: NOTRUN -> [SKIP][118] ([fdo#109291]) +2 similar issues [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-iclb7/igt@prime_nv_api@i915_nv_reimport_twice_check_flink_name.html * igt@prime_nv_test@i915_import_pread_pwrite: - shard-tglb: NOTRUN -> [SKIP][119] ([fdo#109291]) +3 similar issues [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-tglb8/igt@prime_nv_test@i915_import_pread_pwrite.html #### Possible fixes #### * igt@gem_ctx_exec@basic-close-race: - shard-iclb: [INCOMPLETE][120] ([i915#1895]) -> [PASS][121] [120]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9725/shard-iclb4/igt@gem_ctx_exec@basic-close-race.html [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-iclb4/igt@gem_ctx_exec@basic-close-race.html * igt@gem_ctx_isolation@preservation-s3@rcs0: - shard-glk: [INCOMPLETE][122] -> [PASS][123] [122]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9725/shard-glk7/igt@gem_ctx_isolation@preservation-s3@rcs0.html [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-glk6/igt@gem_ctx_isolation@preservation-s3@rcs0.html * {igt@gem_ctx_persistence@many-contexts}: - shard-iclb: [INCOMPLETE][124] -> [PASS][125] [124]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9725/shard-iclb6/igt@gem_ctx_persistence@many-contexts.html [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-iclb2/igt@gem_ctx_persistence@many-contexts.html * igt@gem_exec_fair@basic-none-share@rcs0: - shard-iclb: [FAIL][126] ([i915#2842]) -> [PASS][127] +1 similar issue [126]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9725/shard-iclb7/igt@gem_exec_fair@basic-none-share@rcs0.html [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-iclb8/igt@gem_exec_fair@basic-none-share@rcs0.html * igt@gem_exec_fair@basic-none@vcs0: - shard-kbl: [FAIL][128] ([i915#2842]) -> [PASS][129] +1 similar issue [128]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9725/shard-kbl2/igt@gem_exec_fair@basic-none@vcs0.html [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-kbl1/igt@gem_exec_fair@basic-none@vcs0.html * igt@gem_exec_fair@basic-none@vecs0: - shard-apl: [FAIL][130] ([i915#2842]) -> [PASS][131] [130]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9725/shard-apl7/igt@gem_exec_fair@basic-none@vecs0.html [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-apl2/igt@gem_exec_fair@basic-none@vecs0.html * igt@gem_exec_fair@basic-throttle@rcs0: - shard-glk: [FAIL][132] ([i915#2842]) -> [PASS][133] [132]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9725/shard-glk2/igt@gem_exec_fair@basic-throttle@rcs0.html [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-glk2/igt@gem_exec_fair@basic-throttle@rcs0.html * igt@gem_exec_schedule@u-fairslice@rcs0: - shard-kbl: [DMESG- == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/index.html [-- Attachment #1.2: Type: text/html, Size: 33821 bytes --] [-- Attachment #2: Type: text/plain, Size: 154 bytes --] _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [igt-dev] ✗ Fi.CI.IGT: failure for kms_rotation_crc fix and optimization 2021-02-03 21:58 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork @ 2021-02-04 8:01 ` Juha-Pekka Heikkila 2021-02-04 8:16 ` Vudum, Lakshminarayana 0 siblings, 1 reply; 10+ messages in thread From: Juha-Pekka Heikkila @ 2021-02-04 8:01 UTC (permalink / raw) To: igt-dev, Vudum, Lakshminarayana Hi Lakshmi, I'm again patching rotation crc test and get unrelated failure with kms_pipe_crc_basic /Juha-Pekka On 3.2.2021 23.58, Patchwork wrote: > *Patch Details* > *Series:* kms_rotation_crc fix and optimization > *URL:* https://patchwork.freedesktop.org/series/86655/ > *State:* failure > *Details:* https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/index.html > > > CI Bug Log - changes from CI_DRM_9725_full -> IGTPW_5472_full > > > Summary > > *FAILURE* > > Serious unknown changes coming with IGTPW_5472_full absolutely need to be > verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in IGTPW_5472_full, please notify your bug team 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_5472/index.html > > > Possible new issues > > Here are the unknown changes that may have been introduced in > IGTPW_5472_full: > > > IGT changes > > > Possible regressions > > * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a: > o shard-kbl: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9725/shard-kbl2/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html> > -> INCOMPLETE > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-kbl6/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html> > > > Suppressed > > The following results come from untrusted machines, tests, or statuses. > They do not affect the overall result. > > * > > {igt@sysfs_clients@recycle-many}: > > o > > shard-tglb: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9725/shard-tglb2/igt@sysfs_clients@recycle-many.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-tglb5/igt@sysfs_clients@recycle-many.html> > > o > > shard-snb: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9725/shard-snb5/igt@sysfs_clients@recycle-many.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-snb4/igt@sysfs_clients@recycle-many.html> > > > Known issues > > Here are the changes found in IGTPW_5472_full that come from known issues: > > > IGT changes > > > Issues hit > > * > > igt@gem_ctx_param@set-priority-not-supported: > > o shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-iclb1/igt@gem_ctx_param@set-priority-not-supported.html> > ([fdo#109314]) > * > > igt@gem_ctx_persistence@clone: > > o shard-snb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-snb5/igt@gem_ctx_persistence@clone.html> > ([fdo#109271] / [i915#1099]) > * > > igt@gem_ctx_persistence@legacy-engines-cleanup: > > o shard-hsw: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-hsw7/igt@gem_ctx_persistence@legacy-engines-cleanup.html> > ([fdo#109271] / [i915#1099]) +1 similar issue > * > > igt@gem_exec_fair@basic-none-share@rcs0: > > o shard-apl: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9725/shard-apl3/igt@gem_exec_fair@basic-none-share@rcs0.html> > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-apl2/igt@gem_exec_fair@basic-none-share@rcs0.html> > ([fdo#109271]) > * > > igt@gem_exec_fair@basic-none-solo@rcs0: > > o shard-kbl: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-kbl1/igt@gem_exec_fair@basic-none-solo@rcs0.html> > ([i915#2842]) > * > > igt@gem_exec_fair@basic-pace-share@rcs0: > > o shard-glk: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9725/shard-glk3/igt@gem_exec_fair@basic-pace-share@rcs0.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-glk4/igt@gem_exec_fair@basic-pace-share@rcs0.html> > ([i915#2842]) +1 similar issue > * > > igt@gem_exec_fair@basic-throttle@rcs0: > > o shard-iclb: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9725/shard-iclb5/igt@gem_exec_fair@basic-throttle@rcs0.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-iclb1/igt@gem_exec_fair@basic-throttle@rcs0.html> > ([i915#2849]) > * > > igt@gem_exec_params@no-vebox: > > o shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-tglb1/igt@gem_exec_params@no-vebox.html> > ([fdo#109283]) > * > > igt@gem_exec_whisper@basic-fds-forked-all: > > o shard-glk: NOTRUN -> DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-glk4/igt@gem_exec_whisper@basic-fds-forked-all.html> > ([i915#118] / [i915#95]) > * > > igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled: > > o shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-iclb6/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled.html> > ([i915#768]) +3 similar issues > * > > igt@gem_userptr_blits@process-exit-mmap-busy@uc: > > o shard-kbl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-kbl2/igt@gem_userptr_blits@process-exit-mmap-busy@uc.html> > ([fdo#109271] / [i915#1699]) +3 similar issues > * > > igt@gem_userptr_blits@vma-merge: > > o > > shard-apl: NOTRUN -> INCOMPLETE > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-apl2/igt@gem_userptr_blits@vma-merge.html> > ([i915#2502] / [i915#2667]) > > o > > shard-glk: NOTRUN -> INCOMPLETE > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-glk7/igt@gem_userptr_blits@vma-merge.html> > ([i915#2502] / [i915#2667]) > > * > > igt@gem_vm_create@destroy-race: > > o shard-tglb: NOTRUN -> TIMEOUT > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-tglb5/igt@gem_vm_create@destroy-race.html> > ([i915#2795]) > * > > igt@gen3_render_mixed_blits: > > o shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-tglb2/igt@gen3_render_mixed_blits.html> > ([fdo#109289]) +1 similar issue > * > > igt@gen9_exec_parse@allowed-all: > > o shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-iclb7/igt@gen9_exec_parse@allowed-all.html> > ([fdo#112306]) +2 similar issues > * > > igt@gen9_exec_parse@bb-start-param: > > o shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-tglb7/igt@gen9_exec_parse@bb-start-param.html> > ([fdo#112306]) +3 similar issues > * > > igt@gen9_exec_parse@shadow-peek: > > o shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-tglb8/igt@gen9_exec_parse@shadow-peek.html> > ([i915#2856]) > * > > igt@i915_pm_dc@dc6-dpms: > > o shard-tglb: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-tglb2/igt@i915_pm_dc@dc6-dpms.html> > ([i915#454]) > * > > igt@i915_pm_rc6_residency@rc6-fence: > > o shard-hsw: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9725/shard-hsw1/igt@i915_pm_rc6_residency@rc6-fence.html> > -> WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-hsw6/igt@i915_pm_rc6_residency@rc6-fence.html> > ([i915#1519]) > * > > igt@i915_pm_rpm@dpms-non-lpsp: > > o shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-iclb7/igt@i915_pm_rpm@dpms-non-lpsp.html> > ([fdo#110892]) > * > > igt@i915_pm_rpm@modeset-non-lpsp-stress: > > o shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-tglb2/igt@i915_pm_rpm@modeset-non-lpsp-stress.html> > ([fdo#111644] / [i915#1397] / [i915#2411]) > * > > igt@i915_query@query-topology-unsupported: > > o shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-tglb8/igt@i915_query@query-topology-unsupported.html> > ([fdo#109302]) > * > > igt@kms_atomic@plane-primary-overlay-mutable-zpos: > > o shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-tglb1/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html> > ([i915#404]) > * > > igt@kms_big_fb@linear-64bpp-rotate-90: > > o shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-iclb8/igt@kms_big_fb@linear-64bpp-rotate-90.html> > ([fdo#110725] / [fdo#111614]) > * > > igt@kms_big_fb@x-tiled-16bpp-rotate-90: > > o shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-tglb8/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html> > ([fdo#111614]) > * > > igt@kms_big_fb@yf-tiled-8bpp-rotate-180: > > o shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-iclb6/igt@kms_big_fb@yf-tiled-8bpp-rotate-180.html> > ([fdo#110723]) > * > > igt@kms_big_joiner@basic: > > o shard-kbl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-kbl7/igt@kms_big_joiner@basic.html> > ([fdo#109271] / [i915#2705]) > * > > igt@kms_chamelium@dp-edid-change-during-suspend: > > o shard-apl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-apl2/igt@kms_chamelium@dp-edid-change-during-suspend.html> > ([fdo#109271] / [fdo#111827]) +11 similar issues > * > > igt@kms_chamelium@dp-hpd-storm: > > o shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-iclb3/igt@kms_chamelium@dp-hpd-storm.html> > ([fdo#109284] / [fdo#111827]) +7 similar issues > * > > igt@kms_chamelium@dp-hpd-with-enabled-mode: > > o shard-glk: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-glk7/igt@kms_chamelium@dp-hpd-with-enabled-mode.html> > ([fdo#109271] / [fdo#111827]) +4 similar issues > * > > igt@kms_chamelium@vga-hpd-for-each-pipe: > > o shard-kbl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-kbl1/igt@kms_chamelium@vga-hpd-for-each-pipe.html> > ([fdo#109271] / [fdo#111827]) +21 similar issues > * > > igt@kms_color@pipe-c-ctm-0-25: > > o shard-iclb: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-iclb5/igt@kms_color@pipe-c-ctm-0-25.html> > ([i915#1149] / [i915#315]) > * > > igt@kms_color@pipe-c-legacy-gamma-reset: > > o > > shard-kbl: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9725/shard-kbl7/igt@kms_color@pipe-c-legacy-gamma-reset.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-kbl7/igt@kms_color@pipe-c-legacy-gamma-reset.html> > ([i915#2964]) > > o > > shard-apl: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9725/shard-apl3/igt@kms_color@pipe-c-legacy-gamma-reset.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-apl2/igt@kms_color@pipe-c-legacy-gamma-reset.html> > ([i915#2964]) > > o > > shard-glk: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9725/shard-glk8/igt@kms_color@pipe-c-legacy-gamma-reset.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-glk4/igt@kms_color@pipe-c-legacy-gamma-reset.html> > ([i915#2964]) > > o > > shard-hsw: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9725/shard-hsw6/igt@kms_color@pipe-c-legacy-gamma-reset.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-hsw4/igt@kms_color@pipe-c-legacy-gamma-reset.html> > ([i915#2964]) > > * > > igt@kms_color@pipe-d-ctm-0-25: > > o shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-iclb8/igt@kms_color@pipe-d-ctm-0-25.html> > ([fdo#109278] / [i915#1149]) +1 similar issue > * > > igt@kms_color_chamelium@pipe-b-ctm-green-to-red: > > o shard-hsw: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-hsw2/igt@kms_color_chamelium@pipe-b-ctm-green-to-red.html> > ([fdo#109271] / [fdo#111827]) +3 similar issues > * > > igt@kms_color_chamelium@pipe-d-ctm-0-5: > > o shard-snb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-snb4/igt@kms_color_chamelium@pipe-d-ctm-0-5.html> > ([fdo#109271] / [fdo#111827]) +1 similar issue > * > > igt@kms_color_chamelium@pipe-d-ctm-limited-range: > > o shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-iclb4/igt@kms_color_chamelium@pipe-d-ctm-limited-range.html> > ([fdo#109278] / [fdo#109284] / [fdo#111827]) +1 similar issue > * > > igt@kms_color_chamelium@pipe-d-ctm-red-to-blue: > > o shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-tglb7/igt@kms_color_chamelium@pipe-d-ctm-red-to-blue.html> > ([fdo#109284] / [fdo#111827]) +9 similar issues > * > > igt@kms_content_protection@atomic-dpms: > > o shard-kbl: NOTRUN -> TIMEOUT > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-kbl4/igt@kms_content_protection@atomic-dpms.html> > ([i915#1319]) +1 similar issue > * > > igt@kms_cursor_crc@pipe-a-cursor-512x512-sliding: > > o shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-iclb7/igt@kms_cursor_crc@pipe-a-cursor-512x512-sliding.html> > ([fdo#109278] / [fdo#109279]) +1 similar issue > * > > igt@kms_cursor_crc@pipe-c-cursor-512x170-onscreen: > > o shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-tglb2/igt@kms_cursor_crc@pipe-c-cursor-512x170-onscreen.html> > ([fdo#109279]) +2 similar issues > * > > igt@kms_cursor_edge_walk@pipe-d-128x128-top-edge: > > o shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-iclb3/igt@kms_cursor_edge_walk@pipe-d-128x128-top-edge.html> > ([fdo#109278]) +21 similar issues > * > > igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic: > > o shard-snb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-snb2/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html> > ([fdo#109271]) +49 similar issues > * > > igt@kms_cursor_legacy@cursora-vs-flipb-varying-size: > > o shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-iclb7/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html> > ([fdo#109274] / [fdo#109278]) +4 similar issues > * > > igt@kms_cursor_legacy@flip-vs-cursor-atomic: > > o shard-glk: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9725/shard-glk6/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-glk8/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html> > ([i915#2346]) > * > > igt@kms_cursor_legacy@pipe-d-torture-bo: > > o shard-kbl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-kbl2/igt@kms_cursor_legacy@pipe-d-torture-bo.html> > ([fdo#109271] / [i915#533]) +2 similar issues > * > > igt@kms_dp_dsc@basic-dsc-enable-dp: > > o shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-iclb1/igt@kms_dp_dsc@basic-dsc-enable-dp.html> > ([fdo#109349]) > * > > igt@kms_fbcon_fbt@fbc-suspend: > > o shard-apl: NOTRUN -> INCOMPLETE > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-apl4/igt@kms_fbcon_fbt@fbc-suspend.html> > ([i915#180]) > * > > igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a1-hdmi-a2: > > o shard-glk: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9725/shard-glk6/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a1-hdmi-a2.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-glk3/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a1-hdmi-a2.html> > ([i915#2122]) > * > > igt@kms_flip@2x-flip-vs-wf_vblank-interruptible: > > o shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-iclb8/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html> > ([fdo#109274]) +2 similar issues > * > > igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a2: > > o shard-glk: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9725/shard-glk1/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a2.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-glk8/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a2.html> > ([i915#79]) > * > > igt@kms_flip@flip-vs-suspend-interruptible@c-hdmi-a1: > > o shard-hsw: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9725/shard-hsw6/igt@kms_flip@flip-vs-suspend-interruptible@c-hdmi-a1.html> > -> INCOMPLETE > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-hsw1/igt@kms_flip@flip-vs-suspend-interruptible@c-hdmi-a1.html> > ([i915#2295]) > * > > igt@kms_flip@flip-vs-suspend@c-dp1: > > o shard-kbl: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9725/shard-kbl6/igt@kms_flip@flip-vs-suspend@c-dp1.html> > -> DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-kbl6/igt@kms_flip@flip-vs-suspend@c-dp1.html> > ([i915#180]) +1 similar issue > * > > igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs: > > o shard-kbl: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-kbl1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs.html> > ([i915#2641]) +1 similar issue > * > > igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs: > > o shard-kbl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-kbl7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs.html> > ([fdo#109271] / [i915#2672]) > * > > igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile: > > o > > shard-apl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-apl7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile.html> > ([fdo#109271] / [i915#2642]) > > o > > shard-glk: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-glk1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile.html> > ([fdo#109271] / [i915#2642]) > > o > > shard-kbl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-kbl7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile.html> > ([fdo#109271] / [i915#2642]) > > * > > igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack: > > o shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-tglb3/igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack.html> > ([fdo#111825]) +38 similar issues > * > > igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-msflip-blt: > > o shard-hsw: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-hsw7/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-msflip-blt.html> > ([fdo#109271]) +57 similar issues > * > > igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-pgflip-blt: > > o shard-glk: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-glk8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-pgflip-blt.html> > ([fdo#109271]) +33 similar issues > * > > igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt: > > o shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-iclb4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html> > ([fdo#109280]) +27 similar issues > * > > igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-pwrite: > > o shard-apl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-apl3/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-pwrite.html> > ([fdo#109271]) +134 similar issues > * > > igt@kms_multipipe_modeset@basic-max-pipe-crc-check: > > o > > shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-tglb1/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html> > ([i915#1839]) +1 similar issue > > o > > shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-iclb2/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html> > ([i915#1839]) > > * > > igt@kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c: > > o shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-iclb8/igt@kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c.html> > ([fdo#109289]) +2 similar issues > * > > igt@kms_plane_alpha_blend@pipe-a-alpha-7efc: > > o > > shard-apl: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-apl7/igt@kms_plane_alpha_blend@pipe-a-alpha-7efc.html> > ([fdo#108145] / [i915#265]) +1 similar issue > > o > > shard-kbl: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-kbl7/igt@kms_plane_alpha_blend@pipe-a-alpha-7efc.html> > ([fdo#108145] / [i915#265]) +1 similar issue > > * > > igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb: > > o > > shard-glk: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-glk9/igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb.html> > ([i915#265]) > > o > > shard-apl: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-apl7/igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb.html> > ([i915#265]) > > * > > igt@kms_plane_multiple@atomic-pipe-d-tiling-yf: > > o shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-tglb3/igt@kms_plane_multiple@atomic-pipe-d-tiling-yf.html> > ([fdo#112054]) > * > > igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-1: > > o > > shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-tglb1/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-1.html> > ([i915#2920]) +2 similar issues > > o > > shard-kbl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-kbl1/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-1.html> > ([fdo#109271] / [i915#658]) +5 similar issues > > * > > igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-2: > > o shard-glk: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-glk2/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-2.html> > ([fdo#109271] / [i915#658]) +1 similar issue > * > > igt@kms_psr2_sf@plane-move-sf-dmg-area-2: > > o shard-apl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-apl8/igt@kms_psr2_sf@plane-move-sf-dmg-area-2.html> > ([fdo#109271] / [i915#658]) +4 similar issues > * > > igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-3: > > o shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-iclb8/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-3.html> > ([i915#658]) +1 similar issue > * > > igt@kms_psr@cursor_plane_onoff: > > o shard-kbl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-kbl2/igt@kms_psr@cursor_plane_onoff.html> > ([fdo#109271]) +189 similar issues > * > > igt@kms_psr@primary_page_flip: > > o shard-hsw: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-hsw6/igt@kms_psr@primary_page_flip.html> > ([fdo#109271] / [i915#1072]) +1 similar issue > * > > igt@kms_psr@psr2_cursor_render: > > o shard-iclb: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9725/shard-iclb2/igt@kms_psr@psr2_cursor_render.html> > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-iclb8/igt@kms_psr@psr2_cursor_render.html> > ([fdo#109441]) +1 similar issue > * > > igt@kms_psr@psr2_sprite_plane_move: > > o shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-iclb1/igt@kms_psr@psr2_sprite_plane_move.html> > ([fdo#109441]) +2 similar issues > * > > igt@kms_rotation_crc@multiplane-rotation: > > o shard-glk: NOTRUN -> TIMEOUT > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-glk8/igt@kms_rotation_crc@multiplane-rotation.html> > ([i915#1280]) > * > > igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: > > o shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-tglb3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html> > ([fdo#111615]) +4 similar issues > * > > igt@kms_vblank@pipe-b-ts-continuation-suspend: > > o shard-kbl: NOTRUN -> DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-kbl7/igt@kms_vblank@pipe-b-ts-continuation-suspend.html> > ([i915#180]) > * > > igt@kms_vblank@pipe-d-wait-forked-busy: > > o shard-hsw: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-hsw2/igt@kms_vblank@pipe-d-wait-forked-busy.html> > ([fdo#109271] / [i915#533]) +6 similar issues > * > > igt@kms_vrr@flip-basic: > > o shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-iclb3/igt@kms_vrr@flip-basic.html> > ([fdo#109502]) > * > > igt@kms_writeback@writeback-check-output: > > o shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-tglb3/igt@kms_writeback@writeback-check-output.html> > ([i915#2437]) > * > > igt@kms_writeback@writeback-invalid-parameters: > > o shard-apl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-apl4/igt@kms_writeback@writeback-invalid-parameters.html> > ([fdo#109271] / [i915#2437]) > * > > igt@kms_writeback@writeback-pixel-formats: > > o shard-kbl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-kbl2/igt@kms_writeback@writeback-pixel-formats.html> > ([fdo#109271] / [i915#2437]) +1 similar issue > * > > igt@nouveau_crc@pipe-a-source-rg: > > o shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-iclb6/igt@nouveau_crc@pipe-a-source-rg.html> > ([i915#2530]) +3 similar issues > * > > igt@nouveau_crc@pipe-c-source-outp-inactive: > > o shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-tglb1/igt@nouveau_crc@pipe-c-source-outp-inactive.html> > ([i915#2530]) > * > > igt@perf@polling-parameterized: > > o shard-glk: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9725/shard-glk2/igt@perf@polling-parameterized.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-glk4/igt@perf@polling-parameterized.html> > ([i915#1542]) > * > > igt@perf_pmu@event-wait@rcs0: > > o shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-tglb1/igt@perf_pmu@event-wait@rcs0.html> > ([fdo#112283]) > * > > igt@prime_nv_api@i915_nv_reimport_twice_check_flink_name: > > o shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-iclb7/igt@prime_nv_api@i915_nv_reimport_twice_check_flink_name.html> > ([fdo#109291]) +2 similar issues > * > > igt@prime_nv_test@i915_import_pread_pwrite: > > o shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-tglb8/igt@prime_nv_test@i915_import_pread_pwrite.html> > ([fdo#109291]) +3 similar issues > > > Possible fixes > > * > > igt@gem_ctx_exec@basic-close-race: > > o shard-iclb: INCOMPLETE > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9725/shard-iclb4/igt@gem_ctx_exec@basic-close-race.html> > ([i915#1895]) -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-iclb4/igt@gem_ctx_exec@basic-close-race.html> > * > > igt@gem_ctx_isolation@preservation-s3@rcs0: > > o shard-glk: INCOMPLETE > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9725/shard-glk7/igt@gem_ctx_isolation@preservation-s3@rcs0.html> > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-glk6/igt@gem_ctx_isolation@preservation-s3@rcs0.html> > * > > {igt@gem_ctx_persistence@many-contexts}: > > o shard-iclb: INCOMPLETE > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9725/shard-iclb6/igt@gem_ctx_persistence@many-contexts.html> > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-iclb2/igt@gem_ctx_persistence@many-contexts.html> > * > > igt@gem_exec_fair@basic-none-share@rcs0: > > o shard-iclb: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9725/shard-iclb7/igt@gem_exec_fair@basic-none-share@rcs0.html> > ([i915#2842]) -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-iclb8/igt@gem_exec_fair@basic-none-share@rcs0.html> > +1 similar issue > * > > igt@gem_exec_fair@basic-none@vcs0: > > o shard-kbl: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9725/shard-kbl2/igt@gem_exec_fair@basic-none@vcs0.html> > ([i915#2842]) -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-kbl1/igt@gem_exec_fair@basic-none@vcs0.html> > +1 similar issue > * > > igt@gem_exec_fair@basic-none@vecs0: > > o shard-apl: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9725/shard-apl7/igt@gem_exec_fair@basic-none@vecs0.html> > ([i915#2842]) -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-apl2/igt@gem_exec_fair@basic-none@vecs0.html> > * > > igt@gem_exec_fair@basic-throttle@rcs0: > > o shard-glk: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9725/shard-glk2/igt@gem_exec_fair@basic-throttle@rcs0.html> > ([i915#2842]) -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-glk2/igt@gem_exec_fair@basic-throttle@rcs0.html> > * > > igt@gem_exec_schedule@u-fairslice@rcs0: > > o shard-kbl: [DMESG- > _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [igt-dev] ✗ Fi.CI.IGT: failure for kms_rotation_crc fix and optimization 2021-02-04 8:01 ` Juha-Pekka Heikkila @ 2021-02-04 8:16 ` Vudum, Lakshminarayana 0 siblings, 0 replies; 10+ messages in thread From: Vudum, Lakshminarayana @ 2021-02-04 8:16 UTC (permalink / raw) To: juhapekka.heikkila@gmail.com, igt-dev@lists.freedesktop.org Re-reported. -----Original Message----- From: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com> Sent: Thursday, February 4, 2021 12:01 AM To: igt-dev@lists.freedesktop.org; Vudum, Lakshminarayana <lakshminarayana.vudum@intel.com> Subject: Re: ✗ Fi.CI.IGT: failure for kms_rotation_crc fix and optimization Hi Lakshmi, I'm again patching rotation crc test and get unrelated failure with kms_pipe_crc_basic /Juha-Pekka On 3.2.2021 23.58, Patchwork wrote: > *Patch Details* > *Series:* kms_rotation_crc fix and optimization > *URL:* https://patchwork.freedesktop.org/series/86655/ > *State:* failure > *Details:* https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/index.html > > > CI Bug Log - changes from CI_DRM_9725_full -> IGTPW_5472_full > > > Summary > > *FAILURE* > > Serious unknown changes coming with IGTPW_5472_full absolutely need to > be verified manually. > > If you think the reported changes have nothing to do with the changes > introduced in IGTPW_5472_full, please notify your bug team 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_5472/index.html > > > Possible new issues > > Here are the unknown changes that may have been introduced in > IGTPW_5472_full: > > > IGT changes > > > Possible regressions > > * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a: > o shard-kbl: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9725/shard-kbl2/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html> > -> INCOMPLETE > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-kbl6/igt@km > s_pipe_crc_basic@suspend-read-crc-pipe-a.html> > > > Suppressed > > The following results come from untrusted machines, tests, or statuses. > They do not affect the overall result. > > * > > {igt@sysfs_clients@recycle-many}: > > o > > shard-tglb: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9725/shard-tglb2/igt@sysfs_clients@recycle-many.html> > -> FAIL > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-tglb5/igt@s > ysfs_clients@recycle-many.html> > > o > > shard-snb: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9725/shard-snb5/igt@sysfs_clients@recycle-many.html> > -> FAIL > > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-snb4/igt@sy > sfs_clients@recycle-many.html> > > > Known issues > > Here are the changes found in IGTPW_5472_full that come from known issues: > > > IGT changes > > > Issues hit > > * > > igt@gem_ctx_param@set-priority-not-supported: > > o shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-iclb1/igt@gem_ctx_param@set-priority-not-supported.html> > ([fdo#109314]) > * > > igt@gem_ctx_persistence@clone: > > o shard-snb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-snb5/igt@gem_ctx_persistence@clone.html> > ([fdo#109271] / [i915#1099]) > * > > igt@gem_ctx_persistence@legacy-engines-cleanup: > > o shard-hsw: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-hsw7/igt@gem_ctx_persistence@legacy-engines-cleanup.html> > ([fdo#109271] / [i915#1099]) +1 similar issue > * > > igt@gem_exec_fair@basic-none-share@rcs0: > > o shard-apl: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9725/shard-apl3/igt@gem_exec_fair@basic-none-share@rcs0.html> > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-apl2/igt@gem_exec_fair@basic-none-share@rcs0.html> > ([fdo#109271]) > * > > igt@gem_exec_fair@basic-none-solo@rcs0: > > o shard-kbl: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-kbl1/igt@gem_exec_fair@basic-none-solo@rcs0.html> > ([i915#2842]) > * > > igt@gem_exec_fair@basic-pace-share@rcs0: > > o shard-glk: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9725/shard-glk3/igt@gem_exec_fair@basic-pace-share@rcs0.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-glk4/igt@gem_exec_fair@basic-pace-share@rcs0.html> > ([i915#2842]) +1 similar issue > * > > igt@gem_exec_fair@basic-throttle@rcs0: > > o shard-iclb: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9725/shard-iclb5/igt@gem_exec_fair@basic-throttle@rcs0.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-iclb1/igt@gem_exec_fair@basic-throttle@rcs0.html> > ([i915#2849]) > * > > igt@gem_exec_params@no-vebox: > > o shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-tglb1/igt@gem_exec_params@no-vebox.html> > ([fdo#109283]) > * > > igt@gem_exec_whisper@basic-fds-forked-all: > > o shard-glk: NOTRUN -> DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-glk4/igt@gem_exec_whisper@basic-fds-forked-all.html> > ([i915#118] / [i915#95]) > * > > igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled: > > o shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-iclb6/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled.html> > ([i915#768]) +3 similar issues > * > > igt@gem_userptr_blits@process-exit-mmap-busy@uc: > > o shard-kbl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-kbl2/igt@gem_userptr_blits@process-exit-mmap-busy@uc.html> > ([fdo#109271] / [i915#1699]) +3 similar issues > * > > igt@gem_userptr_blits@vma-merge: > > o > > shard-apl: NOTRUN -> INCOMPLETE > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-apl2/igt@gem_userptr_blits@vma-merge.html> > ([i915#2502] / [i915#2667]) > > o > > shard-glk: NOTRUN -> INCOMPLETE > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-glk7/igt@gem_userptr_blits@vma-merge.html> > ([i915#2502] / [i915#2667]) > > * > > igt@gem_vm_create@destroy-race: > > o shard-tglb: NOTRUN -> TIMEOUT > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-tglb5/igt@gem_vm_create@destroy-race.html> > ([i915#2795]) > * > > igt@gen3_render_mixed_blits: > > o shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-tglb2/igt@gen3_render_mixed_blits.html> > ([fdo#109289]) +1 similar issue > * > > igt@gen9_exec_parse@allowed-all: > > o shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-iclb7/igt@gen9_exec_parse@allowed-all.html> > ([fdo#112306]) +2 similar issues > * > > igt@gen9_exec_parse@bb-start-param: > > o shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-tglb7/igt@gen9_exec_parse@bb-start-param.html> > ([fdo#112306]) +3 similar issues > * > > igt@gen9_exec_parse@shadow-peek: > > o shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-tglb8/igt@gen9_exec_parse@shadow-peek.html> > ([i915#2856]) > * > > igt@i915_pm_dc@dc6-dpms: > > o shard-tglb: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-tglb2/igt@i915_pm_dc@dc6-dpms.html> > ([i915#454]) > * > > igt@i915_pm_rc6_residency@rc6-fence: > > o shard-hsw: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9725/shard-hsw1/igt@i915_pm_rc6_residency@rc6-fence.html> > -> WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-hsw6/igt@i915_pm_rc6_residency@rc6-fence.html> > ([i915#1519]) > * > > igt@i915_pm_rpm@dpms-non-lpsp: > > o shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-iclb7/igt@i915_pm_rpm@dpms-non-lpsp.html> > ([fdo#110892]) > * > > igt@i915_pm_rpm@modeset-non-lpsp-stress: > > o shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-tglb2/igt@i915_pm_rpm@modeset-non-lpsp-stress.html> > ([fdo#111644] / [i915#1397] / [i915#2411]) > * > > igt@i915_query@query-topology-unsupported: > > o shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-tglb8/igt@i915_query@query-topology-unsupported.html> > ([fdo#109302]) > * > > igt@kms_atomic@plane-primary-overlay-mutable-zpos: > > o shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-tglb1/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html> > ([i915#404]) > * > > igt@kms_big_fb@linear-64bpp-rotate-90: > > o shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-iclb8/igt@kms_big_fb@linear-64bpp-rotate-90.html> > ([fdo#110725] / [fdo#111614]) > * > > igt@kms_big_fb@x-tiled-16bpp-rotate-90: > > o shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-tglb8/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html> > ([fdo#111614]) > * > > igt@kms_big_fb@yf-tiled-8bpp-rotate-180: > > o shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-iclb6/igt@kms_big_fb@yf-tiled-8bpp-rotate-180.html> > ([fdo#110723]) > * > > igt@kms_big_joiner@basic: > > o shard-kbl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-kbl7/igt@kms_big_joiner@basic.html> > ([fdo#109271] / [i915#2705]) > * > > igt@kms_chamelium@dp-edid-change-during-suspend: > > o shard-apl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-apl2/igt@kms_chamelium@dp-edid-change-during-suspend.html> > ([fdo#109271] / [fdo#111827]) +11 similar issues > * > > igt@kms_chamelium@dp-hpd-storm: > > o shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-iclb3/igt@kms_chamelium@dp-hpd-storm.html> > ([fdo#109284] / [fdo#111827]) +7 similar issues > * > > igt@kms_chamelium@dp-hpd-with-enabled-mode: > > o shard-glk: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-glk7/igt@kms_chamelium@dp-hpd-with-enabled-mode.html> > ([fdo#109271] / [fdo#111827]) +4 similar issues > * > > igt@kms_chamelium@vga-hpd-for-each-pipe: > > o shard-kbl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-kbl1/igt@kms_chamelium@vga-hpd-for-each-pipe.html> > ([fdo#109271] / [fdo#111827]) +21 similar issues > * > > igt@kms_color@pipe-c-ctm-0-25: > > o shard-iclb: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-iclb5/igt@kms_color@pipe-c-ctm-0-25.html> > ([i915#1149] / [i915#315]) > * > > igt@kms_color@pipe-c-legacy-gamma-reset: > > o > > shard-kbl: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9725/shard-kbl7/igt@kms_color@pipe-c-legacy-gamma-reset.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-kbl7/igt@kms_color@pipe-c-legacy-gamma-reset.html> > ([i915#2964]) > > o > > shard-apl: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9725/shard-apl3/igt@kms_color@pipe-c-legacy-gamma-reset.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-apl2/igt@kms_color@pipe-c-legacy-gamma-reset.html> > ([i915#2964]) > > o > > shard-glk: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9725/shard-glk8/igt@kms_color@pipe-c-legacy-gamma-reset.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-glk4/igt@kms_color@pipe-c-legacy-gamma-reset.html> > ([i915#2964]) > > o > > shard-hsw: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9725/shard-hsw6/igt@kms_color@pipe-c-legacy-gamma-reset.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-hsw4/igt@kms_color@pipe-c-legacy-gamma-reset.html> > ([i915#2964]) > > * > > igt@kms_color@pipe-d-ctm-0-25: > > o shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-iclb8/igt@kms_color@pipe-d-ctm-0-25.html> > ([fdo#109278] / [i915#1149]) +1 similar issue > * > > igt@kms_color_chamelium@pipe-b-ctm-green-to-red: > > o shard-hsw: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-hsw2/igt@kms_color_chamelium@pipe-b-ctm-green-to-red.html> > ([fdo#109271] / [fdo#111827]) +3 similar issues > * > > igt@kms_color_chamelium@pipe-d-ctm-0-5: > > o shard-snb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-snb4/igt@kms_color_chamelium@pipe-d-ctm-0-5.html> > ([fdo#109271] / [fdo#111827]) +1 similar issue > * > > igt@kms_color_chamelium@pipe-d-ctm-limited-range: > > o shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-iclb4/igt@kms_color_chamelium@pipe-d-ctm-limited-range.html> > ([fdo#109278] / [fdo#109284] / [fdo#111827]) +1 similar issue > * > > igt@kms_color_chamelium@pipe-d-ctm-red-to-blue: > > o shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-tglb7/igt@kms_color_chamelium@pipe-d-ctm-red-to-blue.html> > ([fdo#109284] / [fdo#111827]) +9 similar issues > * > > igt@kms_content_protection@atomic-dpms: > > o shard-kbl: NOTRUN -> TIMEOUT > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-kbl4/igt@kms_content_protection@atomic-dpms.html> > ([i915#1319]) +1 similar issue > * > > igt@kms_cursor_crc@pipe-a-cursor-512x512-sliding: > > o shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-iclb7/igt@kms_cursor_crc@pipe-a-cursor-512x512-sliding.html> > ([fdo#109278] / [fdo#109279]) +1 similar issue > * > > igt@kms_cursor_crc@pipe-c-cursor-512x170-onscreen: > > o shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-tglb2/igt@kms_cursor_crc@pipe-c-cursor-512x170-onscreen.html> > ([fdo#109279]) +2 similar issues > * > > igt@kms_cursor_edge_walk@pipe-d-128x128-top-edge: > > o shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-iclb3/igt@kms_cursor_edge_walk@pipe-d-128x128-top-edge.html> > ([fdo#109278]) +21 similar issues > * > > igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic: > > o shard-snb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-snb2/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html> > ([fdo#109271]) +49 similar issues > * > > igt@kms_cursor_legacy@cursora-vs-flipb-varying-size: > > o shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-iclb7/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html> > ([fdo#109274] / [fdo#109278]) +4 similar issues > * > > igt@kms_cursor_legacy@flip-vs-cursor-atomic: > > o shard-glk: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9725/shard-glk6/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-glk8/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html> > ([i915#2346]) > * > > igt@kms_cursor_legacy@pipe-d-torture-bo: > > o shard-kbl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-kbl2/igt@kms_cursor_legacy@pipe-d-torture-bo.html> > ([fdo#109271] / [i915#533]) +2 similar issues > * > > igt@kms_dp_dsc@basic-dsc-enable-dp: > > o shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-iclb1/igt@kms_dp_dsc@basic-dsc-enable-dp.html> > ([fdo#109349]) > * > > igt@kms_fbcon_fbt@fbc-suspend: > > o shard-apl: NOTRUN -> INCOMPLETE > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-apl4/igt@kms_fbcon_fbt@fbc-suspend.html> > ([i915#180]) > * > > igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a1-hdmi-a2: > > o shard-glk: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9725/shard-glk6/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a1-hdmi-a2.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-glk3/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a1-hdmi-a2.html> > ([i915#2122]) > * > > igt@kms_flip@2x-flip-vs-wf_vblank-interruptible: > > o shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-iclb8/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html> > ([fdo#109274]) +2 similar issues > * > > igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a2: > > o shard-glk: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9725/shard-glk1/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a2.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-glk8/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a2.html> > ([i915#79]) > * > > igt@kms_flip@flip-vs-suspend-interruptible@c-hdmi-a1: > > o shard-hsw: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9725/shard-hsw6/igt@kms_flip@flip-vs-suspend-interruptible@c-hdmi-a1.html> > -> INCOMPLETE > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-hsw1/igt@kms_flip@flip-vs-suspend-interruptible@c-hdmi-a1.html> > ([i915#2295]) > * > > igt@kms_flip@flip-vs-suspend@c-dp1: > > o shard-kbl: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9725/shard-kbl6/igt@kms_flip@flip-vs-suspend@c-dp1.html> > -> DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-kbl6/igt@kms_flip@flip-vs-suspend@c-dp1.html> > ([i915#180]) +1 similar issue > * > > igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs: > > o shard-kbl: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-kbl1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs.html> > ([i915#2641]) +1 similar issue > * > > igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs: > > o shard-kbl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-kbl7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs.html> > ([fdo#109271] / [i915#2672]) > * > > igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile: > > o > > shard-apl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-apl7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile.html> > ([fdo#109271] / [i915#2642]) > > o > > shard-glk: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-glk1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile.html> > ([fdo#109271] / [i915#2642]) > > o > > shard-kbl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-kbl7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile.html> > ([fdo#109271] / [i915#2642]) > > * > > igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack: > > o shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-tglb3/igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack.html> > ([fdo#111825]) +38 similar issues > * > > igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-msflip-blt: > > o shard-hsw: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-hsw7/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-msflip-blt.html> > ([fdo#109271]) +57 similar issues > * > > igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-pgflip-blt: > > o shard-glk: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-glk8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-pgflip-blt.html> > ([fdo#109271]) +33 similar issues > * > > igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt: > > o shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-iclb4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html> > ([fdo#109280]) +27 similar issues > * > > igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-pwrite: > > o shard-apl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-apl3/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-pwrite.html> > ([fdo#109271]) +134 similar issues > * > > igt@kms_multipipe_modeset@basic-max-pipe-crc-check: > > o > > shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-tglb1/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html> > ([i915#1839]) +1 similar issue > > o > > shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-iclb2/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html> > ([i915#1839]) > > * > > igt@kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c: > > o shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-iclb8/igt@kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c.html> > ([fdo#109289]) +2 similar issues > * > > igt@kms_plane_alpha_blend@pipe-a-alpha-7efc: > > o > > shard-apl: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-apl7/igt@kms_plane_alpha_blend@pipe-a-alpha-7efc.html> > ([fdo#108145] / [i915#265]) +1 similar issue > > o > > shard-kbl: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-kbl7/igt@kms_plane_alpha_blend@pipe-a-alpha-7efc.html> > ([fdo#108145] / [i915#265]) +1 similar issue > > * > > igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb: > > o > > shard-glk: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-glk9/igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb.html> > ([i915#265]) > > o > > shard-apl: NOTRUN -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-apl7/igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb.html> > ([i915#265]) > > * > > igt@kms_plane_multiple@atomic-pipe-d-tiling-yf: > > o shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-tglb3/igt@kms_plane_multiple@atomic-pipe-d-tiling-yf.html> > ([fdo#112054]) > * > > igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-1: > > o > > shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-tglb1/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-1.html> > ([i915#2920]) +2 similar issues > > o > > shard-kbl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-kbl1/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-1.html> > ([fdo#109271] / [i915#658]) +5 similar issues > > * > > igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-2: > > o shard-glk: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-glk2/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-2.html> > ([fdo#109271] / [i915#658]) +1 similar issue > * > > igt@kms_psr2_sf@plane-move-sf-dmg-area-2: > > o shard-apl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-apl8/igt@kms_psr2_sf@plane-move-sf-dmg-area-2.html> > ([fdo#109271] / [i915#658]) +4 similar issues > * > > igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-3: > > o shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-iclb8/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-3.html> > ([i915#658]) +1 similar issue > * > > igt@kms_psr@cursor_plane_onoff: > > o shard-kbl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-kbl2/igt@kms_psr@cursor_plane_onoff.html> > ([fdo#109271]) +189 similar issues > * > > igt@kms_psr@primary_page_flip: > > o shard-hsw: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-hsw6/igt@kms_psr@primary_page_flip.html> > ([fdo#109271] / [i915#1072]) +1 similar issue > * > > igt@kms_psr@psr2_cursor_render: > > o shard-iclb: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9725/shard-iclb2/igt@kms_psr@psr2_cursor_render.html> > -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-iclb8/igt@kms_psr@psr2_cursor_render.html> > ([fdo#109441]) +1 similar issue > * > > igt@kms_psr@psr2_sprite_plane_move: > > o shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-iclb1/igt@kms_psr@psr2_sprite_plane_move.html> > ([fdo#109441]) +2 similar issues > * > > igt@kms_rotation_crc@multiplane-rotation: > > o shard-glk: NOTRUN -> TIMEOUT > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-glk8/igt@kms_rotation_crc@multiplane-rotation.html> > ([i915#1280]) > * > > igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: > > o shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-tglb3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html> > ([fdo#111615]) +4 similar issues > * > > igt@kms_vblank@pipe-b-ts-continuation-suspend: > > o shard-kbl: NOTRUN -> DMESG-WARN > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-kbl7/igt@kms_vblank@pipe-b-ts-continuation-suspend.html> > ([i915#180]) > * > > igt@kms_vblank@pipe-d-wait-forked-busy: > > o shard-hsw: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-hsw2/igt@kms_vblank@pipe-d-wait-forked-busy.html> > ([fdo#109271] / [i915#533]) +6 similar issues > * > > igt@kms_vrr@flip-basic: > > o shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-iclb3/igt@kms_vrr@flip-basic.html> > ([fdo#109502]) > * > > igt@kms_writeback@writeback-check-output: > > o shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-tglb3/igt@kms_writeback@writeback-check-output.html> > ([i915#2437]) > * > > igt@kms_writeback@writeback-invalid-parameters: > > o shard-apl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-apl4/igt@kms_writeback@writeback-invalid-parameters.html> > ([fdo#109271] / [i915#2437]) > * > > igt@kms_writeback@writeback-pixel-formats: > > o shard-kbl: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-kbl2/igt@kms_writeback@writeback-pixel-formats.html> > ([fdo#109271] / [i915#2437]) +1 similar issue > * > > igt@nouveau_crc@pipe-a-source-rg: > > o shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-iclb6/igt@nouveau_crc@pipe-a-source-rg.html> > ([i915#2530]) +3 similar issues > * > > igt@nouveau_crc@pipe-c-source-outp-inactive: > > o shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-tglb1/igt@nouveau_crc@pipe-c-source-outp-inactive.html> > ([i915#2530]) > * > > igt@perf@polling-parameterized: > > o shard-glk: PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9725/shard-glk2/igt@perf@polling-parameterized.html> > -> FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-glk4/igt@perf@polling-parameterized.html> > ([i915#1542]) > * > > igt@perf_pmu@event-wait@rcs0: > > o shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-tglb1/igt@perf_pmu@event-wait@rcs0.html> > ([fdo#112283]) > * > > igt@prime_nv_api@i915_nv_reimport_twice_check_flink_name: > > o shard-iclb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-iclb7/igt@prime_nv_api@i915_nv_reimport_twice_check_flink_name.html> > ([fdo#109291]) +2 similar issues > * > > igt@prime_nv_test@i915_import_pread_pwrite: > > o shard-tglb: NOTRUN -> SKIP > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-tglb8/igt@prime_nv_test@i915_import_pread_pwrite.html> > ([fdo#109291]) +3 similar issues > > > Possible fixes > > * > > igt@gem_ctx_exec@basic-close-race: > > o shard-iclb: INCOMPLETE > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9725/shard-iclb4/igt@gem_ctx_exec@basic-close-race.html> > ([i915#1895]) -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-iclb4/igt@gem_ctx_exec@basic-close-race.html> > * > > igt@gem_ctx_isolation@preservation-s3@rcs0: > > o shard-glk: INCOMPLETE > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9725/shard-glk7/igt@gem_ctx_isolation@preservation-s3@rcs0.html> > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-glk6/igt@gem_ctx_isolation@preservation-s3@rcs0.html> > * > > {igt@gem_ctx_persistence@many-contexts}: > > o shard-iclb: INCOMPLETE > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9725/shard-iclb6/igt@gem_ctx_persistence@many-contexts.html> > -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-iclb2/igt@gem_ctx_persistence@many-contexts.html> > * > > igt@gem_exec_fair@basic-none-share@rcs0: > > o shard-iclb: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9725/shard-iclb7/igt@gem_exec_fair@basic-none-share@rcs0.html> > ([i915#2842]) -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-iclb8/igt@gem_exec_fair@basic-none-share@rcs0.html> > +1 similar issue > * > > igt@gem_exec_fair@basic-none@vcs0: > > o shard-kbl: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9725/shard-kbl2/igt@gem_exec_fair@basic-none@vcs0.html> > ([i915#2842]) -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-kbl1/igt@gem_exec_fair@basic-none@vcs0.html> > +1 similar issue > * > > igt@gem_exec_fair@basic-none@vecs0: > > o shard-apl: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9725/shard-apl7/igt@gem_exec_fair@basic-none@vecs0.html> > ([i915#2842]) -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-apl2/igt@gem_exec_fair@basic-none@vecs0.html> > * > > igt@gem_exec_fair@basic-throttle@rcs0: > > o shard-glk: FAIL > <https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9725/shard-glk2/igt@gem_exec_fair@basic-throttle@rcs0.html> > ([i915#2842]) -> PASS > <https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-glk2/igt@gem_exec_fair@basic-throttle@rcs0.html> > * > > igt@gem_exec_schedule@u-fairslice@rcs0: > > o shard-kbl: [DMESG- > _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 10+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for kms_rotation_crc fix and optimization 2021-02-03 16:25 [igt-dev] [PATCH i-g-t 0/2] kms_rotation_crc fix and optimization Juha-Pekka Heikkila ` (3 preceding siblings ...) 2021-02-03 21:58 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork @ 2021-02-04 8:13 ` Patchwork 4 siblings, 0 replies; 10+ messages in thread From: Patchwork @ 2021-02-04 8:13 UTC (permalink / raw) To: Juha-Pekka Heikkila; +Cc: igt-dev [-- Attachment #1.1: Type: text/plain, Size: 30255 bytes --] == Series Details == Series: kms_rotation_crc fix and optimization URL : https://patchwork.freedesktop.org/series/86655/ State : success == Summary == CI Bug Log - changes from CI_DRM_9725_full -> IGTPW_5472_full ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/index.html Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_5472_full: ### IGT changes ### #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * {igt@sysfs_clients@recycle-many}: - shard-tglb: [PASS][1] -> [FAIL][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9725/shard-tglb2/igt@sysfs_clients@recycle-many.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-tglb5/igt@sysfs_clients@recycle-many.html - shard-snb: [PASS][3] -> [FAIL][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9725/shard-snb5/igt@sysfs_clients@recycle-many.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-snb4/igt@sysfs_clients@recycle-many.html Known issues ------------ Here are the changes found in IGTPW_5472_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_ctx_param@set-priority-not-supported: - shard-iclb: NOTRUN -> [SKIP][5] ([fdo#109314]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-iclb1/igt@gem_ctx_param@set-priority-not-supported.html * igt@gem_ctx_persistence@clone: - shard-snb: NOTRUN -> [SKIP][6] ([fdo#109271] / [i915#1099]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-snb5/igt@gem_ctx_persistence@clone.html * igt@gem_ctx_persistence@legacy-engines-cleanup: - shard-hsw: NOTRUN -> [SKIP][7] ([fdo#109271] / [i915#1099]) +1 similar issue [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-hsw7/igt@gem_ctx_persistence@legacy-engines-cleanup.html * igt@gem_exec_fair@basic-none-share@rcs0: - shard-apl: [PASS][8] -> [SKIP][9] ([fdo#109271]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9725/shard-apl3/igt@gem_exec_fair@basic-none-share@rcs0.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-apl2/igt@gem_exec_fair@basic-none-share@rcs0.html * igt@gem_exec_fair@basic-none-solo@rcs0: - shard-kbl: NOTRUN -> [FAIL][10] ([i915#2842]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-kbl1/igt@gem_exec_fair@basic-none-solo@rcs0.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-glk: [PASS][11] -> [FAIL][12] ([i915#2842]) +1 similar issue [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9725/shard-glk3/igt@gem_exec_fair@basic-pace-share@rcs0.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-glk4/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_fair@basic-throttle@rcs0: - shard-iclb: [PASS][13] -> [FAIL][14] ([i915#2849]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9725/shard-iclb5/igt@gem_exec_fair@basic-throttle@rcs0.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-iclb1/igt@gem_exec_fair@basic-throttle@rcs0.html * igt@gem_exec_params@no-vebox: - shard-tglb: NOTRUN -> [SKIP][15] ([fdo#109283]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-tglb1/igt@gem_exec_params@no-vebox.html * igt@gem_exec_whisper@basic-fds-forked-all: - shard-glk: NOTRUN -> [DMESG-WARN][16] ([i915#118] / [i915#95]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-glk4/igt@gem_exec_whisper@basic-fds-forked-all.html * igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled: - shard-iclb: NOTRUN -> [SKIP][17] ([i915#768]) +3 similar issues [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-iclb6/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled.html * igt@gem_userptr_blits@process-exit-mmap-busy@uc: - shard-kbl: NOTRUN -> [SKIP][18] ([fdo#109271] / [i915#1699]) +3 similar issues [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-kbl2/igt@gem_userptr_blits@process-exit-mmap-busy@uc.html * igt@gem_userptr_blits@vma-merge: - shard-apl: NOTRUN -> [INCOMPLETE][19] ([i915#2502] / [i915#2667]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-apl2/igt@gem_userptr_blits@vma-merge.html - shard-glk: NOTRUN -> [INCOMPLETE][20] ([i915#2502] / [i915#2667]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-glk7/igt@gem_userptr_blits@vma-merge.html * igt@gem_vm_create@destroy-race: - shard-tglb: NOTRUN -> [TIMEOUT][21] ([i915#2795]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-tglb5/igt@gem_vm_create@destroy-race.html * igt@gen3_render_mixed_blits: - shard-tglb: NOTRUN -> [SKIP][22] ([fdo#109289]) +1 similar issue [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-tglb2/igt@gen3_render_mixed_blits.html * igt@gen9_exec_parse@allowed-all: - shard-iclb: NOTRUN -> [SKIP][23] ([fdo#112306]) +2 similar issues [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-iclb7/igt@gen9_exec_parse@allowed-all.html * igt@gen9_exec_parse@bb-start-param: - shard-tglb: NOTRUN -> [SKIP][24] ([fdo#112306]) +3 similar issues [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-tglb7/igt@gen9_exec_parse@bb-start-param.html * igt@gen9_exec_parse@shadow-peek: - shard-tglb: NOTRUN -> [SKIP][25] ([i915#2856]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-tglb8/igt@gen9_exec_parse@shadow-peek.html * igt@i915_pm_dc@dc6-dpms: - shard-tglb: NOTRUN -> [FAIL][26] ([i915#454]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-tglb2/igt@i915_pm_dc@dc6-dpms.html * igt@i915_pm_rc6_residency@rc6-fence: - shard-hsw: [PASS][27] -> [WARN][28] ([i915#1519]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9725/shard-hsw1/igt@i915_pm_rc6_residency@rc6-fence.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-hsw6/igt@i915_pm_rc6_residency@rc6-fence.html * igt@i915_pm_rpm@dpms-non-lpsp: - shard-iclb: NOTRUN -> [SKIP][29] ([fdo#110892]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-iclb7/igt@i915_pm_rpm@dpms-non-lpsp.html * igt@i915_pm_rpm@modeset-non-lpsp-stress: - shard-tglb: NOTRUN -> [SKIP][30] ([fdo#111644] / [i915#1397] / [i915#2411]) [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-tglb2/igt@i915_pm_rpm@modeset-non-lpsp-stress.html * igt@i915_query@query-topology-unsupported: - shard-tglb: NOTRUN -> [SKIP][31] ([fdo#109302]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-tglb8/igt@i915_query@query-topology-unsupported.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-tglb: NOTRUN -> [SKIP][32] ([i915#404]) [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-tglb1/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_big_fb@linear-64bpp-rotate-90: - shard-iclb: NOTRUN -> [SKIP][33] ([fdo#110725] / [fdo#111614]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-iclb8/igt@kms_big_fb@linear-64bpp-rotate-90.html * igt@kms_big_fb@x-tiled-16bpp-rotate-90: - shard-tglb: NOTRUN -> [SKIP][34] ([fdo#111614]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-tglb8/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-8bpp-rotate-180: - shard-iclb: NOTRUN -> [SKIP][35] ([fdo#110723]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-iclb6/igt@kms_big_fb@yf-tiled-8bpp-rotate-180.html * igt@kms_big_joiner@basic: - shard-kbl: NOTRUN -> [SKIP][36] ([fdo#109271] / [i915#2705]) [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-kbl7/igt@kms_big_joiner@basic.html * igt@kms_chamelium@dp-edid-change-during-suspend: - shard-apl: NOTRUN -> [SKIP][37] ([fdo#109271] / [fdo#111827]) +11 similar issues [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-apl2/igt@kms_chamelium@dp-edid-change-during-suspend.html * igt@kms_chamelium@dp-hpd-storm: - shard-iclb: NOTRUN -> [SKIP][38] ([fdo#109284] / [fdo#111827]) +7 similar issues [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-iclb3/igt@kms_chamelium@dp-hpd-storm.html * igt@kms_chamelium@dp-hpd-with-enabled-mode: - shard-glk: NOTRUN -> [SKIP][39] ([fdo#109271] / [fdo#111827]) +4 similar issues [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-glk7/igt@kms_chamelium@dp-hpd-with-enabled-mode.html * igt@kms_chamelium@vga-hpd-for-each-pipe: - shard-kbl: NOTRUN -> [SKIP][40] ([fdo#109271] / [fdo#111827]) +21 similar issues [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-kbl1/igt@kms_chamelium@vga-hpd-for-each-pipe.html * igt@kms_color@pipe-c-ctm-0-25: - shard-iclb: NOTRUN -> [FAIL][41] ([i915#1149] / [i915#315]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-iclb5/igt@kms_color@pipe-c-ctm-0-25.html * igt@kms_color@pipe-c-legacy-gamma-reset: - shard-kbl: [PASS][42] -> [FAIL][43] ([i915#2964]) [42]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9725/shard-kbl7/igt@kms_color@pipe-c-legacy-gamma-reset.html [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-kbl7/igt@kms_color@pipe-c-legacy-gamma-reset.html - shard-apl: [PASS][44] -> [FAIL][45] ([i915#2964]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9725/shard-apl3/igt@kms_color@pipe-c-legacy-gamma-reset.html [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-apl2/igt@kms_color@pipe-c-legacy-gamma-reset.html - shard-glk: [PASS][46] -> [FAIL][47] ([i915#2964]) [46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9725/shard-glk8/igt@kms_color@pipe-c-legacy-gamma-reset.html [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-glk4/igt@kms_color@pipe-c-legacy-gamma-reset.html - shard-hsw: [PASS][48] -> [FAIL][49] ([i915#2964]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9725/shard-hsw6/igt@kms_color@pipe-c-legacy-gamma-reset.html [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-hsw4/igt@kms_color@pipe-c-legacy-gamma-reset.html * igt@kms_color@pipe-d-ctm-0-25: - shard-iclb: NOTRUN -> [SKIP][50] ([fdo#109278] / [i915#1149]) +1 similar issue [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-iclb8/igt@kms_color@pipe-d-ctm-0-25.html * igt@kms_color_chamelium@pipe-b-ctm-green-to-red: - shard-hsw: NOTRUN -> [SKIP][51] ([fdo#109271] / [fdo#111827]) +3 similar issues [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-hsw2/igt@kms_color_chamelium@pipe-b-ctm-green-to-red.html * igt@kms_color_chamelium@pipe-d-ctm-0-5: - shard-snb: NOTRUN -> [SKIP][52] ([fdo#109271] / [fdo#111827]) +1 similar issue [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-snb4/igt@kms_color_chamelium@pipe-d-ctm-0-5.html * igt@kms_color_chamelium@pipe-d-ctm-limited-range: - shard-iclb: NOTRUN -> [SKIP][53] ([fdo#109278] / [fdo#109284] / [fdo#111827]) +1 similar issue [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-iclb4/igt@kms_color_chamelium@pipe-d-ctm-limited-range.html * igt@kms_color_chamelium@pipe-d-ctm-red-to-blue: - shard-tglb: NOTRUN -> [SKIP][54] ([fdo#109284] / [fdo#111827]) +9 similar issues [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-tglb7/igt@kms_color_chamelium@pipe-d-ctm-red-to-blue.html * igt@kms_content_protection@atomic-dpms: - shard-kbl: NOTRUN -> [TIMEOUT][55] ([i915#1319]) +1 similar issue [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-kbl4/igt@kms_content_protection@atomic-dpms.html * igt@kms_cursor_crc@pipe-a-cursor-512x512-sliding: - shard-iclb: NOTRUN -> [SKIP][56] ([fdo#109278] / [fdo#109279]) +1 similar issue [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-iclb7/igt@kms_cursor_crc@pipe-a-cursor-512x512-sliding.html * igt@kms_cursor_crc@pipe-c-cursor-512x170-onscreen: - shard-tglb: NOTRUN -> [SKIP][57] ([fdo#109279]) +2 similar issues [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-tglb2/igt@kms_cursor_crc@pipe-c-cursor-512x170-onscreen.html * igt@kms_cursor_edge_walk@pipe-d-128x128-top-edge: - shard-iclb: NOTRUN -> [SKIP][58] ([fdo#109278]) +21 similar issues [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-iclb3/igt@kms_cursor_edge_walk@pipe-d-128x128-top-edge.html * igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic: - shard-snb: NOTRUN -> [SKIP][59] ([fdo#109271]) +49 similar issues [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-snb2/igt@kms_cursor_legacy@2x-cursor-vs-flip-atomic.html * igt@kms_cursor_legacy@cursora-vs-flipb-varying-size: - shard-iclb: NOTRUN -> [SKIP][60] ([fdo#109274] / [fdo#109278]) +4 similar issues [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-iclb7/igt@kms_cursor_legacy@cursora-vs-flipb-varying-size.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic: - shard-glk: [PASS][61] -> [FAIL][62] ([i915#2346]) [61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9725/shard-glk6/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-glk8/igt@kms_cursor_legacy@flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@pipe-d-torture-bo: - shard-kbl: NOTRUN -> [SKIP][63] ([fdo#109271] / [i915#533]) +2 similar issues [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-kbl2/igt@kms_cursor_legacy@pipe-d-torture-bo.html * igt@kms_dp_dsc@basic-dsc-enable-dp: - shard-iclb: NOTRUN -> [SKIP][64] ([fdo#109349]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-iclb1/igt@kms_dp_dsc@basic-dsc-enable-dp.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-apl: NOTRUN -> [INCOMPLETE][65] ([i915#180]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-apl4/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a1-hdmi-a2: - shard-glk: [PASS][66] -> [FAIL][67] ([i915#2122]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9725/shard-glk6/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a1-hdmi-a2.html [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-glk3/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a1-hdmi-a2.html * igt@kms_flip@2x-flip-vs-wf_vblank-interruptible: - shard-iclb: NOTRUN -> [SKIP][68] ([fdo#109274]) +2 similar issues [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-iclb8/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html * igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a2: - shard-glk: [PASS][69] -> [FAIL][70] ([i915#79]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9725/shard-glk1/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a2.html [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-glk8/igt@kms_flip@flip-vs-expired-vblank@b-hdmi-a2.html * igt@kms_flip@flip-vs-suspend-interruptible@c-hdmi-a1: - shard-hsw: [PASS][71] -> [INCOMPLETE][72] ([i915#2295]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9725/shard-hsw6/igt@kms_flip@flip-vs-suspend-interruptible@c-hdmi-a1.html [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-hsw1/igt@kms_flip@flip-vs-suspend-interruptible@c-hdmi-a1.html * igt@kms_flip@flip-vs-suspend@c-dp1: - shard-kbl: [PASS][73] -> [DMESG-WARN][74] ([i915#180]) +1 similar issue [73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9725/shard-kbl6/igt@kms_flip@flip-vs-suspend@c-dp1.html [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-kbl6/igt@kms_flip@flip-vs-suspend@c-dp1.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs: - shard-kbl: NOTRUN -> [FAIL][75] ([i915#2641]) +1 similar issue [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-kbl1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs: - shard-kbl: NOTRUN -> [SKIP][76] ([fdo#109271] / [i915#2672]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-kbl7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile: - shard-apl: NOTRUN -> [SKIP][77] ([fdo#109271] / [i915#2642]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-apl7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile.html - shard-glk: NOTRUN -> [SKIP][78] ([fdo#109271] / [i915#2642]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-glk1/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile.html - shard-kbl: NOTRUN -> [SKIP][79] ([fdo#109271] / [i915#2642]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-kbl7/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack: - shard-tglb: NOTRUN -> [SKIP][80] ([fdo#111825]) +38 similar issues [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-tglb3/igt@kms_frontbuffer_tracking@fbcpsr-2p-indfb-fliptrack.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-msflip-blt: - shard-hsw: NOTRUN -> [SKIP][81] ([fdo#109271]) +57 similar issues [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-hsw7/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-pgflip-blt: - shard-glk: NOTRUN -> [SKIP][82] ([fdo#109271]) +33 similar issues [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-glk8/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt: - shard-iclb: NOTRUN -> [SKIP][83] ([fdo#109280]) +27 similar issues [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-iclb4/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-pwrite: - shard-apl: NOTRUN -> [SKIP][84] ([fdo#109271]) +134 similar issues [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-apl3/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-cur-indfb-draw-pwrite.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-tglb: NOTRUN -> [SKIP][85] ([i915#1839]) +1 similar issue [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-tglb1/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html - shard-iclb: NOTRUN -> [SKIP][86] ([i915#1839]) [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-iclb2/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c: - shard-iclb: NOTRUN -> [SKIP][87] ([fdo#109289]) +2 similar issues [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-iclb8/igt@kms_pipe_b_c_ivb@disable-pipe-b-enable-pipe-c.html * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a: - shard-kbl: [PASS][88] -> [INCOMPLETE][89] ([i915#794]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9725/shard-kbl2/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-kbl6/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html * igt@kms_plane_alpha_blend@pipe-a-alpha-7efc: - shard-apl: NOTRUN -> [FAIL][90] ([fdo#108145] / [i915#265]) +1 similar issue [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-apl7/igt@kms_plane_alpha_blend@pipe-a-alpha-7efc.html - shard-kbl: NOTRUN -> [FAIL][91] ([fdo#108145] / [i915#265]) +1 similar issue [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-kbl7/igt@kms_plane_alpha_blend@pipe-a-alpha-7efc.html * igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb: - shard-glk: NOTRUN -> [FAIL][92] ([i915#265]) [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-glk9/igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb.html - shard-apl: NOTRUN -> [FAIL][93] ([i915#265]) [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-apl7/igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb.html * igt@kms_plane_multiple@atomic-pipe-d-tiling-yf: - shard-tglb: NOTRUN -> [SKIP][94] ([fdo#112054]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-tglb3/igt@kms_plane_multiple@atomic-pipe-d-tiling-yf.html * igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-1: - shard-tglb: NOTRUN -> [SKIP][95] ([i915#2920]) +2 similar issues [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-tglb1/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-1.html - shard-kbl: NOTRUN -> [SKIP][96] ([fdo#109271] / [i915#658]) +5 similar issues [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-kbl1/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-1.html * igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-2: - shard-glk: NOTRUN -> [SKIP][97] ([fdo#109271] / [i915#658]) +1 similar issue [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-glk2/igt@kms_psr2_sf@overlay-primary-update-sf-dmg-area-2.html * igt@kms_psr2_sf@plane-move-sf-dmg-area-2: - shard-apl: NOTRUN -> [SKIP][98] ([fdo#109271] / [i915#658]) +4 similar issues [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-apl8/igt@kms_psr2_sf@plane-move-sf-dmg-area-2.html * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-3: - shard-iclb: NOTRUN -> [SKIP][99] ([i915#658]) +1 similar issue [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-iclb8/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-3.html * igt@kms_psr@cursor_plane_onoff: - shard-kbl: NOTRUN -> [SKIP][100] ([fdo#109271]) +189 similar issues [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-kbl2/igt@kms_psr@cursor_plane_onoff.html * igt@kms_psr@primary_page_flip: - shard-hsw: NOTRUN -> [SKIP][101] ([fdo#109271] / [i915#1072]) +1 similar issue [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-hsw6/igt@kms_psr@primary_page_flip.html * igt@kms_psr@psr2_cursor_render: - shard-iclb: [PASS][102] -> [SKIP][103] ([fdo#109441]) +1 similar issue [102]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9725/shard-iclb2/igt@kms_psr@psr2_cursor_render.html [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-iclb8/igt@kms_psr@psr2_cursor_render.html * igt@kms_psr@psr2_sprite_plane_move: - shard-iclb: NOTRUN -> [SKIP][104] ([fdo#109441]) +2 similar issues [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-iclb1/igt@kms_psr@psr2_sprite_plane_move.html * igt@kms_rotation_crc@multiplane-rotation: - shard-glk: NOTRUN -> [TIMEOUT][105] ([i915#1280]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-glk8/igt@kms_rotation_crc@multiplane-rotation.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0: - shard-tglb: NOTRUN -> [SKIP][106] ([fdo#111615]) +4 similar issues [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-tglb3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-0.html * igt@kms_vblank@pipe-b-ts-continuation-suspend: - shard-kbl: NOTRUN -> [DMESG-WARN][107] ([i915#180]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-kbl7/igt@kms_vblank@pipe-b-ts-continuation-suspend.html * igt@kms_vblank@pipe-d-wait-forked-busy: - shard-hsw: NOTRUN -> [SKIP][108] ([fdo#109271] / [i915#533]) +6 similar issues [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-hsw2/igt@kms_vblank@pipe-d-wait-forked-busy.html * igt@kms_vrr@flip-basic: - shard-iclb: NOTRUN -> [SKIP][109] ([fdo#109502]) [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-iclb3/igt@kms_vrr@flip-basic.html * igt@kms_writeback@writeback-check-output: - shard-tglb: NOTRUN -> [SKIP][110] ([i915#2437]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-tglb3/igt@kms_writeback@writeback-check-output.html * igt@kms_writeback@writeback-invalid-parameters: - shard-apl: NOTRUN -> [SKIP][111] ([fdo#109271] / [i915#2437]) [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-apl4/igt@kms_writeback@writeback-invalid-parameters.html * igt@kms_writeback@writeback-pixel-formats: - shard-kbl: NOTRUN -> [SKIP][112] ([fdo#109271] / [i915#2437]) +1 similar issue [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-kbl2/igt@kms_writeback@writeback-pixel-formats.html * igt@nouveau_crc@pipe-a-source-rg: - shard-iclb: NOTRUN -> [SKIP][113] ([i915#2530]) +3 similar issues [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-iclb6/igt@nouveau_crc@pipe-a-source-rg.html * igt@nouveau_crc@pipe-c-source-outp-inactive: - shard-tglb: NOTRUN -> [SKIP][114] ([i915#2530]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-tglb1/igt@nouveau_crc@pipe-c-source-outp-inactive.html * igt@perf@polling-parameterized: - shard-glk: [PASS][115] -> [FAIL][116] ([i915#1542]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9725/shard-glk2/igt@perf@polling-parameterized.html [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-glk4/igt@perf@polling-parameterized.html * igt@perf_pmu@event-wait@rcs0: - shard-tglb: NOTRUN -> [SKIP][117] ([fdo#112283]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-tglb1/igt@perf_pmu@event-wait@rcs0.html * igt@prime_nv_api@i915_nv_reimport_twice_check_flink_name: - shard-iclb: NOTRUN -> [SKIP][118] ([fdo#109291]) +2 similar issues [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-iclb7/igt@prime_nv_api@i915_nv_reimport_twice_check_flink_name.html * igt@prime_nv_test@i915_import_pread_pwrite: - shard-tglb: NOTRUN -> [SKIP][119] ([fdo#109291]) +3 similar issues [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-tglb8/igt@prime_nv_test@i915_import_pread_pwrite.html #### Possible fixes #### * igt@gem_ctx_exec@basic-close-race: - shard-iclb: [INCOMPLETE][120] ([i915#1895]) -> [PASS][121] [120]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9725/shard-iclb4/igt@gem_ctx_exec@basic-close-race.html [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-iclb4/igt@gem_ctx_exec@basic-close-race.html * igt@gem_ctx_isolation@preservation-s3@rcs0: - shard-glk: [INCOMPLETE][122] -> [PASS][123] [122]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9725/shard-glk7/igt@gem_ctx_isolation@preservation-s3@rcs0.html [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-glk6/igt@gem_ctx_isolation@preservation-s3@rcs0.html * {igt@gem_ctx_persistence@many-contexts}: - shard-iclb: [INCOMPLETE][124] -> [PASS][125] [124]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9725/shard-iclb6/igt@gem_ctx_persistence@many-contexts.html [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-iclb2/igt@gem_ctx_persistence@many-contexts.html * igt@gem_exec_fair@basic-none-share@rcs0: - shard-iclb: [FAIL][126] ([i915#2842]) -> [PASS][127] +1 similar issue [126]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9725/shard-iclb7/igt@gem_exec_fair@basic-none-share@rcs0.html [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-iclb8/igt@gem_exec_fair@basic-none-share@rcs0.html * igt@gem_exec_fair@basic-none@vcs0: - shard-kbl: [FAIL][128] ([i915#2842]) -> [PASS][129] +1 similar issue [128]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9725/shard-kbl2/igt@gem_exec_fair@basic-none@vcs0.html [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-kbl1/igt@gem_exec_fair@basic-none@vcs0.html * igt@gem_exec_fair@basic-none@vecs0: - shard-apl: [FAIL][130] ([i915#2842]) -> [PASS][131] [130]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9725/shard-apl7/igt@gem_exec_fair@basic-none@vecs0.html [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-apl2/igt@gem_exec_fair@basic-none@vecs0.html * igt@gem_exec_fair@basic-throttle@rcs0: - shard-glk: [FAIL][132] ([i915#2842]) -> [PASS][133] [132]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9725/shard-glk2/igt@gem_exec_fair@basic-throttle@rcs0.html [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-glk2/igt@gem_exec_fair@basic-throttle@rcs0.html * igt@gem_exec_schedule@u-fairslice@rcs0: - shard-kbl: [DMESG-WARN][134] ([i915#1610] / [i915#2803]) -> [PASS][135] [134]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_9725/shard-kbl6/igt@gem_exec_schedule@u-fairslice@rcs0.html [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/shard-kbl2/igt@gem_exec_schedule@u-fairslice@rcs0.html - shard-apl: [DMESG-W == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_5472/index.html [-- Attachment #1.2: Type: text/html, Size: 33822 bytes --] [-- Attachment #2: Type: text/plain, Size: 154 bytes --] _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2021-02-04 8:52 UTC | newest] Thread overview: 10+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2021-02-03 16:25 [igt-dev] [PATCH i-g-t 0/2] kms_rotation_crc fix and optimization Juha-Pekka Heikkila 2021-02-03 16:25 ` [igt-dev] [PATCH i-g-t 1/2] tests/kms_rotation_crc: different display modes can have different crc Juha-Pekka Heikkila 2021-02-04 8:47 ` Petri Latvala 2021-02-04 8:52 ` Karthik B S 2021-02-03 16:25 ` [igt-dev] [PATCH i-g-t 2/2] HAX remove kms_rotatation_crc from premerge blacklist Juha-Pekka Heikkila 2021-02-03 17:17 ` [igt-dev] ✓ Fi.CI.BAT: success for kms_rotation_crc fix and optimization Patchwork 2021-02-03 21:58 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork 2021-02-04 8:01 ` Juha-Pekka Heikkila 2021-02-04 8:16 ` Vudum, Lakshminarayana 2021-02-04 8:13 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox