From c0d3371a902372662e911a1df080f0ffa17b6b72 Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Wed, 19 Feb 2014 22:04:48 +0000 Subject: tests: run-all: allow arg(s) to override test list --- tests/run-all | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tests/run-all b/tests/run-all index 551e51f..e2e2a6f 100755 --- a/tests/run-all +++ b/tests/run-all @@ -1,7 +1,10 @@ #!/bin/sh set -e # convenience script for running the tests outside adt-run -for f in `run-parts --list tests/tests`; do +if [ $# = 0 ]; then + set `run-parts --list tests/tests` +fi +for f in $@; do echo ================================================== echo $f $f -- cgit v1.2.3