perf-test: run all appropriately named time tests

This avoids hassle with manually adding every test to the master list.
This commit is contained in:
David Bremner 2013-05-15 07:48:30 -03:00
parent 0eab376658
commit e9cdff74cc

View file

@ -16,12 +16,6 @@ fi
cd $(dirname "$0")
TESTS="
T00-new
T01-dump-restore
T02-tag
"
for test in $TESTS; do
./$test "$@"
for test in T*.sh; do
./"$test" "$@"
done