From: Ian Jackson Date: Sun, 26 Aug 2018 10:42:07 +0000 (+0100) Subject: test suite: run-all: Understand `:' specially X-Git-Tag: archive/debian/6.10~14 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=dgit.git;a=commitdiff_plain;h=9285f7e6a12f31f6e54755b76259245f556d7cab test suite: run-all: Understand `:' specially Signed-off-by: Ian Jackson --- diff --git a/tests/run-all b/tests/run-all index b1882230..736e0fe0 100755 --- a/tests/run-all +++ b/tests/run-all @@ -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