From 573f1b58c88eeebcf96e10876e31c4777623a841 Mon Sep 17 00:00:00 2001 From: Christian Decker Date: Sat, 26 May 2018 14:15:53 +0200 Subject: [PATCH] make: Redirect unittest output to /dev/null They are quite chatty and fail very rarely, so let's not have them spam our logs. Failures should print to stderr anyway. Signed-off-by: Christian Decker --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index e561ca5de..eaea8fe58 100644 --- a/Makefile +++ b/Makefile @@ -367,7 +367,7 @@ update-mocks/%: % @tools/update-mocks.sh "$*" unittest/%: % - $(VALGRIND) $(VALGRIND_TEST_ARGS) $* + $(VALGRIND) $(VALGRIND_TEST_ARGS) $* > /dev/null # Installation directories prefix = /usr/local