summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rwxr-xr-xtests/run-all10
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/run-all b/tests/run-all
new file mode 100755
index 0000000..551e51f
--- /dev/null
+++ b/tests/run-all
@@ -0,0 +1,10 @@
+#!/bin/sh
+set -e
+# convenience script for running the tests outside adt-run
+for f in `run-parts --list tests/tests`; do
+ echo ==================================================
+ echo $f
+ $f
+ echo ==================================================
+done
+echo "ALL PASSED"