diff options
author | Darren Tucker <dtucker@dtucker.net> | 2019-07-19 05:16:11 +0200 |
---|---|---|
committer | Darren Tucker <dtucker@dtucker.net> | 2019-07-19 05:16:11 +0200 |
commit | 65333f7454365fe40f7367630e7dd10903b9d99e (patch) | |
tree | af5e559485f2a91136ef7b93e69dc666d226b411 /regress/test-exec.sh | |
parent | Enable connect-privsep test with valgrind. (diff) | |
download | openssh-65333f7454365fe40f7367630e7dd10903b9d99e.tar.xz openssh-65333f7454365fe40f7367630e7dd10903b9d99e.zip |
Show when skipping valgrind for a test.
Diffstat (limited to '')
-rw-r--r-- | regress/test-exec.sh | 6 |
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 |