stop if test fails
This commit is contained in:
parent
fc1020732f
commit
e892dc6e9c
1 changed files with 2 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue