chiark / gitweb /
autopkgtests: tests/run-all: convenience script for running the tests outside adt-run
[dgit.git] / tests / run-all
1 #!/bin/sh
2 set -e
3 # convenience script for running the tests outside adt-run
4 for f in `run-parts --list tests/tests`; do
5         echo ==================================================
6         echo $f
7         $f
8         echo ==================================================
9 done
10 echo "ALL PASSED"