From 131760b6d34dac7760220eff4b9a2a81f25f3fd6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim-Philipp=20M=C3=BCller?= Date: Sun, 26 Oct 2014 20:23:26 +0000 Subject: [PATCH] Parallelise 'make check-valgrind' --- Makefile.am | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile.am b/Makefile.am index a00ec99cdb..44fcdee481 100644 --- a/Makefile.am +++ b/Makefile.am @@ -22,17 +22,17 @@ include $(top_srcdir)/common/po.mak include $(top_srcdir)/common/coverage/lcov.mak check-valgrind: - cd tests/check && make check-valgrind + $(MAKE) -C tests/check check-valgrind # Test actual high-level functionnality. check-integration: - cd tests/check && make check-integration + $(MAKE) -C tests/check check-integration if HAVE_GST_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