Skip to content

Commit

Permalink
ovs-dev.py: Pass leak-check=full to valgrind.
Browse files Browse the repository at this point in the history
This valgrind leak checker isn't really useful without this.

Signed-off-by: Ethan Jackson <[email protected]>
Acked-by: Joe Stringer <[email protected]>
  • Loading branch information
ejj committed Dec 23, 2013
1 parent 0e9a76b commit 294a555
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utilities/ovs-dev.py
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ def run():
if options.gdb:
cmd = ["gdb", "--args"] + cmd
elif options.valgrind:
cmd = ["valgrind", "--track-origins=yes",
cmd = ["valgrind", "--track-origins=yes", "--leak-check=full",
"--suppressions=%s/tests/glibc.supp" % OVS_SRC,
"--suppressions=%s/tests/openssl.supp" % OVS_SRC] + cmd
else:
Expand Down

0 comments on commit 294a555

Please sign in to comment.