From b52b9440ee48678603e247573259c220e005fa10 Mon Sep 17 00:00:00 2001 From: Peter Hutterer Date: Fri, 23 May 2014 14:10:57 +1000 Subject: [PATCH] test: disable CK_FORK for the valgrind runs I'm not sure what exactly is happening here, but while valgrind seems to run fine in normal mode, the build from make distcheck fails with rather random errors. Disabling CK_FORK seems to help, but more investigation is needed. Meanwhile, this makes distcheck succeed again. Signed-off-by: Peter Hutterer Reviewed-by: Hans de Goede --- test/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/Makefile.am b/test/Makefile.am index bfbbc968..b8de15c8 100644 --- a/test/Makefile.am +++ b/test/Makefile.am @@ -101,7 +101,7 @@ VALGRIND_FLAGS=--leak-check=full \ --suppressions=$(srcdir)/valgrind.suppressions valgrind: - $(MAKE) check-TESTS LOG_COMPILER="$(VALGRIND)" LOG_FLAGS="$(VALGRIND_FLAGS)" + $(MAKE) check-TESTS LOG_COMPILER="$(VALGRIND)" LOG_FLAGS="$(VALGRIND_FLAGS)" CK_FORK=no check: valgrind