add rudimentary test harness, turn example-configuration into a test

This commit is contained in:
Daniel Barlow
2022-09-20 15:22:37 +01:00
parent 4b118bca19
commit b38b0bd932
4 changed files with 32 additions and 3 deletions

7
run-tests.sh Executable file
View File

@@ -0,0 +1,7 @@
#!/usr/bin/env bash
export TMPDIR=${TMPDIR-/tmp}
for i in tests/*/run.sh; do
echo $i
$i
done