diff --git a/tests/fuzzing/build-test.sh b/tests/fuzzing/build-test.sh index 26c94cca8..eefb5c6f3 100755 --- a/tests/fuzzing/build-test.sh +++ b/tests/fuzzing/build-test.sh @@ -6,11 +6,16 @@ error() exit 1 } +JOBS=`nproc` +if [ -z "$ABC" ]; then + JOBS=8 +fi + for i in *; do if [ -d $i ]; then cd $i make clean - make -j8 || error + make QUIET=1 -j$JOBS || error make clean cd .. fi