]> git.notmuchmail.org Git - notmuch/blobdiff - performance-test/notmuch-time-test
emacs: Add new option notmuch-search-hide-excluded
[notmuch] / performance-test / notmuch-time-test
index 54a208f71f52e55eea1e0a67a1e70b3968f65b4f..4dd21fe1c5726accb7951ff991bd74afdb8644d4 100755 (executable)
@@ -3,6 +3,7 @@
 # Run tests
 #
 # Copyright (c) 2005 Junio C Hamano
 # Run tests
 #
 # Copyright (c) 2005 Junio C Hamano
+# Copyright (c) 2010 Notmuch Developers
 #
 # Adapted from a Makefile to a shell script by Carl Worth (2010)
 
 #
 # Adapted from a Makefile to a shell script by Carl Worth (2010)
 
@@ -14,14 +15,8 @@ if [ ${BASH_VERSINFO[0]} -lt 4 ]; then
     exit 1
 fi
 
     exit 1
 fi
 
-cd $(dirname "$0")
+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
 done