summaryrefslogtreecommitdiffstats
path: root/src/testdir/Make_vms.mms
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2020-08-02 16:10:39 +0200
committerBram Moolenaar <Bram@vim.org>2020-08-02 16:10:39 +0200
commitaa970abd0a987de96321d33db82f70bbceac931b (patch)
treecc8ef467c00b6274b7e221caa7850f22bcd667fc /src/testdir/Make_vms.mms
parent8b89614e69b9b2330539d0482e44f4724053e780 (diff)
patch 8.2.1354: test 59 is old stylev8.2.1354
Problem: Test 59 is old style. Solution: Convert into a new style test. (Yegappan Lakshmanan, closes #6604)
Diffstat (limited to 'src/testdir/Make_vms.mms')
-rw-r--r--src/testdir/Make_vms.mms33
1 files changed, 1 insertions, 32 deletions
diff --git a/src/testdir/Make_vms.mms b/src/testdir/Make_vms.mms
index 848fca7f58..59da981b37 100644
--- a/src/testdir/Make_vms.mms
+++ b/src/testdir/Make_vms.mms
@@ -32,22 +32,6 @@
# and directory handling.
# WANT_UNIX = YES
-# Comment out if you want to run Win32 specific tests as well, but please
-# be aware, that on OpenVMS will fail, because of cat, rm, etc commands
-# and directory handling.
-# WANT_WIN = YES
-
-# Comment out if you want to run spell checker tests.
-# They fail because VMS does not support file names.
-# WANT_SPELL = YES
-
-# Comment out if you want to run mzschema tests.
-# It fails because VMS does not support this feature yet.
-# WANT_MZSCH = YES
-
-# Comment out if you have ODS-5 file system
-# HAVE_ODS5 = YES
-
# Comment out if you have gzip on your system
# HAVE_GZIP = YES
@@ -75,12 +59,6 @@ VIMPROG = <->vim.exe
SCRIPT = test1.out test49.out test77a.out
-# Known problems:
-#
-# test59: Failed/Hangs - VMS does not support spell files (file names
-# with too many dots).
-#
-
.IFDEF WANT_GUI
GUI_OPTION = -g
.ENDIF
@@ -89,10 +67,6 @@ GUI_OPTION = -g
SCRIPT_UNIX = test49.out
.ENDIF
-.IFDEF WANT_SPELL
-SCRIPT_SPELL = test59.out
-.ENDIF
-
.in.out :
-@ !clean up before doing the test
-@ if "''F$SEARCH("test.out.*")'" .NES. "" then delete/noconfirm/nolog test.out.*
@@ -113,8 +87,7 @@ SCRIPT_SPELL = test59.out
-@ if "''F$SEARCH("Xdotest.*")'" .NES. "" then delete/noconfirm/nolog Xdotest.*.*
-@ if "''F$SEARCH("Xtest.*")'" .NES. "" then delete/noconfirm/nolog Xtest.*.*
-all : clean nolog $(START_WITH) $(SCRIPT) $(SCRIPT_UNIX) $(SCRIPT_SPELL) \
- nolog
+all : clean nolog $(START_WITH) $(SCRIPT) $(SCRIPT_UNIX) nolog
-@ write sys$output " "
-@ write sys$output "-----------------------------------------------"
-@ write sys$output " All done"
@@ -139,10 +112,6 @@ nolog :
-@ write sys$output "MAKE_VMS.MMS options:"
-@ write sys$output " WANT_GUI = ""$(WANT_GUI)"" "
-@ write sys$output " WANT_UNIX = ""$(WANT_UNIX)"" "
- -@ write sys$output " WANT_WIN = ""$(WANT_WIN)"" "
- -@ write sys$output " WANT_SPELL = ""$(WANT_SPELL)"" "
- -@ write sys$output " WANT_MZSCH = ""$(WANT_MZSCH)"" "
- -@ write sys$output " HAVE_ODS5 = ""$(HAVE_ODS5)"" "
-@ write sys$output " HAVE_GZIP = ""$(HAVE_GZIP)"" "
-@ write sys$output " HAVE_GDIFF = ""$(HAVE_GDIFF)"" "
-@ write sys$output " HAVE_ICONV = ""$(HAVE_ICONV)"" "