chiark / gitweb /
autopkgtests: tests/run-all: convenience script for running the tests outside adt-run
[dgit.git] / tests / run-all
diff --git a/tests/run-all b/tests/run-all
new file mode 100755 (executable)
index 0000000..551e51f
--- /dev/null
@@ -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"