This is an automated email from the ASF dual-hosted git repository. bbannier pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/mesos.git
commit e1e42dab0aeca251b3eb4ce85e5bb04628d4cb57 Author: Benjamin Mahler <[email protected]> AuthorDate: Wed Nov 7 22:21:18 2018 +0100 Updated autotools build to use parallel test runner by default. The parallel test runner completes much faster than running the tests serially, so we would like to get this benefit to all developers by default. At some point, we'll also have to update the cmake build. Review: https://reviews.apache.org/r/69277/ --- configure.ac | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index 1caab4d..c193adf 100644 --- a/configure.ac +++ b/configure.ac @@ -320,8 +320,9 @@ AC_ARG_ENABLE([optimize], [], [enable_optimize=no]) AC_ARG_ENABLE([parallel_test_execution], - AS_HELP_STRING([--enable-parallel-test-execution], - [execute tests in parallel where possible])) + AS_HELP_STRING([--disable-parallel-test-execution], + [disable the parallel runner used during make check]), + [], [enable_parallel_test_execution=yes]) AC_ARG_ENABLE([perftools], AS_HELP_STRING([--enable-perftools],
