tests: Property count valgrind errors in wrapped tests

The logic in wrap_test() was effectively squashing valgrind errors into
the "FAIL" bucket rather than their own bucket as intended.  Correct it.

Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
main
David Gibson 2018-11-14 16:13:30 +11:00
parent 5062516fb8
commit 43366bb4ee
1 changed files with 3 additions and 0 deletions

View File

@ -88,6 +88,9 @@ wrap_test () {
if [ "$ret" -gt 127 ]; then if [ "$ret" -gt 127 ]; then
signame=$(kill -l $((ret - 128))) signame=$(kill -l $((ret - 128)))
FAIL "Killed by SIG$signame" FAIL "Killed by SIG$signame"
elif [ "$ret" -eq $VGCODE ]; then
echo "VALGRIND ERROR"
exit $VGCODE
else else
FAIL "Returned error code $ret" FAIL "Returned error code $ret"
fi fi