changeset 18378:f2dac4c32f75 v8.1.2183

patch 8.1.2183: running a test is a bit verbose Commit: https://github.com/vim/vim/commit/ba089307bb8d18ab79a6c4a28ceb8419a72209b3 Author: Bram Moolenaar <Bram@vim.org> 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)
author Bram Moolenaar <Bram@vim.org>
date Sat, 19 Oct 2019 19:00:03 +0200
parents 6c588c9c48ee
children 0588431c7018
files src/testdir/Makefile src/version.c
diffstat 2 files changed, 4 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- 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
--- 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,