summaryrefslogtreecommitdiff
path: root/tests/run-all
diff options
context:
space:
mode:
Diffstat (limited to 'tests/run-all')
-rwxr-xr-xtests/run-all5
1 files changed, 4 insertions, 1 deletions
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