Remove messages when running STIG

This commit is contained in:
Bob Mottram 2016-11-30 20:21:58 +00:00
parent 0e47f66928
commit b0ed59de5f
1 changed files with 6 additions and 2 deletions

View File

@ -1128,12 +1128,16 @@ do
shift
done
echo $'Running tests'
if [ ! $RUN_STIG ]; then
echo $'Running tests'
fi
test_app_functions
test_unique_onion_ports
test_stig
echo $'All tests passed'
if [ ! $RUN_STIG ]; then
echo $'All tests passed'
fi
exit 0