From 52e4bbab9ecb9e9796ad29369380ddd6ddefdeb1 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Tim-Philipp=20M=C3=BCller?= Date: Sun, 26 Oct 2014 14:55:49 +0000 Subject: [PATCH] Parallelise 'make check-valgrind' Some of the RTP unit tests are very flaky and will fail more often with the CPU maxed out fully. Those tests need to be fixed in any case though, they also fail on slower machines and also occasionally with normal 'make check'. --- Makefile.am | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile.am b/Makefile.am index d663e47..c6da764 100644 --- a/Makefile.am +++ b/Makefile.am @@ -35,13 +35,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_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 -- 2.7.4