comparison src/testdir/Make_vms.mms @ 21608:24cb89db078d v8.2.1354

patch 8.2.1354: test 59 is old style Commit: https://github.com/vim/vim/commit/aa970abd0a987de96321d33db82f70bbceac931b Author: Bram Moolenaar <Bram@vim.org> Date: Sun Aug 2 16:10:39 2020 +0200 patch 8.2.1354: test 59 is old style Problem: Test 59 is old style. Solution: Convert into a new style test. (Yegappan Lakshmanan, closes https://github.com/vim/vim/issues/6604)
author Bram Moolenaar <Bram@vim.org>
date Sun, 02 Aug 2020 16:15:03 +0200
parents dc1c26547a42
children baccf9e06efe
comparison
equal deleted inserted replaced
21607:2fd50654cfac 21608:24cb89db078d
30 # Comment out if you want to run Unix specific tests as well, but please 30 # Comment out if you want to run Unix specific tests as well, but please
31 # be aware, that on OpenVMS will fail, because of cat, rm, etc commands 31 # be aware, that on OpenVMS will fail, because of cat, rm, etc commands
32 # and directory handling. 32 # and directory handling.
33 # WANT_UNIX = YES 33 # WANT_UNIX = YES
34 34
35 # Comment out if you want to run Win32 specific tests as well, but please
36 # be aware, that on OpenVMS will fail, because of cat, rm, etc commands
37 # and directory handling.
38 # WANT_WIN = YES
39
40 # Comment out if you want to run spell checker tests.
41 # They fail because VMS does not support file names.
42 # WANT_SPELL = YES
43
44 # Comment out if you want to run mzschema tests.
45 # It fails because VMS does not support this feature yet.
46 # WANT_MZSCH = YES
47
48 # Comment out if you have ODS-5 file system
49 # HAVE_ODS5 = YES
50
51 # Comment out if you have gzip on your system 35 # Comment out if you have gzip on your system
52 # HAVE_GZIP = YES 36 # HAVE_GZIP = YES
53 37
54 # Comment out if you have GNU compatible diff on your system 38 # Comment out if you have GNU compatible diff on your system
55 # HAVE_GDIFF = YES 39 # HAVE_GDIFF = YES
73 57
74 .SUFFIXES : .out .in 58 .SUFFIXES : .out .in
75 59
76 SCRIPT = test1.out test49.out test77a.out 60 SCRIPT = test1.out test49.out test77a.out
77 61
78 # Known problems:
79 #
80 # test59: Failed/Hangs - VMS does not support spell files (file names
81 # with too many dots).
82 #
83
84 .IFDEF WANT_GUI 62 .IFDEF WANT_GUI
85 GUI_OPTION = -g 63 GUI_OPTION = -g
86 .ENDIF 64 .ENDIF
87 65
88 .IFDEF WANT_UNIX 66 .IFDEF WANT_UNIX
89 SCRIPT_UNIX = test49.out 67 SCRIPT_UNIX = test49.out
90 .ENDIF
91
92 .IFDEF WANT_SPELL
93 SCRIPT_SPELL = test59.out
94 .ENDIF 68 .ENDIF
95 69
96 .in.out : 70 .in.out :
97 -@ !clean up before doing the test 71 -@ !clean up before doing the test
98 -@ if "''F$SEARCH("test.out.*")'" .NES. "" then delete/noconfirm/nolog test.out.* 72 -@ if "''F$SEARCH("test.out.*")'" .NES. "" then delete/noconfirm/nolog test.out.*
111 -@ if "''F$SEARCH("$*.out.*")'" .NES. "" then differences /par $*.out $*.ok; 85 -@ if "''F$SEARCH("$*.out.*")'" .NES. "" then differences /par $*.out $*.ok;
112 -@ !clean up after the test 86 -@ !clean up after the test
113 -@ if "''F$SEARCH("Xdotest.*")'" .NES. "" then delete/noconfirm/nolog Xdotest.*.* 87 -@ if "''F$SEARCH("Xdotest.*")'" .NES. "" then delete/noconfirm/nolog Xdotest.*.*
114 -@ if "''F$SEARCH("Xtest.*")'" .NES. "" then delete/noconfirm/nolog Xtest.*.* 88 -@ if "''F$SEARCH("Xtest.*")'" .NES. "" then delete/noconfirm/nolog Xtest.*.*
115 89
116 all : clean nolog $(START_WITH) $(SCRIPT) $(SCRIPT_UNIX) $(SCRIPT_SPELL) \ 90 all : clean nolog $(START_WITH) $(SCRIPT) $(SCRIPT_UNIX) nolog
117 nolog
118 -@ write sys$output " " 91 -@ write sys$output " "
119 -@ write sys$output "-----------------------------------------------" 92 -@ write sys$output "-----------------------------------------------"
120 -@ write sys$output " All done" 93 -@ write sys$output " All done"
121 -@ write sys$output "-----------------------------------------------" 94 -@ write sys$output "-----------------------------------------------"
122 -@ deassign sys$output 95 -@ deassign sys$output
137 -@ write sys$output " Test results:" 110 -@ write sys$output " Test results:"
138 -@ write sys$output "-----------------------------------------------" 111 -@ write sys$output "-----------------------------------------------"
139 -@ write sys$output "MAKE_VMS.MMS options:" 112 -@ write sys$output "MAKE_VMS.MMS options:"
140 -@ write sys$output " WANT_GUI = ""$(WANT_GUI)"" " 113 -@ write sys$output " WANT_GUI = ""$(WANT_GUI)"" "
141 -@ write sys$output " WANT_UNIX = ""$(WANT_UNIX)"" " 114 -@ write sys$output " WANT_UNIX = ""$(WANT_UNIX)"" "
142 -@ write sys$output " WANT_WIN = ""$(WANT_WIN)"" "
143 -@ write sys$output " WANT_SPELL = ""$(WANT_SPELL)"" "
144 -@ write sys$output " WANT_MZSCH = ""$(WANT_MZSCH)"" "
145 -@ write sys$output " HAVE_ODS5 = ""$(HAVE_ODS5)"" "
146 -@ write sys$output " HAVE_GZIP = ""$(HAVE_GZIP)"" " 115 -@ write sys$output " HAVE_GZIP = ""$(HAVE_GZIP)"" "
147 -@ write sys$output " HAVE_GDIFF = ""$(HAVE_GDIFF)"" " 116 -@ write sys$output " HAVE_GDIFF = ""$(HAVE_GDIFF)"" "
148 -@ write sys$output " HAVE_ICONV = ""$(HAVE_ICONV)"" " 117 -@ write sys$output " HAVE_ICONV = ""$(HAVE_ICONV)"" "
149 -@ write sys$output " HAVE_LUA = ""$(HAVE_LUA)"" " 118 -@ write sys$output " HAVE_LUA = ""$(HAVE_LUA)"" "
150 -@ write sys$output " HAVE_PYTHON= ""$(HAVE_PYTHON)"" " 119 -@ write sys$output " HAVE_PYTHON= ""$(HAVE_PYTHON)"" "