summaryrefslogtreecommitdiff
path: root/regress/test-exec.sh
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2018-07-11 10:19:56 +1000
committerDamien Miller <djm@mindrot.org>2018-07-11 10:19:56 +1000
commitfccfa239def497615f92ed28acc57cfe63da3666 (patch)
tree32114c198c8696df04d1cff8788a5654a4bbc283 /regress/test-exec.sh
parent416287d45fcde0a8e66eee8b99aa73bd58607588 (diff)
VALGRIND_CHECK_LEAKS logic was backwards :(
Diffstat (limited to 'regress/test-exec.sh')
-rw-r--r--regress/test-exec.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/regress/test-exec.sh b/regress/test-exec.sh
index ed235cfaf..f09fe0ec4 100644
--- a/regress/test-exec.sh
+++ b/regress/test-exec.sh
@@ -164,7 +164,7 @@ if [ "x$USE_VALGRIND" != "x" ]; then
164 164
165 if [ x"$VG_SKIP" = "x" ]; then 165 if [ x"$VG_SKIP" = "x" ]; then
166 VG_LEAK="--leak-check=no" 166 VG_LEAK="--leak-check=no"
167 if [ x"$VALGRIND_CHECK_LEAKS" = "x" ]; then 167 if [ x"$VALGRIND_CHECK_LEAKS" != "x" ]; then
168 VG_LEAK="--leak-check=full" 168 VG_LEAK="--leak-check=full"
169 fi 169 fi
170 VG_IGNORE="/bin/*,/sbin/*,/usr/*,/var/*" 170 VG_IGNORE="/bin/*,/sbin/*,/usr/*,/var/*"