diff options
author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2019-09-14 13:05:18 -0400 |
---|---|---|
committer | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2019-09-14 13:07:58 -0400 |
commit | 1a718f4fae82ac677e868451a8b79a70bd74a6a0 (patch) | |
tree | 6bb5b046d2a6c6a55122e06705a5fb4b7e6332e4 /src | |
parent | 27fd4f31fda297b5996cf79eaaf5e8617eab777c (diff) | |
download | rneovim-1a718f4fae82ac677e868451a8b79a70bd74a6a0.tar.gz rneovim-1a718f4fae82ac677e868451a8b79a70bd74a6a0.tar.bz2 rneovim-1a718f4fae82ac677e868451a8b79a70bd74a6a0.zip |
vim-patch:8.1.2028: options test script does not work
Problem: Options test script does not work.
Solution: Use optiondefs.h for input.
https://github.com/vim/vim/commit/d9b0d83b13d2691e4544709abd87eac004715175
Diffstat (limited to 'src')
-rw-r--r-- | src/nvim/testdir/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/nvim/testdir/Makefile b/src/nvim/testdir/Makefile index 03b1bae28f..d1a449c7cc 100644 --- a/src/nvim/testdir/Makefile +++ b/src/nvim/testdir/Makefile @@ -116,6 +116,8 @@ RM_ON_RUN := test.out X* viminfo RM_ON_START := test.ok RUN_VIM := $(TOOL) $(NVIM_PRG) -u unix.vim -U NONE -i viminfo --headless --noplugin -s dotest.in +# Delete files that may interfere with running tests. This includes some files +# that may result from working on the tests, not only from running them. CLEAN_FILES := *.out \ *.failed \ *.res \ |