[llvm-commits] [llvm] r81764 - /llvm/trunk/test/Makefile

Daniel Dunbar daniel at zuster.org
Mon Sep 14 08:27:43 PDT 2009


Author: ddunbar
Date: Mon Sep 14 10:27:43 2009
New Revision: 81764

URL: http://llvm.org/viewvc/llvm-project?rev=81764&view=rev
Log:
Add a VALGRIND_EXTRA_ARGS makefile variable, with the obvious semantics.

Modified:
    llvm/trunk/test/Makefile

Modified: llvm/trunk/test/Makefile
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/Makefile?rev=81764&r1=81763&r2=81764&view=diff

==============================================================================
--- llvm/trunk/test/Makefile (original)
+++ llvm/trunk/test/Makefile Mon Sep 14 10:27:43 2009
@@ -43,7 +43,7 @@
 endif
 
 ifdef VG
-VALGRIND := valgrind --tool=memcheck --quiet --trace-children=yes --error-exitcode=3 --leak-check=full
+VALGRIND := valgrind --tool=memcheck --quiet --trace-children=yes --error-exitcode=3 --leak-check=full $(VALGRIND_EXTRA_ARGS)
 endif
 
 IGNORE_TESTS :=





More information about the llvm-commits mailing list