tests: Use nproc for determining how many parallel jobs to use (fuzz)

This was already done in tests/hwsim/build.sh, but the fuzzing
build-test.sh can do same instead of using the hardcoded value 8.

Signed-off-by: Jouni Malinen <quic_jouni@quicinc.com>
This commit is contained in:
Jouni Malinen 2023-01-30 11:21:45 +02:00 committed by Jouni Malinen
parent bf931c5f8d
commit d44a7e38d1

View file

@ -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