From: Sebastian B. <sb...@us...> - 2013-12-24 09:12:15
|
Update of /cvsroot/simplemail/simplemail/tests In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv30784/tests Modified Files: makefile Log Message: The run, memlekas, and helgrind targets now depend on dovecot for imap unit tests. Index: makefile =================================================================== RCS file: /cvsroot/simplemail/simplemail/tests/makefile,v retrieving revision 1.37 retrieving revision 1.38 diff -u -d -r1.37 -r1.38 --- makefile 24 Dec 2013 09:11:57 -0000 1.37 +++ makefile 24 Dec 2013 09:12:13 -0000 1.38 @@ -111,7 +111,7 @@ # run template define run.tmpl -run-$(1): $(1) +run-$(1): $(1) $(if $(findstring imap,$(1)), dovecot) $(if $(findstring imap,$(1)), -$(DOVECOT) stop) $(if $(findstring imap,$(1)), $(DOVECOT)) ./$$< @@ -125,7 +125,7 @@ # memleaks template define memleak.tmpl -memleaks-$(1): $(1) +memleaks-$(1): $(1) $(if $(findstring imap,$(1)), dovecot) $(if $(findstring imap,$(1)), -$(DOVECOT) stop) $(if $(findstring imap,$(1)), $(DOVECOT)) ifdef USE_VALGRIND_XML @@ -147,7 +147,7 @@ # helgrind template define helgrind.tmpl -helgrind-$(1): $(1) +helgrind-$(1): $(1) $(if $(findstring imap,$(1)), dovecot) $(if $(findstring imap,$(1)), -$(DOVECOT) stop) $(if $(findstring imap,$(1)), $(DOVECOT)) ifdef USE_VALGRIND_XML |