Kaydet (Commit) 5f54e19e authored tarafından Stephan Bergmann's avatar Stephan Bergmann

valgrind --trace-children=yes

...at least needed for PythonTest on Linux with internal python, where the
valgrind'ed gb_Python_INSTALLED_EXECUTABLE is /bin/sh
$(gb_DEVINSTALLROOT)/program/python.  Also, remove --quiet again to avoid
frustration ("when valgrind /is/ run, why doesn't it output any "==" lines at
all?").

Change-Id: Id83e53f2b472b5af92e4aaec0c173ecdec45bc48
üst 69c52bc5
...@@ -43,7 +43,7 @@ gb_CppunitTest__interactive := $(true) ...@@ -43,7 +43,7 @@ gb_CppunitTest__interactive := $(true)
endif endif
ifneq ($(strip $(VALGRIND)),) ifneq ($(strip $(VALGRIND)),)
gb_CppunitTest_VALGRINDTOOL := valgrind --tool=$(VALGRIND) --num-callers=50 --error-exitcode=1 --quiet --leak-check=no gb_CppunitTest_VALGRINDTOOL := valgrind --tool=$(VALGRIND) --num-callers=50 --error-exitcode=1 --trace-children=yes --leak-check=no
ifeq ($(strip $(VALGRIND)),memcheck) ifeq ($(strip $(VALGRIND)),memcheck)
G_SLICE := always-malloc G_SLICE := always-malloc
GLIBCXX_FORCE_NEW := 1 GLIBCXX_FORCE_NEW := 1
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment