From: David Bremner Date: Wed, 15 May 2013 10:48:30 +0000 (-0300) Subject: perf-test: run all appropriately named time tests X-Git-Tag: 0.16_rc1~130 X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=commitdiff_plain;h=e9cdff74ccc499bf31c60c41227f4108346a6983 perf-test: run all appropriately named time tests This avoids hassle with manually adding every test to the master list. --- 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