Mercurial > vim
annotate src/testdir/Make_amiga.mak @ 7094:66137191901a v7.4.859
commit https://github.com/vim/vim/commit/d8986fd91494642b3bab305406aa55268498f49c
Author: Bram Moolenaar <Bram@vim.org>
Date: Tue Sep 8 19:10:55 2015 +0200
patch 7.4.859
Problem: Vim doesn't recognize all htmldjango files.
Solution: Recognize a comment. (Daniel Hahler, PR #410)
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Tue, 08 Sep 2015 19:15:04 +0200 |
parents | 64e30831fa42 |
children | 6ba7182fb7bd |
rev | line source |
---|---|
7 | 1 # |
2440
fc695854c33a
Correct comments in testdir makefiles. (John Beckett)
Bram Moolenaar <bram@vim.org>
parents:
2232
diff
changeset
|
2 # Makefile to run all tests for Vim, on Amiga |
7 | 3 # |
4 # Requires "rm", "csh" and "diff"! | |
5 | |
6 VIMPROG = /vim | |
7 | |
8 # These tests don't work (yet): | |
9 # test2 "\\tmp" doesn't work | |
10 # test10 'errorformat' is different | |
11 # test11 "cat" doesn't work properly | |
12 # test12 can't unlink a swap file | |
13 # test25 uses symbolic link | |
14 # test27 can't edit file with "*" | |
15 # test52 only for Win32 | |
3452 | 16 # test85 no Lua interface |
3618 | 17 # test86, 87 no Python interface |
7 | 18 |
19 SCRIPTS = test1.out test3.out test4.out test5.out test6.out \ | |
20 test7.out test8.out test9.out \ | |
21 test13.out test14.out test15.out test17.out \ | |
22 test18.out test19.out test20.out test21.out test22.out \ | |
23 test23.out test24.out test26.out \ | |
24 test28.out test29.out test30.out test31.out test32.out \ | |
25 test33.out test34.out test35.out test36.out test37.out \ | |
26 test38.out test39.out test40.out test41.out test42.out \ | |
27 test43.out test44.out test45.out test46.out test47.out \ | |
270 | 28 test48.out test51.out test53.out test54.out test55.out \ |
766 | 29 test56.out test57.out test58.out test59.out test60.out \ |
1840 | 30 test61.out test62.out test63.out test64.out test65.out \ |
2232
2e6906bbc5f4
A few more fixes for undo file. Split test in two parts so that it doesn't
Bram Moolenaar <bram@vim.org>
parents:
2005
diff
changeset
|
31 test66.out test67.out test68.out test69.out test70.out \ |
2631 | 32 test71.out test72.out test73.out test74.out test75.out \ |
2925 | 33 test76.out test77.out test78.out test79.out test80.out \ |
4113 | 34 test81.out test82.out test83.out test84.out test88.out \ |
4274 | 35 test89.out test90.out test91.out test92.out test93.out \ |
5351 | 36 test94.out test95.out test96.out test97.out test98.out \ |
5641 | 37 test99.out test100.out test101.out test102.out test103.out \ |
5948 | 38 test104.out test105.out test106.out test107.out \ |
6522 | 39 test_argument_0count.out \ |
6398 | 40 test_argument_count.out \ |
6935 | 41 test_autocmd_option.out \ |
5848 | 42 test_autoformat_join.out \ |
5995 | 43 test_breakindent.out \ |
7092
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
7064
diff
changeset
|
44 test_cdo.out \ |
6096 | 45 test_changelist.out \ |
6991 | 46 test_charsearch.out \ |
6398 | 47 test_close_count.out \ |
6424 | 48 test_command_count.out \ |
7064
5fc5c5bf2233
commit https://github.com/vim/vim/commit/37a8de17d4dfd3d463960c38a204ce399c8e19d4
Christian Brabandt <cb@256bit.org>
parents:
6991
diff
changeset
|
49 test_comparators.out \ |
6712 | 50 test_erasebackword.out \ |
5796 | 51 test_eval.out \ |
6933 | 52 test_fixeol.out \ |
6868 | 53 test_increment.out \ |
6098 | 54 test_insertcount.out \ |
6777 | 55 test_listchars.out \ |
6140 | 56 test_listlbr.out \ |
57 test_listlbr_utf8.out \ | |
6299 | 58 test_mapping.out \ |
6616 | 59 test_marks.out \ |
6947 | 60 test_match_conceal.out \ |
6438 | 61 test_nested_function.out \ |
6140 | 62 test_options.out \ |
6847 | 63 test_perl.out \ |
6140 | 64 test_qf_title.out \ |
6847 | 65 test_ruby.out \ |
6903 | 66 test_search_mbyte.out \ |
6841 | 67 test_set.out \ |
6307 | 68 test_signs.out \ |
6675 | 69 test_textobjects.out \ |
6140 | 70 test_utf8.out |
7 | 71 |
72 .SUFFIXES: .in .out | |
73 | |
74 nongui: /tmp $(SCRIPTS) | |
75 csh -c echo ALL DONE | |
76 | |
77 clean: | |
78 csh -c \rm -rf *.out /tmp/* Xdotest small.vim tiny.vim mbyte.vim test.ok viminfo | |
79 | |
80 .in.out: | |
81 copy $*.ok test.ok | |
82 $(VIMPROG) -u amiga.vim -U NONE --noplugin -s dotest.in $*.in | |
83 diff test.out $*.ok | |
84 rename test.out $*.out | |
85 -delete X#? ALL QUIET | |
86 -delete test.ok | |
87 | |
88 # Create a directory for temp files | |
89 /tmp: | |
90 makedir /tmp | |
91 | |
92 # Manx requires all dependencies... | |
93 test1.out: test1.in | |
94 test2.out: test2.in | |
95 test3.out: test3.in | |
96 test4.out: test4.in | |
97 test5.out: test5.in | |
98 test6.out: test6.in | |
99 test7.out: test7.in | |
100 test8.out: test8.in | |
101 test9.out: test9.in | |
102 test10.out: test10.in | |
103 test11.out: test11.in | |
104 test12.out: test12.in | |
105 test13.out: test13.in | |
106 test14.out: test14.in | |
107 test15.out: test15.in | |
108 test16.out: test16.in | |
109 test17.out: test17.in | |
110 test18.out: test18.in | |
111 test19.out: test19.in | |
112 test20.out: test20.in | |
113 test21.out: test21.in | |
114 test22.out: test22.in | |
115 test23.out: test23.in | |
116 test24.out: test24.in | |
117 test25.out: test25.in | |
118 test26.out: test26.in | |
119 test27.out: test27.in | |
120 test28.out: test28.in | |
121 test29.out: test29.in | |
122 test30.out: test30.in | |
123 test31.out: test31.in | |
124 test32.out: test32.in | |
125 test33.out: test33.in | |
126 test34.out: test34.in | |
127 test35.out: test35.in | |
128 test36.out: test36.in | |
129 test37.out: test37.in | |
130 test38.out: test38.in | |
131 test39.out: test39.in | |
132 test40.out: test40.in | |
133 test41.out: test41.in | |
134 test42.out: test42.in | |
135 test43.out: test43.in | |
136 test44.out: test44.in | |
137 test45.out: test45.in | |
138 test46.out: test46.in | |
139 test47.out: test47.in | |
140 test48.out: test48.in | |
141 test51.out: test51.in | |
12 | 142 test53.out: test53.in |
40 | 143 test54.out: test54.in |
119 | 144 test55.out: test55.in |
270 | 145 test56.out: test56.in |
293 | 146 test57.out: test57.in |
389 | 147 test58.out: test58.in |
391 | 148 test59.out: test59.in |
618 | 149 test60.out: test60.in |
766 | 150 test61.out: test61.in |
856 | 151 test62.out: test62.in |
1327 | 152 test63.out: test63.in |
1358 | 153 test64.out: test64.in |
1621 | 154 test65.out: test65.in |
1840 | 155 test66.out: test66.in |
1963 | 156 test67.out: test67.in |
2005 | 157 test68.out: test68.in |
158 test69.out: test69.in | |
2232
2e6906bbc5f4
A few more fixes for undo file. Split test in two parts so that it doesn't
Bram Moolenaar <bram@vim.org>
parents:
2005
diff
changeset
|
159 test70.out: test70.in |
2e6906bbc5f4
A few more fixes for undo file. Split test in two parts so that it doesn't
Bram Moolenaar <bram@vim.org>
parents:
2005
diff
changeset
|
160 test71.out: test71.in |
2e6906bbc5f4
A few more fixes for undo file. Split test in two parts so that it doesn't
Bram Moolenaar <bram@vim.org>
parents:
2005
diff
changeset
|
161 test72.out: test72.in |
2487
7ec9ada2cd81
Make :find completion consistent between Unix and MS-Windows. Add a test.
Bram Moolenaar <bram@vim.org>
parents:
2440
diff
changeset
|
162 test73.out: test73.in |
2607 | 163 test74.out: test74.in |
2626 | 164 test75.out: test75.in |
2631 | 165 test76.out: test76.in |
2730 | 166 test77.out: test77.in |
2885 | 167 test78.out: test78.in |
2904 | 168 test79.out: test79.in |
169 test80.out: test80.in | |
2925 | 170 test81.out: test81.in |
2961 | 171 test82.out: test82.in |
3131 | 172 test83.out: test83.in |
3443 | 173 test84.out: test84.in |
3986 | 174 test88.out: test88.in |
4113 | 175 test89.out: test89.in |
4126 | 176 test90.out: test90.in |
4157 | 177 test91.out: test91.in |
4172 | 178 test92.out: test92.in |
179 test93.out: test93.in | |
4274 | 180 test94.out: test94.in |
4444 | 181 test95.out: test95.in |
5084
14e7a115d54d
updated for version 7.3.1285
Bram Moolenaar <bram@vim.org>
parents:
4444
diff
changeset
|
182 test96.out: test96.in |
5104
93cccad6a26b
updated for version 7.3.1295
Bram Moolenaar <bram@vim.org>
parents:
5084
diff
changeset
|
183 test97.out: test97.in |
5157
7a6ce0c426fe
updated for version 7.4a.005
Bram Moolenaar <bram@vim.org>
parents:
5104
diff
changeset
|
184 test98.out: test98.in |
5351 | 185 test99.out: test99.in |
5450 | 186 test100.out: test100.in |
5458 | 187 test101.out: test101.in |
5481 | 188 test102.out: test102.in |
5498 | 189 test103.out: test103.in |
5641 | 190 test104.out: test104.in |
5690 | 191 test105.out: test105.in |
5716 | 192 test106.out: test106.in |
5948 | 193 test107.out: test107.in |
6522 | 194 test_argument_0count.out: test_argument_0count.in |
6398 | 195 test_argument_count.out: test_argument_count.in |
6935 | 196 test_autocmd_option.out: test_autocmd_option.in |
5848 | 197 test_autoformat_join.out: test_autoformat_join.in |
5995 | 198 test_breakindent.out: test_breakindent.in |
7092
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
7064
diff
changeset
|
199 test_cdo.out: test_cdo.in |
6096 | 200 test_changelist.out: test_changelist.in |
6991 | 201 test_charsearch.out: test_charsearch.in |
6398 | 202 test_close_count.out: test_close_count.in |
6424 | 203 test_command_count.out: test_command_count.in |
7064
5fc5c5bf2233
commit https://github.com/vim/vim/commit/37a8de17d4dfd3d463960c38a204ce399c8e19d4
Christian Brabandt <cb@256bit.org>
parents:
6991
diff
changeset
|
204 test_comparators.out: test_comparators.in |
6712 | 205 test_erasebackword.out: test_erasebackword.in |
5796 | 206 test_eval.out: test_eval.in |
6868 | 207 test_increment.out: test_increment.in |
6933 | 208 test_fixeol.out: test_fixeol.in |
6098 | 209 test_insertcount.out: test_insertcount.in |
6777 | 210 test_listchars.out: test_listchars.in |
6140 | 211 test_listlbr.out: test_listlbr.in |
212 test_listlbr_utf8.out: test_listlbr_utf8.in | |
6438 | 213 test_mapping.out: test_mapping.in |
6616 | 214 test_marks.out: test_marks.in |
6947 | 215 test_match_conceal.out: test_match_conceal.in |
6438 | 216 test_nested_function.out: test_nested_function.in |
5774 | 217 test_options.out: test_options.in |
6847 | 218 test_perl.out: test_perl.in |
6140 | 219 test_qf_title.out: test_qf_title.in |
6847 | 220 test_ruby.out: test_ruby.in |
6903 | 221 test_search_mbyte.out: test_search_mbyte.in |
6841 | 222 test_set.out: test_set.in |
6307 | 223 test_signs.out: test_signs.in |
6675 | 224 test_textobjects.out: test_textobjects.in |
6140 | 225 test_utf8.out: test_utf8.in |