Added scripts to do fail testing

This commit is contained in:
Darrell Wright
2017-11-26 23:11:58 -05:00
parent 98ae1e5241
commit 524517b369
2 changed files with 21 additions and 0 deletions

7
test_fail.sh Executable file
View File

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