summaryrefslogtreecommitdiff
path: root/tests/run-all
blob: e2e2a6f517f51b5ae99df2e663a0afca90aaba13 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh
set -e
# convenience script for running the tests outside adt-run
if [ $# = 0 ]; then
	set `run-parts --list tests/tests`
fi
for f in $@; do
	echo ==================================================
	echo $f
	$f
	echo ==================================================
done
echo "ALL PASSED"