From: Bram Moolenaar Date: Sat, 19 Oct 2019 16:56:58 +0000 (+0200) Subject: patch 8.1.2183: running a test is a bit verbose X-Git-Tag: v8.1.2183 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ba089307bb8d18ab79a6c4a28ceb8419a72209b3;p=vim 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) --- 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, /**/