Show when skipping valgrind for a test.

This commit is contained in:
Darren Tucker 2019-07-19 13:16:11 +10:00
parent fccb7eb343
commit 65333f7454
1 changed files with 5 additions and 1 deletions

View File

@ -605,7 +605,11 @@ if [ "x$USE_VALGRIND" != "x" ]; then
fi
fi
done
verbose valgrind results $VG_RESULT_COUNT errors $VG_ERROR_COUNT
if [ x"$VG_SKIP" != "x" ]; then
verbose valgrind skipped
else
verbose valgrind results $VG_RESULT_COUNT errors $VG_ERROR_COUNT
fi
fi
if [ $RESULT -eq 0 ]; then