add leak-check=full to test.py to get more info (bug 711)
authorCraig Dowell <craigdo@ee.washington.edu>
Tue, 13 Oct 2009 00:21:39 -0700
changeset 5414 0d8cda24ced4
parent 5413 64931d320790
child 5415 5c2f96b507a9
add leak-check=full to test.py to get more info (bug 711)
test.py
--- a/test.py	Mon Oct 12 23:31:58 2009 -0700
+++ b/test.py	Tue Oct 13 00:21:39 2009 -0700
@@ -554,7 +554,7 @@
 
 def run_job_synchronously(shell_command, directory, valgrind):
     if valgrind:
-        cmd = "%s valgrind --error-exitcode=2 %s/%s/%s" % (LIBRARY_PATH, NS3_BUILDDIR, NS3_ACTIVE_VARIANT, shell_command)
+        cmd = "%s valgrind --leak-check=full --error-exitcode=2 %s/%s/%s" % (LIBRARY_PATH, NS3_BUILDDIR, NS3_ACTIVE_VARIANT, shell_command)
     else:
         cmd = "%s %s/%s/%s" % (LIBRARY_PATH, NS3_BUILDDIR, NS3_ACTIVE_VARIANT, shell_command)