Mercurial > vim
annotate src/testdir/Make_ming.mak @ 6935:4db70c94226b v7.4.786
patch 7.4.786
Problem: It is not possible for a plugin to adjust to a changed setting.
Solution: Add the OptionSet autocommand event. (Christian Brabandt)
author | Bram Moolenaar <bram@vim.org> |
---|---|
date | Fri, 17 Jul 2015 17:38:22 +0200 |
parents | 62ba356c2d4e |
children | 1efa7c2b9368 |
rev | line source |
---|---|
2440
fc695854c33a
Correct comments in testdir makefiles. (John Beckett)
Bram Moolenaar <bram@vim.org>
parents:
2232
diff
changeset
|
1 # |
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 Dos-like machines |
1724 | 3 # with sh.exe or zsh.exe in the path or not. |
4 # | |
5 # Author: Bill McCarthy | |
6 # | |
7 # Note that test54 has been removed until it is fixed. | |
8 # | |
9 # Requires a set of Unix tools: echo, diff, etc. | |
10 | |
11 ifneq (sh.exe, $(SHELL)) | |
12 DEL = rm -f | |
13 MV = mv | |
14 CP = cp | |
6328 | 15 CAT = cat |
1724 | 16 DIRSLASH = / |
17 else | |
18 DEL = del | |
19 MV = rename | |
20 CP = copy | |
6328 | 21 CAT = type |
1724 | 22 DIRSLASH = \\ |
23 endif | |
24 | |
25 VIMPROG = ..$(DIRSLASH)vim | |
26 | |
27 # Omitted: | |
28 # test2 "\\tmp" doesn't work. | |
29 # test10 'errorformat' is different | |
30 # test12 can't unlink a swap file | |
31 # test25 uses symbolic link | |
32 # test27 can't edit file with "*" in file name | |
5116
6cabac58f26f
updated for version 7.3.1301
Bram Moolenaar <bram@vim.org>
parents:
5104
diff
changeset
|
33 # test97 \{ and \$ are not escaped characters. |
1724 | 34 |
35 SCRIPTS16 = test1.out test19.out test20.out test22.out \ | |
36 test23.out test24.out test28.out test29.out \ | |
37 test35.out test36.out test43.out \ | |
38 test44.out test45.out test46.out test47.out \ | |
39 test48.out test51.out test53.out \ | |
40 test55.out test56.out test57.out test58.out test59.out \ | |
41 test60.out test61.out test62.out test63.out test64.out | |
42 | |
43 # Had to remove test54 which doesn't work yet. | |
44 # test54.out | |
45 | |
46 SCRIPTS = test3.out test4.out test5.out test6.out test7.out \ | |
47 test8.out test9.out test11.out test13.out test14.out \ | |
48 test15.out test17.out test18.out test21.out test26.out \ | |
49 test30.out test31.out test32.out test33.out test34.out \ | |
50 test37.out test38.out test39.out test40.out test41.out \ | |
2005 | 51 test42.out test52.out test65.out test66.out test67.out \ |
2607 | 52 test68.out test69.out test71.out test72.out test73.out \ |
2904 | 53 test74.out test75.out test76.out test77.out test78.out \ |
3443 | 54 test79.out test80.out test81.out test82.out test83.out \ |
4113 | 55 test84.out test85.out test86.out test87.out test88.out \ |
4274 | 56 test89.out test90.out test91.out test92.out test93.out \ |
5450 | 57 test94.out test95.out test96.out test98.out test99.out \ |
5690 | 58 test100.out test101.out test102.out test103.out test104.out \ |
5948 | 59 test105.out test106.out test107.out \ |
6522 | 60 test_argument_0count.out \ |
6398 | 61 test_argument_count.out \ |
6935 | 62 test_autocmd_option.out \ |
5848 | 63 test_autoformat_join.out \ |
5995 | 64 test_breakindent.out \ |
6096 | 65 test_changelist.out \ |
6398 | 66 test_close_count.out \ |
6424 | 67 test_command_count.out \ |
6712 | 68 test_erasebackword.out \ |
5796 | 69 test_eval.out \ |
6933 | 70 test_fixeol.out \ |
6868 | 71 test_increment.out \ |
6098 | 72 test_insertcount.out \ |
6777 | 73 test_listchars.out \ |
6140 | 74 test_listlbr.out \ |
75 test_listlbr_utf8.out \ | |
6299 | 76 test_mapping.out \ |
6616 | 77 test_marks.out \ |
6438 | 78 test_nested_function.out \ |
6140 | 79 test_options.out \ |
6847 | 80 test_perl.out \ |
6140 | 81 test_qf_title.out \ |
6847 | 82 test_ruby.out \ |
6903 | 83 test_search_mbyte.out \ |
6841 | 84 test_set.out \ |
6307 | 85 test_signs.out \ |
6675 | 86 test_textobjects.out \ |
6140 | 87 test_utf8.out |
1724 | 88 |
2050
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2005
diff
changeset
|
89 SCRIPTS32 = test50.out test70.out |
1724 | 90 |
91 SCRIPTS_GUI = test16.out | |
92 | |
6328 | 93 SCRIPTS_BENCH = bench_re_freeze.out |
94 | |
1724 | 95 .SUFFIXES: .in .out |
96 | |
97 vimall: fixff $(SCRIPTS16) $(SCRIPTS) $(SCRIPTS_GUI) $(SCRIPTS32) | |
98 echo ALL DONE | |
99 | |
100 nongui: fixff $(SCRIPTS16) $(SCRIPTS) | |
101 echo ALL DONE | |
102 | |
6328 | 103 benchmark: $(SCRIPTS_BENCH) |
104 | |
1724 | 105 small: |
106 echo ALL DONE | |
107 | |
108 gui: fixff $(SCRIPTS16) $(SCRIPTS) $(SCRIPTS_GUI) | |
109 echo ALL DONE | |
110 | |
111 win32: fixff $(SCRIPTS16) $(SCRIPTS) $(SCRIPTS32) | |
112 echo ALL DONE | |
113 | |
114 fixff: | |
115 -$(VIMPROG) -u dos.vim --noplugin "+argdo set ff=dos|upd" +q *.in *.ok | |
3463 | 116 -$(VIMPROG) -u dos.vim --noplugin "+argdo set ff=unix|upd" +q \ |
117 dotest.in test60.ok test71.ok test74.ok | |
1724 | 118 |
119 clean: | |
120 -$(DEL) *.out | |
121 -$(DEL) test.ok | |
122 -$(DEL) small.vim | |
123 -$(DEL) tiny.vim | |
124 -$(DEL) mbyte.vim | |
2050
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2005
diff
changeset
|
125 -$(DEL) mzscheme.vim |
3855 | 126 -$(DEL) lua.vim |
1724 | 127 -$(DEL) X* |
128 -$(DEL) viminfo | |
129 | |
130 .in.out: | |
131 $(CP) $*.ok test.ok | |
132 $(VIMPROG) -u dos.vim -U NONE --noplugin -s dotest.in $*.in | |
133 diff test.out $*.ok | |
134 -$(DEL) $*.out | |
135 $(MV) test.out $*.out | |
136 -$(DEL) X* | |
137 -$(DEL) test.ok | |
138 -$(DEL) viminfo | |
6328 | 139 |
140 bench_re_freeze.out: bench_re_freeze.vim | |
141 -$(DEL) benchmark.out | |
142 $(VIMPROG) -u dos.vim -U NONE --noplugin $*.in | |
143 $(CAT) benchmark.out |