chiark / gitweb /
autopkgtests: tests/run-all: convenience script for running the tests outside adt-run
authorIan Jackson <ijackson@chiark.greenend.org.uk>
Sun, 24 Nov 2013 15:38:58 +0000 (15:38 +0000)
committerIan Jackson <ijackson@chiark.greenend.org.uk>
Sun, 24 Nov 2013 17:45:29 +0000 (17:45 +0000)
tests/run-all [new file with mode: 0755]

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"