aboutsummaryrefslogtreecommitdiffhomepage
path: root/performance-test
diff options
context:
space:
mode:
authorGravatar David Bremner <bremner@debian.org>2013-05-15 07:48:30 -0300
committerGravatar David Bremner <bremner@debian.org>2013-05-15 22:23:29 -0300
commite9cdff74ccc499bf31c60c41227f4108346a6983 (patch)
treed78614d8d83b7711a7e8d298508649284329e3ec /performance-test
parent0eab376658689469c5427d1b2c292de62e009aee (diff)
perf-test: run all appropriately named time tests
This avoids hassle with manually adding every test to the master list.
Diffstat (limited to 'performance-test')
-rwxr-xr-xperformance-test/notmuch-time-test10
1 files changed, 2 insertions, 8 deletions
diff --git a/performance-test/notmuch-time-test b/performance-test/notmuch-time-test
index 54a208f7..7113efbf 100755
--- a/performance-test/notmuch-time-test
+++ b/performance-test/notmuch-time-test
@@ -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