stop if test fails

This commit is contained in:
Daniel Barlow 2022-09-20 16:07:55 +01:00
parent fc1020732f
commit e892dc6e9c

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