- Timestamp:
- 07/28/18 21:17:54 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
cpp/tests/go.sh
r813 r814 1 1 #/bin/bash 2 2 3 if [ "$1" != "-val" ] #just for safety, accept only -val (i.e., "use valgrind") 4 then 5 EXTRA_ARGS="" 6 echo "Unsupported argument '$1'" 7 else 8 EXTRA_ARGS=$1 9 fi 3 # "$@" allows to pass any command-line arguments of this script to python tester 10 4 11 5 for testset in SDK-tests.txt geometry-tests.txt similarity-tests.txt 12 6 do 13 python3 ../../tester/tester.py $EXTRA_ARGS-e '(.*)=../\1' -f $testset7 python3 ../../tester/tester.py "$@" -e '(.*)=../\1' -f $testset 14 8 done
Note: See TracChangeset
for help on using the changeset viewer.