summaryrefslogtreecommitdiff
path: root/tests/techmap/run-test.sh
blob: e2fc11e528724075d6ad4db36f0f95793fa9bbe0 (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/bash
set -e
for x in *_runtest.sh; do
	echo "Running $x.."
	if ! bash $x &> ${x%.sh}.log; then
		tail ${x%.sh}.log
		echo ERROR
		exit 1
	fi
done