diff options
author | Lasse Collin <lasse.collin@tukaani.org> | 2022-05-23 21:31:36 +0300 |
---|---|---|
committer | Lasse Collin <lasse.collin@tukaani.org> | 2022-05-23 21:31:36 +0300 |
commit | 4773608554d1b684a05ff9c1d879cf5c42266d33 (patch) | |
tree | 5e95978b08c84c8af1dc58cb51a0cdd38a251c48 /configure.ac | |
parent | Tests: Split test_compress.sh into separate test unit for each file. (diff) | |
download | xz-4773608554d1b684a05ff9c1d879cf5c42266d33.tar.xz |
Build: Enable Automake's parallel test harness.
It has been the default for quite some time already and
the old serial harness isn't discouraged. The downside is
that with parallel tests one cannot print progress info or
other diagnostics to the terminal; all output from the tests
will be in the log files only. But now that the compression
tests are separated the parallel tests will speed things up.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 2418e4b0..d8233f10 100644 --- a/configure.ac +++ b/configure.ac @@ -570,7 +570,7 @@ echo "Initializing Automake:" # http://debbugs.gnu.org/cgi/bugreport.cgi?bug=17354 # The -Wno-unsupported is used to silence warnings about missing # "subdir-objects". -AM_INIT_AUTOMAKE([1.12 foreign tar-v7 filename-length-max=99 serial-tests -Wno-unsupported]) +AM_INIT_AUTOMAKE([1.12 foreign tar-v7 filename-length-max=99 -Wno-unsupported]) AC_PROG_LN_S AC_PROG_CC_C99 |