added a pre-push hook. move fips test to pre-push check

This commit is contained in:
John Safranek
2015-07-30 14:24:45 -07:00
parent 2cbb30745e
commit e1513c30d2
3 changed files with 20 additions and 8 deletions

View File

@ -31,12 +31,4 @@ make -j 8 test;
RESULT=$?
[ $RESULT -ne 0 ] && echo -e "\n\nFull config make test failed" && exit 1
if [ -n "$HAVE_FIPS_SOURCE" ];
then
echo -e "\n\nTesting with FIPS release code...\n\n"
./fips-check.sh
RESULT=$?
[ $RESULT -ne 0 ] && echo -e "\n\nFIPS build test failed" && exit 1
fi
exit 0