diff src/testdir/Makefile @ 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 8e10cabcde8a
children 41b2506c7662
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