diff options
author | Bram Moolenaar <Bram@vim.org> | 2017-11-02 21:04:47 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2017-11-02 21:04:47 +0100 |
commit | 430dc5d360166ca5bb6a73f2c87ae53e09282ecb (patch) | |
tree | 476135bdc6d06c93ae3ab9baa27e50d35c2a7796 /src/testdir/Make_vms.mms | |
parent | 8889a5c305e69aa49fd08036e624e365097a5b7b (diff) | |
download | vim-git-430dc5d360166ca5bb6a73f2c87ae53e09282ecb.tar.gz |
patch 8.0.1253: still too many old style testsv8.0.1253
Problem: Still too many old style tests.
Solution: Convert a few more tests to new style. (Yegappan Lakshmanan,
closes #2272)
Diffstat (limited to 'src/testdir/Make_vms.mms')
-rw-r--r-- | src/testdir/Make_vms.mms | 19 |
1 files changed, 7 insertions, 12 deletions
diff --git a/src/testdir/Make_vms.mms b/src/testdir/Make_vms.mms index b76c2305d..03975899f 100644 --- a/src/testdir/Make_vms.mms +++ b/src/testdir/Make_vms.mms @@ -75,13 +75,13 @@ VIMPROG = <->vim.exe SCRIPT = test1.out test3.out \ test14.out test15.out \ - test29.out test30.out \ - test36.out test37.out test39.out \ - test40.out test42.out test44.out test45.out \ - test48.out test49.out test55.out \ + test29.out \ + test30.out test36.out test37.out test39.out \ + test42.out test44.out test48.out test49.out \ + test55.out \ test64.out test68.out test69.out \ test72.out test77a.out test88.out \ - test94.out test95.out test99.out test108.out\ + test94.out test95.out test99.out test108.out \ test_autocmd_option.out \ test_breakindent.out \ test_changelist.out \ @@ -107,7 +107,6 @@ SCRIPT = test1.out test3.out \ # # test72: bug - Vim hangs at :rename (while rename works well otherwise) # test78: bug - Vim dies at :recover Xtest -# test83: ? # test85: no Lua interface # test89: bug - findfile() does not work on VMS (just in the current directory) # test102: Just ODS-5 supports space and special chars in the filename. @@ -119,7 +118,7 @@ GUI_OPTION = -g .ENDIF .IFDEF WANT_UNIX -SCRIPT_UNIX = test10.out test12.out test17.out test27.out test49.out test73.out +SCRIPT_UNIX = test10.out test17.out test27.out test49.out test73.out .ENDIF .IFDEF WANT_WIN @@ -146,10 +145,6 @@ SCRIPT_GZIP = test11.out SCRIPT_GDIFF = test47.out .ENDIF -.IFDEF HAVE_ICONV -SCRIPT_ICONV = test83.out -.ENDIF - .IFDEF HAVE_LUA SCRIPT_LUA = test85.out .ENDIF @@ -179,7 +174,7 @@ SCRIPT_PYTHON = test86.out test87.out -@ if "''F$SEARCH("Xtest.*")'" .NES. "" then delete/noconfirm/nolog Xtest.*.* all : clean nolog $(START_WITH) $(SCRIPT) $(SCRIPT_GUI) $(SCRIPT_UNIX) $(SCRIPT_WIN) $(SCRIPT_SPELL) $(SCRIPT_ODS5) $(SCRIPT_GZIP) \ - $(SCRIPT_GDIFF) $(SCRIPT_MZSCH) $(SCRIPT_ICONV) $(SCRIPT_LUA) $(SCRIPT_PYTHON) nolog + $(SCRIPT_GDIFF) $(SCRIPT_MZSCH) $(SCRIPT_LUA) $(SCRIPT_PYTHON) nolog -@ write sys$output " " -@ write sys$output "-----------------------------------------------" -@ write sys$output " All done" |