diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2022-12-16 15:32:04 -0500 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2022-12-16 15:32:04 -0500 |
commit | e50c19f284dad6b4b7b79f91cc8576a97626be8a (patch) | |
tree | 3fc7b15a412d4123d403bca6fdbf3225389926e1 /tests/bsd/exit.sh | |
parent | 7d87b96b421b76e387cee903b7b7c1bc16c54310 (diff) | |
download | bfs-e50c19f284dad6b4b7b79f91cc8576a97626be8a.tar.xz |
tests: Turn on set -e
Diffstat (limited to 'tests/bsd/exit.sh')
-rw-r--r-- | tests/bsd/exit.sh | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/tests/bsd/exit.sh b/tests/bsd/exit.sh index 524a75f..248349c 100644 --- a/tests/bsd/exit.sh +++ b/tests/bsd/exit.sh @@ -1,11 +1,5 @@ -invoke_bfs basic -name foo -exit 42 -if [ $? -ne 42 ]; then - return 1 -fi +check_exit 42 invoke_bfs basic -name foo -exit 42 -invoke_bfs basic -name qux -exit 42 -if [ $? -ne 0 ]; then - return 1 -fi +check_exit 0 invoke_bfs basic -name qux -exit 42 bfs_diff basic/g -print -name g -exit |