# HG changeset patch # User Bram Moolenaar # Date 1571504403 -7200 # Node ID f2dac4c32f75d0e4fe050ca927fccfe2b3c36a26 # Parent 6c588c9c48eeaf1b9df4f0915fded2ddb1ea0f4d patch 8.1.2183: running a test is a bit verbose Commit: https://github.com/vim/vim/commit/ba089307bb8d18ab79a6c4a28ceb8419a72209b3 Author: Bram Moolenaar Date: Sat Oct 19 18:56:58 2019 +0200 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 https://github.com/vim/vim/issues/5070) diff --git a/src/testdir/Makefile b/src/testdir/Makefile --- a/src/testdir/Makefile +++ b/src/testdir/Makefile @@ -73,8 +73,8 @@ report: # 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 --- a/src/version.c +++ b/src/version.c @@ -742,6 +742,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 2183, +/**/ 2182, /**/ 2181,