* [igt-dev] [PATCH i-g-t] tests/kms_rotation_crc: Switch to one-shot CRC collection @ 2019-09-09 16:31 Matt Roper 2019-09-09 17:15 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork 2019-09-09 23:56 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork 0 siblings, 2 replies; 3+ messages in thread From: Matt Roper @ 2019-09-09 16:31 UTC (permalink / raw) To: intel-gfx, igt-dev kms_rotation_crc manually starts and stops CRC collection and reads single CRC values when it needs them. Depending on how long the other test setup and execution operations take, the CRC buffer (128 entries) can fill up CRC values that the test never reads or uses. Our CI system has stumbled over several cases where the buffer fills up and overflows due to this. Let's switch this test over to the igt_pipe_crc_collect_crc API which will handle the start+stop of CRC collection when a single CRC is needed so that we won't collect a bunch of unwanted CRC values and run the risk of overflow. Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=105127 Signed-off-by: Matt Roper <matthew.d.roper@intel.com> --- tests/kms_rotation_crc.c | 22 ++++++++-------------- 1 file changed, 8 insertions(+), 14 deletions(-) diff --git a/tests/kms_rotation_crc.c b/tests/kms_rotation_crc.c index 668c1732..8f36fd2f 100644 --- a/tests/kms_rotation_crc.c +++ b/tests/kms_rotation_crc.c @@ -167,7 +167,7 @@ static void cleanup_crtc(data_t *data) } static void prepare_crtc(data_t *data, igt_output_t *output, enum pipe pipe, - igt_plane_t *plane, bool start_crc) + igt_plane_t *plane) { igt_display_t *display = &data->display; @@ -181,9 +181,6 @@ static void prepare_crtc(data_t *data, igt_output_t *output, enum pipe pipe, igt_display_commit2(display, COMMIT_ATOMIC); data->pipe_crc = igt_pipe_crc_new(data->gfx_fd, pipe, INTEL_PIPE_CRC_SOURCE_AUTO); - - if (start_crc) - igt_pipe_crc_start(data->pipe_crc); } enum rectangle_type { @@ -263,7 +260,7 @@ static void prepare_fbs(data_t *data, igt_output_t *output, igt_plane_set_position(plane, data->pos_x, data->pos_y); igt_display_commit2(display, COMMIT_ATOMIC); - igt_pipe_crc_get_current(display->drm_fd, data->pipe_crc, &data->flip_crc); + igt_pipe_crc_collect_crc(data->pipe_crc, &data->flip_crc); /* * Prepare the non-rotated flip fb. @@ -286,7 +283,7 @@ static void prepare_fbs(data_t *data, igt_output_t *output, igt_plane_set_position(plane, data->pos_x, data->pos_y); igt_display_commit2(display, COMMIT_ATOMIC); - igt_pipe_crc_get_current(display->drm_fd, data->pipe_crc, &data->ref_crc); + igt_pipe_crc_collect_crc(data->pipe_crc, &data->ref_crc); /* * Prepare the non-rotated reference fb. @@ -336,7 +333,7 @@ static void test_single_case(data_t *data, enum pipe pipe, igt_assert_eq(ret, 0); /* Check CRC */ - igt_pipe_crc_get_current(display->drm_fd, data->pipe_crc, &crc_output); + igt_pipe_crc_collect_crc(data->pipe_crc, &crc_output); igt_assert_crc_equal(&data->ref_crc, &crc_output); /* @@ -359,7 +356,7 @@ static void test_single_case(data_t *data, enum pipe pipe, igt_assert_eq(ret, 0); } kmstest_wait_for_pageflip(data->gfx_fd); - igt_pipe_crc_get_current(display->drm_fd, data->pipe_crc, &crc_output); + igt_pipe_crc_collect_crc(data->pipe_crc, &crc_output); igt_assert_crc_equal(&data->flip_crc, &crc_output); } @@ -388,7 +385,7 @@ static void test_plane_rotation(data_t *data, int plane_type, bool test_bad_form plane = igt_output_get_plane_type(output, plane_type); igt_require(igt_plane_has_prop(plane, IGT_PLANE_ROTATION)); - prepare_crtc(data, output, pipe, plane, true); + prepare_crtc(data, output, pipe, plane); for (i = 0; i < num_rectangle_types; i++) { /* Unsupported on i915 */ @@ -416,7 +413,6 @@ static void test_plane_rotation(data_t *data, int plane_type, bool test_bad_form data->override_fmt, test_bad_format); } } - igt_pipe_crc_stop(data->pipe_crc); } } @@ -473,7 +469,7 @@ static bool get_multiplane_crc(data_t *data, igt_output_t *output, ret = igt_display_try_commit2(display, COMMIT_ATOMIC); igt_assert_eq(ret, 0); - igt_pipe_crc_get_current(data->gfx_fd, data->pipe_crc, crc_output); + igt_pipe_crc_collect_crc(data->pipe_crc, crc_output); for (c = 0; c < numplanes && oldplanes; c++) igt_remove_fb(data->gfx_fd, &oldplanes[c].fb); @@ -564,7 +560,6 @@ static void test_multi_plane_rotation(data_t *data, enum pipe pipe) data->pipe_crc = igt_pipe_crc_new(data->gfx_fd, pipe, INTEL_PIPE_CRC_SOURCE_AUTO); - igt_pipe_crc_start(data->pipe_crc); for (i = 0; i < ARRAY_SIZE(planeconfigs); i++) { p[0].planetype = DRM_PLANE_TYPE_PRIMARY; @@ -620,7 +615,6 @@ static void test_multi_plane_rotation(data_t *data, enum pipe pipe) } } } - igt_pipe_crc_stop(data->pipe_crc); igt_pipe_crc_free(data->pipe_crc); igt_output_set_pipe(output, PIPE_ANY); } @@ -656,7 +650,7 @@ static void test_plane_rotation_exhaust_fences(data_t *data, igt_require(igt_plane_has_prop(plane, IGT_PLANE_ROTATION)); - prepare_crtc(data, output, pipe, plane, false); + prepare_crtc(data, output, pipe, plane); mode = igt_output_get_mode(output); w = mode->hdisplay; -- 2.20.1 _______________________________________________ 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_rotation_crc: Switch to one-shot CRC collection 2019-09-09 16:31 [igt-dev] [PATCH i-g-t] tests/kms_rotation_crc: Switch to one-shot CRC collection Matt Roper @ 2019-09-09 17:15 ` Patchwork 2019-09-09 23:56 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork 1 sibling, 0 replies; 3+ messages in thread From: Patchwork @ 2019-09-09 17:15 UTC (permalink / raw) To: Matt Roper; +Cc: igt-dev == Series Details == Series: tests/kms_rotation_crc: Switch to one-shot CRC collection URL : https://patchwork.freedesktop.org/series/66448/ State : success == Summary == CI Bug Log - changes from CI_DRM_6854 -> IGTPW_3437 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://patchwork.freedesktop.org/api/1.0/series/66448/revisions/1/mbox/ Possible new issues ------------------- Here are the unknown changes that may have been introduced in IGTPW_3437: ### IGT changes ### #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * igt@gem_sync@basic-each: - {fi-tgl-u}: NOTRUN -> [INCOMPLETE][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3437/fi-tgl-u/igt@gem_sync@basic-each.html Known issues ------------ Here are the changes found in IGTPW_3437 that come from known issues: ### IGT changes ### #### Possible fixes #### * igt@gem_ctx_switch@legacy-render: - fi-icl-u2: [INCOMPLETE][2] ([fdo#107713] / [fdo#111381]) -> [PASS][3] [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6854/fi-icl-u2/igt@gem_ctx_switch@legacy-render.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3437/fi-icl-u2/igt@gem_ctx_switch@legacy-render.html * igt@gem_exec_gttfill@basic: - {fi-tgl-u}: [INCOMPLETE][4] ([fdo#111593]) -> [PASS][5] [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6854/fi-tgl-u/igt@gem_exec_gttfill@basic.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3437/fi-tgl-u/igt@gem_exec_gttfill@basic.html {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#107713]: https://bugs.freedesktop.org/show_bug.cgi?id=107713 [fdo#109100]: https://bugs.freedesktop.org/show_bug.cgi?id=109100 [fdo#111381]: https://bugs.freedesktop.org/show_bug.cgi?id=111381 [fdo#111593]: https://bugs.freedesktop.org/show_bug.cgi?id=111593 Participating hosts (51 -> 46) ------------------------------ Additional (2): fi-icl-dsi fi-cfl-guc Missing (7): fi-ilk-m540 fi-hsw-4200u fi-byt-squawks fi-bsw-cyan fi-icl-y fi-byt-clapper fi-bdw-samus Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_5176 -> IGTPW_3437 CI-20190529: 20190529 CI_DRM_6854: 5a70800ed2837e2d35a331e2cfd43a55df58c4fc @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_3437: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3437/ IGT_5176: 0102dcf4e2e8b357b59173fe1ff78069148080c6 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3437/ _______________________________________________ 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_rotation_crc: Switch to one-shot CRC collection 2019-09-09 16:31 [igt-dev] [PATCH i-g-t] tests/kms_rotation_crc: Switch to one-shot CRC collection Matt Roper 2019-09-09 17:15 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork @ 2019-09-09 23:56 ` Patchwork 1 sibling, 0 replies; 3+ messages in thread From: Patchwork @ 2019-09-09 23:56 UTC (permalink / raw) To: Matt Roper; +Cc: igt-dev == Series Details == Series: tests/kms_rotation_crc: Switch to one-shot CRC collection URL : https://patchwork.freedesktop.org/series/66448/ State : success == Summary == CI Bug Log - changes from CI_DRM_6854_full -> IGTPW_3437_full ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://patchwork.freedesktop.org/api/1.0/series/66448/revisions/1/mbox/ Known issues ------------ Here are the changes found in IGTPW_3437_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_ctx_shared@q-in-order-bsd2: - shard-iclb: [PASS][1] -> [SKIP][2] ([fdo#109276]) +15 similar issues [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6854/shard-iclb4/igt@gem_ctx_shared@q-in-order-bsd2.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3437/shard-iclb3/igt@gem_ctx_shared@q-in-order-bsd2.html * igt@gem_exec_schedule@preempt-other-chain-bsd: - shard-iclb: [PASS][3] -> [SKIP][4] ([fdo#111325]) +7 similar issues [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6854/shard-iclb6/igt@gem_exec_schedule@preempt-other-chain-bsd.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3437/shard-iclb2/igt@gem_exec_schedule@preempt-other-chain-bsd.html * igt@i915_suspend@debugfs-reader: - shard-apl: [PASS][5] -> [DMESG-WARN][6] ([fdo#108566]) +3 similar issues [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6854/shard-apl6/igt@i915_suspend@debugfs-reader.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3437/shard-apl6/igt@i915_suspend@debugfs-reader.html * igt@kms_color@pipe-b-degamma: - shard-kbl: [PASS][7] -> [FAIL][8] ([fdo#104782]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6854/shard-kbl1/igt@kms_color@pipe-b-degamma.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3437/shard-kbl4/igt@kms_color@pipe-b-degamma.html - shard-apl: [PASS][9] -> [FAIL][10] ([fdo#104782]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6854/shard-apl3/igt@kms_color@pipe-b-degamma.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3437/shard-apl8/igt@kms_color@pipe-b-degamma.html - shard-glk: [PASS][11] -> [FAIL][12] ([fdo#104782]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6854/shard-glk6/igt@kms_color@pipe-b-degamma.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3437/shard-glk5/igt@kms_color@pipe-b-degamma.html * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic: - shard-hsw: [PASS][13] -> [FAIL][14] ([fdo#105767]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6854/shard-hsw4/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3437/shard-hsw6/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html * igt@kms_frontbuffer_tracking@fbc-stridechange: - shard-iclb: [PASS][15] -> [FAIL][16] ([fdo#103167]) +5 similar issues [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6854/shard-iclb3/igt@kms_frontbuffer_tracking@fbc-stridechange.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3437/shard-iclb6/igt@kms_frontbuffer_tracking@fbc-stridechange.html * igt@kms_psr2_su@frontbuffer: - shard-iclb: [PASS][17] -> [SKIP][18] ([fdo#109642] / [fdo#111068]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6854/shard-iclb2/igt@kms_psr2_su@frontbuffer.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3437/shard-iclb4/igt@kms_psr2_su@frontbuffer.html * igt@kms_psr@psr2_sprite_plane_move: - shard-iclb: [PASS][19] -> [SKIP][20] ([fdo#109441]) +2 similar issues [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6854/shard-iclb2/igt@kms_psr@psr2_sprite_plane_move.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3437/shard-iclb3/igt@kms_psr@psr2_sprite_plane_move.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-0: - shard-iclb: [PASS][21] -> [FAIL][22] ([fdo#103925]) +1 similar issue [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6854/shard-iclb4/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3437/shard-iclb1/igt@kms_rotation_crc@primary-y-tiled-reflect-x-0.html * igt@perf_pmu@rc6: - shard-kbl: [PASS][23] -> [SKIP][24] ([fdo#109271]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6854/shard-kbl2/igt@perf_pmu@rc6.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3437/shard-kbl7/igt@perf_pmu@rc6.html #### Possible fixes #### * igt@gem_ctx_shared@exec-single-timeline-bsd: - shard-iclb: [SKIP][25] ([fdo#110841]) -> [PASS][26] [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6854/shard-iclb2/igt@gem_ctx_shared@exec-single-timeline-bsd.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3437/shard-iclb6/igt@gem_ctx_shared@exec-single-timeline-bsd.html * igt@gem_exec_balancer@smoke: - shard-iclb: [SKIP][27] ([fdo#110854]) -> [PASS][28] [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6854/shard-iclb6/igt@gem_exec_balancer@smoke.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3437/shard-iclb2/igt@gem_exec_balancer@smoke.html * igt@gem_exec_schedule@fifo-bsd: - shard-iclb: [SKIP][29] ([fdo#111325]) -> [PASS][30] [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6854/shard-iclb2/igt@gem_exec_schedule@fifo-bsd.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3437/shard-iclb6/igt@gem_exec_schedule@fifo-bsd.html * igt@gem_exec_schedule@preempt-other-bsd1: - shard-iclb: [SKIP][31] ([fdo#109276]) -> [PASS][32] +12 similar issues [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6854/shard-iclb3/igt@gem_exec_schedule@preempt-other-bsd1.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3437/shard-iclb2/igt@gem_exec_schedule@preempt-other-bsd1.html * igt@i915_suspend@sysfs-reader: - shard-apl: [DMESG-WARN][33] ([fdo#108566]) -> [PASS][34] +5 similar issues [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6854/shard-apl8/igt@i915_suspend@sysfs-reader.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3437/shard-apl5/igt@i915_suspend@sysfs-reader.html * igt@kms_cursor_crc@pipe-c-cursor-128x42-sliding: - shard-apl: [FAIL][35] ([fdo#103232]) -> [PASS][36] [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6854/shard-apl1/igt@kms_cursor_crc@pipe-c-cursor-128x42-sliding.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3437/shard-apl2/igt@kms_cursor_crc@pipe-c-cursor-128x42-sliding.html - shard-kbl: [FAIL][37] ([fdo#103232]) -> [PASS][38] [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6854/shard-kbl1/igt@kms_cursor_crc@pipe-c-cursor-128x42-sliding.html [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3437/shard-kbl1/igt@kms_cursor_crc@pipe-c-cursor-128x42-sliding.html * igt@kms_cursor_crc@pipe-c-cursor-256x85-offscreen: - shard-iclb: [INCOMPLETE][39] ([fdo#107713]) -> [PASS][40] [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6854/shard-iclb7/igt@kms_cursor_crc@pipe-c-cursor-256x85-offscreen.html [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3437/shard-iclb2/igt@kms_cursor_crc@pipe-c-cursor-256x85-offscreen.html * igt@kms_cursor_legacy@cursor-vs-flip-legacy: - shard-apl: [INCOMPLETE][41] ([fdo#103927]) -> [PASS][42] +1 similar issue [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6854/shard-apl3/igt@kms_cursor_legacy@cursor-vs-flip-legacy.html [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3437/shard-apl8/igt@kms_cursor_legacy@cursor-vs-flip-legacy.html * igt@kms_flip@flip-vs-suspend-interruptible: - shard-snb: [INCOMPLETE][43] ([fdo#105411]) -> [PASS][44] [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6854/shard-snb1/igt@kms_flip@flip-vs-suspend-interruptible.html [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3437/shard-snb4/igt@kms_flip@flip-vs-suspend-interruptible.html * igt@kms_frontbuffer_tracking@fbcpsr-1p-rte: - shard-iclb: [FAIL][45] ([fdo#103167] / [fdo#110378]) -> [PASS][46] [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6854/shard-iclb2/igt@kms_frontbuffer_tracking@fbcpsr-1p-rte.html [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3437/shard-iclb7/igt@kms_frontbuffer_tracking@fbcpsr-1p-rte.html * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-c: - shard-kbl: [INCOMPLETE][47] ([fdo#103665]) -> [PASS][48] [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6854/shard-kbl4/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-c.html [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3437/shard-kbl7/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-c.html * igt@kms_psr@psr2_cursor_plane_onoff: - shard-iclb: [SKIP][49] ([fdo#109441]) -> [PASS][50] [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6854/shard-iclb3/igt@kms_psr@psr2_cursor_plane_onoff.html [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3437/shard-iclb2/igt@kms_psr@psr2_cursor_plane_onoff.html * igt@kms_rotation_crc@primary-y-tiled-reflect-x-90: - shard-iclb: [INCOMPLETE][51] ([fdo#107713] / [fdo#110026] / [fdo#110040 ]) -> [PASS][52] [51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6854/shard-iclb1/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3437/shard-iclb3/igt@kms_rotation_crc@primary-y-tiled-reflect-x-90.html * igt@kms_setmode@basic: - shard-kbl: [FAIL][53] ([fdo#99912]) -> [PASS][54] [53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6854/shard-kbl4/igt@kms_setmode@basic.html [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3437/shard-kbl6/igt@kms_setmode@basic.html #### Warnings #### * igt@gem_ctx_isolation@vcs1-nonpriv: - shard-iclb: [FAIL][55] ([fdo#111329]) -> [SKIP][56] ([fdo#109276]) [55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6854/shard-iclb4/igt@gem_ctx_isolation@vcs1-nonpriv.html [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3437/shard-iclb8/igt@gem_ctx_isolation@vcs1-nonpriv.html * igt@gem_mocs_settings@mocs-reset-bsd2: - shard-iclb: [SKIP][57] ([fdo#109276]) -> [FAIL][58] ([fdo#111330]) +2 similar issues [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6854/shard-iclb5/igt@gem_mocs_settings@mocs-reset-bsd2.html [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3437/shard-iclb2/igt@gem_mocs_settings@mocs-reset-bsd2.html [fdo#103167]: https://bugs.freedesktop.org/show_bug.cgi?id=103167 [fdo#103232]: https://bugs.freedesktop.org/show_bug.cgi?id=103232 [fdo#103665]: https://bugs.freedesktop.org/show_bug.cgi?id=103665 [fdo#103925]: https://bugs.freedesktop.org/show_bug.cgi?id=103925 [fdo#103927]: https://bugs.freedesktop.org/show_bug.cgi?id=103927 [fdo#104782]: https://bugs.freedesktop.org/show_bug.cgi?id=104782 [fdo#105411]: https://bugs.freedesktop.org/show_bug.cgi?id=105411 [fdo#105767]: https://bugs.freedesktop.org/show_bug.cgi?id=105767 [fdo#107713]: https://bugs.freedesktop.org/show_bug.cgi?id=107713 [fdo#108566]: https://bugs.freedesktop.org/show_bug.cgi?id=108566 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109276]: https://bugs.freedesktop.org/show_bug.cgi?id=109276 [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441 [fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642 [fdo#110026]: https://bugs.freedesktop.org/show_bug.cgi?id=110026 [fdo#110040 ]: https://bugs.freedesktop.org/show_bug.cgi?id=110040 [fdo#110378]: https://bugs.freedesktop.org/show_bug.cgi?id=110378 [fdo#110841]: https://bugs.freedesktop.org/show_bug.cgi?id=110841 [fdo#110854]: https://bugs.freedesktop.org/show_bug.cgi?id=110854 [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 [fdo#111325]: https://bugs.freedesktop.org/show_bug.cgi?id=111325 [fdo#111329]: https://bugs.freedesktop.org/show_bug.cgi?id=111329 [fdo#111330]: https://bugs.freedesktop.org/show_bug.cgi?id=111330 [fdo#99912]: https://bugs.freedesktop.org/show_bug.cgi?id=99912 Participating hosts (10 -> 6) ------------------------------ Missing (4): pig-skl-6260u shard-skl pig-hsw-4770r pig-glk-j5005 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_5176 -> IGTPW_3437 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_6854: 5a70800ed2837e2d35a331e2cfd43a55df58c4fc @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_3437: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3437/ IGT_5176: 0102dcf4e2e8b357b59173fe1ff78069148080c6 @ 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_3437/ _______________________________________________ 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-09-09 23:56 UTC | newest] Thread overview: 3+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2019-09-09 16:31 [igt-dev] [PATCH i-g-t] tests/kms_rotation_crc: Switch to one-shot CRC collection Matt Roper 2019-09-09 17:15 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork 2019-09-09 23:56 ` [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