Added fips-check script when running commit-tests.

This commit is contained in:
John Safranek
2014-11-19 12:00:04 -08:00
parent 17a4cc8239
commit 65c0dd4f8a
4 changed files with 76 additions and 0 deletions

View File

@ -31,4 +31,12 @@ make -j 8 test;
RESULT=$?
[ $RESULT -ne 0 ] && echo -e "\n\nFull config make test failed" && exit 1
if [ $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