Add trivial test, that processing fails when tool is not invoked

This commit is contained in:
Eric Levy 2022-01-24 20:26:06 -05:00
parent 61151b307b
commit 0036b48238
2 changed files with 9 additions and 0 deletions

View File

@ -1,2 +1,3 @@
base
subshell-simple
subshell-undeclared

View File

@ -0,0 +1,8 @@
#!/usr/bin/env bash
bash << "EOF"
source ./run-basic-tests
if ! (( FAIL )); then
exit 1
fi
EOF