#/bin/bash if [ "$1" != "-val" ] #just for safety, accept only -val (i.e., "use valgrind") then EXTRA_ARGS="" echo "Unsupported argument '$1'" else EXTRA_ARGS=$1 fi for testset in SDK-tests.txt geometry-tests.txt similarity-tests.txt do python3 ../../tester/tester.py $EXTRA_ARGS -e '(.*)=../\1' -f $testset done