From e9cdff74ccc499bf31c60c41227f4108346a6983 Mon Sep 17 00:00:00 2001 From: David Bremner Date: Wed, 15 May 2013 07:48:30 -0300 Subject: [PATCH] perf-test: run all appropriately named time tests This avoids hassle with manually adding every test to the master list. --- performance-test/notmuch-time-test | 10 ++-------- 1 file 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 -- 2.43.0