visual tests: set number of parallel threads by JOBS environment variable
This commit is contained in:
parent
c37720066d
commit
b5c2b98412
1 changed files with 4 additions and 1 deletions
5
test/run
5
test/run
|
@ -25,7 +25,10 @@ if [ -n "$(find test/standalone/ -maxdepth 1 -name '*-bin' -print -quit)" ]; the
|
|||
fi
|
||||
|
||||
run_substep "Running visual tests..."
|
||||
./test/visual/run
|
||||
if [ -z "$JOBS" ]; then
|
||||
JOBS=1
|
||||
fi
|
||||
./test/visual/run -j $JOBS
|
||||
failures=$((failures+$?))
|
||||
|
||||
exit $failures
|
||||
|
|
Loading…
Add table
Reference in a new issue