From ba089307bb8d18ab79a6c4a28ceb8419a72209b3 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Sat, 19 Oct 2019 18:56:58 +0200 Subject: patch 8.1.2183: running a test is a bit verbose Problem: Running a test is a bit verbose. Solution: Silence some messages. (Daniel Hahler, closes #5070) --- src/testdir/Makefile | 4 ++-- src/version.c | 2 ++ 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/src/testdir/Makefile b/src/testdir/Makefile index bcf2f8c37..d4290f96f 100644 --- a/src/testdir/Makefile +++ b/src/testdir/Makefile @@ -73,8 +73,8 @@ $(SCRIPTS) $(SCRIPTS_GUI) $(NEW_TESTS_RES): $(SCRIPTS_FIRST) # make test_largefile $(NEW_TESTS): rm -f $@.res test.log messages - $(MAKE) -f Makefile $@.res - cat messages + @MAKEFLAGS=--no-print-directory $(MAKE) -f Makefile $@.res + @cat messages @if test -f test.log; then \ exit 1; \ fi diff --git a/src/version.c b/src/version.c index afdc49aeb..7d61a4f48 100644 --- a/src/version.c +++ b/src/version.c @@ -741,6 +741,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 2183, /**/ 2182, /**/ -- cgit v1.2.1