Reduce number of btest threads running tests on Travis CI

On Travis CI, btest was using 32 threads when running with "-j".  Reducing
this to "-j 4" seems to make the tests run a bit faster overall and
somewhat reduces the number of test failures.
This commit is contained in:
Daniel Thayer 2018-04-20 09:25:51 -05:00
parent e2b48ceb80
commit b23029a09d

View file

@ -48,8 +48,10 @@ run_coverity() {
run() {
# Run the tests, but don't exit upon failure.
make -C testing/btest btest-brief
cd testing/btest
../../aux/btest/btest -j 4 -b -f diag.log
ret=$?
cd ../..
set -e