diff options
author | Daniel Stenberg <daniel@haxx.se> | 2017-08-11 10:02:11 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2017-08-11 10:02:11 +0200 |
commit | 29d2f1d0100a903d42c1351b113bec49ce10b278 (patch) | |
tree | dd61979c560f6e8d50f0556f4857457fecda7e28 | |
parent | fb5cd71968c54bf737663e47e232f123bc0484e5 (diff) | |
download | curl-29d2f1d0100a903d42c1351b113bec49ce10b278.tar.gz |
runtests: use --gen-suppressions=all with valgrindbagder/tests-more-valgrind
... so that it is easier to put false positives into the .supp files.
-rwxr-xr-x | tests/runtests.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/runtests.pl b/tests/runtests.pl index 065df7c5f..5c885c9a4 100755 --- a/tests/runtests.pl +++ b/tests/runtests.pl @@ -3950,7 +3950,7 @@ sub singletest { $valgrindcmd .= "$valgrind_tool " if($valgrind_tool); $valgrindcmd .= "--quiet --leak-check=yes "; $valgrindcmd .= "--suppressions=$srcdir/valgrind.supp "; - # $valgrindcmd .= "--gen-suppressions=all "; + $valgrindcmd .= "--gen-suppressions=all "; $valgrindcmd .= "--num-callers=16 "; $valgrindcmd .= "${valgrind_logfile}=$LOGDIR/valgrind$testnum"; $CMDLINE = "$valgrindcmd $CMDLINE"; |