stop if test fails

module-based-network
Daniel Barlow 2022-09-20 16:07:55 +01:00
parent fc1020732f
commit e892dc6e9c
1 changed files with 2 additions and 1 deletions

View File

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