diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-09-14 15:27:43 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-09-14 15:27:43 +0000 |
commit | 9dbc0054b4e16f3d94c8009b5d510c3753ed7ca2 (patch) | |
tree | 35ea2c8916a95bf866b256f1e0e12c2579eeb629 | |
parent | 6c3b4e242e24ed183d4561ce5a8222b441893698 (diff) | |
download | external_llvm-9dbc0054b4e16f3d94c8009b5d510c3753ed7ca2.zip external_llvm-9dbc0054b4e16f3d94c8009b5d510c3753ed7ca2.tar.gz external_llvm-9dbc0054b4e16f3d94c8009b5d510c3753ed7ca2.tar.bz2 |
Add a VALGRIND_EXTRA_ARGS makefile variable, with the obvious semantics.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@81764 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | test/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Makefile b/test/Makefile index 3f21eaf..661f791 100644 --- a/test/Makefile +++ b/test/Makefile @@ -43,7 +43,7 @@ LIT_TESTSUITE := . 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 := |