Updated testing so that failures of the should fail tests will compile

but will return 1 in testing if they actually built
This commit is contained in:
Darrell Wright
2017-11-26 23:22:29 -05:00
parent 524517b369
commit 748a1fd5a9
2 changed files with 11 additions and 6 deletions

View File

@@ -1,7 +1,10 @@
#!/bin/bash
if [[ -e $@ ]]; then
exit 1;
fi
exit 0;
echo $1
eval $1
if [ $? -eq 0 ]; then
exit 0;
fi
exit 1;