diff options
author | Luboš Luňák <l.lunak@suse.cz> | 2012-12-05 11:25:58 +0100 |
---|---|---|
committer | Luboš Luňák <l.lunak@suse.cz> | 2012-12-05 11:28:24 +0100 |
commit | 7a3988aca2c649253575bee6a582189f846c80b2 (patch) | |
tree | 2871021a88ebbbc4eca6afc03bbbf51a7552a03f /solenv | |
parent | b82f2f3b3a38a356ee71beab669d0aef6a941a02 (diff) |
and valgrind leak errors or other info is probably not useful in unittests
Change-Id: Id3d899e7e9ef86d0f3a24502af74ec3a554037ea
Diffstat (limited to 'solenv')
-rw-r--r-- | solenv/gbuild/CppunitTest.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/solenv/gbuild/CppunitTest.mk b/solenv/gbuild/CppunitTest.mk index 03c45238524f..047cf8110799 100644 --- a/solenv/gbuild/CppunitTest.mk +++ b/solenv/gbuild/CppunitTest.mk @@ -40,7 +40,7 @@ gb_CppunitTest__interactive := $(true) endif ifneq ($(strip $(VALGRIND)),) -gb_CppunitTest_VALGRINDTOOL := valgrind --tool=$(VALGRIND) --num-callers=50 --error-exitcode=1 +gb_CppunitTest_VALGRINDTOOL := valgrind --tool=$(VALGRIND) --num-callers=50 --error-exitcode=1 --quiet --leak-check=no ifeq ($(strip $(VALGRIND)),memcheck) G_SLICE := always-malloc GLIBCXX_FORCE_NEW := 1 |