From acb67fee6eccb4924e6bc48165b256d09ec09a26 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim-Philipp=20M=C3=BCller?= Date: Thu, 25 Sep 2014 19:01:52 +0100 Subject: [PATCH] tests: parallelise 'make valgrind' Use $(MAKE) instead of 'make' inside the Makefile, otherwise the make will run as if -j1 had been specified and complain about the job server not being available, and with $(MAKE) in inherits the parent make's settings it seems. Upgrade common submodule for parallel check-valgrind. Let this settle a bit before upgrading the other modules. --- Makefile.am | 6 +++--- common | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile.am b/Makefile.am index 823c4cb440..ca6071dcbc 100644 --- a/Makefile.am +++ b/Makefile.am @@ -85,13 +85,13 @@ endif if HAVE_CHECK check-valgrind: - cd tests/check && make check-valgrind + $(MAKE) -C tests/check check-valgrind 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-valgrind: echo "'check' library not installed, skipping" diff --git a/common b/common index 36388a18d3..6e754981c5 160000 --- a/common +++ b/common @@ -1 +1 @@ -Subproject commit 36388a18d37d72f9633bf1a8c06d18d310d215bb +Subproject commit 6e754981c5e37a79e35dce01ce0130d5f1eff212