Skip to content
Snippets Groups Projects
Commit 1c392150 authored by Bob Mottram's avatar Bob Mottram
Browse files

Show passes and fails

parent 1a1e8826
No related branches found
No related tags found
No related merge requests found
......@@ -1093,10 +1093,19 @@ function test_stig {
output "V-58901" $? ${SETLANG}
################
if [ $FAILS -gt 0 ]; then
show_passes_fails=
if [ $SHOW_ALL_TESTS ]; then
show_passes_fails=1
else
if [ $FAILS -gt 0 ]; then
show_passes_fails=1
fi
fi
if [ $show_passes_fails ]; then
echo ''
echo "Passes: $PASSES"
echo "Fails: $FAILS"
echo $"Passes: $PASSES"
echo $"Fails: $FAILS"
if [ $FAILS -gt 0 ]; then
exit 792353
fi
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment