From: Ian Jackson Date: Sun, 24 Nov 2013 15:38:58 +0000 (+0000) Subject: autopkgtests: tests/run-all: convenience script for running the tests outside adt-run X-Git-Tag: debian/0.19~6 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=dgit.git;a=commitdiff_plain;h=a110a1029e0eefe70bb1c057620c4102c6a52165 autopkgtests: tests/run-all: convenience script for running the tests outside adt-run --- diff --git a/tests/run-all b/tests/run-all new file mode 100755 index 00000000..551e51ff --- /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"