diff options
| author | lonerover <pathfinder1644@yahoo.com> | 2017-03-13 20:16:40 +0800 |
|---|---|---|
| committer | lonerover <pathfinder1644@yahoo.com> | 2017-03-13 20:24:48 +0800 |
| commit | 76829898bdcbf7f19ea2c6099c45c414510c6a38 (patch) | |
| tree | 4d19b148b4ef692b8c1045f78a5fe3b88c6427ff /src/nvim/testdir/Makefile | |
| parent | ec4c12570caa10a97c8a11e2fd1892fcb6068387 (diff) | |
| download | rneovim-76829898bdcbf7f19ea2c6099c45c414510c6a38.tar.gz rneovim-76829898bdcbf7f19ea2c6099c45c414510c6a38.tar.bz2 rneovim-76829898bdcbf7f19ea2c6099c45c414510c6a38.zip | |
vim-patch:7.4.2305
Problem: Marks, writefile and nested function tests are old style.
Solution: Turn them into new style tests. (Yegappan Lakshmanan)
https://github.com/vim/vim/commit/19a1669ffc796e30a83c5600f82f12ebf63a2261
Diffstat (limited to 'src/nvim/testdir/Makefile')
| -rw-r--r-- | src/nvim/testdir/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/nvim/testdir/Makefile b/src/nvim/testdir/Makefile index 740a10f153..9f9ecbc6c9 100644 --- a/src/nvim/testdir/Makefile +++ b/src/nvim/testdir/Makefile @@ -24,7 +24,6 @@ SCRIPTS ?= \ test64.out \ test73.out \ test79.out \ - test_marks.out \ # Tests using runtest.vim. # Keep test_alot*.res as the last one, sort the others. @@ -44,8 +43,10 @@ NEW_TESTS ?= \ test_increment_dbcs.res \ test_lambda.res \ test_langmap.res \ + test_marks.res \ test_match.res \ test_matchadd_conceal.res \ + test_nested_function.res \ test_quickfix.res \ test_signs.res \ test_syntax.res \ @@ -55,6 +56,7 @@ NEW_TESTS ?= \ test_viml.res \ test_visual.res \ test_window_id.res \ + test_writefile.res \ test_alot.res SCRIPTS_GUI := test16.out |