summaryrefslogtreecommitdiffstats
path: root/src/testdir/test1.in
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2018-07-14 21:48:46 +0200
committerBram Moolenaar <Bram@vim.org>2018-07-14 21:48:46 +0200
commit1ce9a1515be5255641d31ab5b0e9418d8f250d84 (patch)
treebf3d711f63dcca6ed6ea346627c5bca84537d150 /src/testdir/test1.in
parentb6959a8e06cef6d2126b030b2f8acd49457a3582 (diff)
patch 8.1.0185: running tests writes lua.vim even though it is not usedv8.1.0185
Problem: Running tests writes lua.vim even though it is not used. Solution: Stop writing lua.vim.
Diffstat (limited to 'src/testdir/test1.in')
-rw-r--r--src/testdir/test1.in5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/testdir/test1.in b/src/testdir/test1.in
index 735d539673..8c0219ea60 100644
--- a/src/testdir/test1.in
+++ b/src/testdir/test1.in
@@ -15,7 +15,6 @@ If Vim was not compiled with the +multi_byte feature, the mbyte.vim script will
be set like small.vim above. mbyte.vim is sourced by tests that require the
+multi_byte feature.
Similar logic is applied to the +mzscheme feature, using mzscheme.vim.
-Similar logic is applied to the +lua feature, using lua.vim.
STARTTEST
:" If columns or lines are too small, create wrongtermsize.
@@ -33,7 +32,6 @@ w! test.out
qa!
:w! mbyte.vim
:w! mzscheme.vim
-:w! lua.vim
:"
:" If +multi_byte feature supported, make mbyte.vim empty.
:if has("multi_byte") | sp another | w! mbyte.vim | q | endif
@@ -41,9 +39,6 @@ qa!
:" If +mzscheme feature supported, make mzscheme.vim empty.
:if has("mzscheme") | sp another | w! mzscheme.vim | q | endif
:"
-:" If +lua feature supported, make lua.vim empty.
-:if has("lua") | sp another | w! lua.vim | q | endif
-:"
:" If +eval feature supported quit here, leaving tiny.vim and small.vim empty.
:" Otherwise write small.vim to skip the test.
:if 1 | q! | endif