Skip to content

Commit 4ff4814

Browse files
committed
patch 8.1.0132: lua tests are old style
Problem: Lua tests are old style. Solution: Convert to new style tests. Improve coverage. (Dominique Pelle, closes #3091)
1 parent 1fbfe7c commit 4ff4814

File tree

7 files changed

+486
-105
lines changed

7 files changed

+486
-105
lines changed

src/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2119,7 +2119,7 @@ test1 \
21192119
test52 test59 \
21202120
test64 test69 \
21212121
test70 test72 \
2122-
test85 test86 test87 test88 \
2122+
test86 test87 test88 \
21232123
test94 test95 test99 test108:
21242124
cd testdir; rm -f $@.out; $(MAKE) -f Makefile $@.out VIMPROG=../$(VIMTESTTARGET) $(GUI_TESTARG) SCRIPTSOURCE=../$(SCRIPTSOURCE)
21252125

src/testdir/Make_all.mak

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ SCRIPTS_ALL = \
3636
SCRIPTS_MORE1 = \
3737
test11.out \
3838
test52.out \
39-
test85.out \
4039
test86.out \
4140
test87.out
4241

src/testdir/Make_amiga.mak

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ include Make_all.mak
1414
# test10 'errorformat' is different
1515
# test11 "cat" doesn't work properly
1616
# test52 only for Win32
17-
# test85 no Lua interface
1817
# test86, 87 no Python interface
1918

2019
SCRIPTS = $(SCRIPTS_ALL) $(SCRIPTS_MORE4)

src/testdir/Make_vms.mms

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,6 @@ SCRIPT = test1.out test3.out \
9393
#
9494
# test72: bug - Vim hangs at :rename (while rename works well otherwise)
9595
# test78: bug - Vim dies at :recover Xtest
96-
# test85: no Lua interface
9796
# test89: bug - findfile() does not work on VMS (just in the current directory)
9897
# test102: Just ODS-5 supports space and special chars in the filename.
9998
# On ODS-2 tests fail.
@@ -119,9 +118,9 @@ SCRIPT_SPELL = test59.out
119118
SCRIPT_MZSCH = test70.out
120119
.ENDIF
121120

122-
.IFDEF HAVE_ODS5
123-
SCRIPT_ODS5 = test102.out
124-
.ENDIF
121+
.IFDEF HAVE_ODS5
122+
SCRIPT_ODS5 = test102.out
123+
.ENDIF
125124

126125
.IFDEF HAVE_GZIP
127126
SCRIPT_GZIP = test11.out
@@ -131,10 +130,6 @@ SCRIPT_GZIP = test11.out
131130
SCRIPT_GDIFF = test47.out
132131
.ENDIF
133132

134-
.IFDEF HAVE_LUA
135-
SCRIPT_LUA = test85.out
136-
.ENDIF
137-
138133
.IFDEF HAVE_PYTHON
139134
SCRIPT_PYTHON = test86.out test87.out
140135
.ENDIF

src/testdir/test85.in

Lines changed: 0 additions & 86 deletions
This file was deleted.

0 commit comments

Comments
 (0)