* [igt-dev] [PATCH i-g-t] tests/kms_available_modes_crc limit tested fb formats @ 2019-02-14 11:12 Juha-Pekka Heikkila via igt-dev 2019-02-14 12:03 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_available_modes_crc limit tested fb formats (rev5) Patchwork 2019-02-14 14:05 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork 0 siblings, 2 replies; 3+ messages in thread From: Juha-Pekka Heikkila via igt-dev @ 2019-02-14 11:12 UTC (permalink / raw) To: igt-dev This test is causing too much useless noise. Limit tested fb formats to DRM_FORMAT_C8 and DRM_FORMAT_XBGR2101010 for now. These two formats are currently not tested otherwise thus they're left here for now. DRM_FORMAT_XBGR2101010 need to be included into IGT supported formats and DRM_FORMAT_C8 test need to be moved elsewhere, maybe into kms_plane. Signed-off-by: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com> --- tests/kms_available_modes_crc.c | 173 +++++++++------------------------------- 1 file changed, 39 insertions(+), 134 deletions(-) diff --git a/tests/kms_available_modes_crc.c b/tests/kms_available_modes_crc.c index 7ff385f..99bcede 100644 --- a/tests/kms_available_modes_crc.c +++ b/tests/kms_available_modes_crc.c @@ -101,17 +101,17 @@ static void generate_comparison_crc_list(data_t *data, igt_output_t *output) igt_plane_set_fb(primary, &data->primary_fb); igt_display_commit2(&data->display, data->commit); + igt_pipe_crc_drain(data->pipe_crc); igt_pipe_crc_get_current(data->gfx_fd, data->pipe_crc, &data->cursor_crc); igt_plane_set_fb(primary, NULL); igt_display_commit2(&data->display, data->commit); - intel_gen(intel_get_drm_devid(data->gfx_fd)) < 9 ? - igt_paint_color(cr, 0, 0, mode->hdisplay, mode->vdisplay, 1.0, 1.0, 1.0) : - igt_paint_color_alpha(cr, 0, 0, mode->hdisplay, mode->vdisplay, 1.0, 1.0, 1.0, 1.0); + igt_paint_color(cr, 0, 0, mode->hdisplay, mode->vdisplay, 1.0, 1.0, 1.0); igt_plane_set_fb(primary, &data->primary_fb); igt_display_commit2(&data->display, data->commit); + igt_pipe_crc_drain(data->pipe_crc); igt_pipe_crc_get_current(data->gfx_fd, data->pipe_crc, &data->fullscreen_crc); cairo_destroy(cr); @@ -122,48 +122,11 @@ static const struct { uint32_t fourcc; char zeropadding; enum { BYTES_PP_1=1, - BYTES_PP_2=2, - BYTES_PP_4=4, - NV12, - P010, - SKIP4 } bpp; + BYTES_PP_4=4} bpp; uint32_t value; } fillers[] = { { DRM_FORMAT_C8, 0, BYTES_PP_1, 0xff}, - { DRM_FORMAT_RGB565, 0, BYTES_PP_2, 0xffff}, - { DRM_FORMAT_XRGB8888, 0, BYTES_PP_4, 0xffffffff}, - { DRM_FORMAT_XBGR8888, 0, BYTES_PP_4, 0xffffffff}, - - /* - * following two are skipped because blending seems to work - * incorrectly with exception of AR24 on cursor plane. - * Test still creates the planes, just filling plane - * and getting crc is skipped. - */ - { DRM_FORMAT_ARGB8888, 0, SKIP4, 0xffffffff}, - { DRM_FORMAT_ABGR8888, 0, SKIP4, 0x00ffffff}, - - { DRM_FORMAT_XRGB2101010, 0, BYTES_PP_4, 0xffffffff}, { DRM_FORMAT_XBGR2101010, 0, BYTES_PP_4, 0xffffffff}, - - { DRM_FORMAT_YUYV, 0, BYTES_PP_4, 0x80eb80eb}, - { DRM_FORMAT_YVYU, 0, BYTES_PP_4, 0x80eb80eb}, - { DRM_FORMAT_VYUY, 0, BYTES_PP_4, 0xeb80eb80}, - { DRM_FORMAT_UYVY, 0, BYTES_PP_4, 0xeb80eb80}, - - /* - * (semi-)planar formats - */ - { DRM_FORMAT_NV12, 0, NV12, 0x80eb}, -#ifdef DRM_FORMAT_P010 - { DRM_FORMAT_P010, 0, P010, 0x8000eb00}, -#endif -#ifdef DRM_FORMAT_P012 - { DRM_FORMAT_P012, 0, P010, 0x8000eb00}, -#endif -#ifdef DRM_FORMAT_P016 - { DRM_FORMAT_P016, 0, P010, 0x8000eb00}, -#endif { 0, 0, 0, 0 } }; @@ -175,10 +138,9 @@ static bool fill_in_fb(data_t *data, igt_output_t *output, igt_plane_t *plane, uint32_t format) { signed i, c, writesize; - unsigned short* ptemp_16_buf; unsigned int* ptemp_32_buf; - for( i = 0; fillers[i].fourcc != 0; i++ ) { + for( i = 0; i < ARRAY_SIZE(fillers)-1; i++ ) { if( fillers[i].fourcc == format ) break; } @@ -190,53 +152,10 @@ static bool fill_in_fb(data_t *data, igt_output_t *output, igt_plane_t *plane, ptemp_32_buf[c] = fillers[i].value; writesize = data->size; break; - case BYTES_PP_2: - ptemp_16_buf = (unsigned short*)data->buf; - for (c = 0; c < data->size/2; c++) - ptemp_16_buf[c] = (unsigned short)fillers[i].value; - writesize = data->size; - break; case BYTES_PP_1: memset((void *)data->buf, fillers[i].value, data->size); writesize = data->size; break; - case NV12: - memset((void *)data->buf, fillers[i].value&0xff, - data->fb.offsets[1]); - - memset((void *)(data->buf+data->fb.offsets[1]), - (fillers[i].value>>8)&0xff, - data->size - data->fb.offsets[1]); - - writesize = data->size; - break; - case P010: - ptemp_16_buf = (unsigned short*)data->buf; - for (c = 0; c < data->size/2; c++) - ptemp_16_buf[c] = (unsigned short)fillers[i].value&0xffff; - - ptemp_16_buf = (unsigned short*)(data->buf+data->size); - for (c = 0; c < data->size/2; c++) - ptemp_16_buf[c] = (unsigned short)(fillers[i].value>>16)&0xffff; - - writesize = data->size+data->size/2; - break; - case SKIP4: - if (fillers[i].fourcc == DRM_FORMAT_ARGB8888 && - plane->type == DRM_PLANE_TYPE_CURSOR) { - /* - * special for cursor plane where blending works correctly. - */ - ptemp_32_buf = (unsigned int*)data->buf; - for (c = 0; c < data->size/4; c++) - ptemp_32_buf[c] = fillers[i].value; - writesize = data->size; - break; - } - igt_info("Format %s CRC comparison skipped by design.\n", - (char*)&fillers[i].fourcc); - - return false; default: igt_info("Unsupported mode for test %s\n", (char*)&fillers[i].fourcc); @@ -271,26 +190,20 @@ static bool setup_fb(data_t *data, igt_output_t *output, igt_plane_t *plane, tiling = LOCAL_DRM_FORMAT_MOD_NONE; } - for (i = 0; fillers[i].fourcc != 0; i++) { - if (fillers[i].fourcc == format) + for( i = 0; i < ARRAY_SIZE(fillers)-1; i++ ) { + if( fillers[i].fourcc == format ) break; } switch (fillers[i].bpp) { - case NV12: case BYTES_PP_1: bpp = 8; break; - - case P010: - case BYTES_PP_2: - bpp = 16; - break; - - case SKIP4: case BYTES_PP_4: bpp = 32; break; + default: + return false; } igt_get_fb_tile_size(data->gfx_fd, tiling, bpp, @@ -299,17 +212,6 @@ static bool setup_fb(data_t *data, igt_output_t *output, igt_plane_t *plane, data->fb.strides[0] = ALIGN(w * bpp / 8, tile_width); gemsize = data->size = data->fb.strides[0] * ALIGN(h, tile_height); - if (fillers[i].bpp == P010 || fillers[i].bpp == NV12) { - data->fb.offsets[1] = data->size; - data->fb.strides[1] = data->fb.strides[0]; - gemsize = data->size * 2; - - if (fillers[i].bpp == NV12) - data->size += data->fb.strides[1] * ALIGN(h/2, tile_height); - - num_planes = 2; - } - data->gem_handle = gem_create(data->gfx_fd, gemsize); ret = __gem_set_tiling(data->gfx_fd, data->gem_handle, igt_fb_mod_to_tiling(tiling), @@ -386,12 +288,23 @@ static bool prepare_crtc(data_t *data, igt_output_t *output, static int test_one_mode(data_t* data, igt_output_t *output, igt_plane_t* plane, - int mode) + int mode, enum pipe pipe) { igt_crc_t current_crc; signed rVal = 0; bool do_crc; - char* crccompare[2]; + int i; + + /* + * Limit tests only to those fb formats listed in fillers table + */ + for( i = 0; i < ARRAY_SIZE(fillers)-1; i++ ) { + if( fillers[i].fourcc == mode ) + break; + } + + if(fillers[i].bpp == 0) + return false; if (prepare_crtc(data, output, plane, mode)){ /* @@ -412,29 +325,30 @@ test_one_mode(data_t* data, igt_output_t *output, igt_plane_t* plane, if (plane->type != DRM_PLANE_TYPE_CURSOR) { if (!igt_check_crc_equal(¤t_crc, &data->fullscreen_crc)) { - crccompare[0] = igt_crc_to_string(¤t_crc); - crccompare[1] = igt_crc_to_string(&data->fullscreen_crc); - igt_warn("crc mismatch. target %.8s, result %.8s.\n", crccompare[0], crccompare[1]); - free(crccompare[0]); - free(crccompare[1]); + igt_warn("crc mismatch. connector %s using pipe %s" \ + " plane index %d mode %.4s\n", + igt_output_name(output), + kmstest_pipe_name(pipe), + plane->index, + (char*)&mode); rVal++; } } else { if (!igt_check_crc_equal(¤t_crc, &data->cursor_crc)) { - crccompare[0] = igt_crc_to_string(¤t_crc); - crccompare[1] = igt_crc_to_string(&data->cursor_crc); - igt_warn("crc mismatch. target %.8s, result %.8s.\n", crccompare[0], crccompare[1]); - free(crccompare[0]); - free(crccompare[1]); + igt_warn("crc mismatch. connector %s using pipe %s" \ + " plane index %d mode %.4s\n", + igt_output_name(output), + kmstest_pipe_name(pipe), + plane->index, + (char*)&mode); rVal++; } } } - remove_fb(data, output, plane); - return rVal; } - return 1; + remove_fb(data, output, plane); + return rVal; } @@ -447,12 +361,10 @@ test_available_modes(data_t* data) enum pipe pipe; int invalids = 0; drmModePlane *modePlane; - char planetype[3][8] = {"OVERLAY\0", "PRIMARY\0", "CURSOR\0" }; for_each_pipe_with_valid_output(&data->display, pipe, output) { igt_output_set_pipe(output, pipe); igt_display_commit2(&data->display, data->commit); - data->pipe_crc = igt_pipe_crc_new(data->gfx_fd, pipe, INTEL_PIPE_CRC_SOURCE_AUTO); @@ -472,24 +384,17 @@ test_available_modes(data_t* data) modeindex++) { data->format.dword = modePlane->formats[modeindex]; - igt_info("Testing connector %s using pipe %s" \ - " plane index %d type %s mode %s\n", - igt_output_name(output), - kmstest_pipe_name(pipe), - plane->index, - planetype[plane->type], - (char*)&data->format.name); - invalids += test_one_mode(data, output, plane, - modePlane->formats[modeindex]); + modePlane->formats[modeindex], + pipe); } drmModeFreePlane(modePlane); } igt_pipe_crc_stop(data->pipe_crc); igt_pipe_crc_free(data->pipe_crc); - igt_display_commit2(&data->display, data->commit); igt_output_set_pipe(output, PIPE_NONE); + igt_display_commit2(&data->display, data->commit); } igt_assert(invalids == 0); } -- 2.7.4 _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply related [flat|nested] 3+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_available_modes_crc limit tested fb formats (rev5) 2019-02-14 11:12 [igt-dev] [PATCH i-g-t] tests/kms_available_modes_crc limit tested fb formats Juha-Pekka Heikkila via igt-dev @ 2019-02-14 12:03 ` Patchwork 2019-02-14 14:05 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork 1 sibling, 0 replies; 3+ messages in thread From: Patchwork @ 2019-02-14 12:03 UTC (permalink / raw) To: igt-dev == Series Details == Series: tests/kms_available_modes_crc limit tested fb formats (rev5) URL : https://patchwork.freedesktop.org/series/56491/ State : success == Summary == CI Bug Log - changes from CI_DRM_5599 -> IGTPW_2404 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://patchwork.freedesktop.org/api/1.0/series/56491/revisions/5/mbox/ Known issues ------------ Here are the changes found in IGTPW_2404 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_module_load@reload-with-fault-injection: - fi-kbl-7567u: PASS -> DMESG-WARN [fdo#105602] / [fdo#108529] +1 * igt@kms_chamelium@common-hpd-after-suspend: - fi-kbl-7500u: NOTRUN -> DMESG-WARN [fdo#102505] / [fdo#103558] / [fdo#105079] / [fdo#105602] - fi-kbl-7567u: PASS -> DMESG-FAIL [fdo#105079] * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-b: - fi-byt-clapper: PASS -> FAIL [fdo#103191] / [fdo#107362] +1 - fi-apl-guc: PASS -> DMESG-WARN [fdo#108566] * igt@pm_rpm@basic-rte: - fi-bsw-kefka: NOTRUN -> FAIL [fdo#108800] * igt@pm_rpm@module-reload: - fi-kbl-7567u: PASS -> DMESG-WARN [fdo#108529] #### Possible fixes #### * igt@i915_selftest@live_execlists: - fi-apl-guc: INCOMPLETE [fdo#103927] -> PASS * igt@kms_busy@basic-flip-a: - fi-gdg-551: FAIL [fdo#103182] -> PASS * igt@kms_chamelium@dp-crc-fast: - fi-kbl-7500u: DMESG-FAIL [fdo#109627] -> PASS * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a: - fi-byt-clapper: FAIL [fdo#103191] / [fdo#107362] -> PASS +1 {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#102505]: https://bugs.freedesktop.org/show_bug.cgi?id=102505 [fdo#103182]: https://bugs.freedesktop.org/show_bug.cgi?id=103182 [fdo#103191]: https://bugs.freedesktop.org/show_bug.cgi?id=103191 [fdo#103558]: https://bugs.freedesktop.org/show_bug.cgi?id=103558 [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#105998]: https://bugs.freedesktop.org/show_bug.cgi?id=105998 [fdo#107362]: https://bugs.freedesktop.org/show_bug.cgi?id=107362 [fdo#107383]: https://bugs.freedesktop.org/show_bug.cgi?id=107383 [fdo#108529]: https://bugs.freedesktop.org/show_bug.cgi?id=108529 [fdo#108566]: https://bugs.freedesktop.org/show_bug.cgi?id=108566 [fdo#108800]: https://bugs.freedesktop.org/show_bug.cgi?id=108800 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109276]: https://bugs.freedesktop.org/show_bug.cgi?id=109276 [fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278 [fdo#109284]: https://bugs.freedesktop.org/show_bug.cgi?id=109284 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109294]: https://bugs.freedesktop.org/show_bug.cgi?id=109294 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#109527]: https://bugs.freedesktop.org/show_bug.cgi?id=109527 [fdo#109528]: https://bugs.freedesktop.org/show_bug.cgi?id=109528 [fdo#109530]: https://bugs.freedesktop.org/show_bug.cgi?id=109530 [fdo#109626]: https://bugs.freedesktop.org/show_bug.cgi?id=109626 [fdo#109627]: https://bugs.freedesktop.org/show_bug.cgi?id=109627 Participating hosts (43 -> 42) ------------------------------ Additional (7): fi-skl-6260u fi-whl-u fi-ivb-3770 fi-icl-y fi-kbl-7560u fi-bsw-kefka fi-snb-2600 Missing (8): fi-kbl-soraka fi-ilk-m540 fi-byt-squawks fi-bsw-cyan fi-icl-u3 fi-pnv-d510 fi-skl-6700hq fi-bdw-samus Build changes ------------- * IGT: IGT_4824 -> IGTPW_2404 CI_DRM_5599: 39119c9b385742d49446c25d6902864a60eda6b6 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_2404: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2404/ IGT_4824: e55d439a9ba744227fb4c9d727338276b78871d4 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2404/ _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 3+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for tests/kms_available_modes_crc limit tested fb formats (rev5) 2019-02-14 11:12 [igt-dev] [PATCH i-g-t] tests/kms_available_modes_crc limit tested fb formats Juha-Pekka Heikkila via igt-dev 2019-02-14 12:03 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_available_modes_crc limit tested fb formats (rev5) Patchwork @ 2019-02-14 14:05 ` Patchwork 1 sibling, 0 replies; 3+ messages in thread From: Patchwork @ 2019-02-14 14:05 UTC (permalink / raw) To: igt-dev == Series Details == Series: tests/kms_available_modes_crc limit tested fb formats (rev5) URL : https://patchwork.freedesktop.org/series/56491/ State : success == Summary == CI Bug Log - changes from CI_DRM_5599_full -> IGTPW_2404_full ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://patchwork.freedesktop.org/api/1.0/series/56491/revisions/5/mbox/ New tests --------- New tests have been introduced between CI_DRM_5599_full and IGTPW_2404_full: ### New IGT tests (2) ### * igt@kms_psr2_su@frontbuffer: - Statuses : 5 skip(s) - Exec time: [0.0] s * igt@kms_psr2_su@page_flip: - Statuses : 5 skip(s) - Exec time: [0.0] s Known issues ------------ Here are the changes found in IGTPW_2404_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_softpin@noreloc-s3: - shard-kbl: PASS -> INCOMPLETE [fdo#103665] +1 * igt@i915_selftest@live_workarounds: - shard-apl: PASS -> INCOMPLETE [fdo#103927] * igt@kms_busy@extended-modeset-hang-newfb-render-b: - shard-glk: NOTRUN -> DMESG-WARN [fdo#107956] * igt@kms_busy@extended-pageflip-modeset-hang-oldfb-render-b: - shard-glk: PASS -> DMESG-WARN [fdo#107956] * igt@kms_color@pipe-b-ctm-max: - shard-apl: PASS -> FAIL [fdo#108147] * igt@kms_cursor_crc@cursor-256x85-onscreen: - shard-glk: NOTRUN -> FAIL [fdo#103232] * igt@kms_cursor_crc@cursor-256x85-random: - shard-apl: PASS -> FAIL [fdo#103232] +2 - shard-kbl: PASS -> FAIL [fdo#103232] * igt@kms_draw_crc@draw-method-rgb565-render-ytiled: - shard-glk: PASS -> FAIL [fdo#103184] * igt@kms_flip@plain-flip-ts-check: - shard-kbl: PASS -> DMESG-WARN [fdo#103558] / [fdo#105602] +26 * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-blt: - shard-kbl: NOTRUN -> DMESG-WARN [fdo#103558] / [fdo#105602] +1 * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-draw-mmap-cpu: - shard-apl: PASS -> FAIL [fdo#103167] +1 * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-pwrite: - shard-glk: NOTRUN -> FAIL [fdo#103167] * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-spr-indfb-onoff: - shard-glk: PASS -> FAIL [fdo#103167] +4 * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-c-planes: - shard-kbl: PASS -> DMESG-WARN [fdo#108566] * igt@kms_plane@plane-position-covered-pipe-a-planes: - shard-glk: PASS -> FAIL [fdo#103166] +3 * igt@kms_plane_alpha_blend@pipe-a-alpha-transparant-fb: - shard-apl: NOTRUN -> FAIL [fdo#108145] - shard-kbl: NOTRUN -> FAIL [fdo#108145] * igt@kms_plane_alpha_blend@pipe-b-alpha-opaque-fb: - shard-glk: NOTRUN -> FAIL [fdo#108145] +1 * 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-apl: NOTRUN -> FAIL [fdo#103166] * {igt@kms_psr2_su@frontbuffer} (NEW): - shard-glk: NOTRUN -> {SKIP} [fdo#109271] +1 - shard-snb: NOTRUN -> {SKIP} [fdo#109271] +1 - shard-apl: NOTRUN -> {SKIP} [fdo#109271] +1 * {igt@kms_psr2_su@page_flip} (NEW): - shard-kbl: NOTRUN -> {SKIP} [fdo#109271] +1 - shard-hsw: NOTRUN -> {SKIP} [fdo#109271] +1 * igt@kms_sysfs_edid_timing: - shard-apl: NOTRUN -> FAIL [fdo#100047] - shard-kbl: NOTRUN -> FAIL [fdo#100047] #### Possible fixes #### * igt@gem_eio@reset-stress: - shard-snb: FAIL [fdo#107799] -> PASS * igt@kms_color@pipe-a-ctm-max: - shard-apl: FAIL [fdo#108147] -> PASS * igt@kms_color@pipe-a-degamma: - shard-kbl: FAIL [fdo#104782] / [fdo#108145] -> PASS * igt@kms_color@pipe-b-legacy-gamma: - shard-apl: FAIL [fdo#104782] -> PASS * igt@kms_cursor_crc@cursor-256x85-sliding: - shard-apl: FAIL [fdo#103232] -> PASS +5 * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-cur-indfb-draw-mmap-cpu: - shard-glk: FAIL [fdo#103167] -> PASS +3 * 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-draw-pwrite: - shard-kbl: FAIL [fdo#103167] -> PASS * igt@kms_plane@pixel-format-pipe-c-planes-source-clamping: - shard-glk: FAIL [fdo#108948] -> PASS - shard-apl: INCOMPLETE [fdo#103927] -> PASS * igt@kms_plane_multiple@atomic-pipe-a-tiling-x: - shard-apl: FAIL [fdo#103166] -> PASS +5 * igt@kms_plane_multiple@atomic-pipe-a-tiling-y: - shard-kbl: FAIL [fdo#103166] -> PASS +2 * igt@kms_plane_multiple@atomic-pipe-c-tiling-none: - shard-glk: FAIL [fdo#103166] -> PASS +2 * igt@kms_setmode@basic: - shard-kbl: FAIL [fdo#99912] -> PASS #### Warnings #### * igt@i915_suspend@shrink: - shard-apl: INCOMPLETE [fdo#103927] / [fdo#106886] -> DMESG-WARN [fdo#107886] / [fdo#109244] * igt@kms_cursor_crc@cursor-64x64-suspend: - shard-apl: FAIL [fdo#103191] / [fdo#103232] -> DMESG-WARN [fdo#108566] {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#100047]: https://bugs.freedesktop.org/show_bug.cgi?id=100047 [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#103927]: https://bugs.freedesktop.org/show_bug.cgi?id=103927 [fdo#104782]: https://bugs.freedesktop.org/show_bug.cgi?id=104782 [fdo#105602]: https://bugs.freedesktop.org/show_bug.cgi?id=105602 [fdo#106886]: https://bugs.freedesktop.org/show_bug.cgi?id=106886 [fdo#107799]: https://bugs.freedesktop.org/show_bug.cgi?id=107799 [fdo#107886]: https://bugs.freedesktop.org/show_bug.cgi?id=107886 [fdo#107956]: https://bugs.freedesktop.org/show_bug.cgi?id=107956 [fdo#108145]: https://bugs.freedesktop.org/show_bug.cgi?id=108145 [fdo#108147]: https://bugs.freedesktop.org/show_bug.cgi?id=108147 [fdo#108566]: https://bugs.freedesktop.org/show_bug.cgi?id=108566 [fdo#108948]: https://bugs.freedesktop.org/show_bug.cgi?id=108948 [fdo#109244]: https://bugs.freedesktop.org/show_bug.cgi?id=109244 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278 [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_4824 -> IGTPW_2404 * Piglit: piglit_4509 -> None CI_DRM_5599: 39119c9b385742d49446c25d6902864a60eda6b6 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_2404: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2404/ IGT_4824: e55d439a9ba744227fb4c9d727338276b78871d4 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2404/ _______________________________________________ igt-dev mailing list igt-dev@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/igt-dev ^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2019-02-14 14:05 UTC | newest] Thread overview: 3+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2019-02-14 11:12 [igt-dev] [PATCH i-g-t] tests/kms_available_modes_crc limit tested fb formats Juha-Pekka Heikkila via igt-dev 2019-02-14 12:03 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/kms_available_modes_crc limit tested fb formats (rev5) Patchwork 2019-02-14 14:05 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox