From: Sebastian B. <sb...@us...> - 2013-12-24 09:15:53
|
Update of /cvsroot/simplemail/simplemail/tests In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv31529/tests Modified Files: makefile Log Message: Added G_SLICE=always-malloc to keep valgrind more happy. Index: makefile =================================================================== RCS file: /cvsroot/simplemail/simplemail/tests/makefile,v retrieving revision 1.38 retrieving revision 1.39 diff -u -d -r1.38 -r1.39 --- makefile 24 Dec 2013 09:12:13 -0000 1.38 +++ makefile 24 Dec 2013 09:15:51 -0000 1.39 @@ -129,9 +129,9 @@ $(if $(findstring imap,$(1)), -$(DOVECOT) stop) $(if $(findstring imap,$(1)), $(DOVECOT)) ifdef USE_VALGRIND_XML - valgrind $(VALGRIND_OPTS) --xml=yes --xml-file=$$@.xml ./$$< + G_SLICE=always-malloc valgrind $(VALGRIND_OPTS) --xml=yes --xml-file=$$@.xml ./$$< else - valgrind $(VALGRIND_OPTS) ./$$< + G_SLICE=always-malloc valgrind $(VALGRIND_OPTS) ./$$< endif $(if $(findstring imap,$(1)), $(DOVECOT) stop) endef |