* [igt-dev] [PATCH i-g-t 1/3] lib/igt_fb: round rgb->yuv conversion results
@ 2023-05-15 12:03 Swati Sharma
2023-05-15 12:03 ` [igt-dev] [PATCH i-g-t 2/3] tests/kms_pipe_crc_basic: Add NV12 CRC sanitycheck tests Swati Sharma
` (6 more replies)
0 siblings, 7 replies; 12+ messages in thread
From: Swati Sharma @ 2023-05-15 12:03 UTC (permalink / raw)
To: igt-dev
Round rgb->yuv conversion results.
Signed-off-by: Ville Syrjala <ville.syrjala@linux.intel.com>
Signed-off-by: Swati Sharma <swati2.sharma@intel.com>
---
lib/igt_fb.c | 25 +++++++++++++++----------
1 file changed, 15 insertions(+), 10 deletions(-)
diff --git a/lib/igt_fb.c b/lib/igt_fb.c
index 0fe5b6ad..2fa84288 100644
--- a/lib/igt_fb.c
+++ b/lib/igt_fb.c
@@ -3047,11 +3047,16 @@ static void igt_fb_destroy_cairo_shadow_buffer(struct igt_fb *shadow,
munmap(ptr, shadow->size);
}
-static uint8_t clamprgb(float val)
+static uint8_t clamp8(float val)
{
return clamp((int)(val + 0.5f), 0, 255);
}
+static uint8_t clamp16(float val)
+{
+ return clamp((int)(val + 0.5f), 0, 65535);
+}
+
static void read_rgb(struct igt_vec4 *rgb, const uint8_t *rgb24)
{
rgb->d[0] = rgb24[2];
@@ -3062,9 +3067,9 @@ static void read_rgb(struct igt_vec4 *rgb, const uint8_t *rgb24)
static void write_rgb(uint8_t *rgb24, const struct igt_vec4 *rgb)
{
- rgb24[2] = clamprgb(rgb->d[0]);
- rgb24[1] = clamprgb(rgb->d[1]);
- rgb24[0] = clamprgb(rgb->d[2]);
+ rgb24[2] = clamp8(rgb->d[0]);
+ rgb24[1] = clamp8(rgb->d[1]);
+ rgb24[0] = clamp8(rgb->d[2]);
}
struct fb_convert_buf {
@@ -3384,7 +3389,7 @@ static void convert_rgb24_to_yuv(struct fb_convert *cvt)
rgb_tmp += bpp;
- *y_tmp = yuv.d[0];
+ *y_tmp = clamp8(yuv.d[0]);
y_tmp += params.ay_inc;
if ((i % dst_fmt->vsub) || (j % dst_fmt->hsub))
@@ -3414,8 +3419,8 @@ static void convert_rgb24_to_yuv(struct fb_convert *cvt)
read_rgb(&pair_rgb, pair_rgb24);
pair_yuv = igt_matrix_transform(&m, &pair_rgb);
- *u_tmp = (yuv.d[1] + pair_yuv.d[1]) / 2.0f;
- *v_tmp = (yuv.d[2] + pair_yuv.d[2]) / 2.0f;
+ *u_tmp = clamp8((yuv.d[1] + pair_yuv.d[1]) / 2.0f);
+ *v_tmp = clamp8((yuv.d[2] + pair_yuv.d[2]) / 2.0f);
u_tmp += params.uv_inc;
v_tmp += params.uv_inc;
@@ -3573,7 +3578,7 @@ static void convert_float_to_yuv16(struct fb_convert *cvt, bool alpha)
rgb_tmp += fpp;
- *y_tmp = yuv.d[0];
+ *y_tmp = clamp16(yuv.d[0]);
y_tmp += params.ay_inc;
if ((i % dst_fmt->vsub) || (j % dst_fmt->hsub))
@@ -3603,8 +3608,8 @@ static void convert_float_to_yuv16(struct fb_convert *cvt, bool alpha)
read_rgbf(&pair_rgb, pair_float);
pair_yuv = igt_matrix_transform(&m, &pair_rgb);
- *u_tmp = (yuv.d[1] + pair_yuv.d[1]) / 2.0f;
- *v_tmp = (yuv.d[2] + pair_yuv.d[2]) / 2.0f;
+ *u_tmp = clamp16((yuv.d[1] + pair_yuv.d[1]) / 2.0f);
+ *v_tmp = clamp16((yuv.d[2] + pair_yuv.d[2]) / 2.0f);
u_tmp += params.uv_inc;
v_tmp += params.uv_inc;
--
2.25.1
^ permalink raw reply related [flat|nested] 12+ messages in thread* [igt-dev] [PATCH i-g-t 2/3] tests/kms_pipe_crc_basic: Add NV12 CRC sanitycheck tests 2023-05-15 12:03 [igt-dev] [PATCH i-g-t 1/3] lib/igt_fb: round rgb->yuv conversion results Swati Sharma @ 2023-05-15 12:03 ` Swati Sharma 2023-05-15 12:45 ` Ville Syrjälä 2023-05-15 12:03 ` [igt-dev] [PATCH i-g-t 3/3] intel-ci: Update fastfeedback testlist Swati Sharma ` (5 subsequent siblings) 6 siblings, 1 reply; 12+ messages in thread From: Swati Sharma @ 2023-05-15 12:03 UTC (permalink / raw) To: igt-dev New CRC sanitycheck test cases are added with NV12 format (white and solid rgb). Existing test case(with format XRGB) is modified to validate CRC with solid rgb in addition to white color fb) Signed-off-by: Swati Sharma <swati2.sharma@intel.com> Signed-off-by: Jeevan B <jeevan.b@intel.com> --- tests/kms_pipe_crc_basic.c | 198 ++++++++++++++++++++++++++++++++++--- 1 file changed, 182 insertions(+), 16 deletions(-) diff --git a/tests/kms_pipe_crc_basic.c b/tests/kms_pipe_crc_basic.c index 84c73fd7..a340d5b1 100644 --- a/tests/kms_pipe_crc_basic.c +++ b/tests/kms_pipe_crc_basic.c @@ -239,13 +239,15 @@ static void test_read_crc(data_t *data, enum pipe pipe, * CRC-sanity test, to make sure there would be no CRC mismatches * * - Create two framebuffers (FB0 & FB1) with same color info + * with different formats (RGB/NV12) * - Flip FB0 with the Primary plane & collect the CRC as ref CRC. * - Flip FB1 with the Primary plane, collect the CRC & compare with * the ref CRC. * * No CRC mismatch should happen */ -static void test_compare_crc(data_t *data, enum pipe pipe, igt_output_t *output) +static void test_compare_crc(data_t *data, enum pipe pipe, igt_output_t *output, + uint32_t format, int color) { igt_display_t *display = &data->display; igt_plane_t *primary; @@ -260,18 +262,60 @@ static void test_compare_crc(data_t *data, enum pipe pipe, igt_output_t *output) mode = igt_output_get_mode(output); /* Create two framebuffers with the same color info. */ - igt_create_color_fb(data->drm_fd, - mode->hdisplay, mode->vdisplay, - DRM_FORMAT_XRGB8888, - DRM_FORMAT_MOD_LINEAR, - 1.0, 1.0, 1.0, - &fb0); - igt_create_color_fb(data->drm_fd, - mode->hdisplay, mode->vdisplay, - DRM_FORMAT_XRGB8888, - DRM_FORMAT_MOD_LINEAR, - 1.0, 1.0, 1.0, - &fb1); + switch (color) { + case 1: + igt_create_color_fb(data->drm_fd, + mode->hdisplay, mode->vdisplay, + format, DRM_FORMAT_MOD_LINEAR, + 1.0, 0.0, 0.0, + &fb0); + + igt_create_color_fb(data->drm_fd, + mode->hdisplay, mode->vdisplay, + format, DRM_FORMAT_MOD_LINEAR, + 1.0, 0.0, 0.0, + &fb1); + break; + case 2: + igt_create_color_fb(data->drm_fd, + mode->hdisplay, mode->vdisplay, + format, DRM_FORMAT_MOD_LINEAR, + 0.0, 1.0, 0.0, + &fb0); + + igt_create_color_fb(data->drm_fd, + mode->hdisplay, mode->vdisplay, + format, DRM_FORMAT_MOD_LINEAR, + 0.0, 1.0, 0.0, + &fb1); + break; + case 3: + igt_create_color_fb(data->drm_fd, + mode->hdisplay, mode->vdisplay, + format, DRM_FORMAT_MOD_LINEAR, + 0.0, 0.0, 1.0, + &fb0); + + igt_create_color_fb(data->drm_fd, + mode->hdisplay, mode->vdisplay, + format, DRM_FORMAT_MOD_LINEAR, + 0.0, 0.0, 1.0, + &fb1); + break; + case 0: + default: + igt_create_color_fb(data->drm_fd, + mode->hdisplay, mode->vdisplay, + format, DRM_FORMAT_MOD_LINEAR, + 1.0, 1.0, 1.0, + &fb0); + + igt_create_color_fb(data->drm_fd, + mode->hdisplay, mode->vdisplay, + format, DRM_FORMAT_MOD_LINEAR, + 1.0, 1.0, 1.0, + &fb1); + } /* Flip FB0 with the Primary plane & collect the CRC as ref CRC. */ primary = igt_output_get_plane_type(output, DRM_PLANE_TYPE_PRIMARY); @@ -475,8 +519,77 @@ igt_main_args("e", NULL, help_str, opt_handler, NULL) } } - igt_describe("Basic sanity check for CRC mismatches"); - igt_subtest_with_dynamic("compare-crc-sanitycheck") { + igt_describe("Basic sanity check for CRC mismatches with XRGB format " + "and white color fb."); + igt_subtest_with_dynamic("compare-crc-sanitycheck-xrgb") { + for_each_pipe_with_single_output(&data.display, pipe, output) { + if (simulation_constraint(pipe)) + continue; + + if(!pipe_output_combo_valid(&data.display, pipe, output)) + continue; + + igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), output->name) + test_compare_crc(&data, pipe, output, DRM_FORMAT_XRGB8888, 0); + + break; + } + } + + igt_describe("Basic sanity check for CRC mismatches with XRGB format " + "and red solid color fb."); + igt_subtest_with_dynamic("compare-crc-sanitycheck-xrgb-red") { + for_each_pipe_with_single_output(&data.display, pipe, output) { + if (simulation_constraint(pipe)) + continue; + + if(!pipe_output_combo_valid(&data.display, pipe, output)) + continue; + + igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), output->name) + test_compare_crc(&data, pipe, output, DRM_FORMAT_XRGB8888, 1); + + break; + } + } + + igt_describe("Basic sanity check for CRC mismatches with XRGB format " + "and green solid color fb."); + igt_subtest_with_dynamic("compare-crc-sanitycheck-xrgb-green") { + for_each_pipe_with_single_output(&data.display, pipe, output) { + if (simulation_constraint(pipe)) + continue; + + if(!pipe_output_combo_valid(&data.display, pipe, output)) + continue; + + igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), output->name) + test_compare_crc(&data, pipe, output, DRM_FORMAT_XRGB8888, 2); + + break; + } + } + + igt_describe("Basic sanity check for CRC mismatches with XRGB format " + "and blue solid color fb."); + igt_subtest_with_dynamic("compare-crc-sanitycheck-xrgb-blue") { + for_each_pipe_with_single_output(&data.display, pipe, output) { + if (simulation_constraint(pipe)) + continue; + + if(!pipe_output_combo_valid(&data.display, pipe, output)) + continue; + + igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), output->name) + test_compare_crc(&data, pipe, output, DRM_FORMAT_XRGB8888, 3); + + break; + } + } + + igt_describe("Basic sanity check for CRC mismatches with NV12 format " + "and white color fb."); + igt_subtest_with_dynamic("compare-crc-sanitycheck-nv12") { for_each_pipe_with_single_output(&data.display, pipe, output) { if (simulation_constraint(pipe)) continue; @@ -485,7 +598,60 @@ igt_main_args("e", NULL, help_str, opt_handler, NULL) continue; igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), output->name) - test_compare_crc(&data, pipe, output); + test_compare_crc(&data, pipe, output, DRM_FORMAT_NV12, 0); + + break; + } + } + + igt_describe("Basic sanity check for CRC mismatches with NV12 format " + "and red solid color fb."); + igt_subtest_with_dynamic("compare-crc-sanitycheck-nv12-red") { + for_each_pipe_with_single_output(&data.display, pipe, output) { + if (simulation_constraint(pipe)) + continue; + + if(!pipe_output_combo_valid(&data.display, pipe, output)) + continue; + + igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), output->name) + test_compare_crc(&data, pipe, output, DRM_FORMAT_NV12, 1); + + break; + } + } + + igt_describe("Basic sanity check for CRC mismatches with NV12 format " + "and green solid color fb."); + igt_subtest_with_dynamic("compare-crc-sanitycheck-nv12-green") { + for_each_pipe_with_single_output(&data.display, pipe, output) { + if (simulation_constraint(pipe)) + continue; + + if(!pipe_output_combo_valid(&data.display, pipe, output)) + continue; + + igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), output->name) + test_compare_crc(&data, pipe, output, DRM_FORMAT_NV12, 2); + + break; + } + } + + igt_describe("Basic sanity check for CRC mismatches with NV12 format " + "and blue solid color fb."); + igt_subtest_with_dynamic("compare-crc-sanitycheck-nv12-blue") { + for_each_pipe_with_single_output(&data.display, pipe, output) { + if (simulation_constraint(pipe)) + continue; + + if(!pipe_output_combo_valid(&data.display, pipe, output)) + continue; + + igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), output->name) + test_compare_crc(&data, pipe, output, DRM_FORMAT_NV12, 3); + + break; } } -- 2.25.1 ^ permalink raw reply related [flat|nested] 12+ messages in thread
* Re: [igt-dev] [PATCH i-g-t 2/3] tests/kms_pipe_crc_basic: Add NV12 CRC sanitycheck tests 2023-05-15 12:03 ` [igt-dev] [PATCH i-g-t 2/3] tests/kms_pipe_crc_basic: Add NV12 CRC sanitycheck tests Swati Sharma @ 2023-05-15 12:45 ` Ville Syrjälä 2023-05-16 12:00 ` Sharma, Swati2 0 siblings, 1 reply; 12+ messages in thread From: Ville Syrjälä @ 2023-05-15 12:45 UTC (permalink / raw) To: Swati Sharma; +Cc: igt-dev On Mon, May 15, 2023 at 05:33:33PM +0530, Swati Sharma wrote: > New CRC sanitycheck test cases are added with NV12 format (white > and solid rgb). Why? > Existing test case(with format XRGB) is modified to validate CRC > with solid rgb in addition to white color fb) > > Signed-off-by: Swati Sharma <swati2.sharma@intel.com> > Signed-off-by: Jeevan B <jeevan.b@intel.com> > --- > tests/kms_pipe_crc_basic.c | 198 ++++++++++++++++++++++++++++++++++--- > 1 file changed, 182 insertions(+), 16 deletions(-) > > diff --git a/tests/kms_pipe_crc_basic.c b/tests/kms_pipe_crc_basic.c > index 84c73fd7..a340d5b1 100644 > --- a/tests/kms_pipe_crc_basic.c > +++ b/tests/kms_pipe_crc_basic.c > @@ -239,13 +239,15 @@ static void test_read_crc(data_t *data, enum pipe pipe, > * CRC-sanity test, to make sure there would be no CRC mismatches > * > * - Create two framebuffers (FB0 & FB1) with same color info > + * with different formats (RGB/NV12) > * - Flip FB0 with the Primary plane & collect the CRC as ref CRC. > * - Flip FB1 with the Primary plane, collect the CRC & compare with > * the ref CRC. > * > * No CRC mismatch should happen > */ > -static void test_compare_crc(data_t *data, enum pipe pipe, igt_output_t *output) > +static void test_compare_crc(data_t *data, enum pipe pipe, igt_output_t *output, > + uint32_t format, int color) > { > igt_display_t *display = &data->display; > igt_plane_t *primary; > @@ -260,18 +262,60 @@ static void test_compare_crc(data_t *data, enum pipe pipe, igt_output_t *output) > mode = igt_output_get_mode(output); > > /* Create two framebuffers with the same color info. */ > - igt_create_color_fb(data->drm_fd, > - mode->hdisplay, mode->vdisplay, > - DRM_FORMAT_XRGB8888, > - DRM_FORMAT_MOD_LINEAR, > - 1.0, 1.0, 1.0, > - &fb0); > - igt_create_color_fb(data->drm_fd, > - mode->hdisplay, mode->vdisplay, > - DRM_FORMAT_XRGB8888, > - DRM_FORMAT_MOD_LINEAR, > - 1.0, 1.0, 1.0, > - &fb1); > + switch (color) { > + case 1: > + igt_create_color_fb(data->drm_fd, > + mode->hdisplay, mode->vdisplay, > + format, DRM_FORMAT_MOD_LINEAR, > + 1.0, 0.0, 0.0, > + &fb0); > + > + igt_create_color_fb(data->drm_fd, > + mode->hdisplay, mode->vdisplay, > + format, DRM_FORMAT_MOD_LINEAR, > + 1.0, 0.0, 0.0, > + &fb1); > + break; > + case 2: > + igt_create_color_fb(data->drm_fd, > + mode->hdisplay, mode->vdisplay, > + format, DRM_FORMAT_MOD_LINEAR, > + 0.0, 1.0, 0.0, > + &fb0); > + > + igt_create_color_fb(data->drm_fd, > + mode->hdisplay, mode->vdisplay, > + format, DRM_FORMAT_MOD_LINEAR, > + 0.0, 1.0, 0.0, > + &fb1); > + break; > + case 3: > + igt_create_color_fb(data->drm_fd, > + mode->hdisplay, mode->vdisplay, > + format, DRM_FORMAT_MOD_LINEAR, > + 0.0, 0.0, 1.0, > + &fb0); > + > + igt_create_color_fb(data->drm_fd, > + mode->hdisplay, mode->vdisplay, > + format, DRM_FORMAT_MOD_LINEAR, > + 0.0, 0.0, 1.0, > + &fb1); > + break; > + case 0: > + default: > + igt_create_color_fb(data->drm_fd, > + mode->hdisplay, mode->vdisplay, > + format, DRM_FORMAT_MOD_LINEAR, > + 1.0, 1.0, 1.0, > + &fb0); > + > + igt_create_color_fb(data->drm_fd, > + mode->hdisplay, mode->vdisplay, > + format, DRM_FORMAT_MOD_LINEAR, > + 1.0, 1.0, 1.0, > + &fb1); > + } > > /* Flip FB0 with the Primary plane & collect the CRC as ref CRC. */ > primary = igt_output_get_plane_type(output, DRM_PLANE_TYPE_PRIMARY); > @@ -475,8 +519,77 @@ igt_main_args("e", NULL, help_str, opt_handler, NULL) > } > } > > - igt_describe("Basic sanity check for CRC mismatches"); > - igt_subtest_with_dynamic("compare-crc-sanitycheck") { > + igt_describe("Basic sanity check for CRC mismatches with XRGB format " > + "and white color fb."); > + igt_subtest_with_dynamic("compare-crc-sanitycheck-xrgb") { > + for_each_pipe_with_single_output(&data.display, pipe, output) { > + if (simulation_constraint(pipe)) > + continue; > + > + if(!pipe_output_combo_valid(&data.display, pipe, output)) > + continue; > + > + igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), output->name) > + test_compare_crc(&data, pipe, output, DRM_FORMAT_XRGB8888, 0); > + > + break; > + } > + } > + > + igt_describe("Basic sanity check for CRC mismatches with XRGB format " > + "and red solid color fb."); > + igt_subtest_with_dynamic("compare-crc-sanitycheck-xrgb-red") { > + for_each_pipe_with_single_output(&data.display, pipe, output) { > + if (simulation_constraint(pipe)) > + continue; > + > + if(!pipe_output_combo_valid(&data.display, pipe, output)) > + continue; > + > + igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), output->name) > + test_compare_crc(&data, pipe, output, DRM_FORMAT_XRGB8888, 1); > + > + break; > + } > + } > + > + igt_describe("Basic sanity check for CRC mismatches with XRGB format " > + "and green solid color fb."); > + igt_subtest_with_dynamic("compare-crc-sanitycheck-xrgb-green") { > + for_each_pipe_with_single_output(&data.display, pipe, output) { > + if (simulation_constraint(pipe)) > + continue; > + > + if(!pipe_output_combo_valid(&data.display, pipe, output)) > + continue; > + > + igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), output->name) > + test_compare_crc(&data, pipe, output, DRM_FORMAT_XRGB8888, 2); > + > + break; > + } > + } > + > + igt_describe("Basic sanity check for CRC mismatches with XRGB format " > + "and blue solid color fb."); > + igt_subtest_with_dynamic("compare-crc-sanitycheck-xrgb-blue") { > + for_each_pipe_with_single_output(&data.display, pipe, output) { > + if (simulation_constraint(pipe)) > + continue; > + > + if(!pipe_output_combo_valid(&data.display, pipe, output)) > + continue; > + > + igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), output->name) > + test_compare_crc(&data, pipe, output, DRM_FORMAT_XRGB8888, 3); > + > + break; > + } > + } > + > + igt_describe("Basic sanity check for CRC mismatches with NV12 format " > + "and white color fb."); > + igt_subtest_with_dynamic("compare-crc-sanitycheck-nv12") { > for_each_pipe_with_single_output(&data.display, pipe, output) { > if (simulation_constraint(pipe)) > continue; > @@ -485,7 +598,60 @@ igt_main_args("e", NULL, help_str, opt_handler, NULL) > continue; > > igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), output->name) > - test_compare_crc(&data, pipe, output); > + test_compare_crc(&data, pipe, output, DRM_FORMAT_NV12, 0); > + > + break; > + } > + } > + > + igt_describe("Basic sanity check for CRC mismatches with NV12 format " > + "and red solid color fb."); > + igt_subtest_with_dynamic("compare-crc-sanitycheck-nv12-red") { > + for_each_pipe_with_single_output(&data.display, pipe, output) { > + if (simulation_constraint(pipe)) > + continue; > + > + if(!pipe_output_combo_valid(&data.display, pipe, output)) > + continue; > + > + igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), output->name) > + test_compare_crc(&data, pipe, output, DRM_FORMAT_NV12, 1); > + > + break; > + } > + } > + > + igt_describe("Basic sanity check for CRC mismatches with NV12 format " > + "and green solid color fb."); > + igt_subtest_with_dynamic("compare-crc-sanitycheck-nv12-green") { > + for_each_pipe_with_single_output(&data.display, pipe, output) { > + if (simulation_constraint(pipe)) > + continue; > + > + if(!pipe_output_combo_valid(&data.display, pipe, output)) > + continue; > + > + igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), output->name) > + test_compare_crc(&data, pipe, output, DRM_FORMAT_NV12, 2); > + > + break; > + } > + } > + > + igt_describe("Basic sanity check for CRC mismatches with NV12 format " > + "and blue solid color fb."); > + igt_subtest_with_dynamic("compare-crc-sanitycheck-nv12-blue") { > + for_each_pipe_with_single_output(&data.display, pipe, output) { > + if (simulation_constraint(pipe)) > + continue; > + > + if(!pipe_output_combo_valid(&data.display, pipe, output)) > + continue; > + > + igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), output->name) > + test_compare_crc(&data, pipe, output, DRM_FORMAT_NV12, 3); > + > + break; > } > } > > -- > 2.25.1 -- Ville Syrjälä Intel ^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [igt-dev] [PATCH i-g-t 2/3] tests/kms_pipe_crc_basic: Add NV12 CRC sanitycheck tests 2023-05-15 12:45 ` Ville Syrjälä @ 2023-05-16 12:00 ` Sharma, Swati2 0 siblings, 0 replies; 12+ messages in thread From: Sharma, Swati2 @ 2023-05-16 12:00 UTC (permalink / raw) To: Ville Syrjälä; +Cc: igt-dev On 15-May-23 6:15 PM, Ville Syrjälä wrote: > On Mon, May 15, 2023 at 05:33:33PM +0530, Swati Sharma wrote: >> New CRC sanitycheck test cases are added with NV12 format (white >> and solid rgb). > > Why? As discussed offline, tried fixing pixel-format test working in simulation https://patchwork.freedesktop.org/patch/537263/ > >> Existing test case(with format XRGB) is modified to validate CRC >> with solid rgb in addition to white color fb) >> >> Signed-off-by: Swati Sharma <swati2.sharma@intel.com> >> Signed-off-by: Jeevan B <jeevan.b@intel.com> >> --- >> tests/kms_pipe_crc_basic.c | 198 ++++++++++++++++++++++++++++++++++--- >> 1 file changed, 182 insertions(+), 16 deletions(-) >> >> diff --git a/tests/kms_pipe_crc_basic.c b/tests/kms_pipe_crc_basic.c >> index 84c73fd7..a340d5b1 100644 >> --- a/tests/kms_pipe_crc_basic.c >> +++ b/tests/kms_pipe_crc_basic.c >> @@ -239,13 +239,15 @@ static void test_read_crc(data_t *data, enum pipe pipe, >> * CRC-sanity test, to make sure there would be no CRC mismatches >> * >> * - Create two framebuffers (FB0 & FB1) with same color info >> + * with different formats (RGB/NV12) >> * - Flip FB0 with the Primary plane & collect the CRC as ref CRC. >> * - Flip FB1 with the Primary plane, collect the CRC & compare with >> * the ref CRC. >> * >> * No CRC mismatch should happen >> */ >> -static void test_compare_crc(data_t *data, enum pipe pipe, igt_output_t *output) >> +static void test_compare_crc(data_t *data, enum pipe pipe, igt_output_t *output, >> + uint32_t format, int color) >> { >> igt_display_t *display = &data->display; >> igt_plane_t *primary; >> @@ -260,18 +262,60 @@ static void test_compare_crc(data_t *data, enum pipe pipe, igt_output_t *output) >> mode = igt_output_get_mode(output); >> >> /* Create two framebuffers with the same color info. */ >> - igt_create_color_fb(data->drm_fd, >> - mode->hdisplay, mode->vdisplay, >> - DRM_FORMAT_XRGB8888, >> - DRM_FORMAT_MOD_LINEAR, >> - 1.0, 1.0, 1.0, >> - &fb0); >> - igt_create_color_fb(data->drm_fd, >> - mode->hdisplay, mode->vdisplay, >> - DRM_FORMAT_XRGB8888, >> - DRM_FORMAT_MOD_LINEAR, >> - 1.0, 1.0, 1.0, >> - &fb1); >> + switch (color) { >> + case 1: >> + igt_create_color_fb(data->drm_fd, >> + mode->hdisplay, mode->vdisplay, >> + format, DRM_FORMAT_MOD_LINEAR, >> + 1.0, 0.0, 0.0, >> + &fb0); >> + >> + igt_create_color_fb(data->drm_fd, >> + mode->hdisplay, mode->vdisplay, >> + format, DRM_FORMAT_MOD_LINEAR, >> + 1.0, 0.0, 0.0, >> + &fb1); >> + break; >> + case 2: >> + igt_create_color_fb(data->drm_fd, >> + mode->hdisplay, mode->vdisplay, >> + format, DRM_FORMAT_MOD_LINEAR, >> + 0.0, 1.0, 0.0, >> + &fb0); >> + >> + igt_create_color_fb(data->drm_fd, >> + mode->hdisplay, mode->vdisplay, >> + format, DRM_FORMAT_MOD_LINEAR, >> + 0.0, 1.0, 0.0, >> + &fb1); >> + break; >> + case 3: >> + igt_create_color_fb(data->drm_fd, >> + mode->hdisplay, mode->vdisplay, >> + format, DRM_FORMAT_MOD_LINEAR, >> + 0.0, 0.0, 1.0, >> + &fb0); >> + >> + igt_create_color_fb(data->drm_fd, >> + mode->hdisplay, mode->vdisplay, >> + format, DRM_FORMAT_MOD_LINEAR, >> + 0.0, 0.0, 1.0, >> + &fb1); >> + break; >> + case 0: >> + default: >> + igt_create_color_fb(data->drm_fd, >> + mode->hdisplay, mode->vdisplay, >> + format, DRM_FORMAT_MOD_LINEAR, >> + 1.0, 1.0, 1.0, >> + &fb0); >> + >> + igt_create_color_fb(data->drm_fd, >> + mode->hdisplay, mode->vdisplay, >> + format, DRM_FORMAT_MOD_LINEAR, >> + 1.0, 1.0, 1.0, >> + &fb1); >> + } >> >> /* Flip FB0 with the Primary plane & collect the CRC as ref CRC. */ >> primary = igt_output_get_plane_type(output, DRM_PLANE_TYPE_PRIMARY); >> @@ -475,8 +519,77 @@ igt_main_args("e", NULL, help_str, opt_handler, NULL) >> } >> } >> >> - igt_describe("Basic sanity check for CRC mismatches"); >> - igt_subtest_with_dynamic("compare-crc-sanitycheck") { >> + igt_describe("Basic sanity check for CRC mismatches with XRGB format " >> + "and white color fb."); >> + igt_subtest_with_dynamic("compare-crc-sanitycheck-xrgb") { >> + for_each_pipe_with_single_output(&data.display, pipe, output) { >> + if (simulation_constraint(pipe)) >> + continue; >> + >> + if(!pipe_output_combo_valid(&data.display, pipe, output)) >> + continue; >> + >> + igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), output->name) >> + test_compare_crc(&data, pipe, output, DRM_FORMAT_XRGB8888, 0); >> + >> + break; >> + } >> + } >> + >> + igt_describe("Basic sanity check for CRC mismatches with XRGB format " >> + "and red solid color fb."); >> + igt_subtest_with_dynamic("compare-crc-sanitycheck-xrgb-red") { >> + for_each_pipe_with_single_output(&data.display, pipe, output) { >> + if (simulation_constraint(pipe)) >> + continue; >> + >> + if(!pipe_output_combo_valid(&data.display, pipe, output)) >> + continue; >> + >> + igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), output->name) >> + test_compare_crc(&data, pipe, output, DRM_FORMAT_XRGB8888, 1); >> + >> + break; >> + } >> + } >> + >> + igt_describe("Basic sanity check for CRC mismatches with XRGB format " >> + "and green solid color fb."); >> + igt_subtest_with_dynamic("compare-crc-sanitycheck-xrgb-green") { >> + for_each_pipe_with_single_output(&data.display, pipe, output) { >> + if (simulation_constraint(pipe)) >> + continue; >> + >> + if(!pipe_output_combo_valid(&data.display, pipe, output)) >> + continue; >> + >> + igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), output->name) >> + test_compare_crc(&data, pipe, output, DRM_FORMAT_XRGB8888, 2); >> + >> + break; >> + } >> + } >> + >> + igt_describe("Basic sanity check for CRC mismatches with XRGB format " >> + "and blue solid color fb."); >> + igt_subtest_with_dynamic("compare-crc-sanitycheck-xrgb-blue") { >> + for_each_pipe_with_single_output(&data.display, pipe, output) { >> + if (simulation_constraint(pipe)) >> + continue; >> + >> + if(!pipe_output_combo_valid(&data.display, pipe, output)) >> + continue; >> + >> + igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), output->name) >> + test_compare_crc(&data, pipe, output, DRM_FORMAT_XRGB8888, 3); >> + >> + break; >> + } >> + } >> + >> + igt_describe("Basic sanity check for CRC mismatches with NV12 format " >> + "and white color fb."); >> + igt_subtest_with_dynamic("compare-crc-sanitycheck-nv12") { >> for_each_pipe_with_single_output(&data.display, pipe, output) { >> if (simulation_constraint(pipe)) >> continue; >> @@ -485,7 +598,60 @@ igt_main_args("e", NULL, help_str, opt_handler, NULL) >> continue; >> >> igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), output->name) >> - test_compare_crc(&data, pipe, output); >> + test_compare_crc(&data, pipe, output, DRM_FORMAT_NV12, 0); >> + >> + break; >> + } >> + } >> + >> + igt_describe("Basic sanity check for CRC mismatches with NV12 format " >> + "and red solid color fb."); >> + igt_subtest_with_dynamic("compare-crc-sanitycheck-nv12-red") { >> + for_each_pipe_with_single_output(&data.display, pipe, output) { >> + if (simulation_constraint(pipe)) >> + continue; >> + >> + if(!pipe_output_combo_valid(&data.display, pipe, output)) >> + continue; >> + >> + igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), output->name) >> + test_compare_crc(&data, pipe, output, DRM_FORMAT_NV12, 1); >> + >> + break; >> + } >> + } >> + >> + igt_describe("Basic sanity check for CRC mismatches with NV12 format " >> + "and green solid color fb."); >> + igt_subtest_with_dynamic("compare-crc-sanitycheck-nv12-green") { >> + for_each_pipe_with_single_output(&data.display, pipe, output) { >> + if (simulation_constraint(pipe)) >> + continue; >> + >> + if(!pipe_output_combo_valid(&data.display, pipe, output)) >> + continue; >> + >> + igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), output->name) >> + test_compare_crc(&data, pipe, output, DRM_FORMAT_NV12, 2); >> + >> + break; >> + } >> + } >> + >> + igt_describe("Basic sanity check for CRC mismatches with NV12 format " >> + "and blue solid color fb."); >> + igt_subtest_with_dynamic("compare-crc-sanitycheck-nv12-blue") { >> + for_each_pipe_with_single_output(&data.display, pipe, output) { >> + if (simulation_constraint(pipe)) >> + continue; >> + >> + if(!pipe_output_combo_valid(&data.display, pipe, output)) >> + continue; >> + >> + igt_dynamic_f("pipe-%s-%s", kmstest_pipe_name(pipe), output->name) >> + test_compare_crc(&data, pipe, output, DRM_FORMAT_NV12, 3); >> + >> + break; >> } >> } >> >> -- >> 2.25.1 > ^ permalink raw reply [flat|nested] 12+ messages in thread
* [igt-dev] [PATCH i-g-t 3/3] intel-ci: Update fastfeedback testlist 2023-05-15 12:03 [igt-dev] [PATCH i-g-t 1/3] lib/igt_fb: round rgb->yuv conversion results Swati Sharma 2023-05-15 12:03 ` [igt-dev] [PATCH i-g-t 2/3] tests/kms_pipe_crc_basic: Add NV12 CRC sanitycheck tests Swati Sharma @ 2023-05-15 12:03 ` Swati Sharma 2023-05-15 14:02 ` [igt-dev] ✗ GitLab.Pipeline: warning for series starting with [i-g-t,1/3] lib/igt_fb: round rgb->yuv conversion results Patchwork ` (4 subsequent siblings) 6 siblings, 0 replies; 12+ messages in thread From: Swati Sharma @ 2023-05-15 12:03 UTC (permalink / raw) To: igt-dev Update fastfeedback testlist. Signed-off-by: Swati Sharma <swati2.sharma@intel.com> --- tests/intel-ci/fast-feedback.testlist | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/tests/intel-ci/fast-feedback.testlist b/tests/intel-ci/fast-feedback.testlist index cfe7cb4a..3bed1d85 100644 --- a/tests/intel-ci/fast-feedback.testlist +++ b/tests/intel-ci/fast-feedback.testlist @@ -118,7 +118,14 @@ igt@kms_force_connector_basic@force-edid igt@kms_force_connector_basic@force-load-detect igt@kms_force_connector_basic@prune-stale-modes igt@kms_frontbuffer_tracking@basic -igt@kms_pipe_crc_basic@compare-crc-sanitycheck +igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb +igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb-red +igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb-green +igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb-blue +igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12 +igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12-red +igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12-green +igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12-blue igt@kms_pipe_crc_basic@hang-read-crc igt@kms_pipe_crc_basic@nonblocking-crc igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence -- 2.25.1 ^ permalink raw reply related [flat|nested] 12+ messages in thread
* [igt-dev] ✗ GitLab.Pipeline: warning for series starting with [i-g-t,1/3] lib/igt_fb: round rgb->yuv conversion results 2023-05-15 12:03 [igt-dev] [PATCH i-g-t 1/3] lib/igt_fb: round rgb->yuv conversion results Swati Sharma 2023-05-15 12:03 ` [igt-dev] [PATCH i-g-t 2/3] tests/kms_pipe_crc_basic: Add NV12 CRC sanitycheck tests Swati Sharma 2023-05-15 12:03 ` [igt-dev] [PATCH i-g-t 3/3] intel-ci: Update fastfeedback testlist Swati Sharma @ 2023-05-15 14:02 ` Patchwork 2023-05-15 14:25 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork ` (3 subsequent siblings) 6 siblings, 0 replies; 12+ messages in thread From: Patchwork @ 2023-05-15 14:02 UTC (permalink / raw) To: Swati Sharma; +Cc: igt-dev == Series Details == Series: series starting with [i-g-t,1/3] lib/igt_fb: round rgb->yuv conversion results URL : https://patchwork.freedesktop.org/series/117764/ State : warning == Summary == Pipeline status: FAILED. see https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/pipelines/881463 for the overview. build:tests-fedora-oldest-meson has failed (https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/jobs/41738294): Program igt_doc.py found: YES (/builds/gfx-ci/igt-ci-tags/scripts/igt_doc.py) Program gen_rst_index skipped: feature sphinx disabled Native dependency gtk-doc found: YES 1.29 Program generate_description_xml.py found: YES (/builds/gfx-ci/igt-ci-tags/docs/reference/igt-gpu-tools/generate_description_xml.py) Program generate_programs_xml.sh found: YES (/builds/gfx-ci/igt-ci-tags/docs/reference/igt-gpu-tools/generate_programs_xml.sh) Configuring version.xml using configuration Program sphinx-build skipped: feature sphinx disabled Program rst2html-3 found: NO Program rst2html found: YES (/usr/bin/rst2html) Program rst2pdf found: NO docs/testplan/meson.build:35:1: ERROR: The += operator currently only works with arrays, strings or ints A full log can be found at /builds/gfx-ci/igt-ci-tags/build/meson-logs/meson-log.txt section_end:1684158844:step_script section_start:1684158844:cleanup_file_variables Cleaning up project directory and file based variables section_end:1684158845:cleanup_file_variables ERROR: Job failed: exit code 1 == Logs == For more details see: https://gitlab.freedesktop.org/gfx-ci/igt-ci-tags/-/pipelines/881463 ^ permalink raw reply [flat|nested] 12+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/3] lib/igt_fb: round rgb->yuv conversion results 2023-05-15 12:03 [igt-dev] [PATCH i-g-t 1/3] lib/igt_fb: round rgb->yuv conversion results Swati Sharma ` (2 preceding siblings ...) 2023-05-15 14:02 ` [igt-dev] ✗ GitLab.Pipeline: warning for series starting with [i-g-t,1/3] lib/igt_fb: round rgb->yuv conversion results Patchwork @ 2023-05-15 14:25 ` Patchwork 2023-05-15 19:33 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/3] lib/igt_fb: round rgb->yuv conversion results (rev2) Patchwork ` (2 subsequent siblings) 6 siblings, 0 replies; 12+ messages in thread From: Patchwork @ 2023-05-15 14:25 UTC (permalink / raw) To: Swati Sharma; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 23623 bytes --] == Series Details == Series: series starting with [i-g-t,1/3] lib/igt_fb: round rgb->yuv conversion results URL : https://patchwork.freedesktop.org/series/117764/ State : success == Summary == CI Bug Log - changes from CI_DRM_13147 -> IGTPW_8957 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8957/index.html Participating hosts (37 -> 36) ------------------------------ Additional (1): bat-rpls-2 Missing (2): fi-kbl-soraka fi-snb-2520m Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_8957: ### IGT changes ### #### Possible regressions #### * {igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12-blue} (NEW): - bat-atsm-1: NOTRUN -> [SKIP][1] +7 similar issues [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8957/bat-atsm-1/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12-blue.html * {igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12-blue@pipe-a-edp-1} (NEW): - fi-skl-6600u: NOTRUN -> [FAIL][2] +3 similar issues [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8957/fi-skl-6600u/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12-blue@pipe-a-edp-1.html * {igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12-blue@pipe-a-hdmi-a-1} (NEW): - fi-elk-e7500: NOTRUN -> [FAIL][3] +3 similar issues [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8957/fi-elk-e7500/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12-blue@pipe-a-hdmi-a-1.html * {igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12-blue@pipe-a-vga-1} (NEW): - fi-blb-e6850: NOTRUN -> [FAIL][4] +3 similar issues [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8957/fi-blb-e6850/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12-blue@pipe-a-vga-1.html * {igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12-red@pipe-c-hdmi-a-2} (NEW): - fi-bsw-n3050: NOTRUN -> [FAIL][5] +3 similar issues [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8957/fi-bsw-n3050/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12-red@pipe-c-hdmi-a-2.html * {igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-a-dp-1} (NEW): - fi-apl-guc: NOTRUN -> [FAIL][6] +3 similar issues [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8957/fi-apl-guc/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-a-dp-1.html * {igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-a-hdmi-a-2} (NEW): - fi-skl-guc: NOTRUN -> [FAIL][7] +3 similar issues [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8957/fi-skl-guc/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-a-hdmi-a-2.html * {igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-a-vga-1} (NEW): - fi-hsw-4770: NOTRUN -> [FAIL][8] +3 similar issues [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8957/fi-hsw-4770/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-a-vga-1.html New tests --------- New tests have been introduced between CI_DRM_13147 and IGTPW_8957: ### New IGT tests (72) ### * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12: - Statuses : 12 skip(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12-blue: - Statuses : 12 skip(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12-blue@pipe-a-dp-1: - Statuses : 1 fail(s) 4 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12-blue@pipe-a-dp-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12-blue@pipe-a-edp-1: - Statuses : 1 fail(s) 5 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12-blue@pipe-a-hdmi-a-1: - Statuses : 1 fail(s) 4 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12-blue@pipe-a-hdmi-a-2: - Statuses : 1 fail(s) 2 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12-blue@pipe-a-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12-blue@pipe-a-vga-1: - Statuses : 2 fail(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12-blue@pipe-c-hdmi-a-2: - Statuses : 1 fail(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12-green: - Statuses : 12 skip(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12-green@pipe-a-dp-1: - Statuses : 1 fail(s) 4 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12-green@pipe-a-dp-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12-green@pipe-a-edp-1: - Statuses : 1 fail(s) 5 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12-green@pipe-a-hdmi-a-1: - Statuses : 1 fail(s) 4 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12-green@pipe-a-hdmi-a-2: - Statuses : 1 fail(s) 2 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12-green@pipe-a-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12-green@pipe-a-vga-1: - Statuses : 2 fail(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12-green@pipe-c-hdmi-a-2: - Statuses : 1 fail(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12-red: - Statuses : 12 skip(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12-red@pipe-a-dp-1: - Statuses : 1 fail(s) 4 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12-red@pipe-a-dp-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12-red@pipe-a-edp-1: - Statuses : 1 fail(s) 5 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12-red@pipe-a-hdmi-a-1: - Statuses : 1 fail(s) 4 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12-red@pipe-a-hdmi-a-2: - Statuses : 1 fail(s) 2 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12-red@pipe-a-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12-red@pipe-a-vga-1: - Statuses : 2 fail(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12-red@pipe-c-hdmi-a-2: - Statuses : 1 fail(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-a-dp-1: - Statuses : 1 fail(s) 4 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-a-dp-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-a-edp-1: - Statuses : 1 fail(s) 5 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-a-hdmi-a-1: - Statuses : 1 fail(s) 4 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-a-hdmi-a-2: - Statuses : 1 fail(s) 2 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-a-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-a-vga-1: - Statuses : 2 fail(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-c-hdmi-a-2: - Statuses : 1 fail(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb: - Statuses : 12 skip(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb-blue: - Statuses : 12 skip(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb-blue@pipe-a-dp-1: - Statuses : 5 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb-blue@pipe-a-dp-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb-blue@pipe-a-edp-1: - Statuses : 6 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb-blue@pipe-a-hdmi-a-1: - Statuses : 5 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb-blue@pipe-a-hdmi-a-2: - Statuses : 3 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb-blue@pipe-a-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb-blue@pipe-a-vga-1: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb-blue@pipe-c-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb-green: - Statuses : 12 skip(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb-green@pipe-a-dp-1: - Statuses : 5 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb-green@pipe-a-dp-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb-green@pipe-a-edp-1: - Statuses : 6 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb-green@pipe-a-hdmi-a-1: - Statuses : 5 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb-green@pipe-a-hdmi-a-2: - Statuses : 3 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb-green@pipe-a-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb-green@pipe-a-vga-1: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb-green@pipe-c-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb-red: - Statuses : 12 skip(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb-red@pipe-a-dp-1: - Statuses : 5 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb-red@pipe-a-dp-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb-red@pipe-a-edp-1: - Statuses : 6 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb-red@pipe-a-hdmi-a-1: - Statuses : 5 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb-red@pipe-a-hdmi-a-2: - Statuses : 3 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb-red@pipe-a-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb-red@pipe-a-vga-1: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb-red@pipe-c-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb@pipe-a-dp-1: - Statuses : 5 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb@pipe-a-dp-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb@pipe-a-edp-1: - Statuses : 6 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb@pipe-a-hdmi-a-1: - Statuses : 5 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb@pipe-a-hdmi-a-2: - Statuses : 3 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb@pipe-a-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb@pipe-a-vga-1: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb@pipe-c-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [0.0] s Known issues ------------ Here are the changes found in IGTPW_8957 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@debugfs_test@basic-hwmon: - bat-rpls-2: NOTRUN -> [SKIP][9] ([i915#7456]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8957/bat-rpls-2/igt@debugfs_test@basic-hwmon.html * igt@fbdev@read: - bat-rpls-2: NOTRUN -> [SKIP][10] ([i915#2582]) +4 similar issues [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8957/bat-rpls-2/igt@fbdev@read.html * igt@gem_lmem_swapping@verify-random: - bat-rpls-2: NOTRUN -> [SKIP][11] ([i915#4613]) +3 similar issues [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8957/bat-rpls-2/igt@gem_lmem_swapping@verify-random.html * igt@gem_tiled_pread_basic: - bat-rpls-2: NOTRUN -> [SKIP][12] ([i915#3282]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8957/bat-rpls-2/igt@gem_tiled_pread_basic.html * igt@i915_pm_backlight@basic-brightness: - bat-rpls-2: NOTRUN -> [SKIP][13] ([i915#7561]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8957/bat-rpls-2/igt@i915_pm_backlight@basic-brightness.html * igt@i915_pm_rps@basic-api: - bat-rpls-2: NOTRUN -> [SKIP][14] ([i915#6621]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8957/bat-rpls-2/igt@i915_pm_rps@basic-api.html * igt@i915_selftest@live@gt_engines: - bat-atsm-1: [PASS][15] -> [FAIL][16] ([i915#6268]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13147/bat-atsm-1/igt@i915_selftest@live@gt_engines.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8957/bat-atsm-1/igt@i915_selftest@live@gt_engines.html * igt@i915_selftest@live@gt_pm: - bat-rpls-2: NOTRUN -> [DMESG-FAIL][17] ([i915#4258] / [i915#7913]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8957/bat-rpls-2/igt@i915_selftest@live@gt_pm.html * igt@i915_selftest@live@reset: - bat-rpls-2: NOTRUN -> [ABORT][18] ([i915#4983] / [i915#7461] / [i915#7913] / [i915#8347]) [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8957/bat-rpls-2/igt@i915_selftest@live@reset.html - bat-rpls-1: [PASS][19] -> [ABORT][20] ([i915#4983] / [i915#7461] / [i915#7953] / [i915#8347] / [i915#8384]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13147/bat-rpls-1/igt@i915_selftest@live@reset.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8957/bat-rpls-1/igt@i915_selftest@live@reset.html * igt@kms_busy@basic: - bat-rpls-2: NOTRUN -> [SKIP][21] ([i915#1845]) +21 similar issues [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8957/bat-rpls-2/igt@kms_busy@basic.html * igt@kms_chamelium_edid@hdmi-edid-read: - bat-rpls-2: NOTRUN -> [SKIP][22] ([i915#7828]) +7 similar issues [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8957/bat-rpls-2/igt@kms_chamelium_edid@hdmi-edid-read.html * igt@kms_flip@basic-flip-vs-dpms: - bat-rpls-2: NOTRUN -> [SKIP][23] ([i915#3637]) +3 similar issues [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8957/bat-rpls-2/igt@kms_flip@basic-flip-vs-dpms.html * igt@kms_force_connector_basic@force-load-detect: - bat-rpls-2: NOTRUN -> [SKIP][24] ([fdo#109285]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8957/bat-rpls-2/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_frontbuffer_tracking@basic: - bat-rpls-2: NOTRUN -> [SKIP][25] ([i915#1849]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8957/bat-rpls-2/igt@kms_frontbuffer_tracking@basic.html * {igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12-blue} (NEW): - fi-bsw-nick: NOTRUN -> [SKIP][26] ([fdo#109271]) +7 similar issues [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8957/fi-bsw-nick/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12-blue.html - {bat-kbl-2}: NOTRUN -> [SKIP][27] ([fdo#109271]) +7 similar issues [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8957/bat-kbl-2/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12-blue.html - bat-adls-5: NOTRUN -> [SKIP][28] ([i915#1845]) +7 similar issues [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8957/bat-adls-5/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12-blue.html * {igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb} (NEW): - {bat-mtlp-6}: NOTRUN -> [SKIP][29] ([i915#1845]) +7 similar issues [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8957/bat-mtlp-6/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb.html - bat-dg1-7: NOTRUN -> [SKIP][30] ([i915#1845]) +7 similar issues [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8957/bat-dg1-7/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb.html * {igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb-green} (NEW): - fi-kbl-x1275: NOTRUN -> [SKIP][31] ([fdo#109271]) +7 similar issues [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8957/fi-kbl-x1275/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb-green.html - fi-kbl-8809g: NOTRUN -> [SKIP][32] ([fdo#109271]) +7 similar issues [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8957/fi-kbl-8809g/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb-green.html - fi-kbl-guc: NOTRUN -> [SKIP][33] ([fdo#109271]) +7 similar issues [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8957/fi-kbl-guc/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb-green.html - bat-adlm-1: NOTRUN -> [SKIP][34] ([i915#1845]) +7 similar issues [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8957/bat-adlm-1/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb-green.html - bat-rpls-1: NOTRUN -> [SKIP][35] ([i915#1845]) +7 similar issues [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8957/bat-rpls-1/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb-green.html * igt@kms_psr@sprite_plane_onoff: - bat-rpls-2: NOTRUN -> [SKIP][36] ([i915#1072]) +3 similar issues [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8957/bat-rpls-2/igt@kms_psr@sprite_plane_onoff.html * igt@kms_setmode@basic-clone-single-crtc: - bat-rpls-2: NOTRUN -> [SKIP][37] ([i915#3555] / [i915#4579]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8957/bat-rpls-2/igt@kms_setmode@basic-clone-single-crtc.html * igt@prime_vgem@basic-fence-flip: - bat-rpls-2: NOTRUN -> [SKIP][38] ([fdo#109295] / [i915#1845] / [i915#3708]) [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8957/bat-rpls-2/igt@prime_vgem@basic-fence-flip.html * igt@prime_vgem@basic-fence-read: - bat-rpls-2: NOTRUN -> [SKIP][39] ([fdo#109295] / [i915#3708]) +2 similar issues [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8957/bat-rpls-2/igt@prime_vgem@basic-fence-read.html #### Possible fixes #### * igt@i915_selftest@live@migrate: - bat-adlp-9: [DMESG-FAIL][40] ([i915#7699] / [i915#7913]) -> [PASS][41] [40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13147/bat-adlp-9/igt@i915_selftest@live@migrate.html [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8957/bat-adlp-9/igt@i915_selftest@live@migrate.html - bat-dg2-11: [DMESG-FAIL][42] ([i915#7699] / [i915#7913]) -> [PASS][43] [42]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13147/bat-dg2-11/igt@i915_selftest@live@migrate.html [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8957/bat-dg2-11/igt@i915_selftest@live@migrate.html * igt@i915_suspend@basic-s3-without-i915: - bat-adls-5: [DMESG-WARN][44] ([i915#4391]) -> [PASS][45] +1 similar issue [44]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13147/bat-adls-5/igt@i915_suspend@basic-s3-without-i915.html [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8957/bat-adls-5/igt@i915_suspend@basic-s3-without-i915.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845 [i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849 [i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#4258]: https://gitlab.freedesktop.org/drm/intel/issues/4258 [i915#4391]: https://gitlab.freedesktop.org/drm/intel/issues/4391 [i915#4579]: https://gitlab.freedesktop.org/drm/intel/issues/4579 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983 [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#7456]: https://gitlab.freedesktop.org/drm/intel/issues/7456 [i915#7461]: https://gitlab.freedesktop.org/drm/intel/issues/7461 [i915#7561]: https://gitlab.freedesktop.org/drm/intel/issues/7561 [i915#7699]: https://gitlab.freedesktop.org/drm/intel/issues/7699 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#7872]: https://gitlab.freedesktop.org/drm/intel/issues/7872 [i915#7913]: https://gitlab.freedesktop.org/drm/intel/issues/7913 [i915#7920]: https://gitlab.freedesktop.org/drm/intel/issues/7920 [i915#7953]: https://gitlab.freedesktop.org/drm/intel/issues/7953 [i915#8347]: https://gitlab.freedesktop.org/drm/intel/issues/8347 [i915#8384]: https://gitlab.freedesktop.org/drm/intel/issues/8384 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7290 -> IGTPW_8957 CI-20190529: 20190529 CI_DRM_13147: eddd0d4b07e0ffaebe13e5f0af28ab0461ee6b0f @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_8957: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8957/index.html IGT_7290: 0261157319fe993ccefaf270b2fc7a8ebef418ae @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Testlist changes ---------------- +igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12 +igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12-blue +igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12-green +igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12-red +igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb +igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb-blue +igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb-green +igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb-red -igt@kms_fb_coherency@memset-crc -igt@kms_pipe_crc_basic@compare-crc-sanitycheck == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8957/index.html [-- Attachment #2: Type: text/html, Size: 28524 bytes --] ^ permalink raw reply [flat|nested] 12+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/3] lib/igt_fb: round rgb->yuv conversion results (rev2) 2023-05-15 12:03 [igt-dev] [PATCH i-g-t 1/3] lib/igt_fb: round rgb->yuv conversion results Swati Sharma ` (3 preceding siblings ...) 2023-05-15 14:25 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork @ 2023-05-15 19:33 ` Patchwork 2023-05-15 20:37 ` [igt-dev] ✓ Fi.CI.IGT: success for series starting with [i-g-t,1/3] lib/igt_fb: round rgb->yuv conversion results Patchwork 2023-05-16 2:24 ` [igt-dev] ✓ Fi.CI.IGT: success for series starting with [i-g-t,1/3] lib/igt_fb: round rgb->yuv conversion results (rev2) Patchwork 6 siblings, 0 replies; 12+ messages in thread From: Patchwork @ 2023-05-15 19:33 UTC (permalink / raw) To: Swati Sharma; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 20868 bytes --] == Series Details == Series: series starting with [i-g-t,1/3] lib/igt_fb: round rgb->yuv conversion results (rev2) URL : https://patchwork.freedesktop.org/series/117764/ State : success == Summary == CI Bug Log - changes from IGT_7291 -> IGTPW_8964 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8964/index.html Participating hosts (37 -> 36) ------------------------------ Additional (1): bat-mtlp-8 Missing (2): fi-kbl-soraka fi-snb-2520m Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_8964: ### IGT changes ### #### Possible regressions #### * {igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12-blue} (NEW): - bat-atsm-1: NOTRUN -> [SKIP][1] +7 similar issues [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8964/bat-atsm-1/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12-blue.html * {igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12-blue@pipe-a-edp-1} (NEW): - fi-skl-6600u: NOTRUN -> [FAIL][2] +3 similar issues [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8964/fi-skl-6600u/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12-blue@pipe-a-edp-1.html * {igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12-blue@pipe-a-hdmi-a-1} (NEW): - fi-elk-e7500: NOTRUN -> [FAIL][3] +3 similar issues [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8964/fi-elk-e7500/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12-blue@pipe-a-hdmi-a-1.html * {igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12-blue@pipe-a-vga-1} (NEW): - fi-blb-e6850: NOTRUN -> [FAIL][4] +3 similar issues [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8964/fi-blb-e6850/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12-blue@pipe-a-vga-1.html * {igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12-red@pipe-c-hdmi-a-2} (NEW): - fi-bsw-n3050: NOTRUN -> [FAIL][5] +3 similar issues [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8964/fi-bsw-n3050/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12-red@pipe-c-hdmi-a-2.html * {igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-a-dp-1} (NEW): - fi-apl-guc: NOTRUN -> [FAIL][6] +3 similar issues [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8964/fi-apl-guc/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-a-dp-1.html * {igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-a-hdmi-a-2} (NEW): - fi-skl-guc: NOTRUN -> [FAIL][7] +3 similar issues [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8964/fi-skl-guc/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-a-hdmi-a-2.html * {igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-a-vga-1} (NEW): - fi-hsw-4770: NOTRUN -> [FAIL][8] +3 similar issues [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8964/fi-hsw-4770/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-a-vga-1.html New tests --------- New tests have been introduced between IGT_7291 and IGTPW_8964: ### New IGT tests (72) ### * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12: - Statuses : 12 skip(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12-blue: - Statuses : 12 skip(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12-blue@pipe-a-dp-1: - Statuses : 1 fail(s) 4 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12-blue@pipe-a-dp-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12-blue@pipe-a-edp-1: - Statuses : 1 fail(s) 5 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12-blue@pipe-a-hdmi-a-1: - Statuses : 1 fail(s) 4 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12-blue@pipe-a-hdmi-a-2: - Statuses : 1 fail(s) 2 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12-blue@pipe-a-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12-blue@pipe-a-vga-1: - Statuses : 2 fail(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12-blue@pipe-c-hdmi-a-2: - Statuses : 1 fail(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12-green: - Statuses : 12 skip(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12-green@pipe-a-dp-1: - Statuses : 1 fail(s) 4 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12-green@pipe-a-dp-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12-green@pipe-a-edp-1: - Statuses : 1 fail(s) 5 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12-green@pipe-a-hdmi-a-1: - Statuses : 1 fail(s) 4 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12-green@pipe-a-hdmi-a-2: - Statuses : 1 fail(s) 2 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12-green@pipe-a-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12-green@pipe-a-vga-1: - Statuses : 2 fail(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12-green@pipe-c-hdmi-a-2: - Statuses : 1 fail(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12-red: - Statuses : 12 skip(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12-red@pipe-a-dp-1: - Statuses : 1 fail(s) 4 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12-red@pipe-a-dp-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12-red@pipe-a-edp-1: - Statuses : 1 fail(s) 5 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12-red@pipe-a-hdmi-a-1: - Statuses : 1 fail(s) 4 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12-red@pipe-a-hdmi-a-2: - Statuses : 1 fail(s) 2 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12-red@pipe-a-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12-red@pipe-a-vga-1: - Statuses : 2 fail(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12-red@pipe-c-hdmi-a-2: - Statuses : 1 fail(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-a-dp-1: - Statuses : 1 fail(s) 4 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-a-dp-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-a-edp-1: - Statuses : 1 fail(s) 5 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-a-hdmi-a-1: - Statuses : 1 fail(s) 4 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-a-hdmi-a-2: - Statuses : 1 fail(s) 2 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-a-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-a-vga-1: - Statuses : 2 fail(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-c-hdmi-a-2: - Statuses : 1 fail(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb: - Statuses : 12 skip(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb-blue: - Statuses : 12 skip(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb-blue@pipe-a-dp-1: - Statuses : 5 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb-blue@pipe-a-dp-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb-blue@pipe-a-edp-1: - Statuses : 6 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb-blue@pipe-a-hdmi-a-1: - Statuses : 5 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb-blue@pipe-a-hdmi-a-2: - Statuses : 3 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb-blue@pipe-a-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb-blue@pipe-a-vga-1: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb-blue@pipe-c-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb-green: - Statuses : 12 skip(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb-green@pipe-a-dp-1: - Statuses : 5 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb-green@pipe-a-dp-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb-green@pipe-a-edp-1: - Statuses : 6 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb-green@pipe-a-hdmi-a-1: - Statuses : 5 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb-green@pipe-a-hdmi-a-2: - Statuses : 3 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb-green@pipe-a-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb-green@pipe-a-vga-1: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb-green@pipe-c-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb-red: - Statuses : 12 skip(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb-red@pipe-a-dp-1: - Statuses : 5 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb-red@pipe-a-dp-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb-red@pipe-a-edp-1: - Statuses : 6 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb-red@pipe-a-hdmi-a-1: - Statuses : 5 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb-red@pipe-a-hdmi-a-2: - Statuses : 3 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb-red@pipe-a-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb-red@pipe-a-vga-1: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb-red@pipe-c-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb@pipe-a-dp-1: - Statuses : 5 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb@pipe-a-dp-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb@pipe-a-edp-1: - Statuses : 6 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb@pipe-a-hdmi-a-1: - Statuses : 5 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb@pipe-a-hdmi-a-2: - Statuses : 3 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb@pipe-a-hdmi-a-3: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb@pipe-a-vga-1: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb@pipe-c-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [0.0] s Known issues ------------ Here are the changes found in IGTPW_8964 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_selftest@live@reset: - bat-rpls-2: NOTRUN -> [ABORT][9] ([i915#4983] / [i915#7461] / [i915#7913] / [i915#8347]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8964/bat-rpls-2/igt@i915_selftest@live@reset.html * igt@i915_suspend@basic-s3-without-i915: - bat-rpls-1: NOTRUN -> [ABORT][10] ([i915#6687] / [i915#7953] / [i915#7978]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8964/bat-rpls-1/igt@i915_suspend@basic-s3-without-i915.html * {igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12-blue} (NEW): - fi-bsw-nick: NOTRUN -> [SKIP][11] ([fdo#109271]) +7 similar issues [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8964/fi-bsw-nick/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12-blue.html - {bat-kbl-2}: NOTRUN -> [SKIP][12] ([fdo#109271]) +7 similar issues [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8964/bat-kbl-2/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12-blue.html - bat-adls-5: NOTRUN -> [SKIP][13] ([i915#1845]) +7 similar issues [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8964/bat-adls-5/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12-blue.html * {igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb} (NEW): - {bat-mtlp-6}: NOTRUN -> [SKIP][14] ([i915#1845]) +7 similar issues [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8964/bat-mtlp-6/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb.html - bat-dg1-7: NOTRUN -> [SKIP][15] ([i915#1845]) +7 similar issues [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8964/bat-dg1-7/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb.html * {igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb-blue} (NEW): - bat-rpls-2: NOTRUN -> [SKIP][16] ([i915#1845]) +7 similar issues [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8964/bat-rpls-2/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb-blue.html * {igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb-green} (NEW): - fi-kbl-x1275: NOTRUN -> [SKIP][17] ([fdo#109271]) +7 similar issues [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8964/fi-kbl-x1275/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb-green.html - fi-kbl-8809g: NOTRUN -> [SKIP][18] ([fdo#109271]) +7 similar issues [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8964/fi-kbl-8809g/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb-green.html - fi-kbl-guc: NOTRUN -> [SKIP][19] ([fdo#109271]) +7 similar issues [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8964/fi-kbl-guc/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb-green.html - bat-adlm-1: NOTRUN -> [SKIP][20] ([i915#1845]) +7 similar issues [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8964/bat-adlm-1/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb-green.html - bat-rpls-1: NOTRUN -> [SKIP][21] ([i915#1845]) +7 similar issues [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8964/bat-rpls-1/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb-green.html * igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence: - bat-dg2-11: NOTRUN -> [SKIP][22] ([i915#1845] / [i915#5354]) +2 similar issues [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8964/bat-dg2-11/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html * igt@kms_pipe_crc_basic@nonblocking-crc@pipe-c-dp-1: - bat-dg2-8: [PASS][23] -> [FAIL][24] ([i915#7932]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7291/bat-dg2-8/igt@kms_pipe_crc_basic@nonblocking-crc@pipe-c-dp-1.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8964/bat-dg2-8/igt@kms_pipe_crc_basic@nonblocking-crc@pipe-c-dp-1.html #### Possible fixes #### * igt@i915_selftest@live@mman: - bat-rpls-2: [TIMEOUT][25] ([i915#6794] / [i915#7392]) -> [PASS][26] [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7291/bat-rpls-2/igt@i915_selftest@live@mman.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8964/bat-rpls-2/igt@i915_selftest@live@mman.html * igt@i915_selftest@live@requests: - bat-rpls-1: [ABORT][27] ([i915#7911] / [i915#7920] / [i915#7953]) -> [PASS][28] [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7291/bat-rpls-1/igt@i915_selftest@live@requests.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8964/bat-rpls-1/igt@i915_selftest@live@requests.html #### Warnings #### * igt@kms_setmode@basic-clone-single-crtc: - bat-rplp-1: [SKIP][29] ([i915#3555] / [i915#4579]) -> [ABORT][30] ([i915#4579] / [i915#8260]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7291/bat-rplp-1/igt@kms_setmode@basic-clone-single-crtc.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8964/bat-rplp-1/igt@kms_setmode@basic-clone-single-crtc.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3595]: https://gitlab.freedesktop.org/drm/intel/issues/3595 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213 [i915#4579]: https://gitlab.freedesktop.org/drm/intel/issues/4579 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983 [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 [i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6687]: https://gitlab.freedesktop.org/drm/intel/issues/6687 [i915#6794]: https://gitlab.freedesktop.org/drm/intel/issues/6794 [i915#7392]: https://gitlab.freedesktop.org/drm/intel/issues/7392 [i915#7456]: https://gitlab.freedesktop.org/drm/intel/issues/7456 [i915#7461]: https://gitlab.freedesktop.org/drm/intel/issues/7461 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#7911]: https://gitlab.freedesktop.org/drm/intel/issues/7911 [i915#7913]: https://gitlab.freedesktop.org/drm/intel/issues/7913 [i915#7920]: https://gitlab.freedesktop.org/drm/intel/issues/7920 [i915#7932]: https://gitlab.freedesktop.org/drm/intel/issues/7932 [i915#7953]: https://gitlab.freedesktop.org/drm/intel/issues/7953 [i915#7978]: https://gitlab.freedesktop.org/drm/intel/issues/7978 [i915#8260]: https://gitlab.freedesktop.org/drm/intel/issues/8260 [i915#8347]: https://gitlab.freedesktop.org/drm/intel/issues/8347 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7291 -> IGTPW_8964 CI-20190529: 20190529 CI_DRM_13148: 57a535e042517014a85f33be6fa5ed22145c56e9 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_8964: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8964/index.html IGT_7291: a536bd30aaeb1ab02dc4f37d2d723c37be356d8d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Testlist changes ---------------- +igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12 +igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12-blue +igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12-green +igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12-red +igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb +igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb-blue +igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb-green +igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb-red -igt@kms_pipe_crc_basic@compare-crc-sanitycheck == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8964/index.html [-- Attachment #2: Type: text/html, Size: 24126 bytes --] ^ permalink raw reply [flat|nested] 12+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for series starting with [i-g-t,1/3] lib/igt_fb: round rgb->yuv conversion results 2023-05-15 12:03 [igt-dev] [PATCH i-g-t 1/3] lib/igt_fb: round rgb->yuv conversion results Swati Sharma ` (4 preceding siblings ...) 2023-05-15 19:33 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/3] lib/igt_fb: round rgb->yuv conversion results (rev2) Patchwork @ 2023-05-15 20:37 ` Patchwork 2023-05-16 2:24 ` [igt-dev] ✓ Fi.CI.IGT: success for series starting with [i-g-t,1/3] lib/igt_fb: round rgb->yuv conversion results (rev2) Patchwork 6 siblings, 0 replies; 12+ messages in thread From: Patchwork @ 2023-05-15 20:37 UTC (permalink / raw) To: Swati Sharma; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 24869 bytes --] == Series Details == Series: series starting with [i-g-t,1/3] lib/igt_fb: round rgb->yuv conversion results URL : https://patchwork.freedesktop.org/series/117764/ State : success == Summary == CI Bug Log - changes from CI_DRM_13147_full -> IGTPW_8957_full ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8957/index.html Participating hosts (7 -> 7) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_8957_full: ### IGT changes ### #### Possible regressions #### * {igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12-green@pipe-a-vga-1} (NEW): - shard-snb: NOTRUN -> [FAIL][1] +3 similar issues [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8957/shard-snb6/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12-green@pipe-a-vga-1.html * {igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12-red@pipe-a-dp-1} (NEW): - shard-apl: NOTRUN -> [FAIL][2] +2 similar issues [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8957/shard-apl6/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12-red@pipe-a-dp-1.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@kms_plane@pixel-format@pipe-b-planes: - {shard-dg1}: [PASS][3] -> [FAIL][4] +3 similar issues [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13147/shard-dg1-17/igt@kms_plane@pixel-format@pipe-b-planes.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8957/shard-dg1-18/igt@kms_plane@pixel-format@pipe-b-planes.html New tests --------- New tests have been introduced between CI_DRM_13147_full and IGTPW_8957_full: ### New IGT tests (46) ### * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12: - Statuses : - Exec time: [None] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12-blue: - Statuses : - Exec time: [None] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12-blue@pipe-a-dp-1: - Statuses : 1 fail(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12-blue@pipe-a-hdmi-a-1: - Statuses : 3 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12-blue@pipe-a-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12-blue@pipe-a-vga-1: - Statuses : 1 fail(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12-green: - Statuses : - Exec time: [None] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12-green@pipe-a-hdmi-a-1: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12-green@pipe-a-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12-green@pipe-a-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12-green@pipe-a-vga-1: - Statuses : 1 fail(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12-red: - Statuses : - Exec time: [None] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12-red@pipe-a-dp-1: - Statuses : 1 fail(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12-red@pipe-a-hdmi-a-1: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12-red@pipe-a-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12-red@pipe-a-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12-red@pipe-a-vga-1: - Statuses : 1 fail(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-a-dp-1: - Statuses : 1 fail(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-a-hdmi-a-1: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-a-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-a-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-a-vga-1: - Statuses : 1 fail(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb: - Statuses : - Exec time: [None] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb-blue: - Statuses : - Exec time: [None] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb-blue@pipe-a-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb-blue@pipe-a-hdmi-a-1: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb-blue@pipe-a-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb-blue@pipe-a-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb-blue@pipe-a-vga-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb-green: - Statuses : - Exec time: [None] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb-green@pipe-a-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb-green@pipe-a-hdmi-a-1: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb-green@pipe-a-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb-green@pipe-a-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb-green@pipe-a-vga-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb-red: - Statuses : - Exec time: [None] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb-red@pipe-a-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb-red@pipe-a-hdmi-a-1: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb-red@pipe-a-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb-red@pipe-a-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb-red@pipe-a-vga-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb@pipe-a-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb@pipe-a-hdmi-a-1: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb@pipe-a-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb@pipe-a-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb@pipe-a-vga-1: - Statuses : 1 pass(s) - Exec time: [0.0] s Known issues ------------ Here are the changes found in IGTPW_8957_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-glk: [PASS][5] -> [FAIL][6] ([i915#2842]) +3 similar issues [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13147/shard-glk1/igt@gem_exec_fair@basic-pace-share@rcs0.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8957/shard-glk9/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gen9_exec_parse@allowed-single: - shard-apl: [PASS][7] -> [ABORT][8] ([i915#5566]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13147/shard-apl1/igt@gen9_exec_parse@allowed-single.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8957/shard-apl1/igt@gen9_exec_parse@allowed-single.html * igt@kms_ccs@pipe-b-random-ccs-data-4_tiled_dg2_rc_ccs: - shard-apl: NOTRUN -> [SKIP][9] ([fdo#109271]) +15 similar issues [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8957/shard-apl2/igt@kms_ccs@pipe-b-random-ccs-data-4_tiled_dg2_rc_ccs.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-apl: [PASS][10] -> [FAIL][11] ([i915#2346]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13147/shard-apl7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8957/shard-apl1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html - shard-glk: [PASS][12] -> [FAIL][13] ([i915#2346]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13147/shard-glk2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8957/shard-glk5/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a1-hdmi-a2: - shard-glk: [PASS][14] -> [FAIL][15] ([i915#2122]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13147/shard-glk6/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a1-hdmi-a2.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8957/shard-glk4/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@bc-hdmi-a1-hdmi-a2.html * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a2: - shard-glk: [PASS][16] -> [FAIL][17] ([i915#79]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13147/shard-glk3/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a2.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8957/shard-glk3/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-hdmi-a2.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode: - shard-apl: NOTRUN -> [SKIP][18] ([fdo#109271] / [i915#4579]) +1 similar issue [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8957/shard-apl2/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-gtt: - shard-glk: NOTRUN -> [SKIP][19] ([fdo#109271]) +5 similar issues [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8957/shard-glk1/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-gtt.html * igt@kms_plane@pixel-format-source-clamping@pipe-b-planes: - shard-glk: [PASS][20] -> [FAIL][21] ([i915#1623]) +3 similar issues [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13147/shard-glk2/igt@kms_plane@pixel-format-source-clamping@pipe-b-planes.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8957/shard-glk6/igt@kms_plane@pixel-format-source-clamping@pipe-b-planes.html * igt@perf_pmu@module-unload: - shard-snb: [PASS][22] -> [ABORT][23] ([i915#4528]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13147/shard-snb7/igt@perf_pmu@module-unload.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8957/shard-snb7/igt@perf_pmu@module-unload.html * igt@v3d/v3d_wait_bo@bad-pad: - shard-snb: NOTRUN -> [SKIP][24] ([fdo#109271]) +26 similar issues [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8957/shard-snb5/igt@v3d/v3d_wait_bo@bad-pad.html #### Possible fixes #### * igt@gem_eio@unwedge-stress: - {shard-dg1}: [FAIL][25] ([i915#5784]) -> [PASS][26] [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13147/shard-dg1-16/igt@gem_eio@unwedge-stress.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8957/shard-dg1-12/igt@gem_eio@unwedge-stress.html * igt@gem_exec_fair@basic-none-solo@rcs0: - shard-apl: [FAIL][27] ([i915#2842]) -> [PASS][28] [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13147/shard-apl4/igt@gem_exec_fair@basic-none-solo@rcs0.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8957/shard-apl3/igt@gem_exec_fair@basic-none-solo@rcs0.html * igt@gem_exec_fair@basic-pace@rcs0: - {shard-rkl}: [FAIL][29] ([i915#2842]) -> [PASS][30] +2 similar issues [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13147/shard-rkl-2/igt@gem_exec_fair@basic-pace@rcs0.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8957/shard-rkl-7/igt@gem_exec_fair@basic-pace@rcs0.html * igt@gem_lmem_swapping@smem-oom@lmem0: - {shard-dg1}: [TIMEOUT][31] ([i915#5493]) -> [PASS][32] [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13147/shard-dg1-15/igt@gem_lmem_swapping@smem-oom@lmem0.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8957/shard-dg1-14/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@i915_pm_dc@dc9-dpms: - shard-apl: [FAIL][33] ([i915#4275]) -> [PASS][34] [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13147/shard-apl2/igt@i915_pm_dc@dc9-dpms.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8957/shard-apl1/igt@i915_pm_dc@dc9-dpms.html * igt@i915_pm_rc6_residency@rc6-idle@rcs0: - {shard-dg1}: [FAIL][35] ([i915#3591]) -> [PASS][36] +1 similar issue [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13147/shard-dg1-18/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8957/shard-dg1-14/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html * igt@i915_pm_rpm@modeset-non-lpsp-stress: - {shard-rkl}: [SKIP][37] ([i915#1397]) -> [PASS][38] [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13147/shard-rkl-7/igt@i915_pm_rpm@modeset-non-lpsp-stress.html [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8957/shard-rkl-3/igt@i915_pm_rpm@modeset-non-lpsp-stress.html * igt@i915_suspend@basic-s2idle-without-i915: - shard-snb: [ABORT][39] ([i915#4528] / [i915#8213]) -> [PASS][40] [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13147/shard-snb2/igt@i915_suspend@basic-s2idle-without-i915.html [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8957/shard-snb5/igt@i915_suspend@basic-s2idle-without-i915.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-glk: [FAIL][41] ([i915#2346]) -> [PASS][42] [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13147/shard-glk1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8957/shard-glk5/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html - shard-apl: [FAIL][43] ([i915#2346]) -> [PASS][44] [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13147/shard-apl3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8957/shard-apl1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_cursor_legacy@forked-bo@pipe-b: - {shard-rkl}: [INCOMPLETE][45] ([i915#8011]) -> [PASS][46] [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13147/shard-rkl-7/igt@kms_cursor_legacy@forked-bo@pipe-b.html [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8957/shard-rkl-4/igt@kms_cursor_legacy@forked-bo@pipe-b.html * igt@kms_flip@2x-flip-vs-expired-vblank@ac-hdmi-a1-hdmi-a2: - shard-glk: [FAIL][47] ([i915#79]) -> [PASS][48] [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13147/shard-glk1/igt@kms_flip@2x-flip-vs-expired-vblank@ac-hdmi-a1-hdmi-a2.html [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8957/shard-glk8/igt@kms_flip@2x-flip-vs-expired-vblank@ac-hdmi-a1-hdmi-a2.html * igt@perf@stress-open-close@0-rcs0: - shard-glk: [ABORT][49] ([i915#5213] / [i915#7941]) -> [PASS][50] [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13147/shard-glk2/igt@perf@stress-open-close@0-rcs0.html [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8957/shard-glk2/igt@perf@stress-open-close@0-rcs0.html * igt@perf_pmu@idle@rcs0: - {shard-dg1}: [FAIL][51] ([i915#4349]) -> [PASS][52] [51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13147/shard-dg1-18/igt@perf_pmu@idle@rcs0.html [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8957/shard-dg1-18/igt@perf_pmu@idle@rcs0.html #### Warnings #### * igt@kms_content_protection@mei_interface: - shard-snb: [SKIP][53] ([fdo#109271] / [i915#4579]) -> [SKIP][54] ([fdo#109271]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13147/shard-snb6/igt@kms_content_protection@mei_interface.html [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8957/shard-snb2/igt@kms_content_protection@mei_interface.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [fdo#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300 [fdo#109312]: https://bugs.freedesktop.org/show_bug.cgi?id=109312 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 [i915#1623]: https://gitlab.freedesktop.org/drm/intel/issues/1623 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1902]: https://gitlab.freedesktop.org/drm/intel/issues/1902 [i915#2122]: https://gitlab.freedesktop.org/drm/intel/issues/2122 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2433]: https://gitlab.freedesktop.org/drm/intel/issues/2433 [i915#2434]: https://gitlab.freedesktop.org/drm/intel/issues/2434 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681 [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023 [i915#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116 [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [i915#3936]: https://gitlab.freedesktop.org/drm/intel/issues/3936 [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955 [i915#3989]: https://gitlab.freedesktop.org/drm/intel/issues/3989 [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103 [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4275]: https://gitlab.freedesktop.org/drm/intel/issues/4275 [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 [i915#4528]: https://gitlab.freedesktop.org/drm/intel/issues/4528 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454 [i915#4579]: https://gitlab.freedesktop.org/drm/intel/issues/4579 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4816]: https://gitlab.freedesktop.org/drm/intel/issues/4816 [i915#4833]: https://gitlab.freedesktop.org/drm/intel/issues/4833 [i915#4879]: https://gitlab.freedesktop.org/drm/intel/issues/4879 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5213]: https://gitlab.freedesktop.org/drm/intel/issues/5213 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289 [i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325 [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493 [i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6117]: https://gitlab.freedesktop.org/drm/intel/issues/6117 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6590]: https://gitlab.freedesktop.org/drm/intel/issues/6590 [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768 [i915#6806]: https://gitlab.freedesktop.org/drm/intel/issues/6806 [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116 [i915#7456]: https://gitlab.freedesktop.org/drm/intel/issues/7456 [i915#7561]: https://gitlab.freedesktop.org/drm/intel/issues/7561 [i915#7582]: https://gitlab.freedesktop.org/drm/intel/issues/7582 [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79 [i915#7941]: https://gitlab.freedesktop.org/drm/intel/issues/7941 [i915#7953]: https://gitlab.freedesktop.org/drm/intel/issues/7953 [i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975 [i915#8011]: https://gitlab.freedesktop.org/drm/intel/issues/8011 [i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213 [i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292 [i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381 [i915#8399]: https://gitlab.freedesktop.org/drm/intel/issues/8399 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7290 -> IGTPW_8957 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_13147: eddd0d4b07e0ffaebe13e5f0af28ab0461ee6b0f @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_8957: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8957/index.html IGT_7290: 0261157319fe993ccefaf270b2fc7a8ebef418ae @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8957/index.html [-- Attachment #2: Type: text/html, Size: 22991 bytes --] ^ permalink raw reply [flat|nested] 12+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for series starting with [i-g-t,1/3] lib/igt_fb: round rgb->yuv conversion results (rev2) 2023-05-15 12:03 [igt-dev] [PATCH i-g-t 1/3] lib/igt_fb: round rgb->yuv conversion results Swati Sharma ` (5 preceding siblings ...) 2023-05-15 20:37 ` [igt-dev] ✓ Fi.CI.IGT: success for series starting with [i-g-t,1/3] lib/igt_fb: round rgb->yuv conversion results Patchwork @ 2023-05-16 2:24 ` Patchwork 6 siblings, 0 replies; 12+ messages in thread From: Patchwork @ 2023-05-16 2:24 UTC (permalink / raw) To: Swati Sharma; +Cc: igt-dev [-- Attachment #1: Type: text/plain, Size: 25393 bytes --] == Series Details == Series: series starting with [i-g-t,1/3] lib/igt_fb: round rgb->yuv conversion results (rev2) URL : https://patchwork.freedesktop.org/series/117764/ State : success == Summary == CI Bug Log - changes from IGT_7291_full -> IGTPW_8964_full ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8964/index.html Participating hosts (7 -> 7) ------------------------------ No changes in participating hosts Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_8964_full: ### IGT changes ### #### Possible regressions #### * {igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12-green@pipe-a-vga-1} (NEW): - shard-snb: NOTRUN -> [FAIL][1] +3 similar issues [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8964/shard-snb6/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12-green@pipe-a-vga-1.html * {igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12-red@pipe-a-dp-1} (NEW): - shard-apl: NOTRUN -> [FAIL][2] +3 similar issues [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8964/shard-apl7/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12-red@pipe-a-dp-1.html #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@kms_plane@pixel-format@pipe-b-planes: - {shard-dg1}: [PASS][3] -> [FAIL][4] +3 similar issues [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7291/shard-dg1-17/igt@kms_plane@pixel-format@pipe-b-planes.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8964/shard-dg1-16/igt@kms_plane@pixel-format@pipe-b-planes.html New tests --------- New tests have been introduced between IGT_7291_full and IGTPW_8964_full: ### New IGT tests (45) ### * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12: - Statuses : - Exec time: [None] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12-blue: - Statuses : - Exec time: [None] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12-blue@pipe-a-dp-1: - Statuses : 1 fail(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12-blue@pipe-a-hdmi-a-1: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12-blue@pipe-a-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12-blue@pipe-a-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12-blue@pipe-a-vga-1: - Statuses : 1 fail(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12-green: - Statuses : - Exec time: [None] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12-green@pipe-a-dp-1: - Statuses : 1 fail(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12-green@pipe-a-hdmi-a-1: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12-green@pipe-a-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12-green@pipe-a-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12-green@pipe-a-vga-1: - Statuses : 1 fail(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12-red: - Statuses : - Exec time: [None] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12-red@pipe-a-dp-1: - Statuses : 1 fail(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12-red@pipe-a-hdmi-a-1: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12-red@pipe-a-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12-red@pipe-a-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12-red@pipe-a-vga-1: - Statuses : 1 fail(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-a-dp-1: - Statuses : 1 fail(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-a-hdmi-a-1: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-a-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-a-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12@pipe-a-vga-1: - Statuses : 1 fail(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb: - Statuses : - Exec time: [None] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb-blue: - Statuses : - Exec time: [None] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb-blue@pipe-a-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb-blue@pipe-a-hdmi-a-1: - Statuses : 3 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb-blue@pipe-a-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb-blue@pipe-a-vga-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb-green: - Statuses : - Exec time: [None] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb-green@pipe-a-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb-green@pipe-a-hdmi-a-1: - Statuses : 3 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb-green@pipe-a-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb-green@pipe-a-vga-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb-red: - Statuses : - Exec time: [None] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb-red@pipe-a-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb-red@pipe-a-hdmi-a-1: - Statuses : 3 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb-red@pipe-a-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb-red@pipe-a-vga-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb@pipe-a-dp-1: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb@pipe-a-hdmi-a-1: - Statuses : 2 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb@pipe-a-hdmi-a-2: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb@pipe-a-hdmi-a-4: - Statuses : 1 pass(s) - Exec time: [0.0] s * igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb@pipe-a-vga-1: - Statuses : 1 pass(s) - Exec time: [0.0] s Known issues ------------ Here are the changes found in IGTPW_8964_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_lmem_swapping@verify-random-ccs: - shard-glk: NOTRUN -> [SKIP][5] ([fdo#109271] / [i915#4613]) +1 similar issue [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8964/shard-glk7/igt@gem_lmem_swapping@verify-random-ccs.html * igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs: - shard-glk: NOTRUN -> [SKIP][6] ([fdo#109271]) +94 similar issues [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8964/shard-glk8/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs.html * igt@gem_userptr_blits@dmabuf-sync: - shard-glk: NOTRUN -> [SKIP][7] ([fdo#109271] / [i915#3323]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8964/shard-glk9/igt@gem_userptr_blits@dmabuf-sync.html * igt@gen9_exec_parse@allowed-single: - shard-glk: [PASS][8] -> [ABORT][9] ([i915#5566]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7291/shard-glk1/igt@gen9_exec_parse@allowed-single.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8964/shard-glk8/igt@gen9_exec_parse@allowed-single.html * igt@kms_ccs@pipe-c-missing-ccs-buffer-y_tiled_gen12_rc_ccs_cc: - shard-glk: NOTRUN -> [SKIP][10] ([fdo#109271] / [i915#3886]) +4 similar issues [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8964/shard-glk4/igt@kms_ccs@pipe-c-missing-ccs-buffer-y_tiled_gen12_rc_ccs_cc.html * igt@kms_cursor_crc@cursor-random-max-size: - shard-glk: NOTRUN -> [SKIP][11] ([fdo#109271] / [i915#4579]) +6 similar issues [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8964/shard-glk7/igt@kms_cursor_crc@cursor-random-max-size.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-apl: [PASS][12] -> [FAIL][13] ([i915#2346]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7291/shard-apl2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8964/shard-apl3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_fbcon_fbt@fbc-suspend: - shard-apl: [PASS][14] -> [FAIL][15] ([i915#4767]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7291/shard-apl6/igt@kms_fbcon_fbt@fbc-suspend.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8964/shard-apl7/igt@kms_fbcon_fbt@fbc-suspend.html * igt@kms_plane@pixel-format-source-clamping@pipe-b-planes: - shard-glk: [PASS][16] -> [FAIL][17] ([i915#1623]) +3 similar issues [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7291/shard-glk5/igt@kms_plane@pixel-format-source-clamping@pipe-b-planes.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8964/shard-glk8/igt@kms_plane@pixel-format-source-clamping@pipe-b-planes.html * igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1: - shard-glk: NOTRUN -> [FAIL][18] ([i915#4573]) +1 similar issue [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8964/shard-glk8/igt@kms_plane_alpha_blend@alpha-opaque-fb@pipe-a-hdmi-a-1.html * igt@kms_psr2_su@page_flip-nv12: - shard-glk: NOTRUN -> [SKIP][19] ([fdo#109271] / [i915#658]) +1 similar issue [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8964/shard-glk3/igt@kms_psr2_su@page_flip-nv12.html * igt@kms_vblank@pipe-d-wait-idle: - shard-glk: NOTRUN -> [SKIP][20] ([fdo#109271] / [i915#533]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8964/shard-glk8/igt@kms_vblank@pipe-d-wait-idle.html #### Possible fixes #### * igt@gem_ctx_freq@sysfs: - {shard-dg1}: [FAIL][21] ([i915#6786]) -> [PASS][22] [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7291/shard-dg1-17/igt@gem_ctx_freq@sysfs.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8964/shard-dg1-17/igt@gem_ctx_freq@sysfs.html * igt@gem_eio@reset-stress: - {shard-dg1}: [FAIL][23] ([i915#5784]) -> [PASS][24] [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7291/shard-dg1-12/igt@gem_eio@reset-stress.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8964/shard-dg1-16/igt@gem_eio@reset-stress.html * igt@gem_exec_fair@basic-deadline: - shard-glk: [FAIL][25] ([i915#2846]) -> [PASS][26] [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7291/shard-glk5/igt@gem_exec_fair@basic-deadline.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8964/shard-glk3/igt@gem_exec_fair@basic-deadline.html * igt@gem_exec_fair@basic-none-share@rcs0: - {shard-rkl}: [FAIL][27] ([i915#2842]) -> [PASS][28] [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7291/shard-rkl-1/igt@gem_exec_fair@basic-none-share@rcs0.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8964/shard-rkl-6/igt@gem_exec_fair@basic-none-share@rcs0.html * igt@gem_exec_fair@basic-pace-share@rcs0: - {shard-tglu}: [FAIL][29] ([i915#2842]) -> [PASS][30] [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7291/shard-tglu-4/igt@gem_exec_fair@basic-pace-share@rcs0.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8964/shard-tglu-3/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_schedule@u-fairslice@vecs0: - {shard-rkl}: [ABORT][31] -> [PASS][32] [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7291/shard-rkl-6/igt@gem_exec_schedule@u-fairslice@vecs0.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8964/shard-rkl-2/igt@gem_exec_schedule@u-fairslice@vecs0.html * igt@gem_exec_suspend@basic-s0@smem: - {shard-tglu}: [ABORT][33] ([i915#7953]) -> [PASS][34] [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7291/shard-tglu-9/igt@gem_exec_suspend@basic-s0@smem.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8964/shard-tglu-9/igt@gem_exec_suspend@basic-s0@smem.html * igt@gem_lmem_swapping@smem-oom@lmem0: - {shard-dg1}: [TIMEOUT][35] ([i915#5493]) -> [PASS][36] [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7291/shard-dg1-14/igt@gem_lmem_swapping@smem-oom@lmem0.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8964/shard-dg1-18/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@gem_mmap_offset@clear@smem0: - {shard-dg1}: [DMESG-WARN][37] ([i915#8304]) -> [PASS][38] [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7291/shard-dg1-12/igt@gem_mmap_offset@clear@smem0.html [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8964/shard-dg1-15/igt@gem_mmap_offset@clear@smem0.html * igt@i915_pm_dc@dc9-dpms: - shard-apl: [SKIP][39] ([fdo#109271]) -> [PASS][40] [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7291/shard-apl6/igt@i915_pm_dc@dc9-dpms.html [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8964/shard-apl7/igt@i915_pm_dc@dc9-dpms.html * igt@i915_pm_rc6_residency@rc6-fence: - {shard-tglu}: [WARN][41] ([i915#2681]) -> [PASS][42] [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7291/shard-tglu-5/igt@i915_pm_rc6_residency@rc6-fence.html [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8964/shard-tglu-4/igt@i915_pm_rc6_residency@rc6-fence.html * igt@i915_pm_rpm@dpms-mode-unset-non-lpsp: - {shard-rkl}: [SKIP][43] ([i915#1397]) -> [PASS][44] [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7291/shard-rkl-7/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8964/shard-rkl-1/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-glk: [FAIL][45] ([i915#2346]) -> [PASS][46] [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7291/shard-glk5/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8964/shard-glk7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_cursor_legacy@forked-move@pipe-b: - {shard-rkl}: [INCOMPLETE][47] ([i915#8011]) -> [PASS][48] [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7291/shard-rkl-7/igt@kms_cursor_legacy@forked-move@pipe-b.html [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8964/shard-rkl-3/igt@kms_cursor_legacy@forked-move@pipe-b.html * igt@perf_pmu@all-busy-idle-check-all: - {shard-dg1}: [FAIL][49] ([i915#5234]) -> [PASS][50] [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7291/shard-dg1-15/igt@perf_pmu@all-busy-idle-check-all.html [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8964/shard-dg1-14/igt@perf_pmu@all-busy-idle-check-all.html * igt@perf_pmu@idle@rcs0: - {shard-dg1}: [FAIL][51] ([i915#4349]) -> [PASS][52] [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7291/shard-dg1-18/igt@perf_pmu@idle@rcs0.html [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8964/shard-dg1-14/igt@perf_pmu@idle@rcs0.html #### Warnings #### * igt@kms_content_protection@mei_interface: - shard-apl: [SKIP][53] ([fdo#109271] / [i915#4579]) -> [SKIP][54] ([fdo#109271]) [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7291/shard-apl6/igt@kms_content_protection@mei_interface.html [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8964/shard-apl4/igt@kms_content_protection@mei_interface.html - shard-snb: [SKIP][55] ([fdo#109271] / [i915#4579]) -> [SKIP][56] ([fdo#109271]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7291/shard-snb5/igt@kms_content_protection@mei_interface.html [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8964/shard-snb6/igt@kms_content_protection@mei_interface.html - shard-glk: [SKIP][57] ([fdo#109271] / [i915#4579]) -> [SKIP][58] ([fdo#109271]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7291/shard-glk9/igt@kms_content_protection@mei_interface.html [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8964/shard-glk4/igt@kms_content_protection@mei_interface.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [fdo#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300 [fdo#109303]: https://bugs.freedesktop.org/show_bug.cgi?id=109303 [fdo#109312]: https://bugs.freedesktop.org/show_bug.cgi?id=109312 [fdo#109313]: https://bugs.freedesktop.org/show_bug.cgi?id=109313 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 [i915#1623]: https://gitlab.freedesktop.org/drm/intel/issues/1623 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 [i915#1937]: https://gitlab.freedesktop.org/drm/intel/issues/1937 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2436]: https://gitlab.freedesktop.org/drm/intel/issues/2436 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681 [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023 [i915#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116 [i915#315]: https://gitlab.freedesktop.org/drm/intel/issues/315 [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3318]: https://gitlab.freedesktop.org/drm/intel/issues/3318 [i915#3323]: https://gitlab.freedesktop.org/drm/intel/issues/3323 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734 [i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742 [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349 [i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#4573]: https://gitlab.freedesktop.org/drm/intel/issues/4573 [i915#4579]: https://gitlab.freedesktop.org/drm/intel/issues/4579 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4767]: https://gitlab.freedesktop.org/drm/intel/issues/4767 [i915#4833]: https://gitlab.freedesktop.org/drm/intel/issues/4833 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5234]: https://gitlab.freedesktop.org/drm/intel/issues/5234 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325 [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354 [i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493 [i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566 [i915#5723]: https://gitlab.freedesktop.org/drm/intel/issues/5723 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6230]: https://gitlab.freedesktop.org/drm/intel/issues/6230 [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768 [i915#6786]: https://gitlab.freedesktop.org/drm/intel/issues/6786 [i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944 [i915#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953 [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#7561]: https://gitlab.freedesktop.org/drm/intel/issues/7561 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#7953]: https://gitlab.freedesktop.org/drm/intel/issues/7953 [i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975 [i915#8011]: https://gitlab.freedesktop.org/drm/intel/issues/8011 [i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213 [i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228 [i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292 [i915#8304]: https://gitlab.freedesktop.org/drm/intel/issues/8304 [i915#8398]: https://gitlab.freedesktop.org/drm/intel/issues/8398 [i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_7291 -> IGTPW_8964 CI-20190529: 20190529 CI_DRM_13148: 57a535e042517014a85f33be6fa5ed22145c56e9 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_8964: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8964/index.html IGT_7291: a536bd30aaeb1ab02dc4f37d2d723c37be356d8d @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8964/index.html [-- Attachment #2: Type: text/html, Size: 23819 bytes --] ^ permalink raw reply [flat|nested] 12+ messages in thread
* [igt-dev] [PATCH i-g-t 1/3] lib/igt_fb: round rgb->yuv conversion results @ 2023-05-26 17:43 Swati Sharma 2023-05-26 17:43 ` [igt-dev] [PATCH i-g-t 3/3] intel-ci: update fastfeedback testlist Swati Sharma 0 siblings, 1 reply; 12+ messages in thread From: Swati Sharma @ 2023-05-26 17:43 UTC (permalink / raw) To: igt-dev Round rgb->yuv conversion results. Signed-off-by: Ville Syrjala <ville.syrjala@linux.intel.com> Signed-off-by: Swati Sharma <swati2.sharma@intel.com> --- lib/igt_fb.c | 25 +++++++++++++++---------- 1 file changed, 15 insertions(+), 10 deletions(-) diff --git a/lib/igt_fb.c b/lib/igt_fb.c index 71a199d4..11a5d6c0 100644 --- a/lib/igt_fb.c +++ b/lib/igt_fb.c @@ -3064,11 +3064,16 @@ static void igt_fb_destroy_cairo_shadow_buffer(struct igt_fb *shadow, munmap(ptr, shadow->size); } -static uint8_t clamprgb(float val) +static uint8_t clamp8(float val) { return clamp((int)(val + 0.5f), 0, 255); } +static uint8_t clamp16(float val) +{ + return clamp((int)(val + 0.5f), 0, 65535); +} + static void read_rgb(struct igt_vec4 *rgb, const uint8_t *rgb24) { rgb->d[0] = rgb24[2]; @@ -3079,9 +3084,9 @@ static void read_rgb(struct igt_vec4 *rgb, const uint8_t *rgb24) static void write_rgb(uint8_t *rgb24, const struct igt_vec4 *rgb) { - rgb24[2] = clamprgb(rgb->d[0]); - rgb24[1] = clamprgb(rgb->d[1]); - rgb24[0] = clamprgb(rgb->d[2]); + rgb24[2] = clamp8(rgb->d[0]); + rgb24[1] = clamp8(rgb->d[1]); + rgb24[0] = clamp8(rgb->d[2]); } struct fb_convert_buf { @@ -3401,7 +3406,7 @@ static void convert_rgb24_to_yuv(struct fb_convert *cvt) rgb_tmp += bpp; - *y_tmp = yuv.d[0]; + *y_tmp = clamp8(yuv.d[0]); y_tmp += params.ay_inc; if ((i % dst_fmt->vsub) || (j % dst_fmt->hsub)) @@ -3431,8 +3436,8 @@ static void convert_rgb24_to_yuv(struct fb_convert *cvt) read_rgb(&pair_rgb, pair_rgb24); pair_yuv = igt_matrix_transform(&m, &pair_rgb); - *u_tmp = (yuv.d[1] + pair_yuv.d[1]) / 2.0f; - *v_tmp = (yuv.d[2] + pair_yuv.d[2]) / 2.0f; + *u_tmp = clamp8((yuv.d[1] + pair_yuv.d[1]) / 2.0f); + *v_tmp = clamp8((yuv.d[2] + pair_yuv.d[2]) / 2.0f); u_tmp += params.uv_inc; v_tmp += params.uv_inc; @@ -3590,7 +3595,7 @@ static void convert_float_to_yuv16(struct fb_convert *cvt, bool alpha) rgb_tmp += fpp; - *y_tmp = yuv.d[0]; + *y_tmp = clamp16(yuv.d[0]); y_tmp += params.ay_inc; if ((i % dst_fmt->vsub) || (j % dst_fmt->hsub)) @@ -3620,8 +3625,8 @@ static void convert_float_to_yuv16(struct fb_convert *cvt, bool alpha) read_rgbf(&pair_rgb, pair_float); pair_yuv = igt_matrix_transform(&m, &pair_rgb); - *u_tmp = (yuv.d[1] + pair_yuv.d[1]) / 2.0f; - *v_tmp = (yuv.d[2] + pair_yuv.d[2]) / 2.0f; + *u_tmp = clamp16((yuv.d[1] + pair_yuv.d[1]) / 2.0f); + *v_tmp = clamp16((yuv.d[2] + pair_yuv.d[2]) / 2.0f); u_tmp += params.uv_inc; v_tmp += params.uv_inc; -- 2.25.1 ^ permalink raw reply related [flat|nested] 12+ messages in thread
* [igt-dev] [PATCH i-g-t 3/3] intel-ci: update fastfeedback testlist 2023-05-26 17:43 [igt-dev] [PATCH i-g-t 1/3] lib/igt_fb: round rgb->yuv conversion results Swati Sharma @ 2023-05-26 17:43 ` Swati Sharma 2023-05-29 5:55 ` Modem, Bhanuprakash 0 siblings, 1 reply; 12+ messages in thread From: Swati Sharma @ 2023-05-26 17:43 UTC (permalink / raw) To: igt-dev Update fastfeedback testlist. Signed-off-by: Swati Sharma <swati2.sharma@intel.com> --- tests/intel-ci/fast-feedback.testlist | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/intel-ci/fast-feedback.testlist b/tests/intel-ci/fast-feedback.testlist index cfe7cb4a..40096faf 100644 --- a/tests/intel-ci/fast-feedback.testlist +++ b/tests/intel-ci/fast-feedback.testlist @@ -118,7 +118,8 @@ igt@kms_force_connector_basic@force-edid igt@kms_force_connector_basic@force-load-detect igt@kms_force_connector_basic@prune-stale-modes igt@kms_frontbuffer_tracking@basic -igt@kms_pipe_crc_basic@compare-crc-sanitycheck +igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb888 +igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12 igt@kms_pipe_crc_basic@hang-read-crc igt@kms_pipe_crc_basic@nonblocking-crc igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence -- 2.25.1 ^ permalink raw reply related [flat|nested] 12+ messages in thread
* Re: [igt-dev] [PATCH i-g-t 3/3] intel-ci: update fastfeedback testlist 2023-05-26 17:43 ` [igt-dev] [PATCH i-g-t 3/3] intel-ci: update fastfeedback testlist Swati Sharma @ 2023-05-29 5:55 ` Modem, Bhanuprakash 0 siblings, 0 replies; 12+ messages in thread From: Modem, Bhanuprakash @ 2023-05-29 5:55 UTC (permalink / raw) To: Swati Sharma, igt-dev Hi Swati, On Fri-26-05-2023 11:13 pm, Swati Sharma wrote: > Update fastfeedback testlist. > > Signed-off-by: Swati Sharma <swati2.sharma@intel.com> > --- > tests/intel-ci/fast-feedback.testlist | 3 ++- > 1 file changed, 2 insertions(+), 1 deletion(-) > > diff --git a/tests/intel-ci/fast-feedback.testlist b/tests/intel-ci/fast-feedback.testlist > index cfe7cb4a..40096faf 100644 > --- a/tests/intel-ci/fast-feedback.testlist > +++ b/tests/intel-ci/fast-feedback.testlist > @@ -118,7 +118,8 @@ igt@kms_force_connector_basic@force-edid > igt@kms_force_connector_basic@force-load-detect > igt@kms_force_connector_basic@prune-stale-modes > igt@kms_frontbuffer_tracking@basic > -igt@kms_pipe_crc_basic@compare-crc-sanitycheck > +igt@kms_pipe_crc_basic@compare-crc-sanitycheck-xrgb888 --------------------------------------------------^ From patch [2/3] in this series, this must be xr24 Also, please port this change to Xe too. "tests/intel-ci/xe.fast-feedback.testlist" - Bhanu > +igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12 > igt@kms_pipe_crc_basic@hang-read-crc > igt@kms_pipe_crc_basic@nonblocking-crc > igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence ^ permalink raw reply [flat|nested] 12+ messages in thread
end of thread, other threads:[~2023-05-29 5:56 UTC | newest] Thread overview: 12+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-05-15 12:03 [igt-dev] [PATCH i-g-t 1/3] lib/igt_fb: round rgb->yuv conversion results Swati Sharma 2023-05-15 12:03 ` [igt-dev] [PATCH i-g-t 2/3] tests/kms_pipe_crc_basic: Add NV12 CRC sanitycheck tests Swati Sharma 2023-05-15 12:45 ` Ville Syrjälä 2023-05-16 12:00 ` Sharma, Swati2 2023-05-15 12:03 ` [igt-dev] [PATCH i-g-t 3/3] intel-ci: Update fastfeedback testlist Swati Sharma 2023-05-15 14:02 ` [igt-dev] ✗ GitLab.Pipeline: warning for series starting with [i-g-t,1/3] lib/igt_fb: round rgb->yuv conversion results Patchwork 2023-05-15 14:25 ` [igt-dev] ✓ Fi.CI.BAT: success " Patchwork 2023-05-15 19:33 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/3] lib/igt_fb: round rgb->yuv conversion results (rev2) Patchwork 2023-05-15 20:37 ` [igt-dev] ✓ Fi.CI.IGT: success for series starting with [i-g-t,1/3] lib/igt_fb: round rgb->yuv conversion results Patchwork 2023-05-16 2:24 ` [igt-dev] ✓ Fi.CI.IGT: success for series starting with [i-g-t,1/3] lib/igt_fb: round rgb->yuv conversion results (rev2) Patchwork -- strict thread matches above, loose matches on Subject: below -- 2023-05-26 17:43 [igt-dev] [PATCH i-g-t 1/3] lib/igt_fb: round rgb->yuv conversion results Swati Sharma 2023-05-26 17:43 ` [igt-dev] [PATCH i-g-t 3/3] intel-ci: update fastfeedback testlist Swati Sharma 2023-05-29 5:55 ` Modem, Bhanuprakash
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox