chore: add framework for various integration tests

This commit is contained in:
Nils Knappmeier
2019-08-31 13:18:47 +02:00
parent 16572cd848
commit f9cce4dd02
17 changed files with 94 additions and 134 deletions
+12
View File
@@ -0,0 +1,12 @@
#!/bin/bash
cd "$( dirname "$( readlink -f "$0" )" )" || exit 1
for i in */test.sh ; do
(
echo "----------------------------------------"
echo "-- Running integration test: $i"
echo "----------------------------------------"
cd "$( dirname "$i" )" || exit 1
./test.sh || exit 1
)
done