aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile.am
diff options
context:
space:
mode:
authorDaniel Veillard <veillard@redhat.com>2012-08-24 16:38:54 +0800
committerDaniel Veillard <veillard@redhat.com>2012-08-24 16:38:54 +0800
commit73f94c602c50f2ad158d5b5f4aac282ee764d8fe (patch)
tree869cf1529c1ef4f52dcf8932b9d2b2a55dcf98b5 /Makefile.am
parent622705398ab0b9aa3ed5f671432ef894d620f8a4 (diff)
downloadandroid_external_libxml2-73f94c602c50f2ad158d5b5f4aac282ee764d8fe.tar.gz
android_external_libxml2-73f94c602c50f2ad158d5b5f4aac282ee764d8fe.tar.bz2
android_external_libxml2-73f94c602c50f2ad158d5b5f4aac282ee764d8fe.zip
Small cleanup for valgrind target
Diffstat (limited to 'Makefile.am')
-rw-r--r--Makefile.am9
1 files changed, 2 insertions, 7 deletions
diff --git a/Makefile.am b/Makefile.am
index dcac0f81..c8e8c935 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -209,10 +209,10 @@ runtests:
check: all runtests
-check-valgrind: all
+check-valgrind valgrind: all
@echo '## Running the regression tests under Valgrind'
@echo '## Go get a cup of coffee it is gonna take a while ...'
- $(MAKE) CHECKER='valgrind -q' check
+ $(MAKE) CHECKER='valgrind -q' runtests
testall : tests SVGtests SAXtests
@@ -221,11 +221,6 @@ tests: XMLtests XMLenttests NStests IDtests Errtests APItests $(READER_TEST) $(T
$(MAKE) tests ; fi)
@(cd doc/examples ; $(MAKE) tests)
-valgrind:
- @echo '## Running the regression tests under Valgrind'
- @echo '## Go get a cup of coffee it is gonna take a while ...'
- $(MAKE) CHECKER='valgrind -q' tests
-
APItests: testapi$(EXEEXT)
@echo "## Running the API regression tests this may take a little while"
-@($(CHECKER) $(top_builddir)/testapi -q)