forked from HowardHinnant/date
Added scripts to do fail testing
This commit is contained in:
14
compile_fail.sh
Executable file
14
compile_fail.sh
Executable file
@ -0,0 +1,14 @@
|
||||
#!/bin/bash
|
||||
export TEST_BIN_NAME=$1
|
||||
echo "Building ${TEST_BIN_NAME}"
|
||||
shift 1
|
||||
export BUILD_COMMAND=$@
|
||||
echo "Build command: ${BUILD_COMMAND}"
|
||||
eval ${BUILD_COMMAND} #>/dev/null 2>/dev/null
|
||||
if [ $? -eq 0 ]; then
|
||||
exit 1;
|
||||
fi
|
||||
echo "#!/bin/bash" > ${TEST_BIN_NAME}
|
||||
chmod u+x ${TEST_BIN_NAME}
|
||||
exit 0;
|
||||
|
7
test_fail.sh
Executable file
7
test_fail.sh
Executable file
@ -0,0 +1,7 @@
|
||||
#!/bin/bash
|
||||
|
||||
if [[ -e $@ ]]; then
|
||||
exit 1;
|
||||
fi
|
||||
exit 0;
|
||||
|
Reference in New Issue
Block a user