* [PATCH i-g-t 0/3] Fix ctm-limited subtest
@ 2025-03-24 9:09 Swati Sharma
2025-03-24 9:09 ` [PATCH i-g-t 1/3] lib/igt_chamelium: Add chamelium_frame_match_or_dump_frame_pair() Swati Sharma
` (6 more replies)
0 siblings, 7 replies; 13+ messages in thread
From: Swati Sharma @ 2025-03-24 9:09 UTC (permalink / raw)
To: igt-dev; +Cc: Swati Sharma
Fix ctm-limited subtest
Swati Sharma (3):
lib/igt_chamelium: Add chamelium_frame_match_or_dump_frame_pair()
tests/chamelium/kms_chamelium_color: Fix ctm-limited-range subtest
tests/chamelium/kms_chamelium_color: Set rgb_full to 1.0
lib/igt_chamelium.c | 60 +++++++++++++++++++++++++++
lib/igt_chamelium.h | 6 +++
tests/chamelium/kms_chamelium_color.c | 56 +++++++++++++------------
3 files changed, 96 insertions(+), 26 deletions(-)
--
2.25.1
^ permalink raw reply [flat|nested] 13+ messages in thread* [PATCH i-g-t 1/3] lib/igt_chamelium: Add chamelium_frame_match_or_dump_frame_pair() 2025-03-24 9:09 [PATCH i-g-t 0/3] Fix ctm-limited subtest Swati Sharma @ 2025-03-24 9:09 ` Swati Sharma 2025-03-26 12:23 ` Borah, Chaitanya Kumar 2025-03-24 9:09 ` [PATCH i-g-t 2/3] tests/chamelium/kms_chamelium_color: Fix ctm-limited-range subtest Swati Sharma ` (5 subsequent siblings) 6 siblings, 1 reply; 13+ messages in thread From: Swati Sharma @ 2025-03-24 9:09 UTC (permalink / raw) To: igt-dev; +Cc: Swati Sharma Add chamelium_frame_match_or_dump_frame_pair() to compare frame dumps captured from chamelium. Signed-off-by: Swati Sharma <swati2.sharma@intel.com> --- lib/igt_chamelium.c | 60 +++++++++++++++++++++++++++++++++++++++++++++ lib/igt_chamelium.h | 6 +++++ 2 files changed, 66 insertions(+) diff --git a/lib/igt_chamelium.c b/lib/igt_chamelium.c index 620fbbf7d..44a169b29 100644 --- a/lib/igt_chamelium.c +++ b/lib/igt_chamelium.c @@ -2070,6 +2070,66 @@ bool chamelium_frame_match_or_dump(struct chamelium *chamelium, return match; } +/** + * chamelium_frame_match_or_dump: + * @chamelium: The chamelium instance the frame dump belongs to + * @frame0: The chamelium reference frame dump to match + * @frame1: The chamelium capture frame dump to match + * @reference_crc: CRC of chamelium reference frame + * @check: the type of frame matching check to use + * + * Returns bool that the provided captured frame matches the reference + * frame from the framebuffer. If they do not, this saves the reference + * and captured frames to a png file. + */ +bool chamelium_frame_match_or_dump_frame_pair(struct chamelium *chamelium, + struct chamelium_port *port, + const struct chamelium_frame_dump *frame0, + const struct chamelium_frame_dump *frame1, + igt_crc_t *reference_crc, + enum chamelium_check check) +{ + cairo_surface_t *reference; + cairo_surface_t *capture; + igt_crc_t *capture_crc; + bool match; + + /* Grab the captured reference frame from chamelium */ + reference = convert_frame_dump_argb32(frame0); + + /* Grab the captured frame from chamelium */ + capture = convert_frame_dump_argb32(frame1); + + switch (check) { + case CHAMELIUM_CHECK_ANALOG: + match = igt_check_analog_frame_match(reference, capture); + break; + case CHAMELIUM_CHECK_CHECKERBOARD: + match = igt_check_checkerboard_frame_match(reference, capture); + break; + default: + igt_assert(false); + } + + if (!match && igt_frame_dump_is_enabled()) { + /* Get the captured frame CRC from the Chamelium. */ + capture_crc = chamelium_get_crc_for_area(chamelium, port, 0, 0, + 0, 0); + igt_assert(capture_crc); + + compared_frames_dump(reference, capture, reference_crc, + capture_crc); + + free(reference_crc); + free(capture_crc); + } + + cairo_surface_destroy(reference); + cairo_surface_destroy(capture); + + return match; +} + /** * chamelium_analog_frame_crop: * @chamelium: The Chamelium instance to use diff --git a/lib/igt_chamelium.h b/lib/igt_chamelium.h index d979de4a2..140d52c95 100644 --- a/lib/igt_chamelium.h +++ b/lib/igt_chamelium.h @@ -257,6 +257,12 @@ bool chamelium_frame_match_or_dump(struct chamelium *chamelium, const struct chamelium_frame_dump *frame, struct igt_fb *fb, enum chamelium_check check); +bool chamelium_frame_match_or_dump_frame_pair(struct chamelium *chamelium, + struct chamelium_port *port, + const struct chamelium_frame_dump *frame0, + const struct chamelium_frame_dump *frame1, + igt_crc_t *reference_crc, + enum chamelium_check check); void chamelium_crop_analog_frame(struct chamelium_frame_dump *dump, int width, int height); void chamelium_destroy_frame_dump(struct chamelium_frame_dump *dump); -- 2.25.1 ^ permalink raw reply related [flat|nested] 13+ messages in thread
* RE: [PATCH i-g-t 1/3] lib/igt_chamelium: Add chamelium_frame_match_or_dump_frame_pair() 2025-03-24 9:09 ` [PATCH i-g-t 1/3] lib/igt_chamelium: Add chamelium_frame_match_or_dump_frame_pair() Swati Sharma @ 2025-03-26 12:23 ` Borah, Chaitanya Kumar 2025-03-27 5:56 ` Sharma, Swati2 0 siblings, 1 reply; 13+ messages in thread From: Borah, Chaitanya Kumar @ 2025-03-26 12:23 UTC (permalink / raw) To: Sharma, Swati2, igt-dev@lists.freedesktop.org; +Cc: Sharma, Swati2 Hello Swati, > -----Original Message----- > From: igt-dev <igt-dev-bounces@lists.freedesktop.org> On Behalf Of Swati > Sharma > Sent: Monday, March 24, 2025 2:40 PM > To: igt-dev@lists.freedesktop.org > Cc: Sharma, Swati2 <swati2.sharma@intel.com> > Subject: [PATCH i-g-t 1/3] lib/igt_chamelium: Add > chamelium_frame_match_or_dump_frame_pair() > > Add chamelium_frame_match_or_dump_frame_pair() to compare frame > dumps captured from chamelium. > > Signed-off-by: Swati Sharma <swati2.sharma@intel.com> > --- > lib/igt_chamelium.c | 60 > +++++++++++++++++++++++++++++++++++++++++++++ > lib/igt_chamelium.h | 6 +++++ > 2 files changed, 66 insertions(+) > > diff --git a/lib/igt_chamelium.c b/lib/igt_chamelium.c index > 620fbbf7d..44a169b29 100644 > --- a/lib/igt_chamelium.c > +++ b/lib/igt_chamelium.c > @@ -2070,6 +2070,66 @@ bool chamelium_frame_match_or_dump(struct > chamelium *chamelium, > return match; > } > > +/** > + * chamelium_frame_match_or_dump: > + * @chamelium: The chamelium instance the frame dump belongs to > + * @frame0: The chamelium reference frame dump to match > + * @frame1: The chamelium capture frame dump to match > + * @reference_crc: CRC of chamelium reference frame > + * @check: the type of frame matching check to use > + * > + * Returns bool that the provided captured frame matches the reference > + * frame from the framebuffer. If they do not, this saves the reference > + * and captured frames to a png file. > + */ > +bool chamelium_frame_match_or_dump_frame_pair(struct chamelium > *chamelium, > + struct chamelium_port *port, > + const struct > chamelium_frame_dump *frame0, > + const struct > chamelium_frame_dump *frame1, > + igt_crc_t *reference_crc, The asymmetry in the arguments (reference_crc and not capture_crc) is bother me a bit. ... > + enum chamelium_check check) > +{ > + cairo_surface_t *reference; > + cairo_surface_t *capture; > + igt_crc_t *capture_crc; > + bool match; > + > + /* Grab the captured reference frame from chamelium */ > + reference = convert_frame_dump_argb32(frame0); > + > + /* Grab the captured frame from chamelium */ > + capture = convert_frame_dump_argb32(frame1); > + > + switch (check) { > + case CHAMELIUM_CHECK_ANALOG: > + match = igt_check_analog_frame_match(reference, capture); > + break; > + case CHAMELIUM_CHECK_CHECKERBOARD: > + match = igt_check_checkerboard_frame_match(reference, > capture); > + break; > + default: > + igt_assert(false); > + } > + > + if (!match && igt_frame_dump_is_enabled()) { > + /* Get the captured frame CRC from the Chamelium. */ > + capture_crc = chamelium_get_crc_for_area(chamelium, port, > 0, 0, > + 0, 0); Does this mean that chamelium should be displaying the image when this comparison is done? If so, It will defeat the purpose of using the frame dump for comparison. > + igt_assert(capture_crc); > + > + compared_frames_dump(reference, capture, reference_crc, > + capture_crc); Since compared_frames_dump() calculates the crc if not passed by the caller we should let it. That way we can remove the need of passing the reference_crc to this helper. (and also not calculate capture_crc) Regards Chaitanya > + > + free(reference_crc); > + free(capture_crc); > + } > + > + cairo_surface_destroy(reference); > + cairo_surface_destroy(capture); > + > + return match; > +} > + > /** > * chamelium_analog_frame_crop: > * @chamelium: The Chamelium instance to use diff --git > a/lib/igt_chamelium.h b/lib/igt_chamelium.h index d979de4a2..140d52c95 > 100644 > --- a/lib/igt_chamelium.h > +++ b/lib/igt_chamelium.h > @@ -257,6 +257,12 @@ bool chamelium_frame_match_or_dump(struct > chamelium *chamelium, > const struct chamelium_frame_dump > *frame, > struct igt_fb *fb, > enum chamelium_check check); > +bool chamelium_frame_match_or_dump_frame_pair(struct chamelium > *chamelium, > + struct chamelium_port *port, > + const struct > chamelium_frame_dump *frame0, > + const struct > chamelium_frame_dump *frame1, > + igt_crc_t *reference_crc, > + enum chamelium_check check); > void chamelium_crop_analog_frame(struct chamelium_frame_dump *dump, > int width, > int height); > void chamelium_destroy_frame_dump(struct chamelium_frame_dump > *dump); > -- > 2.25.1 ^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH i-g-t 1/3] lib/igt_chamelium: Add chamelium_frame_match_or_dump_frame_pair() 2025-03-26 12:23 ` Borah, Chaitanya Kumar @ 2025-03-27 5:56 ` Sharma, Swati2 0 siblings, 0 replies; 13+ messages in thread From: Sharma, Swati2 @ 2025-03-27 5:56 UTC (permalink / raw) To: Borah, Chaitanya Kumar, igt-dev@lists.freedesktop.org Hi Chaitanya, Thankyou for the review. Please find my comments inline. On 26-03-2025 05:53 pm, Borah, Chaitanya Kumar wrote: > Hello Swati, > >> -----Original Message----- >> From: igt-dev <igt-dev-bounces@lists.freedesktop.org> On Behalf Of Swati >> Sharma >> Sent: Monday, March 24, 2025 2:40 PM >> To: igt-dev@lists.freedesktop.org >> Cc: Sharma, Swati2 <swati2.sharma@intel.com> >> Subject: [PATCH i-g-t 1/3] lib/igt_chamelium: Add >> chamelium_frame_match_or_dump_frame_pair() >> >> Add chamelium_frame_match_or_dump_frame_pair() to compare frame >> dumps captured from chamelium. >> >> Signed-off-by: Swati Sharma <swati2.sharma@intel.com> >> --- >> lib/igt_chamelium.c | 60 >> +++++++++++++++++++++++++++++++++++++++++++++ >> lib/igt_chamelium.h | 6 +++++ >> 2 files changed, 66 insertions(+) >> >> diff --git a/lib/igt_chamelium.c b/lib/igt_chamelium.c index >> 620fbbf7d..44a169b29 100644 >> --- a/lib/igt_chamelium.c >> +++ b/lib/igt_chamelium.c >> @@ -2070,6 +2070,66 @@ bool chamelium_frame_match_or_dump(struct >> chamelium *chamelium, >> return match; >> } >> >> +/** >> + * chamelium_frame_match_or_dump: >> + * @chamelium: The chamelium instance the frame dump belongs to >> + * @frame0: The chamelium reference frame dump to match >> + * @frame1: The chamelium capture frame dump to match >> + * @reference_crc: CRC of chamelium reference frame >> + * @check: the type of frame matching check to use >> + * >> + * Returns bool that the provided captured frame matches the reference >> + * frame from the framebuffer. If they do not, this saves the reference >> + * and captured frames to a png file. >> + */ >> +bool chamelium_frame_match_or_dump_frame_pair(struct chamelium >> *chamelium, >> + struct chamelium_port *port, >> + const struct >> chamelium_frame_dump *frame0, >> + const struct >> chamelium_frame_dump *frame1, >> + igt_crc_t *reference_crc, > The asymmetry in the arguments (reference_crc and not capture_crc) is bother me a bit. hmm..chamelium can compute CRC of the last captured frame, thats why computed ref CRC and passed it as an argument. As far as symmetry is concerned; will compute CRC of both ref and capture frame in test and pass as an argument. Will it work? > > ... > >> + enum chamelium_check check) >> +{ >> + cairo_surface_t *reference; >> + cairo_surface_t *capture; >> + igt_crc_t *capture_crc; >> + bool match; >> + >> + /* Grab the captured reference frame from chamelium */ >> + reference = convert_frame_dump_argb32(frame0); >> + >> + /* Grab the captured frame from chamelium */ >> + capture = convert_frame_dump_argb32(frame1); >> + >> + switch (check) { >> + case CHAMELIUM_CHECK_ANALOG: >> + match = igt_check_analog_frame_match(reference, capture); >> + break; >> + case CHAMELIUM_CHECK_CHECKERBOARD: >> + match = igt_check_checkerboard_frame_match(reference, >> capture); >> + break; >> + default: >> + igt_assert(false); >> + } >> + >> + if (!match && igt_frame_dump_is_enabled()) { >> + /* Get the captured frame CRC from the Chamelium. */ >> + capture_crc = chamelium_get_crc_for_area(chamelium, port, >> 0, 0, >> + 0, 0); > Does this mean that chamelium should be displaying the image when this comparison is done? > If so, It will defeat the purpose of using the frame dump for comparison. Frame dump comparison is already done before. Here we are just computing CRCs. > > >> + igt_assert(capture_crc); >> + >> + compared_frames_dump(reference, capture, reference_crc, >> + capture_crc); > Since compared_frames_dump() calculates the crc if not passed by the caller we should let it. > That way we can remove the need of passing the reference_crc to this helper. (and also not calculate capture_crc) Like mentioned before, chamelium captures CRC of last captured frame. SO, in test we need to compute CRC just after capture and then pass both ref and capture CRC as arg. > > Regards > > Chaitanya > > >> + >> + free(reference_crc); >> + free(capture_crc); >> + } >> + >> + cairo_surface_destroy(reference); >> + cairo_surface_destroy(capture); >> + >> + return match; >> +} >> + >> /** >> * chamelium_analog_frame_crop: >> * @chamelium: The Chamelium instance to use diff --git >> a/lib/igt_chamelium.h b/lib/igt_chamelium.h index d979de4a2..140d52c95 >> 100644 >> --- a/lib/igt_chamelium.h >> +++ b/lib/igt_chamelium.h >> @@ -257,6 +257,12 @@ bool chamelium_frame_match_or_dump(struct >> chamelium *chamelium, >> const struct chamelium_frame_dump >> *frame, >> struct igt_fb *fb, >> enum chamelium_check check); >> +bool chamelium_frame_match_or_dump_frame_pair(struct chamelium >> *chamelium, >> + struct chamelium_port *port, >> + const struct >> chamelium_frame_dump *frame0, >> + const struct >> chamelium_frame_dump *frame1, >> + igt_crc_t *reference_crc, >> + enum chamelium_check check); >> void chamelium_crop_analog_frame(struct chamelium_frame_dump *dump, >> int width, >> int height); >> void chamelium_destroy_frame_dump(struct chamelium_frame_dump >> *dump); >> -- >> 2.25.1 ^ permalink raw reply [flat|nested] 13+ messages in thread
* [PATCH i-g-t 2/3] tests/chamelium/kms_chamelium_color: Fix ctm-limited-range subtest 2025-03-24 9:09 [PATCH i-g-t 0/3] Fix ctm-limited subtest Swati Sharma 2025-03-24 9:09 ` [PATCH i-g-t 1/3] lib/igt_chamelium: Add chamelium_frame_match_or_dump_frame_pair() Swati Sharma @ 2025-03-24 9:09 ` Swati Sharma 2025-03-27 5:27 ` Borah, Chaitanya Kumar 2025-03-24 9:09 ` [PATCH i-g-t 3/3] tests/chamelium/kms_chamelium_color: Set rgb_full to 1.0 Swati Sharma ` (4 subsequent siblings) 6 siblings, 1 reply; 13+ messages in thread From: Swati Sharma @ 2025-03-24 9:09 UTC (permalink / raw) To: igt-dev; +Cc: Swati Sharma Test is fixed, now we take chamelium capture after setting output to full and limited range and then compare frame dumps. Signed-off-by: Swati Sharma <swati2.sharma@intel.com> --- tests/chamelium/kms_chamelium_color.c | 50 +++++++++++++++------------ 1 file changed, 27 insertions(+), 23 deletions(-) diff --git a/tests/chamelium/kms_chamelium_color.c b/tests/chamelium/kms_chamelium_color.c index 68611ec6a..355047ed6 100644 --- a/tests/chamelium/kms_chamelium_color.c +++ b/tests/chamelium/kms_chamelium_color.c @@ -352,9 +352,10 @@ static bool test_pipe_limited_range_ctm(data_t *data, gamma_lut_t *degamma_linear, *gamma_linear; igt_output_t *output = data->output; drmModeModeInfo *mode = data->mode; - struct igt_fb fb_modeset, fb, fbref; - struct chamelium_frame_dump *frame_limited; - int fb_id, fb_modeset_id, fbref_id; + struct igt_fb fb_modeset, fb; + struct chamelium_frame_dump *frame_limited, *frame_full; + int fb_id, fb_modeset_id; + igt_crc_t *reference_crc; bool ret = false; igt_require(igt_pipe_obj_has_prop(primary->pipe, IGT_CRTC_CTM)); @@ -380,21 +381,13 @@ static bool test_pipe_limited_range_ctm(data_t *data, DRM_FORMAT_MOD_LINEAR, &fb_modeset); igt_assert(fb_modeset_id); - - fbref_id = igt_create_fb(data->drm_fd, - mode->hdisplay, - mode->vdisplay, - DRM_FORMAT_XRGB8888, - DRM_FORMAT_MOD_LINEAR, - &fbref); - igt_assert(fbref_id); - igt_plane_set_fb(primary, &fb_modeset); set_degamma(data, primary->pipe, degamma_linear); set_gamma(data, primary->pipe, gamma_linear); set_ctm(primary->pipe, ctm); + /* Set the output into full range. */ igt_output_set_prop_value(output, IGT_CONNECTOR_BROADCAST_RGB, BROADCAST_RGB_FULL); @@ -402,11 +395,28 @@ static bool test_pipe_limited_range_ctm(data_t *data, igt_plane_set_fb(primary, &fb); igt_display_commit(&data->display); + chamelium_capture(data->chamelium, port, 0, 0, 0, 0, 1); + frame_full = + chamelium_read_captured_frame(data->chamelium, 0); + + /* Chamelium calculates the CRC for the most recent + * captured frame; that's why CRC of the reference frame + * is captured here. + */ + reference_crc = chamelium_get_crc_for_area(data->chamelium, port, 0, 0, 0, 0); + igt_assert(reference_crc); + /* Set the output into limited range. */ igt_output_set_prop_value(output, IGT_CONNECTOR_BROADCAST_RGB, BROADCAST_RGB_16_235); paint_rectangles(data, mode, red_green_blue_full, &fb); + igt_plane_set_fb(primary, &fb); + igt_display_commit(&data->display); + + chamelium_capture(data->chamelium, port, 0, 0, 0, 0, 1); + frame_limited = + chamelium_read_captured_frame(data->chamelium, 0); /* And reset.. */ igt_output_set_prop_value(output, @@ -414,18 +424,12 @@ static bool test_pipe_limited_range_ctm(data_t *data, BROADCAST_RGB_FULL); igt_plane_set_fb(primary, NULL); igt_output_set_pipe(output, PIPE_NONE); - chamelium_capture(data->chamelium, port, 0, 0, 0, 0, 1); - frame_limited = - chamelium_read_captured_frame(data->chamelium, 0); - - /* Verify that the framebuffer reference of the software - * computed output is equal to the frame dump of the CTM - * matrix transformation output. - */ - ret = chamelium_frame_match_or_dump(data->chamelium, port, - frame_limited, &fbref, - CHAMELIUM_CHECK_ANALOG); + /* Verify frame dumps are equal. */ + ret = chamelium_frame_match_or_dump_frame_pair(data->chamelium, port, + frame_full, frame_limited, + reference_crc, + CHAMELIUM_CHECK_ANALOG); free_lut(gamma_linear); free_lut(degamma_linear); -- 2.25.1 ^ permalink raw reply related [flat|nested] 13+ messages in thread
* RE: [PATCH i-g-t 2/3] tests/chamelium/kms_chamelium_color: Fix ctm-limited-range subtest 2025-03-24 9:09 ` [PATCH i-g-t 2/3] tests/chamelium/kms_chamelium_color: Fix ctm-limited-range subtest Swati Sharma @ 2025-03-27 5:27 ` Borah, Chaitanya Kumar 2025-03-27 6:02 ` Sharma, Swati2 0 siblings, 1 reply; 13+ messages in thread From: Borah, Chaitanya Kumar @ 2025-03-27 5:27 UTC (permalink / raw) To: Sharma, Swati2, igt-dev@lists.freedesktop.org; +Cc: Sharma, Swati2 > -----Original Message----- > From: igt-dev <igt-dev-bounces@lists.freedesktop.org> On Behalf Of Swati > Sharma > Sent: Monday, March 24, 2025 2:40 PM > To: igt-dev@lists.freedesktop.org > Cc: Sharma, Swati2 <swati2.sharma@intel.com> > Subject: [PATCH i-g-t 2/3] tests/chamelium/kms_chamelium_color: Fix ctm- > limited-range subtest > > Test is fixed, now we take chamelium capture after setting output to full and > limited range and then compare frame dumps. We should add some details on the steps we are taking during the test. > > Signed-off-by: Swati Sharma <swati2.sharma@intel.com> > --- > tests/chamelium/kms_chamelium_color.c | 50 +++++++++++++++------------ > 1 file changed, 27 insertions(+), 23 deletions(-) > > diff --git a/tests/chamelium/kms_chamelium_color.c > b/tests/chamelium/kms_chamelium_color.c > index 68611ec6a..355047ed6 100644 > --- a/tests/chamelium/kms_chamelium_color.c > +++ b/tests/chamelium/kms_chamelium_color.c > @@ -352,9 +352,10 @@ static bool test_pipe_limited_range_ctm(data_t > *data, > gamma_lut_t *degamma_linear, *gamma_linear; > igt_output_t *output = data->output; > drmModeModeInfo *mode = data->mode; > - struct igt_fb fb_modeset, fb, fbref; > - struct chamelium_frame_dump *frame_limited; > - int fb_id, fb_modeset_id, fbref_id; > + struct igt_fb fb_modeset, fb; > + struct chamelium_frame_dump *frame_limited, *frame_full; > + int fb_id, fb_modeset_id; > + igt_crc_t *reference_crc; > bool ret = false; > > igt_require(igt_pipe_obj_has_prop(primary->pipe, IGT_CRTC_CTM)); > @@ -380,21 +381,13 @@ static bool test_pipe_limited_range_ctm(data_t > *data, > DRM_FORMAT_MOD_LINEAR, > &fb_modeset); We don't seem to use/commit this frame buffer at all. > igt_assert(fb_modeset_id); > - > - fbref_id = igt_create_fb(data->drm_fd, > - mode->hdisplay, > - mode->vdisplay, > - DRM_FORMAT_XRGB8888, > - DRM_FORMAT_MOD_LINEAR, > - &fbref); > - igt_assert(fbref_id); > - > igt_plane_set_fb(primary, &fb_modeset); > > set_degamma(data, primary->pipe, degamma_linear); > set_gamma(data, primary->pipe, gamma_linear); > set_ctm(primary->pipe, ctm); > > + /* Set the output into full range. */ > igt_output_set_prop_value(output, > IGT_CONNECTOR_BROADCAST_RGB, > BROADCAST_RGB_FULL); > @@ -402,11 +395,28 @@ static bool test_pipe_limited_range_ctm(data_t > *data, > igt_plane_set_fb(primary, &fb); > igt_display_commit(&data->display); > > + chamelium_capture(data->chamelium, port, 0, 0, 0, 0, 1); > + frame_full = > + chamelium_read_captured_frame(data->chamelium, 0); > + > + /* Chamelium calculates the CRC for the most recent > + * captured frame; that's why CRC of the reference frame > + * is captured here. > + */ > + reference_crc = chamelium_get_crc_for_area(data->chamelium, port, > 0, 0, 0, 0); > + igt_assert(reference_crc); > + > /* Set the output into limited range. */ > igt_output_set_prop_value(output, > IGT_CONNECTOR_BROADCAST_RGB, > BROADCAST_RGB_16_235); > paint_rectangles(data, mode, red_green_blue_full, &fb); > + igt_plane_set_fb(primary, &fb); > + igt_display_commit(&data->display); > + > + chamelium_capture(data->chamelium, port, 0, 0, 0, 0, 1); > + frame_limited = > + chamelium_read_captured_frame(data->chamelium, 0); I hope chamelium takes care that it doesn't retrieve the frame captured using the earlier chamelium_capture() Regards Chaitanya > > /* And reset.. */ > igt_output_set_prop_value(output, > @@ -414,18 +424,12 @@ static bool test_pipe_limited_range_ctm(data_t > *data, > BROADCAST_RGB_FULL); > igt_plane_set_fb(primary, NULL); > igt_output_set_pipe(output, PIPE_NONE); > - chamelium_capture(data->chamelium, port, 0, 0, 0, 0, 1); > - frame_limited = > - chamelium_read_captured_frame(data->chamelium, 0); > - > > - /* Verify that the framebuffer reference of the software > - * computed output is equal to the frame dump of the CTM > - * matrix transformation output. > - */ > - ret = chamelium_frame_match_or_dump(data->chamelium, port, > - frame_limited, &fbref, > - CHAMELIUM_CHECK_ANALOG); > + /* Verify frame dumps are equal. */ > + ret = chamelium_frame_match_or_dump_frame_pair(data- > >chamelium, port, > + frame_full, frame_limited, > + reference_crc, > + > CHAMELIUM_CHECK_ANALOG); > > free_lut(gamma_linear); > free_lut(degamma_linear); > -- > 2.25.1 ^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH i-g-t 2/3] tests/chamelium/kms_chamelium_color: Fix ctm-limited-range subtest 2025-03-27 5:27 ` Borah, Chaitanya Kumar @ 2025-03-27 6:02 ` Sharma, Swati2 0 siblings, 0 replies; 13+ messages in thread From: Sharma, Swati2 @ 2025-03-27 6:02 UTC (permalink / raw) To: Borah, Chaitanya Kumar, igt-dev@lists.freedesktop.org On 27-03-2025 10:57 am, Borah, Chaitanya Kumar wrote: > >> -----Original Message----- >> From: igt-dev <igt-dev-bounces@lists.freedesktop.org> On Behalf Of Swati >> Sharma >> Sent: Monday, March 24, 2025 2:40 PM >> To: igt-dev@lists.freedesktop.org >> Cc: Sharma, Swati2 <swati2.sharma@intel.com> >> Subject: [PATCH i-g-t 2/3] tests/chamelium/kms_chamelium_color: Fix ctm- >> limited-range subtest >> >> Test is fixed, now we take chamelium capture after setting output to full and >> limited range and then compare frame dumps. > We should add some details on the steps we are taking during the test. Sure, will add in next rev. >> Signed-off-by: Swati Sharma <swati2.sharma@intel.com> >> --- >> tests/chamelium/kms_chamelium_color.c | 50 +++++++++++++++------------ >> 1 file changed, 27 insertions(+), 23 deletions(-) >> >> diff --git a/tests/chamelium/kms_chamelium_color.c >> b/tests/chamelium/kms_chamelium_color.c >> index 68611ec6a..355047ed6 100644 >> --- a/tests/chamelium/kms_chamelium_color.c >> +++ b/tests/chamelium/kms_chamelium_color.c >> @@ -352,9 +352,10 @@ static bool test_pipe_limited_range_ctm(data_t >> *data, >> gamma_lut_t *degamma_linear, *gamma_linear; >> igt_output_t *output = data->output; >> drmModeModeInfo *mode = data->mode; >> - struct igt_fb fb_modeset, fb, fbref; >> - struct chamelium_frame_dump *frame_limited; >> - int fb_id, fb_modeset_id, fbref_id; >> + struct igt_fb fb_modeset, fb; >> + struct mechamelium_fra_dump *frame_limited, *frame_full; >> + int fb_id, fb_modeset_id; >> + igt_crc_t *reference_crc; >> bool ret = false; >> >> igt_require(igt_pipe_obj_has_prop(primary->pipe, IGT_CRTC_CTM)); >> @@ -380,21 +381,13 @@ static bool test_pipe_limited_range_ctm(data_t >> *data, >> DRM_FORMAT_MOD_LINEAR, >> &fb_modeset); > We don't seem to use/commit this frame buffer at all. hmm, can be removed. >> igt_assert(fb_modeset_id); >> - >> - fbref_id = igt_create_fb(data->drm_fd, >> - mode->hdisplay, >> - mode->vdisplay, >> - DRM_FORMAT_XRGB8888, >> - DRM_FORMAT_MOD_LINEAR, >> - &fbref); >> - igt_assert(fbref_id); >> - >> igt_plane_set_fb(primary, &fb_modeset); >> >> set_degamma(data, primary->pipe, degamma_linear); >> set_gamma(data, primary->pipe, gamma_linear); >> set_ctm(primary->pipe, ctm); >> >> + /* Set the output into full range. */ >> igt_output_set_prop_value(output, >> IGT_CONNECTOR_BROADCAST_RGB, >> BROADCAST_RGB_FULL); >> @@ -402,11 +395,28 @@ static bool test_pipe_limited_range_ctm(data_t >> *data, >> igt_plane_set_fb(primary, &fb); >> igt_display_commit(&data->display); >> >> + chamelium_capture(data->chamelium, port, 0, 0, 0, 0, 1); >> + frame_full = >> + chamelium_read_captured_frame(data->chamelium, 0); >> + >> + /* Chamelium calculates the CRC for the most recent >> + * captured frame; that's why CRC of the reference frame >> + * is captured here. >> + */ >> + reference_crc = chamelium_get_crc_for_area(data->chamelium, port, >> 0, 0, 0, 0); >> + igt_assert(reference_crc); >> + >> /* Set the output into limited range. */ >> igt_output_set_prop_value(output, >> IGT_CONNECTOR_BROADCAST_RGB, >> BROADCAST_RGB_16_235); >> paint_rectangles(data, mode, red_green_blue_full, &fb); >> + igt_plane_set_fb(primary, &fb); >> + igt_display_commit(&data->display); >> + >> + chamelium_capture(data->chamelium, port, 0, 0, 0, 0, 1); >> + frame_limited = >> + chamelium_read_captured_frame(data->chamelium, 0); > I hope chamelium takes care that it doesn't retrieve the frame captured using the earlier chamelium_capture() Yes, chamelium capture() api discards previous capture and capture new frame. > > Regards > > Chaitanya > > >> /* And reset.. */ >> igt_output_set_prop_value(output, >> @@ -414,18 +424,12 @@ static bool test_pipe_limited_range_ctm(data_t >> *data, >> BROADCAST_RGB_FULL); >> igt_plane_set_fb(primary, NULL); >> igt_output_set_pipe(output, PIPE_NONE); >> - chamelium_capture(data->chamelium, port, 0, 0, 0, 0, 1); >> - frame_limited = >> - chamelium_read_captured_frame(data->chamelium, 0); >> - >> >> - /* Verify that the framebuffer reference of the software >> - * computed output is equal to the frame dump of the CTM >> - * matrix transformation output. >> - */ >> - ret = chamelium_frame_match_or_dump(data->chamelium, port, >> - frame_limited, &fbref, >> - CHAMELIUM_CHECK_ANALOG); >> + /* Verify frame dumps are equal. */ >> + ret = chamelium_frame_match_or_dump_frame_pair(data- >>> chamelium, port, >> + frame_full, frame_limited, >> + reference_crc, >> + >> CHAMELIUM_CHECK_ANALOG); >> >> free_lut(gamma_linear); >> free_lut(degamma_linear); >> -- >> 2.25.1 ^ permalink raw reply [flat|nested] 13+ messages in thread
* [PATCH i-g-t 3/3] tests/chamelium/kms_chamelium_color: Set rgb_full to 1.0 2025-03-24 9:09 [PATCH i-g-t 0/3] Fix ctm-limited subtest Swati Sharma 2025-03-24 9:09 ` [PATCH i-g-t 1/3] lib/igt_chamelium: Add chamelium_frame_match_or_dump_frame_pair() Swati Sharma 2025-03-24 9:09 ` [PATCH i-g-t 2/3] tests/chamelium/kms_chamelium_color: Fix ctm-limited-range subtest Swati Sharma @ 2025-03-24 9:09 ` Swati Sharma 2025-03-27 5:30 ` Borah, Chaitanya Kumar 2025-03-24 13:27 ` ✓ Xe.CI.BAT: success for Fix ctm-limited subtest Patchwork ` (3 subsequent siblings) 6 siblings, 1 reply; 13+ messages in thread From: Swati Sharma @ 2025-03-24 9:09 UTC (permalink / raw) To: igt-dev; +Cc: Swati Sharma Set red_green_blue_full[] to 1.0 instead of 0.5 Signed-off-by: Swati Sharma <swati2.sharma@intel.com> --- tests/chamelium/kms_chamelium_color.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/chamelium/kms_chamelium_color.c b/tests/chamelium/kms_chamelium_color.c index 355047ed6..4088e2eb7 100644 --- a/tests/chamelium/kms_chamelium_color.c +++ b/tests/chamelium/kms_chamelium_color.c @@ -342,9 +342,9 @@ static bool test_pipe_limited_range_ctm(data_t *data, { 0.0, 0.0, limited_result } }; color_t red_green_blue_full[] = { - { 0.5, 0.0, 0.0 }, - { 0.0, 0.5, 0.0 }, - { 0.0, 0.0, 0.5 } + { 1.0, 0.0, 0.0 }, + { 0.0, 1.0, 0.0 }, + { 0.0, 0.0, 1.0 } }; double ctm[] = { 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, -- 2.25.1 ^ permalink raw reply related [flat|nested] 13+ messages in thread
* RE: [PATCH i-g-t 3/3] tests/chamelium/kms_chamelium_color: Set rgb_full to 1.0 2025-03-24 9:09 ` [PATCH i-g-t 3/3] tests/chamelium/kms_chamelium_color: Set rgb_full to 1.0 Swati Sharma @ 2025-03-27 5:30 ` Borah, Chaitanya Kumar 0 siblings, 0 replies; 13+ messages in thread From: Borah, Chaitanya Kumar @ 2025-03-27 5:30 UTC (permalink / raw) To: Sharma, Swati2, igt-dev@lists.freedesktop.org; +Cc: Sharma, Swati2 > -----Original Message----- > From: igt-dev <igt-dev-bounces@lists.freedesktop.org> On Behalf Of Swati > Sharma > Sent: Monday, March 24, 2025 2:40 PM > To: igt-dev@lists.freedesktop.org > Cc: Sharma, Swati2 <swati2.sharma@intel.com> > Subject: [PATCH i-g-t 3/3] tests/chamelium/kms_chamelium_color: Set > rgb_full to 1.0 > > Set red_green_blue_full[] to 1.0 instead of 0.5 > > Signed-off-by: Swati Sharma <swati2.sharma@intel.com> > --- > tests/chamelium/kms_chamelium_color.c | 6 +++--- > 1 file changed, 3 insertions(+), 3 deletions(-) > > diff --git a/tests/chamelium/kms_chamelium_color.c > b/tests/chamelium/kms_chamelium_color.c > index 355047ed6..4088e2eb7 100644 > --- a/tests/chamelium/kms_chamelium_color.c > +++ b/tests/chamelium/kms_chamelium_color.c > @@ -342,9 +342,9 @@ static bool test_pipe_limited_range_ctm(data_t > *data, > { 0.0, 0.0, limited_result } > }; > color_t red_green_blue_full[] = { > - { 0.5, 0.0, 0.0 }, > - { 0.0, 0.5, 0.0 }, > - { 0.0, 0.0, 0.5 } > + { 1.0, 0.0, 0.0 }, > + { 0.0, 1.0, 0.0 }, > + { 0.0, 0.0, 1.0 } This looks good but I think it also makes sense to convert the 0s in the limited range matrix to 16/255. That should represent actual limited range of 16-235. Also perhaps this should be part of the previous patch? Because it is important for the test to actually work. Regards Chaitanya > }; > double ctm[] = { 1.0, 0.0, 0.0, > 0.0, 1.0, 0.0, > -- > 2.25.1 ^ permalink raw reply [flat|nested] 13+ messages in thread
* ✓ Xe.CI.BAT: success for Fix ctm-limited subtest 2025-03-24 9:09 [PATCH i-g-t 0/3] Fix ctm-limited subtest Swati Sharma ` (2 preceding siblings ...) 2025-03-24 9:09 ` [PATCH i-g-t 3/3] tests/chamelium/kms_chamelium_color: Set rgb_full to 1.0 Swati Sharma @ 2025-03-24 13:27 ` Patchwork 2025-03-24 13:27 ` ✗ Xe.CI.BAT: failure " Patchwork ` (2 subsequent siblings) 6 siblings, 0 replies; 13+ messages in thread From: Patchwork @ 2025-03-24 13:27 UTC (permalink / raw) To: Swati Sharma; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 1279 bytes --] == Series Details == Series: Fix ctm-limited subtest URL : https://patchwork.freedesktop.org/series/146647/ State : success == Summary == CI Bug Log - changes from XEIGT_8279_BAT -> XEIGTPW_12818_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (9 -> 9) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_12818_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@xe_live_ktest@xe_migrate: - bat-adlp-vf: [PASS][1] -> [ABORT][2] ([Intel XE#4520]) +1 other test abort [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8279/bat-adlp-vf/igt@xe_live_ktest@xe_migrate.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/bat-adlp-vf/igt@xe_live_ktest@xe_migrate.html [Intel XE#4520]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4520 Build changes ------------- * IGT: IGT_8279 -> IGTPW_12818 IGTPW_12818: 12818 IGT_8279: 8279 xe-2839-f8c17a63ca147e008f36d1efd80206d4ce4e8ce1: f8c17a63ca147e008f36d1efd80206d4ce4e8ce1 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/index.html [-- Attachment #2: Type: text/html, Size: 1841 bytes --] ^ permalink raw reply [flat|nested] 13+ messages in thread
* ✗ Xe.CI.BAT: failure for Fix ctm-limited subtest 2025-03-24 9:09 [PATCH i-g-t 0/3] Fix ctm-limited subtest Swati Sharma ` (3 preceding siblings ...) 2025-03-24 13:27 ` ✓ Xe.CI.BAT: success for Fix ctm-limited subtest Patchwork @ 2025-03-24 13:27 ` Patchwork 2025-03-24 13:43 ` ✗ i915.CI.BAT: " Patchwork 2025-03-24 15:18 ` ✓ Xe.CI.Full: success " Patchwork 6 siblings, 0 replies; 13+ messages in thread From: Patchwork @ 2025-03-24 13:27 UTC (permalink / raw) To: Swati Sharma; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 1279 bytes --] == Series Details == Series: Fix ctm-limited subtest URL : https://patchwork.freedesktop.org/series/146647/ State : failure == Summary == CI Bug Log - changes from XEIGT_8279_BAT -> XEIGTPW_12818_BAT ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (9 -> 9) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_12818_BAT that come from known issues: ### IGT changes ### #### Issues hit #### * igt@xe_live_ktest@xe_migrate: - bat-adlp-vf: [PASS][1] -> [ABORT][2] ([Intel XE#4520]) +1 other test abort [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8279/bat-adlp-vf/igt@xe_live_ktest@xe_migrate.html [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/bat-adlp-vf/igt@xe_live_ktest@xe_migrate.html [Intel XE#4520]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4520 Build changes ------------- * IGT: IGT_8279 -> IGTPW_12818 IGTPW_12818: 12818 IGT_8279: 8279 xe-2839-f8c17a63ca147e008f36d1efd80206d4ce4e8ce1: f8c17a63ca147e008f36d1efd80206d4ce4e8ce1 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/index.html [-- Attachment #2: Type: text/html, Size: 1841 bytes --] ^ permalink raw reply [flat|nested] 13+ messages in thread
* ✗ i915.CI.BAT: failure for Fix ctm-limited subtest 2025-03-24 9:09 [PATCH i-g-t 0/3] Fix ctm-limited subtest Swati Sharma ` (4 preceding siblings ...) 2025-03-24 13:27 ` ✗ Xe.CI.BAT: failure " Patchwork @ 2025-03-24 13:43 ` Patchwork 2025-03-24 15:18 ` ✓ Xe.CI.Full: success " Patchwork 6 siblings, 0 replies; 13+ messages in thread From: Patchwork @ 2025-03-24 13:43 UTC (permalink / raw) To: Swati Sharma; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 4249 bytes --] == Series Details == Series: Fix ctm-limited subtest URL : https://patchwork.freedesktop.org/series/146647/ State : failure == Summary == CI Bug Log - changes from IGT_8279 -> IGTPW_12818 ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with IGTPW_12818 absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_12818, please notify your bug team (I915-ci-infra@lists.freedesktop.org) to allow them to document this new failure mode, which will reduce false positives in CI. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12818/index.html Participating hosts (42 -> 40) ------------------------------ Missing (2): bat-arlh-2 fi-snb-2520m Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_12818: ### IGT changes ### #### Possible regressions #### * igt@debugfs_test@read_all_entries: - fi-cfl-8109u: [PASS][1] -> [DMESG-WARN][2] +48 other tests dmesg-warn [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8279/fi-cfl-8109u/igt@debugfs_test@read_all_entries.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12818/fi-cfl-8109u/igt@debugfs_test@read_all_entries.html Known issues ------------ Here are the changes found in IGTPW_12818 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@dmabuf@all-tests: - bat-apl-1: [PASS][3] -> [INCOMPLETE][4] ([i915#12904]) +1 other test incomplete [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8279/bat-apl-1/igt@dmabuf@all-tests.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12818/bat-apl-1/igt@dmabuf@all-tests.html * igt@i915_selftest@live@late_gt_pm: - fi-cfl-8109u: [PASS][5] -> [DMESG-WARN][6] ([i915#13735]) +32 other tests dmesg-warn [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8279/fi-cfl-8109u/igt@i915_selftest@live@late_gt_pm.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12818/fi-cfl-8109u/igt@i915_selftest@live@late_gt_pm.html * igt@i915_selftest@live@workarounds: - bat-arlh-3: [PASS][7] -> [INCOMPLETE][8] ([i915#12445]) +1 other test incomplete [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8279/bat-arlh-3/igt@i915_selftest@live@workarounds.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12818/bat-arlh-3/igt@i915_selftest@live@workarounds.html #### Possible fixes #### * igt@dmabuf@all-tests@dma_fence_chain: - fi-bsw-n3050: [INCOMPLETE][9] ([i915#12904]) -> [PASS][10] +1 other test pass [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8279/fi-bsw-n3050/igt@dmabuf@all-tests@dma_fence_chain.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12818/fi-bsw-n3050/igt@dmabuf@all-tests@dma_fence_chain.html * igt@i915_selftest@live@workarounds: - bat-arls-5: [DMESG-FAIL][11] ([i915#12061]) -> [PASS][12] +1 other test pass [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8279/bat-arls-5/igt@i915_selftest@live@workarounds.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12818/bat-arls-5/igt@i915_selftest@live@workarounds.html - bat-arls-6: [DMESG-FAIL][13] ([i915#12061]) -> [PASS][14] +1 other test pass [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_8279/bat-arls-6/igt@i915_selftest@live@workarounds.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12818/bat-arls-6/igt@i915_selftest@live@workarounds.html [i915#12061]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12061 [i915#12445]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12445 [i915#12904]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/12904 [i915#13735]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/13735 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_8279 -> IGTPW_12818 CI-20190529: 20190529 CI_DRM_16306: f8c17a63ca147e008f36d1efd80206d4ce4e8ce1 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_12818: 12818 IGT_8279: 8279 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_12818/index.html [-- Attachment #2: Type: text/html, Size: 5153 bytes --] ^ permalink raw reply [flat|nested] 13+ messages in thread
* ✓ Xe.CI.Full: success for Fix ctm-limited subtest 2025-03-24 9:09 [PATCH i-g-t 0/3] Fix ctm-limited subtest Swati Sharma ` (5 preceding siblings ...) 2025-03-24 13:43 ` ✗ i915.CI.BAT: " Patchwork @ 2025-03-24 15:18 ` Patchwork 6 siblings, 0 replies; 13+ messages in thread From: Patchwork @ 2025-03-24 15:18 UTC (permalink / raw) To: Swati Sharma; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 81489 bytes --] == Series Details == Series: Fix ctm-limited subtest URL : https://patchwork.freedesktop.org/series/146647/ State : success == Summary == CI Bug Log - changes from XEIGT_8279_full -> XEIGTPW_12818_full ==================================================== Summary ------- **SUCCESS** No regressions found. Participating hosts (4 -> 4) ------------------------------ No changes in participating hosts Known issues ------------ Here are the changes found in XEIGTPW_12818_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@core_hotunplug@hotreplug-lateclose: - shard-lnl: NOTRUN -> [ABORT][1] ([Intel XE#3914]) [1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-lnl-8/igt@core_hotunplug@hotreplug-lateclose.html * igt@intel_hwmon@hwmon-read: - shard-lnl: NOTRUN -> [SKIP][2] ([Intel XE#1125]) [2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-lnl-7/igt@intel_hwmon@hwmon-read.html * igt@kms_addfb_basic@invalid-smem-bo-on-discrete: - shard-lnl: NOTRUN -> [SKIP][3] ([Intel XE#3157]) [3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-lnl-5/igt@kms_addfb_basic@invalid-smem-bo-on-discrete.html * igt@kms_async_flips@alternate-sync-async-flip: - shard-bmg: [PASS][4] -> [FAIL][5] ([Intel XE#827]) +1 other test fail [4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8279/shard-bmg-4/igt@kms_async_flips@alternate-sync-async-flip.html [5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-bmg-2/igt@kms_async_flips@alternate-sync-async-flip.html * igt@kms_async_flips@async-flip-with-page-flip-events-atomic: - shard-lnl: [PASS][6] -> [FAIL][7] ([Intel XE#3719] / [Intel XE#911]) +3 other tests fail [6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8279/shard-lnl-2/igt@kms_async_flips@async-flip-with-page-flip-events-atomic.html [7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-lnl-4/igt@kms_async_flips@async-flip-with-page-flip-events-atomic.html * igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-dp-2-4-rc-ccs-cc: - shard-dg2-set2: NOTRUN -> [SKIP][8] ([Intel XE#2550] / [Intel XE#3767]) +15 other tests skip [8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-dg2-432/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-d-dp-2-4-rc-ccs-cc.html * igt@kms_async_flips@invalid-async-flip-atomic: - shard-lnl: NOTRUN -> [SKIP][9] ([Intel XE#3768]) [9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-lnl-7/igt@kms_async_flips@invalid-async-flip-atomic.html - shard-bmg: NOTRUN -> [SKIP][10] ([Intel XE#3768]) [10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-bmg-6/igt@kms_async_flips@invalid-async-flip-atomic.html * igt@kms_async_flips@test-cursor-atomic: - shard-lnl: NOTRUN -> [SKIP][11] ([Intel XE#664]) [11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-lnl-4/igt@kms_async_flips@test-cursor-atomic.html * igt@kms_atomic@plane-primary-overlay-mutable-zpos: - shard-bmg: NOTRUN -> [SKIP][12] ([Intel XE#2385]) [12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-bmg-1/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html * igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels: - shard-bmg: NOTRUN -> [SKIP][13] ([Intel XE#2370]) [13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-bmg-8/igt@kms_atomic_transition@plane-all-modeset-transition-internal-panels.html * igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1: - shard-lnl: NOTRUN -> [DMESG-WARN][14] ([Intel XE#324]) +6 other tests dmesg-warn [14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-lnl-8/igt@kms_atomic_transition@plane-toggle-modeset-transition@pipe-a-edp-1.html * igt@kms_big_fb@4-tiled-8bpp-rotate-270: - shard-dg2-set2: NOTRUN -> [SKIP][15] ([Intel XE#316]) +5 other tests skip [15]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-dg2-433/igt@kms_big_fb@4-tiled-8bpp-rotate-270.html * igt@kms_big_fb@linear-32bpp-rotate-90: - shard-bmg: NOTRUN -> [SKIP][16] ([Intel XE#2327]) +6 other tests skip [16]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-bmg-3/igt@kms_big_fb@linear-32bpp-rotate-90.html * igt@kms_big_fb@x-tiled-16bpp-rotate-270: - shard-lnl: NOTRUN -> [SKIP][17] ([Intel XE#1407]) +3 other tests skip [17]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-lnl-8/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html * igt@kms_big_fb@y-tiled-16bpp-rotate-0: - shard-bmg: NOTRUN -> [SKIP][18] ([Intel XE#1124]) +14 other tests skip [18]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-bmg-4/igt@kms_big_fb@y-tiled-16bpp-rotate-0.html * igt@kms_big_fb@y-tiled-32bpp-rotate-0: - shard-lnl: NOTRUN -> [SKIP][19] ([Intel XE#1124]) +6 other tests skip [19]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-lnl-7/igt@kms_big_fb@y-tiled-32bpp-rotate-0.html * igt@kms_big_fb@y-tiled-addfb: - shard-bmg: NOTRUN -> [SKIP][20] ([Intel XE#2328]) [20]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-bmg-6/igt@kms_big_fb@y-tiled-addfb.html - shard-lnl: NOTRUN -> [SKIP][21] ([Intel XE#1467]) [21]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-lnl-7/igt@kms_big_fb@y-tiled-addfb.html * igt@kms_big_fb@yf-tiled-addfb-size-overflow: - shard-bmg: NOTRUN -> [SKIP][22] ([Intel XE#610]) [22]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-bmg-3/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html - shard-dg2-set2: NOTRUN -> [SKIP][23] ([Intel XE#610]) [23]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-dg2-464/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html - shard-lnl: NOTRUN -> [SKIP][24] ([Intel XE#1428]) [24]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-lnl-5/igt@kms_big_fb@yf-tiled-addfb-size-overflow.html * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip: - shard-dg2-set2: NOTRUN -> [SKIP][25] ([Intel XE#1124]) +11 other tests skip [25]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-dg2-435/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html * igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p: - shard-lnl: NOTRUN -> [SKIP][26] ([Intel XE#2191]) +1 other test skip [26]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-lnl-4/igt@kms_bw@connected-linear-tiling-2-displays-2160x1440p.html * igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p: - shard-lnl: NOTRUN -> [SKIP][27] ([Intel XE#1512]) [27]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-lnl-1/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html - shard-bmg: NOTRUN -> [SKIP][28] ([Intel XE#2314] / [Intel XE#2894]) +1 other test skip [28]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-bmg-4/igt@kms_bw@connected-linear-tiling-4-displays-1920x1080p.html * igt@kms_bw@linear-tiling-1-displays-1920x1080p: - shard-dg2-set2: NOTRUN -> [SKIP][29] ([Intel XE#367]) +2 other tests skip [29]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-dg2-464/igt@kms_bw@linear-tiling-1-displays-1920x1080p.html * igt@kms_bw@linear-tiling-1-displays-2560x1440p: - shard-bmg: NOTRUN -> [SKIP][30] ([Intel XE#367]) +2 other tests skip [30]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-bmg-3/igt@kms_bw@linear-tiling-1-displays-2560x1440p.html * igt@kms_bw@linear-tiling-2-displays-2560x1440p: - shard-lnl: NOTRUN -> [SKIP][31] ([Intel XE#367]) +1 other test skip [31]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-lnl-4/igt@kms_bw@linear-tiling-2-displays-2560x1440p.html * igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs@pipe-c-dp-2: - shard-bmg: NOTRUN -> [SKIP][32] ([Intel XE#2652] / [Intel XE#787]) +12 other tests skip [32]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-bmg-3/igt@kms_ccs@bad-rotation-90-4-tiled-lnl-ccs@pipe-c-dp-2.html * igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc@pipe-c-dp-2: - shard-dg2-set2: NOTRUN -> [SKIP][33] ([Intel XE#787]) +186 other tests skip [33]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-dg2-432/igt@kms_ccs@ccs-on-another-bo-4-tiled-mtl-rc-ccs-cc@pipe-c-dp-2.html * igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][34] ([Intel XE#455] / [Intel XE#787]) +43 other tests skip [34]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-dg2-435/igt@kms_ccs@ccs-on-another-bo-y-tiled-gen12-rc-ccs-cc@pipe-d-dp-4.html * igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc: - shard-bmg: NOTRUN -> [SKIP][35] ([Intel XE#2887]) +21 other tests skip [35]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-bmg-4/igt@kms_ccs@crc-primary-basic-4-tiled-dg2-rc-ccs-cc.html * igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs@pipe-b-edp-1: - shard-lnl: NOTRUN -> [SKIP][36] ([Intel XE#2669]) +7 other tests skip [36]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-lnl-3/igt@kms_ccs@crc-primary-rotation-180-4-tiled-bmg-ccs@pipe-b-edp-1.html * igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs: - shard-bmg: NOTRUN -> [SKIP][37] ([Intel XE#3432]) [37]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-bmg-4/igt@kms_ccs@crc-primary-suspend-4-tiled-mtl-mc-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][38] ([Intel XE#1727] / [Intel XE#3113] / [Intel XE#3124] / [Intel XE#4345]) [38]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-dp-4: - shard-dg2-set2: NOTRUN -> [DMESG-WARN][39] ([Intel XE#1727] / [Intel XE#3113]) [39]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-c-dp-4.html * igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-d-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [INCOMPLETE][40] ([Intel XE#3124]) [40]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-dg2-463/igt@kms_ccs@random-ccs-data-4-tiled-dg2-mc-ccs@pipe-d-hdmi-a-6.html * igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs: - shard-dg2-set2: NOTRUN -> [SKIP][41] ([Intel XE#2907]) +3 other tests skip [41]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-dg2-435/igt@kms_ccs@random-ccs-data-4-tiled-lnl-ccs.html * igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs: - shard-lnl: NOTRUN -> [SKIP][42] ([Intel XE#2887]) +13 other tests skip [42]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-lnl-4/igt@kms_ccs@random-ccs-data-4-tiled-mtl-mc-ccs.html * igt@kms_cdclk@mode-transition@pipe-d-dp-4: - shard-dg2-set2: NOTRUN -> [SKIP][43] ([Intel XE#4417]) +3 other tests skip [43]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-dg2-435/igt@kms_cdclk@mode-transition@pipe-d-dp-4.html * igt@kms_chamelium_color@ctm-blue-to-red: - shard-lnl: NOTRUN -> [SKIP][44] ([Intel XE#306]) +1 other test skip [44]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-lnl-8/igt@kms_chamelium_color@ctm-blue-to-red.html - shard-bmg: NOTRUN -> [SKIP][45] ([Intel XE#2325]) +3 other tests skip [45]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-bmg-1/igt@kms_chamelium_color@ctm-blue-to-red.html * igt@kms_chamelium_color@ctm-limited-range: - shard-dg2-set2: NOTRUN -> [SKIP][46] ([Intel XE#306]) +2 other tests skip [46]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-dg2-435/igt@kms_chamelium_color@ctm-limited-range.html * igt@kms_chamelium_hpd@dp-hpd-storm-disable: - shard-bmg: NOTRUN -> [SKIP][47] ([Intel XE#2252]) +9 other tests skip [47]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-bmg-1/igt@kms_chamelium_hpd@dp-hpd-storm-disable.html * igt@kms_chamelium_hpd@hdmi-hpd: - shard-dg2-set2: NOTRUN -> [SKIP][48] ([Intel XE#373]) +7 other tests skip [48]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-dg2-436/igt@kms_chamelium_hpd@hdmi-hpd.html - shard-lnl: NOTRUN -> [SKIP][49] ([Intel XE#373]) +7 other tests skip [49]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-lnl-3/igt@kms_chamelium_hpd@hdmi-hpd.html * igt@kms_content_protection@content-type-change: - shard-bmg: NOTRUN -> [SKIP][50] ([Intel XE#2341]) [50]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-bmg-4/igt@kms_content_protection@content-type-change.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-dg2-set2: NOTRUN -> [SKIP][51] ([Intel XE#307]) [51]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-dg2-435/igt@kms_content_protection@dp-mst-lic-type-0.html - shard-lnl: NOTRUN -> [SKIP][52] ([Intel XE#307]) [52]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-lnl-4/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-bmg: NOTRUN -> [SKIP][53] ([Intel XE#2390]) [53]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-bmg-6/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@legacy@pipe-a-dp-4: - shard-dg2-set2: NOTRUN -> [FAIL][54] ([Intel XE#1178]) [54]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-dg2-435/igt@kms_content_protection@legacy@pipe-a-dp-4.html * igt@kms_content_protection@lic-type-0@pipe-a-dp-2: - shard-bmg: NOTRUN -> [FAIL][55] ([Intel XE#1178]) +1 other test fail [55]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-bmg-3/igt@kms_content_protection@lic-type-0@pipe-a-dp-2.html * igt@kms_content_protection@uevent@pipe-a-dp-2: - shard-dg2-set2: NOTRUN -> [FAIL][56] ([Intel XE#1188]) [56]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-dg2-432/igt@kms_content_protection@uevent@pipe-a-dp-2.html * igt@kms_cursor_crc@cursor-offscreen-32x32: - shard-bmg: NOTRUN -> [SKIP][57] ([Intel XE#2320]) +6 other tests skip [57]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-bmg-1/igt@kms_cursor_crc@cursor-offscreen-32x32.html * igt@kms_cursor_crc@cursor-onscreen-512x512: - shard-dg2-set2: NOTRUN -> [SKIP][58] ([Intel XE#308]) +2 other tests skip [58]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-dg2-435/igt@kms_cursor_crc@cursor-onscreen-512x512.html * igt@kms_cursor_crc@cursor-random-128x42: - shard-lnl: NOTRUN -> [SKIP][59] ([Intel XE#1424]) +3 other tests skip [59]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-lnl-7/igt@kms_cursor_crc@cursor-random-128x42.html * igt@kms_cursor_crc@cursor-sliding-512x170: - shard-lnl: NOTRUN -> [SKIP][60] ([Intel XE#2321]) +1 other test skip [60]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-lnl-8/igt@kms_cursor_crc@cursor-sliding-512x170.html * igt@kms_cursor_crc@cursor-sliding-512x512: - shard-bmg: NOTRUN -> [SKIP][61] ([Intel XE#2321]) +1 other test skip [61]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-bmg-3/igt@kms_cursor_crc@cursor-sliding-512x512.html * igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy: - shard-dg2-set2: [PASS][62] -> [SKIP][63] ([Intel XE#309]) +2 other tests skip [62]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8279/shard-dg2-435/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html [63]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-dg2-464/igt@kms_cursor_legacy@2x-cursor-vs-flip-legacy.html * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic: - shard-dg2-set2: NOTRUN -> [SKIP][64] ([Intel XE#309]) [64]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-dg2-464/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html * igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic: - shard-lnl: NOTRUN -> [SKIP][65] ([Intel XE#309]) +5 other tests skip [65]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-lnl-1/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-dg2-set2: NOTRUN -> [SKIP][66] ([Intel XE#323]) +2 other tests skip [66]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-dg2-432/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - shard-bmg: NOTRUN -> [SKIP][67] ([Intel XE#2286]) +1 other test skip [67]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-bmg-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@cursora-vs-flipb-toggle: - shard-bmg: NOTRUN -> [SKIP][68] ([Intel XE#2291]) [68]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-bmg-6/igt@kms_cursor_legacy@cursora-vs-flipb-toggle.html * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic: - shard-bmg: [PASS][69] -> [SKIP][70] ([Intel XE#2291]) +4 other tests skip [69]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8279/shard-bmg-3/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic.html [70]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-bmg-6/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic.html * igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions: - shard-lnl: NOTRUN -> [SKIP][71] ([Intel XE#323]) +1 other test skip [71]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-lnl-4/igt@kms_cursor_legacy@short-busy-flip-before-cursor-atomic-transitions.html * igt@kms_dirtyfb@psr-dirtyfb-ioctl: - shard-bmg: NOTRUN -> [SKIP][72] ([Intel XE#1508]) [72]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-bmg-6/igt@kms_dirtyfb@psr-dirtyfb-ioctl.html * igt@kms_display_modes@extended-mode-basic: - shard-lnl: NOTRUN -> [SKIP][73] ([Intel XE#4302]) [73]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-lnl-5/igt@kms_display_modes@extended-mode-basic.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc: - shard-dg2-set2: [PASS][74] -> [SKIP][75] ([Intel XE#455]) [74]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8279/shard-dg2-435/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html [75]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-dg2-464/igt@kms_dither@fb-8bpc-vs-panel-6bpc.html * igt@kms_dp_link_training@uhbr-sst: - shard-bmg: NOTRUN -> [SKIP][76] ([Intel XE#4354]) [76]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-bmg-8/igt@kms_dp_link_training@uhbr-sst.html - shard-dg2-set2: NOTRUN -> [SKIP][77] ([Intel XE#4356]) [77]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-dg2-436/igt@kms_dp_link_training@uhbr-sst.html - shard-lnl: NOTRUN -> [SKIP][78] ([Intel XE#4354]) [78]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-lnl-3/igt@kms_dp_link_training@uhbr-sst.html * igt@kms_dsc@dsc-fractional-bpp-with-bpc: - shard-bmg: NOTRUN -> [SKIP][79] ([Intel XE#2244]) +2 other tests skip [79]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-bmg-1/igt@kms_dsc@dsc-fractional-bpp-with-bpc.html * igt@kms_dsc@dsc-with-output-formats-with-bpc: - shard-dg2-set2: NOTRUN -> [SKIP][80] ([Intel XE#455]) +20 other tests skip [80]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-dg2-464/igt@kms_dsc@dsc-with-output-formats-with-bpc.html - shard-lnl: NOTRUN -> [SKIP][81] ([Intel XE#2244]) +2 other tests skip [81]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-lnl-6/igt@kms_dsc@dsc-with-output-formats-with-bpc.html * igt@kms_fbcon_fbt@psr-suspend: - shard-dg2-set2: NOTRUN -> [SKIP][82] ([Intel XE#776]) [82]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-dg2-435/igt@kms_fbcon_fbt@psr-suspend.html * igt@kms_feature_discovery@chamelium: - shard-bmg: NOTRUN -> [SKIP][83] ([Intel XE#2372]) [83]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-bmg-6/igt@kms_feature_discovery@chamelium.html * igt@kms_feature_discovery@display-4x: - shard-bmg: NOTRUN -> [SKIP][84] ([Intel XE#1138]) [84]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-bmg-8/igt@kms_feature_discovery@display-4x.html - shard-dg2-set2: NOTRUN -> [SKIP][85] ([Intel XE#1138]) [85]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-dg2-464/igt@kms_feature_discovery@display-4x.html - shard-lnl: NOTRUN -> [SKIP][86] ([Intel XE#1138]) [86]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-lnl-8/igt@kms_feature_discovery@display-4x.html * igt@kms_feature_discovery@psr2: - shard-bmg: NOTRUN -> [SKIP][87] ([Intel XE#2374]) [87]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-bmg-1/igt@kms_feature_discovery@psr2.html * igt@kms_flip@2x-dpms-vs-vblank-race: - shard-dg2-set2: [PASS][88] -> [SKIP][89] ([Intel XE#310]) +3 other tests skip [88]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8279/shard-dg2-435/igt@kms_flip@2x-dpms-vs-vblank-race.html [89]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-dg2-464/igt@kms_flip@2x-dpms-vs-vblank-race.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a6-dp4: - shard-dg2-set2: [PASS][90] -> [FAIL][91] ([Intel XE#301] / [Intel XE#3321]) [90]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8279/shard-dg2-435/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a6-dp4.html [91]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-dg2-433/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-hdmi-a6-dp4.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3: - shard-bmg: [PASS][92] -> [FAIL][93] ([Intel XE#3321]) [92]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8279/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3.html [93]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-bmg-3/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bd-dp2-hdmi-a3.html * igt@kms_flip@2x-flip-vs-expired-vblank@ab-hdmi-a6-dp4: - shard-dg2-set2: [PASS][94] -> [FAIL][95] ([Intel XE#301]) +2 other tests fail [94]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8279/shard-dg2-436/igt@kms_flip@2x-flip-vs-expired-vblank@ab-hdmi-a6-dp4.html [95]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-dg2-463/igt@kms_flip@2x-flip-vs-expired-vblank@ab-hdmi-a6-dp4.html * igt@kms_flip@2x-flip-vs-rmfb-interruptible: - shard-lnl: NOTRUN -> [SKIP][96] ([Intel XE#1421]) +2 other tests skip [96]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-lnl-3/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html * igt@kms_flip@2x-flip-vs-wf_vblank-interruptible: - shard-bmg: [PASS][97] -> [SKIP][98] ([Intel XE#2316]) +3 other tests skip [97]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8279/shard-bmg-8/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html [98]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-bmg-4/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html * igt@kms_flip@2x-nonexisting-fb: - shard-bmg: NOTRUN -> [SKIP][99] ([Intel XE#2316]) +2 other tests skip [99]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-bmg-6/igt@kms_flip@2x-nonexisting-fb.html * igt@kms_flip@2x-plain-flip-fb-recreate: - shard-dg2-set2: NOTRUN -> [SKIP][100] ([Intel XE#310]) +1 other test skip [100]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-dg2-464/igt@kms_flip@2x-plain-flip-fb-recreate.html * igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible: - shard-bmg: [PASS][101] -> [INCOMPLETE][102] ([Intel XE#2049]) +1 other test incomplete [101]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8279/shard-bmg-3/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html [102]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-bmg-6/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html * igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling: - shard-lnl: NOTRUN -> [SKIP][103] ([Intel XE#1397] / [Intel XE#1745]) [103]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-lnl-6/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling.html * igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling@pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][104] ([Intel XE#1397]) [104]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-lnl-6/igt@kms_flip_scaled_crc@flip-32bpp-xtile-to-64bpp-xtile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode: - shard-bmg: NOTRUN -> [SKIP][105] ([Intel XE#2293]) +7 other tests skip [105]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-bmg-1/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-32bpp-yftileccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-default-mode: - shard-lnl: NOTRUN -> [SKIP][106] ([Intel XE#1401]) +5 other tests skip [106]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-lnl-6/igt@kms_flip_scaled_crc@flip-32bpp-yftile-to-64bpp-yftile-upscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling: - shard-lnl: NOTRUN -> [SKIP][107] ([Intel XE#1401] / [Intel XE#1745]) +5 other tests skip [107]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-lnl-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-bmg: NOTRUN -> [SKIP][108] ([Intel XE#2380]) +1 other test skip [108]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-bmg-4/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling: - shard-bmg: NOTRUN -> [SKIP][109] ([Intel XE#2293] / [Intel XE#2380]) +7 other tests skip [109]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-bmg-2/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html * igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-render: - shard-lnl: NOTRUN -> [SKIP][110] ([Intel XE#651]) +17 other tests skip [110]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-lnl-5/igt@kms_frontbuffer_tracking@drrs-1p-primscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-render: - shard-dg2-set2: NOTRUN -> [SKIP][111] ([Intel XE#651]) +35 other tests skip [111]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-dg2-435/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-render: - shard-dg2-set2: [PASS][112] -> [SKIP][113] ([Intel XE#656]) [112]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8279/shard-dg2-436/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-render.html [113]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-dg2-464/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt: - shard-bmg: NOTRUN -> [SKIP][114] ([Intel XE#4141]) +17 other tests skip [114]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc: - shard-bmg: NOTRUN -> [SKIP][115] ([Intel XE#2311]) +39 other tests skip [115]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-msflip-blt: - shard-dg2-set2: NOTRUN -> [SKIP][116] ([Intel XE#653]) +28 other tests skip [116]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-dg2-436/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff: - shard-dg2-set2: NOTRUN -> [SKIP][117] ([Intel XE#656]) +8 other tests skip [117]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render: - shard-bmg: NOTRUN -> [SKIP][118] ([Intel XE#2312]) +24 other tests skip [118]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-bmg-4/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt: - shard-bmg: NOTRUN -> [SKIP][119] ([Intel XE#2313]) +42 other tests skip [119]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-blt: - shard-lnl: NOTRUN -> [SKIP][120] ([Intel XE#656]) +41 other tests skip [120]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-lnl-7/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-blt.html * igt@kms_getfb@getfb-reject-ccs: - shard-bmg: NOTRUN -> [SKIP][121] ([Intel XE#2502]) [121]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-bmg-2/igt@kms_getfb@getfb-reject-ccs.html - shard-dg2-set2: NOTRUN -> [SKIP][122] ([Intel XE#605]) [122]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-dg2-436/igt@kms_getfb@getfb-reject-ccs.html - shard-lnl: NOTRUN -> [SKIP][123] ([Intel XE#605]) [123]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-lnl-4/igt@kms_getfb@getfb-reject-ccs.html * igt@kms_joiner@basic-big-joiner: - shard-dg2-set2: NOTRUN -> [SKIP][124] ([Intel XE#346]) [124]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-dg2-463/igt@kms_joiner@basic-big-joiner.html * igt@kms_joiner@basic-force-big-joiner: - shard-bmg: [PASS][125] -> [SKIP][126] ([Intel XE#3012]) [125]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8279/shard-bmg-4/igt@kms_joiner@basic-force-big-joiner.html [126]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-bmg-6/igt@kms_joiner@basic-force-big-joiner.html * igt@kms_joiner@basic-force-ultra-joiner: - shard-dg2-set2: NOTRUN -> [SKIP][127] ([Intel XE#2925]) [127]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-dg2-432/igt@kms_joiner@basic-force-ultra-joiner.html * igt@kms_joiner@basic-ultra-joiner: - shard-bmg: NOTRUN -> [SKIP][128] ([Intel XE#2927]) [128]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-bmg-1/igt@kms_joiner@basic-ultra-joiner.html - shard-dg2-set2: NOTRUN -> [SKIP][129] ([Intel XE#2927]) [129]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-dg2-435/igt@kms_joiner@basic-ultra-joiner.html - shard-lnl: NOTRUN -> [SKIP][130] ([Intel XE#2927]) [130]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-lnl-5/igt@kms_joiner@basic-ultra-joiner.html * igt@kms_pipe_stress@stress-xrgb8888-ytiled: - shard-bmg: NOTRUN -> [SKIP][131] ([Intel XE#4329]) [131]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-bmg-8/igt@kms_pipe_stress@stress-xrgb8888-ytiled.html * igt@kms_plane_lowres@tiling-yf: - shard-bmg: NOTRUN -> [SKIP][132] ([Intel XE#2393]) [132]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-bmg-4/igt@kms_plane_lowres@tiling-yf.html - shard-lnl: NOTRUN -> [SKIP][133] ([Intel XE#599]) [133]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-lnl-6/igt@kms_plane_lowres@tiling-yf.html * igt@kms_plane_scaling@intel-max-src-size: - shard-dg2-set2: NOTRUN -> [ABORT][134] ([Intel XE#2705] / [Intel XE#4540]) +1 other test abort [134]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-dg2-464/igt@kms_plane_scaling@intel-max-src-size.html - shard-lnl: NOTRUN -> [SKIP][135] ([Intel XE#3307]) [135]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-lnl-1/igt@kms_plane_scaling@intel-max-src-size.html * igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6: - shard-dg2-set2: NOTRUN -> [ABORT][136] ([Intel XE#4502] / [Intel XE#4540]) [136]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-dg2-464/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-6.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format: - shard-bmg: NOTRUN -> [SKIP][137] ([Intel XE#2763]) +9 other tests skip [137]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-bmg-8/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html - shard-dg2-set2: NOTRUN -> [SKIP][138] ([Intel XE#2763] / [Intel XE#455]) +1 other test skip [138]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-dg2-436/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format.html * igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b: - shard-dg2-set2: NOTRUN -> [SKIP][139] ([Intel XE#2763]) +2 other tests skip [139]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-dg2-436/igt@kms_plane_scaling@plane-downscale-factor-0-25-with-pixel-format@pipe-b.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a: - shard-lnl: NOTRUN -> [SKIP][140] ([Intel XE#2763]) +15 other tests skip [140]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-lnl-7/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a.html * igt@kms_pm_backlight@bad-brightness: - shard-bmg: NOTRUN -> [SKIP][141] ([Intel XE#870]) +1 other test skip [141]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-bmg-3/igt@kms_pm_backlight@bad-brightness.html * igt@kms_pm_backlight@fade-with-suspend: - shard-dg2-set2: NOTRUN -> [SKIP][142] ([Intel XE#870]) [142]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-dg2-433/igt@kms_pm_backlight@fade-with-suspend.html * igt@kms_pm_dc@dc3co-vpb-simulation: - shard-bmg: NOTRUN -> [SKIP][143] ([Intel XE#2391]) [143]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-bmg-2/igt@kms_pm_dc@dc3co-vpb-simulation.html - shard-dg2-set2: NOTRUN -> [SKIP][144] ([Intel XE#1122]) +1 other test skip [144]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-dg2-436/igt@kms_pm_dc@dc3co-vpb-simulation.html * igt@kms_pm_dc@dc5-dpms: - shard-lnl: [PASS][145] -> [FAIL][146] ([Intel XE#718]) [145]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8279/shard-lnl-1/igt@kms_pm_dc@dc5-dpms.html [146]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-lnl-3/igt@kms_pm_dc@dc5-dpms.html * igt@kms_pm_dc@dc6-dpms: - shard-dg2-set2: NOTRUN -> [SKIP][147] ([Intel XE#908]) [147]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-dg2-436/igt@kms_pm_dc@dc6-dpms.html - shard-lnl: NOTRUN -> [FAIL][148] ([Intel XE#1430]) [148]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-lnl-3/igt@kms_pm_dc@dc6-dpms.html - shard-bmg: NOTRUN -> [FAIL][149] ([Intel XE#1430]) [149]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-bmg-8/igt@kms_pm_dc@dc6-dpms.html * igt@kms_pm_rpm@modeset-lpsp-stress: - shard-bmg: NOTRUN -> [SKIP][150] ([Intel XE#1439] / [Intel XE#3141] / [Intel XE#836]) [150]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-bmg-8/igt@kms_pm_rpm@modeset-lpsp-stress.html * igt@kms_pm_rpm@modeset-non-lpsp: - shard-lnl: NOTRUN -> [SKIP][151] ([Intel XE#1439] / [Intel XE#3141]) [151]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-lnl-8/igt@kms_pm_rpm@modeset-non-lpsp.html * igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf: - shard-dg2-set2: NOTRUN -> [SKIP][152] ([Intel XE#1489]) +9 other tests skip [152]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-dg2-435/igt@kms_psr2_sf@fbc-psr2-overlay-plane-update-continuous-sf.html * igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area: - shard-lnl: NOTRUN -> [SKIP][153] ([Intel XE#2893]) +1 other test skip [153]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-lnl-8/igt@kms_psr2_sf@pr-overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf: - shard-bmg: NOTRUN -> [SKIP][154] ([Intel XE#1489]) +10 other tests skip [154]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-bmg-3/igt@kms_psr2_sf@psr2-overlay-plane-move-continuous-sf.html * igt@kms_psr2_su@page_flip-p010: - shard-bmg: NOTRUN -> [SKIP][155] ([Intel XE#2387]) +2 other tests skip [155]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-bmg-6/igt@kms_psr2_su@page_flip-p010.html - shard-lnl: NOTRUN -> [SKIP][156] ([Intel XE#1128]) [156]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-lnl-7/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr@fbc-pr-cursor-blt: - shard-bmg: NOTRUN -> [SKIP][157] ([Intel XE#2234] / [Intel XE#2850]) +25 other tests skip [157]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-bmg-4/igt@kms_psr@fbc-pr-cursor-blt.html * igt@kms_psr@fbc-psr2-primary-render: - shard-dg2-set2: NOTRUN -> [SKIP][158] ([Intel XE#2850] / [Intel XE#929]) +23 other tests skip [158]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-dg2-463/igt@kms_psr@fbc-psr2-primary-render.html * igt@kms_psr@pr-primary-blt: - shard-lnl: NOTRUN -> [SKIP][159] ([Intel XE#1406]) +7 other tests skip [159]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-lnl-6/igt@kms_psr@pr-primary-blt.html * igt@kms_psr@psr2-primary-render: - shard-bmg: NOTRUN -> [SKIP][160] ([Intel XE#2234]) [160]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-bmg-1/igt@kms_psr@psr2-primary-render.html * igt@kms_psr_stress_test@flip-primary-invalidate-overlay: - shard-bmg: NOTRUN -> [SKIP][161] ([Intel XE#2414]) +1 other test skip [161]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-bmg-8/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html - shard-dg2-set2: NOTRUN -> [SKIP][162] ([Intel XE#2939]) [162]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-dg2-436/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html * igt@kms_rotation_crc@primary-rotation-270: - shard-dg2-set2: NOTRUN -> [SKIP][163] ([Intel XE#3414]) +1 other test skip [163]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-dg2-435/igt@kms_rotation_crc@primary-rotation-270.html - shard-lnl: NOTRUN -> [SKIP][164] ([Intel XE#3414] / [Intel XE#3904]) +1 other test skip [164]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-lnl-4/igt@kms_rotation_crc@primary-rotation-270.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-180: - shard-bmg: NOTRUN -> [SKIP][165] ([Intel XE#2330]) +1 other test skip [165]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-bmg-6/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html - shard-lnl: NOTRUN -> [SKIP][166] ([Intel XE#1127]) +1 other test skip [166]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-lnl-7/igt@kms_rotation_crc@primary-y-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-270: - shard-bmg: NOTRUN -> [SKIP][167] ([Intel XE#3414] / [Intel XE#3904]) +2 other tests skip [167]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-bmg-3/igt@kms_rotation_crc@primary-y-tiled-reflect-x-270.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-dg2-set2: NOTRUN -> [SKIP][168] ([Intel XE#1127]) [168]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-dg2-435/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_scaling_modes@scaling-mode-center: - shard-bmg: NOTRUN -> [SKIP][169] ([Intel XE#2413]) +1 other test skip [169]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-bmg-1/igt@kms_scaling_modes@scaling-mode-center.html * igt@kms_setmode@clone-exclusive-crtc: - shard-bmg: NOTRUN -> [SKIP][170] ([Intel XE#1435]) +1 other test skip [170]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-bmg-4/igt@kms_setmode@clone-exclusive-crtc.html * igt@kms_setmode@invalid-clone-single-crtc: - shard-lnl: NOTRUN -> [SKIP][171] ([Intel XE#1435]) +2 other tests skip [171]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-lnl-5/igt@kms_setmode@invalid-clone-single-crtc.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-bmg: NOTRUN -> [SKIP][172] ([Intel XE#2426]) [172]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-bmg-6/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_tv_load_detect@load-detect: - shard-dg2-set2: NOTRUN -> [SKIP][173] ([Intel XE#330]) [173]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-dg2-433/igt@kms_tv_load_detect@load-detect.html - shard-lnl: NOTRUN -> [SKIP][174] ([Intel XE#330]) [174]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-lnl-3/igt@kms_tv_load_detect@load-detect.html - shard-bmg: NOTRUN -> [SKIP][175] ([Intel XE#2450]) [175]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-bmg-2/igt@kms_tv_load_detect@load-detect.html * igt@kms_vrr@cmrr: - shard-dg2-set2: NOTRUN -> [SKIP][176] ([Intel XE#2168]) [176]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-dg2-436/igt@kms_vrr@cmrr.html * igt@kms_vrr@lobf: - shard-bmg: NOTRUN -> [SKIP][177] ([Intel XE#2168]) +1 other test skip [177]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-bmg-1/igt@kms_vrr@lobf.html * igt@kms_vrr@max-min: - shard-bmg: NOTRUN -> [SKIP][178] ([Intel XE#1499]) [178]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-bmg-3/igt@kms_vrr@max-min.html * igt@kms_writeback@writeback-fb-id-xrgb2101010: - shard-bmg: NOTRUN -> [SKIP][179] ([Intel XE#756]) +2 other tests skip [179]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-bmg-3/igt@kms_writeback@writeback-fb-id-xrgb2101010.html - shard-dg2-set2: NOTRUN -> [SKIP][180] ([Intel XE#756]) +2 other tests skip [180]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-dg2-433/igt@kms_writeback@writeback-fb-id-xrgb2101010.html - shard-lnl: NOTRUN -> [SKIP][181] ([Intel XE#756]) [181]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-lnl-1/igt@kms_writeback@writeback-fb-id-xrgb2101010.html * igt@xe_copy_basic@mem-copy-linear-0x369: - shard-dg2-set2: NOTRUN -> [SKIP][182] ([Intel XE#1123]) [182]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-dg2-463/igt@xe_copy_basic@mem-copy-linear-0x369.html * igt@xe_copy_basic@mem-set-linear-0xfd: - shard-dg2-set2: NOTRUN -> [SKIP][183] ([Intel XE#1126]) +1 other test skip [183]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-dg2-463/igt@xe_copy_basic@mem-set-linear-0xfd.html * igt@xe_eu_stall@non-blocking-read: - shard-dg2-set2: NOTRUN -> [SKIP][184] ([Intel XE#4497]) [184]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-dg2-432/igt@xe_eu_stall@non-blocking-read.html * igt@xe_eudebug@basic-vm-bind-ufence-delay-ack: - shard-dg2-set2: NOTRUN -> [SKIP][185] ([Intel XE#2905] / [Intel XE#3889]) [185]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-dg2-433/igt@xe_eudebug@basic-vm-bind-ufence-delay-ack.html - shard-lnl: NOTRUN -> [SKIP][186] ([Intel XE#2905] / [Intel XE#3889]) +1 other test skip [186]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-lnl-6/igt@xe_eudebug@basic-vm-bind-ufence-delay-ack.html * igt@xe_eudebug@basic-vm-bind-ufence-reconnect: - shard-bmg: NOTRUN -> [SKIP][187] ([Intel XE#2905] / [Intel XE#3889]) +1 other test skip [187]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-bmg-4/igt@xe_eudebug@basic-vm-bind-ufence-reconnect.html * igt@xe_eudebug_online@debugger-reopen: - shard-dg2-set2: NOTRUN -> [SKIP][188] ([Intel XE#2905]) +13 other tests skip [188]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-dg2-463/igt@xe_eudebug_online@debugger-reopen.html - shard-lnl: NOTRUN -> [SKIP][189] ([Intel XE#2905]) +11 other tests skip [189]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-lnl-7/igt@xe_eudebug_online@debugger-reopen.html * igt@xe_eudebug_online@single-step-one: - shard-bmg: NOTRUN -> [SKIP][190] ([Intel XE#2905]) +15 other tests skip [190]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-bmg-2/igt@xe_eudebug_online@single-step-one.html * igt@xe_eudebug_sriov@deny-eudebug: - shard-dg2-set2: NOTRUN -> [SKIP][191] ([Intel XE#4518]) +1 other test skip [191]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-dg2-436/igt@xe_eudebug_sriov@deny-eudebug.html - shard-lnl: NOTRUN -> [SKIP][192] ([Intel XE#4518]) [192]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-lnl-2/igt@xe_eudebug_sriov@deny-eudebug.html * igt@xe_eudebug_sriov@deny-sriov: - shard-bmg: NOTRUN -> [SKIP][193] ([Intel XE#4518]) +1 other test skip [193]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-bmg-6/igt@xe_eudebug_sriov@deny-sriov.html * igt@xe_evict_ccs@evict-overcommit-standalone-instantfree-samefd: - shard-lnl: NOTRUN -> [SKIP][194] ([Intel XE#688]) +5 other tests skip [194]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-lnl-3/igt@xe_evict_ccs@evict-overcommit-standalone-instantfree-samefd.html * igt@xe_exec_basic@multigpu-no-exec-bindexecqueue: - shard-bmg: NOTRUN -> [SKIP][195] ([Intel XE#2322]) +15 other tests skip [195]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-bmg-1/igt@xe_exec_basic@multigpu-no-exec-bindexecqueue.html * igt@xe_exec_basic@multigpu-no-exec-userptr-invalidate-race: - shard-dg2-set2: NOTRUN -> [SKIP][196] ([Intel XE#1392]) [196]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-dg2-432/igt@xe_exec_basic@multigpu-no-exec-userptr-invalidate-race.html * igt@xe_exec_basic@multigpu-once-rebind: - shard-dg2-set2: [PASS][197] -> [SKIP][198] ([Intel XE#1392]) +4 other tests skip [197]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8279/shard-dg2-464/igt@xe_exec_basic@multigpu-once-rebind.html [198]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-dg2-432/igt@xe_exec_basic@multigpu-once-rebind.html * igt@xe_exec_basic@multigpu-once-userptr: - shard-lnl: NOTRUN -> [SKIP][199] ([Intel XE#1392]) +10 other tests skip [199]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-lnl-6/igt@xe_exec_basic@multigpu-once-userptr.html * igt@xe_exec_fault_mode@twice-userptr-rebind-imm: - shard-dg2-set2: NOTRUN -> [SKIP][200] ([Intel XE#288]) +29 other tests skip [200]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-dg2-435/igt@xe_exec_fault_mode@twice-userptr-rebind-imm.html * igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit: - shard-dg2-set2: NOTRUN -> [FAIL][201] ([Intel XE#1999]) +2 other tests fail [201]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-dg2-436/igt@xe_live_ktest@xe_mocs@xe_live_mocs_kernel_kunit.html * igt@xe_media_fill@media-fill: - shard-bmg: NOTRUN -> [SKIP][202] ([Intel XE#2459] / [Intel XE#2596]) [202]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-bmg-8/igt@xe_media_fill@media-fill.html - shard-dg2-set2: NOTRUN -> [SKIP][203] ([Intel XE#560]) [203]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-dg2-464/igt@xe_media_fill@media-fill.html - shard-lnl: NOTRUN -> [SKIP][204] ([Intel XE#560]) [204]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-lnl-8/igt@xe_media_fill@media-fill.html * igt@xe_oa@oa-tlb-invalidate: - shard-dg2-set2: NOTRUN -> [SKIP][205] ([Intel XE#2541] / [Intel XE#3573]) +3 other tests skip [205]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-dg2-432/igt@xe_oa@oa-tlb-invalidate.html - shard-lnl: NOTRUN -> [SKIP][206] ([Intel XE#2248]) [206]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-lnl-7/igt@xe_oa@oa-tlb-invalidate.html - shard-bmg: NOTRUN -> [SKIP][207] ([Intel XE#2248]) [207]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-bmg-6/igt@xe_oa@oa-tlb-invalidate.html * igt@xe_oa@syncs-syncobj-cfg: - shard-dg2-set2: NOTRUN -> [SKIP][208] ([Intel XE#2541] / [Intel XE#3573] / [Intel XE#4501]) +1 other test skip [208]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-dg2-435/igt@xe_oa@syncs-syncobj-cfg.html * igt@xe_pat@display-vs-wb-transient: - shard-dg2-set2: NOTRUN -> [SKIP][209] ([Intel XE#1337]) [209]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-dg2-435/igt@xe_pat@display-vs-wb-transient.html * igt@xe_pm@d3cold-mocs: - shard-bmg: NOTRUN -> [SKIP][210] ([Intel XE#2284]) +3 other tests skip [210]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-bmg-3/igt@xe_pm@d3cold-mocs.html * igt@xe_pm@d3cold-multiple-execs: - shard-dg2-set2: NOTRUN -> [SKIP][211] ([Intel XE#2284] / [Intel XE#366]) [211]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-dg2-436/igt@xe_pm@d3cold-multiple-execs.html - shard-lnl: NOTRUN -> [SKIP][212] ([Intel XE#2284] / [Intel XE#366]) [212]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-lnl-3/igt@xe_pm@d3cold-multiple-execs.html * igt@xe_pm@s3-basic-exec: - shard-lnl: NOTRUN -> [SKIP][213] ([Intel XE#584]) +1 other test skip [213]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-lnl-8/igt@xe_pm@s3-basic-exec.html * igt@xe_pm@s4-basic-exec: - shard-bmg: NOTRUN -> [ABORT][214] ([Intel XE#4268]) +1 other test abort [214]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-bmg-8/igt@xe_pm@s4-basic-exec.html * igt@xe_query@multigpu-query-engines: - shard-dg2-set2: NOTRUN -> [SKIP][215] ([Intel XE#944]) +3 other tests skip [215]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-dg2-433/igt@xe_query@multigpu-query-engines.html * igt@xe_query@multigpu-query-invalid-size: - shard-lnl: NOTRUN -> [SKIP][216] ([Intel XE#944]) +3 other tests skip [216]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-lnl-1/igt@xe_query@multigpu-query-invalid-size.html * igt@xe_query@multigpu-query-uc-fw-version-huc: - shard-bmg: NOTRUN -> [SKIP][217] ([Intel XE#944]) +4 other tests skip [217]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-bmg-4/igt@xe_query@multigpu-query-uc-fw-version-huc.html * igt@xe_sriov_auto_provisioning@fair-allocation: - shard-lnl: NOTRUN -> [SKIP][218] ([Intel XE#4130]) +1 other test skip [218]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-lnl-4/igt@xe_sriov_auto_provisioning@fair-allocation.html * igt@xe_sriov_flr@flr-vf1-clear: - shard-bmg: NOTRUN -> [SKIP][219] ([Intel XE#3342]) [219]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-bmg-3/igt@xe_sriov_flr@flr-vf1-clear.html * igt@xe_sriov_flr@flr-vfs-parallel: - shard-bmg: NOTRUN -> [SKIP][220] ([Intel XE#4273]) [220]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-bmg-1/igt@xe_sriov_flr@flr-vfs-parallel.html #### Possible fixes #### * igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs: - shard-bmg: [INCOMPLETE][221] ([Intel XE#3862]) -> [PASS][222] +1 other test pass [221]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8279/shard-bmg-2/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html [222]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-bmg-6/igt@kms_ccs@crc-primary-suspend-4-tiled-bmg-ccs.html * igt@kms_color@ctm-signed: - shard-bmg: [INCOMPLETE][223] ([Intel XE#4346]) -> [PASS][224] [223]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8279/shard-bmg-8/igt@kms_color@ctm-signed.html [224]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-bmg-2/igt@kms_color@ctm-signed.html * igt@kms_color@ctm-signed@pipe-c-dp-2: - shard-bmg: [INCOMPLETE][225] -> [PASS][226] [225]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8279/shard-bmg-8/igt@kms_color@ctm-signed@pipe-c-dp-2.html [226]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-bmg-2/igt@kms_color@ctm-signed@pipe-c-dp-2.html * igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy: - shard-bmg: [SKIP][227] ([Intel XE#2291]) -> [PASS][228] +3 other tests pass [227]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8279/shard-bmg-4/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html [228]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-bmg-3/igt@kms_cursor_legacy@2x-flip-vs-cursor-legacy.html * igt@kms_cursor_legacy@cursorb-vs-flipa-legacy: - shard-dg2-set2: [SKIP][229] ([Intel XE#309]) -> [PASS][230] +2 other tests pass [229]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8279/shard-dg2-464/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html [230]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-dg2-463/igt@kms_cursor_legacy@cursorb-vs-flipa-legacy.html * igt@kms_flip@2x-absolute-wf_vblank-interruptible: - shard-dg2-set2: [SKIP][231] ([Intel XE#310]) -> [PASS][232] +5 other tests pass [231]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8279/shard-dg2-464/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html [232]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-dg2-432/igt@kms_flip@2x-absolute-wf_vblank-interruptible.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-dp2-hdmi-a3: - shard-bmg: [FAIL][233] ([Intel XE#3321]) -> [PASS][234] [233]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8279/shard-bmg-1/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-dp2-hdmi-a3.html [234]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-bmg-3/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ab-dp2-hdmi-a3.html * igt@kms_flip@2x-plain-flip-fb-recreate-interruptible: - shard-bmg: [SKIP][235] ([Intel XE#2316]) -> [PASS][236] +10 other tests pass [235]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8279/shard-bmg-6/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html [236]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-bmg-3/igt@kms_flip@2x-plain-flip-fb-recreate-interruptible.html * igt@kms_flip@flip-vs-absolute-wf_vblank: - shard-bmg: [FAIL][237] ([Intel XE#2882]) -> [PASS][238] [237]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8279/shard-bmg-8/igt@kms_flip@flip-vs-absolute-wf_vblank.html [238]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-bmg-6/igt@kms_flip@flip-vs-absolute-wf_vblank.html * igt@kms_flip@flip-vs-expired-vblank-interruptible: - shard-dg2-set2: [FAIL][239] ([Intel XE#301]) -> [PASS][240] +1 other test pass [239]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8279/shard-dg2-433/igt@kms_flip@flip-vs-expired-vblank-interruptible.html [240]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-dg2-432/igt@kms_flip@flip-vs-expired-vblank-interruptible.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1: - shard-lnl: [FAIL][241] ([Intel XE#301]) -> [PASS][242] +3 other tests pass [241]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8279/shard-lnl-1/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html [242]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-lnl-4/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-edp1.html * igt@kms_flip@flip-vs-suspend@b-hdmi-a3: - shard-bmg: [INCOMPLETE][243] ([Intel XE#2049] / [Intel XE#2597]) -> [PASS][244] +1 other test pass [243]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8279/shard-bmg-6/igt@kms_flip@flip-vs-suspend@b-hdmi-a3.html [244]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-bmg-6/igt@kms_flip@flip-vs-suspend@b-hdmi-a3.html * igt@kms_flip@plain-flip-fb-recreate-interruptible@a-edp1: - shard-lnl: [FAIL][245] ([Intel XE#886]) -> [PASS][246] +1 other test pass [245]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8279/shard-lnl-6/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-edp1.html [246]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-lnl-1/igt@kms_flip@plain-flip-fb-recreate-interruptible@a-edp1.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc: - shard-dg2-set2: [SKIP][247] ([Intel XE#656]) -> [PASS][248] +4 other tests pass [247]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8279/shard-dg2-464/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html [248]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-dg2-432/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-spr-indfb-draw-mmap-wc.html * igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait: - shard-dg2-set2: [SKIP][249] ([Intel XE#836]) -> [PASS][250] [249]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8279/shard-dg2-464/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html [250]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-dg2-435/igt@kms_pm_rpm@modeset-non-lpsp-stress-no-wait.html * igt@kms_setmode@invalid-clone-single-crtc: - shard-dg2-set2: [SKIP][251] ([Intel XE#455]) -> [PASS][252] [251]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8279/shard-dg2-464/igt@kms_setmode@invalid-clone-single-crtc.html [252]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-dg2-433/igt@kms_setmode@invalid-clone-single-crtc.html * igt@kms_vblank@ts-continuation-suspend: - shard-bmg: [INCOMPLETE][253] ([Intel XE#4488]) -> [PASS][254] +1 other test pass [253]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8279/shard-bmg-6/igt@kms_vblank@ts-continuation-suspend.html [254]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-bmg-2/igt@kms_vblank@ts-continuation-suspend.html * igt@kms_vrr@cmrr@pipe-a-edp-1: - shard-lnl: [FAIL][255] ([Intel XE#4459]) -> [PASS][256] +1 other test pass [255]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8279/shard-lnl-3/igt@kms_vrr@cmrr@pipe-a-edp-1.html [256]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-lnl-3/igt@kms_vrr@cmrr@pipe-a-edp-1.html * igt@xe_exec_basic@multigpu-once-basic-defer-mmap: - shard-dg2-set2: [SKIP][257] ([Intel XE#1392]) -> [PASS][258] +2 other tests pass [257]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8279/shard-dg2-432/igt@xe_exec_basic@multigpu-once-basic-defer-mmap.html [258]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-dg2-433/igt@xe_exec_basic@multigpu-once-basic-defer-mmap.html #### Warnings #### * igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-6: - shard-dg2-set2: [SKIP][259] ([Intel XE#787]) -> [SKIP][260] ([Intel XE#455] / [Intel XE#787]) +3 other tests skip [259]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8279/shard-dg2-433/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-6.html [260]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-dg2-464/igt@kms_ccs@crc-primary-basic-4-tiled-mtl-rc-ccs-cc@pipe-d-hdmi-a-6.html * igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs@pipe-d-hdmi-a-6: - shard-dg2-set2: [SKIP][261] ([Intel XE#455] / [Intel XE#787]) -> [SKIP][262] ([Intel XE#787]) +7 other tests skip [261]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8279/shard-dg2-464/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs@pipe-d-hdmi-a-6.html [262]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-dg2-435/igt@kms_ccs@missing-ccs-buffer-4-tiled-mtl-rc-ccs@pipe-d-hdmi-a-6.html * igt@kms_content_protection@lic-type-0: - shard-dg2-set2: [INCOMPLETE][263] ([Intel XE#4132]) -> [SKIP][264] ([Intel XE#455]) [263]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8279/shard-dg2-432/igt@kms_content_protection@lic-type-0.html [264]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-dg2-464/igt@kms_content_protection@lic-type-0.html * igt@kms_content_protection@uevent: - shard-bmg: [FAIL][265] ([Intel XE#1188]) -> [SKIP][266] ([Intel XE#2341]) [265]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8279/shard-bmg-3/igt@kms_content_protection@uevent.html [266]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-bmg-6/igt@kms_content_protection@uevent.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-6: - shard-dg2-set2: [SKIP][267] ([i915#3804]) -> [SKIP][268] ([Intel XE#455] / [i915#3804]) [267]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8279/shard-dg2-435/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-6.html [268]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-dg2-464/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-6.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-bmg: [SKIP][269] ([Intel XE#2311]) -> [SKIP][270] ([Intel XE#2312]) +6 other tests skip [269]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8279/shard-bmg-8/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html [270]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-bmg-4/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-wc: - shard-dg2-set2: [SKIP][271] ([Intel XE#651]) -> [SKIP][272] ([Intel XE#656]) +3 other tests skip [271]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8279/shard-dg2-435/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-wc.html [272]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-dg2-464/igt@kms_frontbuffer_tracking@drrs-2p-scndscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt: - shard-bmg: [SKIP][273] ([Intel XE#2312]) -> [SKIP][274] ([Intel XE#4141]) +5 other tests skip [273]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8279/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt.html [274]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-bmg-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-indfb-msflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render: - shard-bmg: [SKIP][275] ([Intel XE#4141]) -> [SKIP][276] ([Intel XE#2312]) +3 other tests skip [275]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8279/shard-bmg-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html [276]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-bmg-4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-render.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-indfb-pgflip-blt: - shard-bmg: [SKIP][277] ([Intel XE#2312]) -> [SKIP][278] ([Intel XE#2311]) +11 other tests skip [277]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8279/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-indfb-pgflip-blt.html [278]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-bmg-1/igt@kms_frontbuffer_tracking@fbcdrrs-2p-primscrn-indfb-pgflip-blt.html * igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-plflip-blt: - shard-dg2-set2: [SKIP][279] ([Intel XE#656]) -> [SKIP][280] ([Intel XE#651]) +11 other tests skip [279]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8279/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-plflip-blt.html [280]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcdrrs-2p-scndscrn-shrfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff: - shard-bmg: [SKIP][281] ([Intel XE#2312]) -> [SKIP][282] ([Intel XE#2313]) +11 other tests skip [281]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8279/shard-bmg-6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff.html [282]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-bmg-3/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-spr-indfb-onoff.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen: - shard-dg2-set2: [SKIP][283] ([Intel XE#656]) -> [SKIP][284] ([Intel XE#653]) +11 other tests skip [283]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8279/shard-dg2-464/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen.html [284]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-dg2-433/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-blt: - shard-dg2-set2: [SKIP][285] ([Intel XE#653]) -> [SKIP][286] ([Intel XE#656]) +5 other tests skip [285]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8279/shard-dg2-435/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-blt.html [286]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-dg2-464/igt@kms_frontbuffer_tracking@psr-2p-primscrn-pri-shrfb-draw-blt.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-bmg: [SKIP][287] ([Intel XE#2313]) -> [SKIP][288] ([Intel XE#2312]) +12 other tests skip [287]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8279/shard-bmg-2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html [288]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-bmg-4/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt@kms_tiled_display@basic-test-pattern: - shard-bmg: [FAIL][289] ([Intel XE#1729]) -> [SKIP][290] ([Intel XE#2426]) [289]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8279/shard-bmg-1/igt@kms_tiled_display@basic-test-pattern.html [290]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-bmg-2/igt@kms_tiled_display@basic-test-pattern.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-dg2-set2: [SKIP][291] ([Intel XE#362]) -> [SKIP][292] ([Intel XE#1500]) [291]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_8279/shard-dg2-464/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html [292]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/shard-dg2-432/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html [Intel XE#1122]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1122 [Intel XE#1123]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1123 [Intel XE#1124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1124 [Intel XE#1125]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1125 [Intel XE#1126]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1126 [Intel XE#1127]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1127 [Intel XE#1128]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1128 [Intel XE#1138]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1138 [Intel XE#1178]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1178 [Intel XE#1188]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1188 [Intel XE#1337]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1337 [Intel XE#1392]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1392 [Intel XE#1397]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1397 [Intel XE#1401]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1401 [Intel XE#1406]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1406 [Intel XE#1407]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1407 [Intel XE#1421]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1421 [Intel XE#1424]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1424 [Intel XE#1428]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1428 [Intel XE#1430]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1430 [Intel XE#1435]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1435 [Intel XE#1439]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1439 [Intel XE#1467]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1467 [Intel XE#1489]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1489 [Intel XE#1499]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1499 [Intel XE#1500]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1500 [Intel XE#1508]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1508 [Intel XE#1512]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1512 [Intel XE#1727]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1727 [Intel XE#1729]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1729 [Intel XE#1745]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1745 [Intel XE#1999]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/1999 [Intel XE#2049]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2049 [Intel XE#2168]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2168 [Intel XE#2191]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2191 [Intel XE#2234]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2234 [Intel XE#2244]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2244 [Intel XE#2248]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2248 [Intel XE#2252]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2252 [Intel XE#2284]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2284 [Intel XE#2286]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2286 [Intel XE#2291]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2291 [Intel XE#2293]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2293 [Intel XE#2311]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2311 [Intel XE#2312]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2312 [Intel XE#2313]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2313 [Intel XE#2314]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2314 [Intel XE#2316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2316 [Intel XE#2320]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2320 [Intel XE#2321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2321 [Intel XE#2322]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2322 [Intel XE#2325]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2325 [Intel XE#2327]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2327 [Intel XE#2328]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2328 [Intel XE#2330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2330 [Intel XE#2341]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2341 [Intel XE#2370]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2370 [Intel XE#2372]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2372 [Intel XE#2374]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2374 [Intel XE#2380]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2380 [Intel XE#2385]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2385 [Intel XE#2387]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2387 [Intel XE#2390]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2390 [Intel XE#2391]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2391 [Intel XE#2393]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2393 [Intel XE#2413]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2413 [Intel XE#2414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2414 [Intel XE#2426]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2426 [Intel XE#2450]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2450 [Intel XE#2459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2459 [Intel XE#2502]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2502 [Intel XE#2541]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2541 [Intel XE#2550]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2550 [Intel XE#2596]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2596 [Intel XE#2597]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2597 [Intel XE#2652]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2652 [Intel XE#2669]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2669 [Intel XE#2705]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2705 [Intel XE#2763]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2763 [Intel XE#2850]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2850 [Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288 [Intel XE#2882]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2882 [Intel XE#2887]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2887 [Intel XE#2893]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2893 [Intel XE#2894]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2894 [Intel XE#2905]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2905 [Intel XE#2907]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2907 [Intel XE#2925]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2925 [Intel XE#2927]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2927 [Intel XE#2939]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/2939 [Intel XE#301]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/301 [Intel XE#3012]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3012 [Intel XE#306]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/306 [Intel XE#307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/307 [Intel XE#308]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/308 [Intel XE#309]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/309 [Intel XE#310]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/310 [Intel XE#3113]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3113 [Intel XE#3124]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3124 [Intel XE#3141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3141 [Intel XE#3157]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3157 [Intel XE#316]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/316 [Intel XE#323]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/323 [Intel XE#324]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/324 [Intel XE#330]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/330 [Intel XE#3307]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3307 [Intel XE#3321]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3321 [Intel XE#3342]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3342 [Intel XE#3414]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3414 [Intel XE#3432]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3432 [Intel XE#346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/346 [Intel XE#3573]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3573 [Intel XE#362]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/362 [Intel XE#366]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/366 [Intel XE#367]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/367 [Intel XE#3719]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3719 [Intel XE#373]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/373 [Intel XE#3767]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3767 [Intel XE#3768]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3768 [Intel XE#3862]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3862 [Intel XE#3889]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3889 [Intel XE#3904]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3904 [Intel XE#3914]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/3914 [Intel XE#4130]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4130 [Intel XE#4132]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4132 [Intel XE#4141]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4141 [Intel XE#4268]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4268 [Intel XE#4273]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4273 [Intel XE#4302]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4302 [Intel XE#4329]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4329 [Intel XE#4345]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4345 [Intel XE#4346]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4346 [Intel XE#4354]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4354 [Intel XE#4356]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4356 [Intel XE#4417]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4417 [Intel XE#4459]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4459 [Intel XE#4488]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4488 [Intel XE#4497]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4497 [Intel XE#4501]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4501 [Intel XE#4502]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4502 [Intel XE#4518]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4518 [Intel XE#4540]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/4540 [Intel XE#455]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/455 [Intel XE#560]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/560 [Intel XE#584]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/584 [Intel XE#599]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/599 [Intel XE#605]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/605 [Intel XE#610]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/610 [Intel XE#651]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/651 [Intel XE#653]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/653 [Intel XE#656]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/656 [Intel XE#664]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/664 [Intel XE#688]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/688 [Intel XE#718]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/718 [Intel XE#756]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/756 [Intel XE#776]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/776 [Intel XE#787]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/787 [Intel XE#827]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/827 [Intel XE#836]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/836 [Intel XE#870]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/870 [Intel XE#886]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/886 [Intel XE#908]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/908 [Intel XE#911]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/911 [Intel XE#929]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/929 [Intel XE#944]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/944 [i915#3804]: https://gitlab.freedesktop.org/drm/i915/kernel/-/issues/3804 Build changes ------------- * IGT: IGT_8279 -> IGTPW_12818 IGTPW_12818: 12818 IGT_8279: 8279 xe-2839-f8c17a63ca147e008f36d1efd80206d4ce4e8ce1: f8c17a63ca147e008f36d1efd80206d4ce4e8ce1 == Logs == For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_12818/index.html [-- Attachment #2: Type: text/html, Size: 95278 bytes --] ^ permalink raw reply [flat|nested] 13+ messages in thread
end of thread, other threads:[~2025-03-27 6:02 UTC | newest] Thread overview: 13+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2025-03-24 9:09 [PATCH i-g-t 0/3] Fix ctm-limited subtest Swati Sharma 2025-03-24 9:09 ` [PATCH i-g-t 1/3] lib/igt_chamelium: Add chamelium_frame_match_or_dump_frame_pair() Swati Sharma 2025-03-26 12:23 ` Borah, Chaitanya Kumar 2025-03-27 5:56 ` Sharma, Swati2 2025-03-24 9:09 ` [PATCH i-g-t 2/3] tests/chamelium/kms_chamelium_color: Fix ctm-limited-range subtest Swati Sharma 2025-03-27 5:27 ` Borah, Chaitanya Kumar 2025-03-27 6:02 ` Sharma, Swati2 2025-03-24 9:09 ` [PATCH i-g-t 3/3] tests/chamelium/kms_chamelium_color: Set rgb_full to 1.0 Swati Sharma 2025-03-27 5:30 ` Borah, Chaitanya Kumar 2025-03-24 13:27 ` ✓ Xe.CI.BAT: success for Fix ctm-limited subtest Patchwork 2025-03-24 13:27 ` ✗ Xe.CI.BAT: failure " Patchwork 2025-03-24 13:43 ` ✗ i915.CI.BAT: " Patchwork 2025-03-24 15:18 ` ✓ Xe.CI.Full: success " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox