summaryrefslogtreecommitdiffstats
path: root/regress/test-exec.sh
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@dtucker.net>2019-07-19 05:16:11 +0200
committerDarren Tucker <dtucker@dtucker.net>2019-07-19 05:16:11 +0200
commit65333f7454365fe40f7367630e7dd10903b9d99e (patch)
treeaf5e559485f2a91136ef7b93e69dc666d226b411 /regress/test-exec.sh
parentEnable connect-privsep test with valgrind. (diff)
downloadopenssh-65333f7454365fe40f7367630e7dd10903b9d99e.tar.xz
openssh-65333f7454365fe40f7367630e7dd10903b9d99e.zip
Show when skipping valgrind for a test.
Diffstat (limited to '')
-rw-r--r--regress/test-exec.sh6
1 files changed, 5 insertions, 1 deletions
diff --git a/regress/test-exec.sh b/regress/test-exec.sh
index 42473c76f..3d4a856bb 100644
--- a/regress/test-exec.sh
+++ b/regress/test-exec.sh
@@ -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