summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim@centricular.com>2014-10-26 20:55:11 +0000
committerTim-Philipp Müller <tim@centricular.com>2014-10-26 20:55:26 +0000
commit7053a1562d6542d015632c5b4904c0bd6ae83fd9 (patch)
tree96f045452c6c58d41f47c19acad19d17b04aa7f8
parent69bf61ac20de2e471202224d8483d947efb315dc (diff)
Parallelise 'make check-valgrind'
Fails faster now!
-rw-r--r--Makefile.am6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile.am b/Makefile.am
index 943262e..26f4952 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -22,13 +22,13 @@ include $(top_srcdir)/common/release.mak
include $(top_srcdir)/common/po.mak
check-valgrind:
- cd tests/check && make check-valgrind
+ $(MAKE) -C tests/check check-valgrind
if HAVE_CHECK
check-torture:
- cd tests/check && make torture
+ $(MAKE) -C tests/check torture
build-checks:
- cd tests/check && make build-checks
+ $(MAKE) -C tests/check build-checks
else
check-torture:
true