From 9285f7e6a12f31f6e54755b76259245f556d7cab Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Sun, 26 Aug 2018 11:42:07 +0100 Subject: [PATCH 1/1] test suite: run-all: Understand `:' specially Signed-off-by: Ian Jackson --- tests/run-all | 10 ++++++++++ 1 file changed, 10 insertions(+) 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 -- 2.30.2