chiark / gitweb /
test suite: run-all: Understand `:' specially
[dgit.git] / tests / run-all
index b18822304ae04d6712dfcc57b11d7d4f7ceabfb7..736e0fe0a9189a42ef7295648a3630305085b10b 100755 (executable)
@@ -2,6 +2,9 @@
 set -e
 # convenience script for running the tests outside adt-run
 # usage: tests/using-intree tests/run-all [-p|--progressive] [tests/tests/*]
+#
+# passing `:' as if it were tests/tests/something is
+#  a no-op and therefore just means to (delete and) set up the tmpdir
 
 set -o pipefail
 
@@ -37,6 +40,13 @@ esac
 
 mkdir -p -- "$tmpdir"
 
+case "$1" in
+:)
+       shift
+       if [ $# = 0 ]; then exit 0; fi
+       ;;
+esac
+
 if [ $# != 0 ]; then
        set TESTSCRIPTS="$*"
 fi