diff options
author | Daniel Stenberg <daniel@haxx.se> | 2014-02-05 23:48:44 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2014-02-05 23:48:44 +0100 |
commit | 5204b45ff9973e93b94019c652fb7d50e3cf97f1 (patch) | |
tree | 73c55aaa6e6a164e68a11b6b2a0e2654159b914d /tests/runtests.pl | |
parent | 225ec4312f7a6d843d963831be58307e7018d9c0 (diff) | |
download | curl-5204b45ff9973e93b94019c652fb7d50e3cf97f1.tar.gz |
runtests: add suppression generator help
Leave the valgrind --gen-suppressions option in there, commented, to
make it easier for next update.
Diffstat (limited to 'tests/runtests.pl')
-rwxr-xr-x | tests/runtests.pl | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/runtests.pl b/tests/runtests.pl index c29aeaf52..44b22d75c 100755 --- a/tests/runtests.pl +++ b/tests/runtests.pl @@ -3368,6 +3368,7 @@ sub singletest { $valgrindcmd .= "$valgrind_tool " if($valgrind_tool); $valgrindcmd .= "--leak-check=yes "; $valgrindcmd .= "--suppressions=$srcdir/valgrind.supp "; + # $valgrindcmd .= "--gen-suppressions=all "; $valgrindcmd .= "--num-callers=16 "; $valgrindcmd .= "${valgrind_logfile}=$LOGDIR/valgrind$testnum"; $CMDLINE = "$valgrindcmd $CMDLINE"; |