aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Edmund Lazo <jan.lazo@mail.utoronto.ca>2019-11-20 23:21:48 -0500
committerJan Edmund Lazo <jan.lazo@mail.utoronto.ca>2019-11-22 20:10:12 -0500
commit273ab19452885fad7470f69c49e61250a9089873 (patch)
tree4b734a1dc82d044201768dae34ab247ceb66f1e1
parenta6714cf35cb2e93775ce42200d472b5622926a89 (diff)
downloadrneovim-273ab19452885fad7470f69c49e61250a9089873.tar.gz
rneovim-273ab19452885fad7470f69c49e61250a9089873.tar.bz2
rneovim-273ab19452885fad7470f69c49e61250a9089873.zip
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 vim/vim#5070) https://github.com/vim/vim/commit/ba089307bb8d18ab79a6c4a28ceb8419a72209b3
-rw-r--r--src/nvim/testdir/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/testdir/Makefile b/src/nvim/testdir/Makefile
index f46cc97a20..1e9031e098 100644
--- a/src/nvim/testdir/Makefile
+++ b/src/nvim/testdir/Makefile
@@ -117,8 +117,8 @@ fixff:
# 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