* [igt-dev] [PATCH i-g-t v12] lib/igt_fb: Added XYUV format support for testing
@ 2018-10-24 12:43 Stanislav Lisovskiy
2018-10-24 15:53 ` [igt-dev] ✗ Fi.CI.BAT: failure for lib/igt_fb: Added XYUV format support for testing (rev14) Patchwork
` (5 more replies)
0 siblings, 6 replies; 7+ messages in thread
From: Stanislav Lisovskiy @ 2018-10-24 12:43 UTC (permalink / raw)
To: igt-dev; +Cc: stanislav.lisovskiy, ville.syrjala, martin.peres
XYUV format support has been added to DRM, modified
IGT to reflect those changes.
v2: Fixed merge conflict, started to use new yuv<=>rgb
conversion functions.
v3: Fixed kms_available_modes_crc test to support new XYUV
format. Fixed a problem, where test complains that two
outputs might use same pipe at the same time.
v4: Fixed convertion procedure in igt_fb to support XYUV
properly.
v5: Fixed a coding typo.
v6: Set depth equal to -1 for XYUV format in order to prevent
it to be used by igt_bpp_depth_to_drm_format, as we do not
want YUV formats to be used in that case.
v7: Fix "black" color initialization for create_bo_for_fb with
proper value. Changed naming "planar_stride" to "xyuv_stride".
v8: Change naming from DRM_FORMAT_XYUV to DRM_FORMAT_XYUV8888
v9: Fixed compilation errors by rebasing to recent master.
v10: Adding reference to correspondent kernel commit with the new format
in include/drm-uapi
v11: Removed unnecessary sizeof's in rgb <=> yuv444 convert functions.
v12: Rebased against master branch, fixed rebase conflict caused by
new fb_convert functions. Removed drm kernel commit reference
as it is still not merged, so doesn't make sense to use it.
Signed-off-by: Stanislav Lisovskiy <stanislav.lisovskiy@intel.com>
---
include/drm-uapi/drm_fourcc.h | 1 +
lib/igt_fb.c | 89 +++++++++++++++++++++++++++++++++++
2 files changed, 90 insertions(+)
diff --git a/include/drm-uapi/drm_fourcc.h b/include/drm-uapi/drm_fourcc.h
index e04613d3..03e5466c 100644
--- a/include/drm-uapi/drm_fourcc.h
+++ b/include/drm-uapi/drm_fourcc.h
@@ -112,6 +112,7 @@ extern "C" {
#define DRM_FORMAT_VYUY fourcc_code('V', 'Y', 'U', 'Y') /* [31:0] Y1:Cb0:Y0:Cr0 8:8:8:8 little endian */
#define DRM_FORMAT_AYUV fourcc_code('A', 'Y', 'U', 'V') /* [31:0] A:Y:Cb:Cr 8:8:8:8 little endian */
+#define DRM_FORMAT_XYUV8888 fourcc_code('X', 'Y', 'U', 'V') /* [31:0] X:Y:Cb:Cr 8:8:8:8 little endian */
/*
* 2 plane RGB + A
diff --git a/lib/igt_fb.c b/lib/igt_fb.c
index 5dca1cfa..4700b152 100644
--- a/lib/igt_fb.c
+++ b/lib/igt_fb.c
@@ -102,6 +102,10 @@ static const struct format_desc_struct {
.pixman_id = PIXMAN_r8g8b8,
.num_planes = 1, .plane_bpp = { 24, },
},
+ { .name = "XYUV8888", .depth = -1, .drm_id = DRM_FORMAT_XYUV8888,
+ .cairo_id = CAIRO_FORMAT_RGB24,
+ .num_planes = 1, .plane_bpp = { 32, },
+ },
{ .name = "XRGB8888", .depth = 24, .drm_id = DRM_FORMAT_XRGB8888,
.cairo_id = CAIRO_FORMAT_RGB24,
.pixman_id = PIXMAN_x8r8g8b8,
@@ -496,6 +500,10 @@ static int create_bo_for_fb(struct igt_fb *fb)
0x80,
fb->strides[1] * fb->plane_height[1]);
break;
+ case DRM_FORMAT_XYUV8888:
+ wmemset(ptr + fb->offsets[0], full_range ? 0x00008080 : 0x00108080,
+ fb->strides[0] * fb->plane_height[0] / sizeof(wchar_t));
+ break;
case DRM_FORMAT_YUYV:
case DRM_FORMAT_YVYU:
wmemset(ptr + fb->offsets[0],
@@ -1622,6 +1630,79 @@ static void convert_nv12_to_rgb24(struct fb_convert *cvt)
free(buf);
}
+static void convert_yuv444_to_rgb24(struct fb_convert *cvt)
+{
+ int i, j;
+ uint8_t *yuv24;
+ uint8_t *rgb24 = cvt->dst.ptr;
+ unsigned rgb24_stride = cvt->dst.fb->strides[0], xyuv_stride = cvt->src.fb->strides[0];
+ uint8_t *buf = malloc(cvt->src.fb->size);
+ struct igt_mat4 m = igt_ycbcr_to_rgb_matrix(cvt->src.fb->color_encoding,
+ cvt->src.fb->color_range);
+
+ /*
+ * Reading from the BO is awfully slow because of lack of read caching,
+ * it's faster to copy the whole BO to a temporary buffer and convert
+ * from there.
+ */
+ igt_memcpy_from_wc(buf, cvt->src.ptr + cvt->src.fb->offsets[0], cvt->src.fb->size);
+ yuv24 = buf;
+
+ for (i = 0; i < cvt->dst.fb->height; i++) {
+ for (j = 0; j < cvt->dst.fb->width; j++) {
+ float y, u, v;
+ struct igt_vec4 yuv;
+ struct igt_vec4 rgb;
+
+ v = yuv24[i * xyuv_stride + j * 4];
+ u = yuv24[i * xyuv_stride + j * 4 + 1];
+ y = yuv24[i * xyuv_stride + j * 4 + 2];
+ yuv.d[0] = y;
+ yuv.d[1] = u;
+ yuv.d[2] = v;
+ yuv.d[3] = 1.0f;
+
+ rgb = igt_matrix_transform(&m, &yuv);
+
+ write_rgb(&rgb24[i * rgb24_stride + j * 4], &rgb);
+ }
+ }
+
+ free(buf);
+}
+
+
+static void convert_rgb24_to_yuv444(struct fb_convert *cvt)
+{
+ int i, j;
+ uint8_t *rgb24;
+ uint8_t *yuv444 = cvt->dst.ptr + cvt->dst.fb->offsets[0];
+ unsigned int rgb24_stride = cvt->src.fb->strides[0], xyuv_stride = cvt->dst.fb->strides[0];
+ struct igt_mat4 m = igt_rgb_to_ycbcr_matrix(cvt->dst.fb->color_encoding,
+ cvt->dst.fb->color_range);
+
+ rgb24 = cvt->src.ptr;
+
+ igt_assert_f(cvt->dst.fb->drm_format == DRM_FORMAT_XYUV8888,
+ "Conversion not implemented for !XYUV packed formats\n");
+
+ for (i = 0; i < cvt->dst.fb->height; i++) {
+ for (j = 0; j < cvt->dst.fb->width; j++) {
+ struct igt_vec4 rgb;
+ struct igt_vec4 yuv;
+ float y, u, v;
+
+ read_rgb(&rgb, &rgb24[i * rgb24_stride + j * 4]);
+
+ yuv = igt_matrix_transform(&m, &rgb);
+
+ yuv444[i * xyuv_stride + j * 4] = yuv.d[2];
+ yuv444[i * xyuv_stride + j * 4 + 1] = yuv.d[1];
+ yuv444[i * xyuv_stride + j * 4 + 2] = yuv.d[0];
+ }
+ }
+}
+
static void convert_rgb24_to_nv12(struct fb_convert *cvt)
{
int i, j;
@@ -1901,6 +1982,9 @@ static void fb_convert(struct fb_convert *cvt)
return;
} else if (cvt->dst.fb->drm_format == DRM_FORMAT_RGB888) {
switch (cvt->src.fb->drm_format) {
+ case DRM_FORMAT_XYUV8888:
+ convert_yuv444_to_rgb24(cvt);
+ return;
case DRM_FORMAT_NV12:
convert_nv12_to_rgb24(cvt);
return;
@@ -1913,6 +1997,9 @@ static void fb_convert(struct fb_convert *cvt)
}
} else if (cvt->src.fb->drm_format == DRM_FORMAT_RGB888) {
switch (cvt->dst.fb->drm_format) {
+ case DRM_FORMAT_XYUV8888:
+ convert_rgb24_to_yuv444(cvt);
+ return;
case DRM_FORMAT_NV12:
convert_rgb24_to_nv12(cvt);
return;
@@ -2003,6 +2090,7 @@ static void create_cairo_surface__convert(int fd, struct igt_fb *fb)
blit, destroy_cairo_surface__convert);
}
+
/**
* igt_fb_map_buffer:
* @fd: open drm file descriptor
@@ -2268,6 +2356,7 @@ bool igt_format_is_yuv(uint32_t drm_format)
case DRM_FORMAT_YVYU:
case DRM_FORMAT_UYVY:
case DRM_FORMAT_VYUY:
+ case DRM_FORMAT_XYUV8888:
return true;
default:
return false;
--
2.17.1
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply related [flat|nested] 7+ messages in thread* [igt-dev] ✗ Fi.CI.BAT: failure for lib/igt_fb: Added XYUV format support for testing (rev14) 2018-10-24 12:43 [igt-dev] [PATCH i-g-t v12] lib/igt_fb: Added XYUV format support for testing Stanislav Lisovskiy @ 2018-10-24 15:53 ` Patchwork 2018-10-29 13:01 ` [igt-dev] [PATCH i-g-t v12] lib/igt_fb: Added XYUV format support for testing Lisovskiy, Stanislav ` (4 subsequent siblings) 5 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2018-10-24 15:53 UTC (permalink / raw) To: Stanislav Lisovskiy; +Cc: igt-dev == Series Details == Series: lib/igt_fb: Added XYUV format support for testing (rev14) URL : https://patchwork.freedesktop.org/series/48789/ State : failure == Summary == = CI Bug Log - changes from CI_DRM_5026 -> IGTPW_1984 = == Summary - FAILURE == Serious unknown changes coming with IGTPW_1984 absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_1984, please notify your bug team to allow them to document this new failure mode, which will reduce false positives in CI. External URL: https://patchwork.freedesktop.org/api/1.0/series/48789/revisions/14/mbox/ == Possible new issues == Here are the unknown changes that may have been introduced in IGTPW_1984: === IGT changes === ==== Possible regressions ==== igt@pm_rpm@module-reload: fi-bxt-j4205: PASS -> TIMEOUT ==== Warnings ==== igt@drv_selftest@live_requests: fi-bxt-j4205: PASS -> SKIP +14 == Known issues == Here are the changes found in IGTPW_1984 that come from known issues: === IGT changes === ==== Issues hit ==== igt@amdgpu/amd_prime@amd-to-i915: fi-bxt-j4205: SKIP -> TIMEOUT (fdo#108075) +1 igt@drv_module_reload@basic-reload-inject: fi-bxt-j4205: PASS -> INCOMPLETE (fdo#103927) igt@gem_mmap_gtt@basic-copy: fi-glk-dsi: PASS -> INCOMPLETE (fdo#103359, k.org#198133) igt@kms_frontbuffer_tracking@basic: fi-byt-clapper: PASS -> FAIL (fdo#103167) igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a: fi-icl-u: PASS -> INCOMPLETE (fdo#107713) ==== Possible fixes ==== igt@drv_module_reload@basic-reload: fi-blb-e6850: INCOMPLETE (fdo#107718) -> PASS igt@drv_selftest@live_coherency: fi-gdg-551: DMESG-FAIL (fdo#107164) -> PASS igt@kms_pipe_crc_basic@hang-read-crc-pipe-b: fi-byt-clapper: FAIL (fdo#103191, fdo#107362) -> PASS fdo#103167 https://bugs.freedesktop.org/show_bug.cgi?id=103167 fdo#103191 https://bugs.freedesktop.org/show_bug.cgi?id=103191 fdo#103359 https://bugs.freedesktop.org/show_bug.cgi?id=103359 fdo#103927 https://bugs.freedesktop.org/show_bug.cgi?id=103927 fdo#107164 https://bugs.freedesktop.org/show_bug.cgi?id=107164 fdo#107362 https://bugs.freedesktop.org/show_bug.cgi?id=107362 fdo#107713 https://bugs.freedesktop.org/show_bug.cgi?id=107713 fdo#107718 https://bugs.freedesktop.org/show_bug.cgi?id=107718 fdo#108075 https://bugs.freedesktop.org/show_bug.cgi?id=108075 k.org#198133 https://bugzilla.kernel.org/show_bug.cgi?id=198133 == Participating hosts (48 -> 41) == Missing (7): fi-kbl-soraka fi-ilk-m540 fi-byt-squawks fi-bsw-cyan fi-ctg-p8600 fi-kbl-7560u fi-snb-2600 == Build changes == * IGT: IGT_4688 -> IGTPW_1984 CI_DRM_5026: f442c034e365463f506d73066b568c00e0d8bbc8 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_1984: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_1984/ IGT_4688: fa6dbf8c048961356fd642df047cb58ab49309b2 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_1984/issues.html _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [igt-dev] [PATCH i-g-t v12] lib/igt_fb: Added XYUV format support for testing 2018-10-24 12:43 [igt-dev] [PATCH i-g-t v12] lib/igt_fb: Added XYUV format support for testing Stanislav Lisovskiy 2018-10-24 15:53 ` [igt-dev] ✗ Fi.CI.BAT: failure for lib/igt_fb: Added XYUV format support for testing (rev14) Patchwork @ 2018-10-29 13:01 ` Lisovskiy, Stanislav 2018-11-20 13:54 ` [igt-dev] ✓ Fi.CI.BAT: success for lib/igt_fb: Added XYUV format support for testing (rev14) Patchwork ` (3 subsequent siblings) 5 siblings, 0 replies; 7+ messages in thread From: Lisovskiy, Stanislav @ 2018-10-29 13:01 UTC (permalink / raw) To: igt-dev@lists.freedesktop.org; +Cc: Syrjala, Ville, Peres, Martin On Wed, 2018-10-24 at 15:43 +0300, Stanislav Lisovskiy wrote: > XYUV format support has been added to DRM, modified > IGT to reflect those changes. > > v2: Fixed merge conflict, started to use new yuv<=>rgb > conversion functions. > > v3: Fixed kms_available_modes_crc test to support new XYUV > format. Fixed a problem, where test complains that two > outputs might use same pipe at the same time. > > v4: Fixed convertion procedure in igt_fb to support XYUV > properly. > > v5: Fixed a coding typo. > > v6: Set depth equal to -1 for XYUV format in order to prevent > it to be used by igt_bpp_depth_to_drm_format, as we do not > want YUV formats to be used in that case. > > v7: Fix "black" color initialization for create_bo_for_fb with > proper value. Changed naming "planar_stride" to "xyuv_stride". > > v8: Change naming from DRM_FORMAT_XYUV to DRM_FORMAT_XYUV8888 > > v9: Fixed compilation errors by rebasing to recent master. > > v10: Adding reference to correspondent kernel commit with the new > format > in include/drm-uapi > > v11: Removed unnecessary sizeof's in rgb <=> yuv444 convert > functions. > > v12: Rebased against master branch, fixed rebase conflict caused by > new fb_convert functions. Removed drm kernel commit reference > as it is still not merged, so doesn't make sense to use it. > > Signed-off-by: Stanislav Lisovskiy <stanislav.lisovskiy@intel.com> > --- > include/drm-uapi/drm_fourcc.h | 1 + > lib/igt_fb.c | 89 > +++++++++++++++++++++++++++++++++++ > 2 files changed, 90 insertions(+) > > diff --git a/include/drm-uapi/drm_fourcc.h b/include/drm- > uapi/drm_fourcc.h > index e04613d3..03e5466c 100644 > --- a/include/drm-uapi/drm_fourcc.h > +++ b/include/drm-uapi/drm_fourcc.h > @@ -112,6 +112,7 @@ extern "C" { > #define DRM_FORMAT_VYUY fourcc_code('V', 'Y', 'U', > 'Y') /* [31:0] Y1:Cb0:Y0:Cr0 8:8:8:8 little endian */ > > #define DRM_FORMAT_AYUV fourcc_code('A', 'Y', 'U', > 'V') /* [31:0] A:Y:Cb:Cr 8:8:8:8 little endian */ > +#define DRM_FORMAT_XYUV8888 fourcc_code('X', 'Y', 'U', 'V') > /* [31:0] X:Y:Cb:Cr 8:8:8:8 little endian */ > > /* > * 2 plane RGB + A > diff --git a/lib/igt_fb.c b/lib/igt_fb.c > index 5dca1cfa..4700b152 100644 > --- a/lib/igt_fb.c > +++ b/lib/igt_fb.c > @@ -102,6 +102,10 @@ static const struct format_desc_struct { > .pixman_id = PIXMAN_r8g8b8, > .num_planes = 1, .plane_bpp = { 24, }, > }, > + { .name = "XYUV8888", .depth = -1, .drm_id = > DRM_FORMAT_XYUV8888, > + .cairo_id = CAIRO_FORMAT_RGB24, > + .num_planes = 1, .plane_bpp = { 32, }, > + }, > { .name = "XRGB8888", .depth = 24, .drm_id = > DRM_FORMAT_XRGB8888, > .cairo_id = CAIRO_FORMAT_RGB24, > .pixman_id = PIXMAN_x8r8g8b8, > @@ -496,6 +500,10 @@ static int create_bo_for_fb(struct igt_fb *fb) > 0x80, > fb->strides[1] * fb- > >plane_height[1]); > break; > + case DRM_FORMAT_XYUV8888: > + wmemset(ptr + fb->offsets[0], > full_range ? 0x00008080 : 0x00108080, > + fb->strides[0] * fb- > >plane_height[0] / sizeof(wchar_t)); > + break; > case DRM_FORMAT_YUYV: > case DRM_FORMAT_YVYU: > wmemset(ptr + fb->offsets[0], > @@ -1622,6 +1630,79 @@ static void convert_nv12_to_rgb24(struct > fb_convert *cvt) > free(buf); > } > > +static void convert_yuv444_to_rgb24(struct fb_convert *cvt) > +{ > + int i, j; > + uint8_t *yuv24; > + uint8_t *rgb24 = cvt->dst.ptr; > + unsigned rgb24_stride = cvt->dst.fb->strides[0], xyuv_stride > = cvt->src.fb->strides[0]; > + uint8_t *buf = malloc(cvt->src.fb->size); > + struct igt_mat4 m = igt_ycbcr_to_rgb_matrix(cvt->src.fb- > >color_encoding, > + cvt->src.fb- > >color_range); > + > + /* > + * Reading from the BO is awfully slow because of lack of > read caching, > + * it's faster to copy the whole BO to a temporary buffer > and convert > + * from there. > + */ > + igt_memcpy_from_wc(buf, cvt->src.ptr + cvt->src.fb- > >offsets[0], cvt->src.fb->size); > + yuv24 = buf; > + > + for (i = 0; i < cvt->dst.fb->height; i++) { > + for (j = 0; j < cvt->dst.fb->width; j++) { > + float y, u, v; > + struct igt_vec4 yuv; > + struct igt_vec4 rgb; > + > + v = yuv24[i * xyuv_stride + j * 4]; > + u = yuv24[i * xyuv_stride + j * 4 + 1]; > + y = yuv24[i * xyuv_stride + j * 4 + 2]; > + yuv.d[0] = y; > + yuv.d[1] = u; > + yuv.d[2] = v; > + yuv.d[3] = 1.0f; > + > + rgb = igt_matrix_transform(&m, &yuv); > + > + write_rgb(&rgb24[i * rgb24_stride + j * 4], > &rgb); > + } > + } > + > + free(buf); > +} > + > + > +static void convert_rgb24_to_yuv444(struct fb_convert *cvt) > +{ > + int i, j; > + uint8_t *rgb24; > + uint8_t *yuv444 = cvt->dst.ptr + cvt->dst.fb->offsets[0]; > + unsigned int rgb24_stride = cvt->src.fb->strides[0], > xyuv_stride = cvt->dst.fb->strides[0]; > + struct igt_mat4 m = igt_rgb_to_ycbcr_matrix(cvt->dst.fb- > >color_encoding, > + cvt->dst.fb- > >color_range); > + > + rgb24 = cvt->src.ptr; > + > + igt_assert_f(cvt->dst.fb->drm_format == DRM_FORMAT_XYUV8888, > + "Conversion not implemented for !XYUV packed > formats\n"); > + > + for (i = 0; i < cvt->dst.fb->height; i++) { > + for (j = 0; j < cvt->dst.fb->width; j++) { > + struct igt_vec4 rgb; > + struct igt_vec4 yuv; > + float y, u, v; > + > + read_rgb(&rgb, &rgb24[i * rgb24_stride + j * > 4]); > + > + yuv = igt_matrix_transform(&m, &rgb); > + > + yuv444[i * xyuv_stride + j * 4] = yuv.d[2]; > + yuv444[i * xyuv_stride + j * 4 + 1] = > yuv.d[1]; > + yuv444[i * xyuv_stride + j * 4 + 2] = > yuv.d[0]; > + } > + } > +} > + > static void convert_rgb24_to_nv12(struct fb_convert *cvt) > { > int i, j; > @@ -1901,6 +1982,9 @@ static void fb_convert(struct fb_convert *cvt) > return; > } else if (cvt->dst.fb->drm_format == DRM_FORMAT_RGB888) { > switch (cvt->src.fb->drm_format) { > + case DRM_FORMAT_XYUV8888: > + convert_yuv444_to_rgb24(cvt); > + return; > case DRM_FORMAT_NV12: > convert_nv12_to_rgb24(cvt); > return; > @@ -1913,6 +1997,9 @@ static void fb_convert(struct fb_convert *cvt) > } > } else if (cvt->src.fb->drm_format == DRM_FORMAT_RGB888) { > switch (cvt->dst.fb->drm_format) { > + case DRM_FORMAT_XYUV8888: > + convert_rgb24_to_yuv444(cvt); > + return; > case DRM_FORMAT_NV12: > convert_rgb24_to_nv12(cvt); > return; > @@ -2003,6 +2090,7 @@ static void create_cairo_surface__convert(int > fd, struct igt_fb *fb) > blit, > destroy_cairo_surface__convert); > } > > + > /** > * igt_fb_map_buffer: > * @fd: open drm file descriptor > @@ -2268,6 +2356,7 @@ bool igt_format_is_yuv(uint32_t drm_format) > case DRM_FORMAT_YVYU: > case DRM_FORMAT_UYVY: > case DRM_FORMAT_VYUY: > + case DRM_FORMAT_XYUV8888: > return true; > default: > return false; Previous suggestions are fixed. Pinging for review. -- Best Regards, Lisovskiy Stanislav _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 7+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for lib/igt_fb: Added XYUV format support for testing (rev14) 2018-10-24 12:43 [igt-dev] [PATCH i-g-t v12] lib/igt_fb: Added XYUV format support for testing Stanislav Lisovskiy 2018-10-24 15:53 ` [igt-dev] ✗ Fi.CI.BAT: failure for lib/igt_fb: Added XYUV format support for testing (rev14) Patchwork 2018-10-29 13:01 ` [igt-dev] [PATCH i-g-t v12] lib/igt_fb: Added XYUV format support for testing Lisovskiy, Stanislav @ 2018-11-20 13:54 ` Patchwork 2018-11-20 16:26 ` Patchwork ` (2 subsequent siblings) 5 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2018-11-20 13:54 UTC (permalink / raw) To: Stanislav Lisovskiy; +Cc: igt-dev == Series Details == Series: lib/igt_fb: Added XYUV format support for testing (rev14) URL : https://patchwork.freedesktop.org/series/48789/ State : success == Summary == = CI Bug Log - changes from IGT_4721 -> IGTPW_2079 = == Summary - SUCCESS == No regressions found. External URL: https://patchwork.freedesktop.org/api/1.0/series/48789/revisions/14/mbox/ == Possible new issues == Here are the unknown changes that may have been introduced in IGTPW_2079: === IGT changes === ==== Warnings ==== igt@kms_pipe_crc_basic@nonblocking-crc-pipe-c: {fi-kbl-7567u}: SKIP -> PASS +33 == Known issues == Here are the changes found in IGTPW_2079 that come from known issues: === IGT changes === ==== Issues hit ==== igt@gem_exec_suspend@basic-s3: fi-icl-u2: PASS -> DMESG-WARN (fdo#107724) igt@i915_selftest@live_coherency: fi-gdg-551: PASS -> DMESG-FAIL (fdo#107164) igt@kms_frontbuffer_tracking@basic: fi-byt-clapper: PASS -> FAIL (fdo#103167) igt@kms_pipe_crc_basic@hang-read-crc-pipe-a: fi-byt-clapper: PASS -> FAIL (fdo#103191, fdo#107362) igt@kms_pipe_crc_basic@read-crc-pipe-b: fi-byt-clapper: PASS -> FAIL (fdo#107362) {igt@runner@aborted}: fi-icl-u2: NOTRUN -> FAIL (fdo#108070) fi-kbl-8809g: NOTRUN -> FAIL (fdo#108709) ==== Possible fixes ==== igt@gem_ctx_switch@basic-default: fi-icl-u2: DMESG-WARN (fdo#107724) -> PASS igt@i915_module_load@reload-with-fault-injection: {fi-kbl-7567u}: DMESG-WARN (fdo#105602, fdo#108529) -> PASS +1 igt@i915_selftest@live_execlists: fi-apl-guc: INCOMPLETE (fdo#103927) -> PASS igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a: fi-byt-clapper: FAIL (fdo#103191, fdo#107362) -> PASS fi-blb-e6850: INCOMPLETE (fdo#107718) -> PASS igt@pm_rpm@module-reload: {fi-kbl-7567u}: DMESG-WARN (fdo#108529) -> PASS ==== Warnings ==== igt@kms_chamelium@common-hpd-after-suspend: {fi-kbl-7567u}: DMESG-FAIL (fdo#105079) -> FAIL (fdo#108755) {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). fdo#103167 https://bugs.freedesktop.org/show_bug.cgi?id=103167 fdo#103191 https://bugs.freedesktop.org/show_bug.cgi?id=103191 fdo#103927 https://bugs.freedesktop.org/show_bug.cgi?id=103927 fdo#105079 https://bugs.freedesktop.org/show_bug.cgi?id=105079 fdo#105602 https://bugs.freedesktop.org/show_bug.cgi?id=105602 fdo#107164 https://bugs.freedesktop.org/show_bug.cgi?id=107164 fdo#107362 https://bugs.freedesktop.org/show_bug.cgi?id=107362 fdo#107718 https://bugs.freedesktop.org/show_bug.cgi?id=107718 fdo#107724 https://bugs.freedesktop.org/show_bug.cgi?id=107724 fdo#108070 https://bugs.freedesktop.org/show_bug.cgi?id=108070 fdo#108529 https://bugs.freedesktop.org/show_bug.cgi?id=108529 fdo#108709 https://bugs.freedesktop.org/show_bug.cgi?id=108709 fdo#108755 https://bugs.freedesktop.org/show_bug.cgi?id=108755 == Participating hosts (49 -> 45) == Additional (1): fi-kbl-8809g Missing (5): fi-ilk-m540 fi-hsw-4200u fi-byt-squawks fi-bsw-cyan fi-icl-u3 == Build changes == * IGT: IGT_4721 -> IGTPW_2079 CI_DRM_5169: ed08968fdc2130ba3cb6f3d7dbe82b6a8c39973d @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_2079: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2079/ IGT_4721: 68264891ceee34195839d82d4d87cbae08ef2431 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2079/issues.html _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 7+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for lib/igt_fb: Added XYUV format support for testing (rev14) 2018-10-24 12:43 [igt-dev] [PATCH i-g-t v12] lib/igt_fb: Added XYUV format support for testing Stanislav Lisovskiy ` (2 preceding siblings ...) 2018-11-20 13:54 ` [igt-dev] ✓ Fi.CI.BAT: success for lib/igt_fb: Added XYUV format support for testing (rev14) Patchwork @ 2018-11-20 16:26 ` Patchwork 2018-11-20 19:27 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork 2018-11-21 0:53 ` Patchwork 5 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2018-11-20 16:26 UTC (permalink / raw) To: Stanislav Lisovskiy; +Cc: igt-dev == Series Details == Series: lib/igt_fb: Added XYUV format support for testing (rev14) URL : https://patchwork.freedesktop.org/series/48789/ State : success == Summary == = CI Bug Log - changes from IGT_4722 -> IGTPW_2080 = == Summary - SUCCESS == No regressions found. External URL: https://patchwork.freedesktop.org/api/1.0/series/48789/revisions/14/mbox/ == Known issues == Here are the changes found in IGTPW_2080 that come from known issues: === IGT changes === ==== Issues hit ==== igt@gem_ctx_switch@basic-default: fi-icl-u2: PASS -> DMESG-WARN (fdo#107724) igt@kms_frontbuffer_tracking@basic: fi-hsw-peppy: PASS -> DMESG-WARN (fdo#102614) fi-byt-clapper: PASS -> FAIL (fdo#103167) igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a: fi-byt-clapper: PASS -> FAIL (fdo#103191, fdo#107362) +1 ==== Possible fixes ==== igt@gem_ctx_create@basic-files: fi-bsw-n3050: FAIL (fdo#108656) -> PASS fi-icl-u2: DMESG-WARN (fdo#107724) -> PASS igt@i915_selftest@live_coherency: fi-gdg-551: DMESG-FAIL (fdo#107164) -> PASS fdo#102614 https://bugs.freedesktop.org/show_bug.cgi?id=102614 fdo#103167 https://bugs.freedesktop.org/show_bug.cgi?id=103167 fdo#103191 https://bugs.freedesktop.org/show_bug.cgi?id=103191 fdo#107164 https://bugs.freedesktop.org/show_bug.cgi?id=107164 fdo#107362 https://bugs.freedesktop.org/show_bug.cgi?id=107362 fdo#107724 https://bugs.freedesktop.org/show_bug.cgi?id=107724 fdo#108656 https://bugs.freedesktop.org/show_bug.cgi?id=108656 == Participating hosts (52 -> 45) == Missing (7): fi-kbl-soraka fi-ilk-m540 fi-hsw-4200u fi-byt-squawks fi-bsw-cyan fi-icl-u3 fi-pnv-d510 == Build changes == * IGT: IGT_4722 -> IGTPW_2080 CI_DRM_5172: 469c356dc6c310bed869703bfc75a56cd63075b5 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_2080: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2080/ IGT_4722: fdcdfa1e220c5070072d5dac9523cd105e7406c2 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2080/issues.html _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 7+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for lib/igt_fb: Added XYUV format support for testing (rev14) 2018-10-24 12:43 [igt-dev] [PATCH i-g-t v12] lib/igt_fb: Added XYUV format support for testing Stanislav Lisovskiy ` (3 preceding siblings ...) 2018-11-20 16:26 ` Patchwork @ 2018-11-20 19:27 ` Patchwork 2018-11-21 0:53 ` Patchwork 5 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2018-11-20 19:27 UTC (permalink / raw) To: Stanislav Lisovskiy; +Cc: igt-dev == Series Details == Series: lib/igt_fb: Added XYUV format support for testing (rev14) URL : https://patchwork.freedesktop.org/series/48789/ State : success == Summary == = CI Bug Log - changes from IGT_4721_full -> IGTPW_2079_full = == Summary - SUCCESS == No regressions found. External URL: https://patchwork.freedesktop.org/api/1.0/series/48789/revisions/14/mbox/ == Known issues == Here are the changes found in IGTPW_2079_full that come from known issues: === IGT changes === ==== Issues hit ==== igt@gem_eio@reset-stress: shard-glk: PASS -> FAIL (fdo#105957) igt@gem_exec_schedule@pi-ringfull-blt: shard-kbl: NOTRUN -> FAIL (fdo#103158) igt@gem_mmap_wc@write-gtt-read-wc: shard-apl: PASS -> DMESG-WARN (fdo#103558, fdo#105602) +3 igt@kms_color@pipe-c-legacy-gamma: shard-apl: PASS -> FAIL (fdo#104782) igt@kms_cursor_crc@cursor-128x128-sliding: shard-apl: PASS -> FAIL (fdo#103232) igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-blt: shard-kbl: PASS -> FAIL (fdo#103167) +2 igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-onoff: shard-glk: PASS -> FAIL (fdo#103167) +4 igt@kms_frontbuffer_tracking@fbc-rgb101010-draw-pwrite: shard-glk: PASS -> DMESG-WARN (fdo#105763, fdo#106538) +2 igt@kms_plane@plane-position-covered-pipe-c-planes: shard-apl: PASS -> FAIL (fdo#103166) igt@kms_plane_alpha_blend@pipe-b-constant-alpha-max: shard-glk: PASS -> FAIL (fdo#108145) igt@kms_plane_multiple@atomic-pipe-a-tiling-y: shard-glk: PASS -> FAIL (fdo#103166) +1 igt@kms_setmode@basic: shard-apl: PASS -> FAIL (fdo#99912) shard-kbl: PASS -> FAIL (fdo#99912) ==== Possible fixes ==== igt@gem_ctx_isolation@vcs0-s3: shard-kbl: INCOMPLETE (fdo#103665) -> PASS igt@kms_available_modes_crc@available_mode_test_crc: shard-apl: FAIL (fdo#106641) -> PASS igt@kms_color@pipe-a-ctm-max: shard-apl: FAIL (fdo#108147) -> PASS igt@kms_cursor_crc@cursor-128x128-random: shard-apl: FAIL (fdo#103232) -> PASS +6 igt@kms_cursor_crc@cursor-256x256-random: shard-glk: FAIL (fdo#103232) -> PASS +5 igt@kms_cursor_crc@cursor-64x64-onscreen: shard-kbl: FAIL (fdo#103232) -> PASS +2 igt@kms_cursor_crc@cursor-64x64-suspend: shard-apl: FAIL (fdo#103191, fdo#103232) -> PASS +1 igt@kms_flip@2x-flip-vs-expired-vblank: shard-glk: FAIL (fdo#105363) -> PASS igt@kms_flip@wf_vblank-ts-check-interruptible: shard-kbl: DMESG-WARN (fdo#103558, fdo#105602) -> PASS +1 igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-blt: shard-apl: FAIL (fdo#103167) -> PASS +2 igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen: shard-kbl: FAIL (fdo#103167) -> PASS igt@kms_frontbuffer_tracking@fbc-1p-rte: shard-kbl: DMESG-FAIL (fdo#103167, fdo#103313) -> PASS igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-cpu: shard-glk: DMESG-FAIL (fdo#105763, fdo#106538) -> PASS igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-move: shard-glk: FAIL (fdo#103167) -> PASS +6 igt@kms_plane@plane-position-covered-pipe-a-planes: shard-glk: FAIL (fdo#103166) -> PASS +1 shard-apl: FAIL (fdo#103166) -> PASS +3 igt@kms_plane_alpha_blend@pipe-c-coverage-vs-premult-vs-constant: shard-glk: DMESG-WARN (fdo#105763, fdo#106538) -> PASS igt@kms_vblank@pipe-b-wait-forked-busy-hang: shard-kbl: DMESG-WARN (fdo#103558, fdo#103313, fdo#105602) -> PASS +3 igt@pm_rpm@system-suspend-execbuf: shard-kbl: DMESG-WARN (fdo#103841) -> PASS ==== Warnings ==== igt@kms_frontbuffer_tracking@fbc-1p-rte: shard-apl: FAIL (fdo#105682, fdo#103167) -> DMESG-WARN (fdo#103558, fdo#108131) igt@kms_plane_alpha_blend@pipe-a-alpha-transparant-fb: shard-glk: FAIL (fdo#108145) -> DMESG-FAIL (fdo#105763, fdo#108145, fdo#106538) fdo#103158 https://bugs.freedesktop.org/show_bug.cgi?id=103158 fdo#103166 https://bugs.freedesktop.org/show_bug.cgi?id=103166 fdo#103167 https://bugs.freedesktop.org/show_bug.cgi?id=103167 fdo#103191 https://bugs.freedesktop.org/show_bug.cgi?id=103191 fdo#103232 https://bugs.freedesktop.org/show_bug.cgi?id=103232 fdo#103313 https://bugs.freedesktop.org/show_bug.cgi?id=103313 fdo#103558 https://bugs.freedesktop.org/show_bug.cgi?id=103558 fdo#103665 https://bugs.freedesktop.org/show_bug.cgi?id=103665 fdo#103841 https://bugs.freedesktop.org/show_bug.cgi?id=103841 fdo#104782 https://bugs.freedesktop.org/show_bug.cgi?id=104782 fdo#105363 https://bugs.freedesktop.org/show_bug.cgi?id=105363 fdo#105602 https://bugs.freedesktop.org/show_bug.cgi?id=105602 fdo#105682 https://bugs.freedesktop.org/show_bug.cgi?id=105682 fdo#105763 https://bugs.freedesktop.org/show_bug.cgi?id=105763 fdo#105957 https://bugs.freedesktop.org/show_bug.cgi?id=105957 fdo#106538 https://bugs.freedesktop.org/show_bug.cgi?id=106538 fdo#106641 https://bugs.freedesktop.org/show_bug.cgi?id=106641 fdo#108131 https://bugs.freedesktop.org/show_bug.cgi?id=108131 fdo#108145 https://bugs.freedesktop.org/show_bug.cgi?id=108145 fdo#108147 https://bugs.freedesktop.org/show_bug.cgi?id=108147 fdo#99912 https://bugs.freedesktop.org/show_bug.cgi?id=99912 == Participating hosts (7 -> 5) == Missing (2): shard-skl shard-iclb == Build changes == * IGT: IGT_4721 -> IGTPW_2079 CI_DRM_5169: ed08968fdc2130ba3cb6f3d7dbe82b6a8c39973d @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_2079: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2079/ IGT_4721: 68264891ceee34195839d82d4d87cbae08ef2431 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2079/shards.html _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 7+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for lib/igt_fb: Added XYUV format support for testing (rev14) 2018-10-24 12:43 [igt-dev] [PATCH i-g-t v12] lib/igt_fb: Added XYUV format support for testing Stanislav Lisovskiy ` (4 preceding siblings ...) 2018-11-20 19:27 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork @ 2018-11-21 0:53 ` Patchwork 5 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2018-11-21 0:53 UTC (permalink / raw) To: Stanislav Lisovskiy; +Cc: igt-dev == Series Details == Series: lib/igt_fb: Added XYUV format support for testing (rev14) URL : https://patchwork.freedesktop.org/series/48789/ State : success == Summary == = CI Bug Log - changes from IGT_4722_full -> IGTPW_2080_full = == Summary - WARNING == Minor unknown changes coming with IGTPW_2080_full need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in IGTPW_2080_full, please notify your bug team to allow them to document this new failure mode, which will reduce false positives in CI. External URL: https://patchwork.freedesktop.org/api/1.0/series/48789/revisions/14/mbox/ == Possible new issues == Here are the unknown changes that may have been introduced in IGTPW_2080_full: === IGT changes === ==== Warnings ==== igt@perf_pmu@rc6: shard-kbl: PASS -> SKIP == Known issues == Here are the changes found in IGTPW_2080_full that come from known issues: === IGT changes === ==== Issues hit ==== igt@gem_ppgtt@blt-vs-render-ctx0: shard-kbl: PASS -> INCOMPLETE (fdo#103665, fdo#106887, fdo#106023) igt@gem_wait@busy-bsd: shard-apl: PASS -> DMESG-WARN (fdo#103558, fdo#105602) +6 igt@kms_available_modes_crc@available_mode_test_crc: shard-apl: PASS -> FAIL (fdo#106641) igt@kms_color@pipe-a-legacy-gamma: shard-apl: PASS -> FAIL (fdo#108145, fdo#104782) igt@kms_cursor_crc@cursor-128x128-random: shard-apl: PASS -> FAIL (fdo#103232) +5 igt@kms_cursor_crc@cursor-128x128-suspend: shard-apl: PASS -> FAIL (fdo#103191, fdo#103232) igt@kms_cursor_crc@cursor-256x256-sliding: shard-glk: PASS -> FAIL (fdo#103232) +1 igt@kms_cursor_crc@cursor-64x64-random: shard-kbl: PASS -> FAIL (fdo#103232) +2 igt@kms_cursor_legacy@cursorb-vs-flipb-toggle: shard-glk: PASS -> DMESG-WARN (fdo#106538, fdo#105763) igt@kms_draw_crc@draw-method-xrgb8888-mmap-wc-ytiled: shard-glk: PASS -> FAIL (fdo#103184) igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-cpu: shard-kbl: PASS -> FAIL (fdo#103167) +1 igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-pwrite: shard-apl: PASS -> FAIL (fdo#103167) +2 igt@kms_frontbuffer_tracking@fbc-1p-rte: shard-glk: PASS -> FAIL (fdo#105682, fdo#103167) igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-onoff: shard-glk: PASS -> FAIL (fdo#103167) +7 igt@kms_pipe_crc_basic@suspend-read-crc-pipe-c: shard-kbl: PASS -> INCOMPLETE (fdo#103665) igt@kms_plane_multiple@atomic-pipe-b-tiling-x: shard-apl: PASS -> FAIL (fdo#103166) +2 shard-kbl: PASS -> FAIL (fdo#103166) +1 igt@kms_plane_multiple@atomic-pipe-c-tiling-x: shard-glk: PASS -> FAIL (fdo#103166) +3 igt@kms_setmode@basic: shard-kbl: PASS -> FAIL (fdo#99912) igt@perf_pmu@rc6-runtime-pm-long: shard-glk: PASS -> FAIL (fdo#105010) ==== Possible fixes ==== igt@gem_render_copy@y-tiled-ccs-to-x-tiled: shard-snb: INCOMPLETE (fdo#105411) -> SKIP igt@kms_ccs@pipe-b-crc-sprite-planes-basic: shard-kbl: FAIL (fdo#107725, fdo#108145) -> PASS igt@kms_color@pipe-a-ctm-max: shard-apl: FAIL (fdo#108147) -> PASS igt@kms_color@pipe-c-legacy-gamma: shard-apl: FAIL (fdo#104782) -> PASS igt@kms_cursor_crc@cursor-128x128-dpms: shard-kbl: FAIL (fdo#103232) -> PASS shard-glk: FAIL (fdo#103232) -> PASS igt@kms_cursor_crc@cursor-64x64-dpms: shard-apl: FAIL (fdo#103232) -> PASS +1 igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-gtt: shard-apl: FAIL (fdo#103167) -> PASS +3 igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move: shard-kbl: FAIL (fdo#103167) -> PASS igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-draw-pwrite: shard-glk: FAIL (fdo#103167) -> PASS +1 igt@kms_plane@plane-position-covered-pipe-a-planes: shard-apl: FAIL (fdo#103166) -> PASS +2 shard-kbl: FAIL (fdo#103166) -> PASS igt@kms_plane_alpha_blend@pipe-a-constant-alpha-max: shard-glk: FAIL (fdo#108145) -> PASS +2 igt@kms_universal_plane@universal-plane-pipe-c-functional: shard-glk: FAIL (fdo#103166) -> PASS +3 fdo#103166 https://bugs.freedesktop.org/show_bug.cgi?id=103166 fdo#103167 https://bugs.freedesktop.org/show_bug.cgi?id=103167 fdo#103184 https://bugs.freedesktop.org/show_bug.cgi?id=103184 fdo#103191 https://bugs.freedesktop.org/show_bug.cgi?id=103191 fdo#103232 https://bugs.freedesktop.org/show_bug.cgi?id=103232 fdo#103558 https://bugs.freedesktop.org/show_bug.cgi?id=103558 fdo#103665 https://bugs.freedesktop.org/show_bug.cgi?id=103665 fdo#104782 https://bugs.freedesktop.org/show_bug.cgi?id=104782 fdo#105010 https://bugs.freedesktop.org/show_bug.cgi?id=105010 fdo#105411 https://bugs.freedesktop.org/show_bug.cgi?id=105411 fdo#105602 https://bugs.freedesktop.org/show_bug.cgi?id=105602 fdo#105682 https://bugs.freedesktop.org/show_bug.cgi?id=105682 fdo#105763 https://bugs.freedesktop.org/show_bug.cgi?id=105763 fdo#106023 https://bugs.freedesktop.org/show_bug.cgi?id=106023 fdo#106538 https://bugs.freedesktop.org/show_bug.cgi?id=106538 fdo#106641 https://bugs.freedesktop.org/show_bug.cgi?id=106641 fdo#106887 https://bugs.freedesktop.org/show_bug.cgi?id=106887 fdo#107725 https://bugs.freedesktop.org/show_bug.cgi?id=107725 fdo#108145 https://bugs.freedesktop.org/show_bug.cgi?id=108145 fdo#108147 https://bugs.freedesktop.org/show_bug.cgi?id=108147 fdo#99912 https://bugs.freedesktop.org/show_bug.cgi?id=99912 == Participating hosts (7 -> 5) == Missing (2): shard-skl shard-iclb == Build changes == * IGT: IGT_4722 -> IGTPW_2080 CI_DRM_5172: 469c356dc6c310bed869703bfc75a56cd63075b5 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_2080: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2080/ IGT_4722: fdcdfa1e220c5070072d5dac9523cd105e7406c2 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2080/shards.html _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2018-11-21 0:53 UTC | newest] Thread overview: 7+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2018-10-24 12:43 [igt-dev] [PATCH i-g-t v12] lib/igt_fb: Added XYUV format support for testing Stanislav Lisovskiy 2018-10-24 15:53 ` [igt-dev] ✗ Fi.CI.BAT: failure for lib/igt_fb: Added XYUV format support for testing (rev14) Patchwork 2018-10-29 13:01 ` [igt-dev] [PATCH i-g-t v12] lib/igt_fb: Added XYUV format support for testing Lisovskiy, Stanislav 2018-11-20 13:54 ` [igt-dev] ✓ Fi.CI.BAT: success for lib/igt_fb: Added XYUV format support for testing (rev14) Patchwork 2018-11-20 16:26 ` Patchwork 2018-11-20 19:27 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork 2018-11-21 0:53 ` Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox