fix test runner

This commit is contained in:
Dane Springmeyer 2016-03-11 18:08:08 -08:00
parent 280978c422
commit cd9b214d55

View file

@ -44,8 +44,8 @@ if [ -d "test/data" ]; then
if [ -z "$JOBS" ]; then
JOBS=1
fi
if [[ -f ./test/unit/visual ]]; then
./test/unit/visual -j $JOBS
if [[ -f ./test/visual/run ]]; then
./test/visual/run -j $JOBS
ran_a_test=true
failures=$((failures+$?))
else