Mercurial > vim
annotate src/testdir/Make_ming.mak @ 7226:9b350a65138a v7.4.922
commit https://github.com/vim/vim/commit/1c2836e268ce930bca9ea1287d0d83e92ce1b3ff
Author: Bram Moolenaar <Bram@vim.org>
Date: Tue Nov 10 21:05:48 2015 +0100
patch 7.4.922
Problem: Leaking memory with ":helpt {dir-not-exists}".
Solution: Free dirname. (Dominique Pelle)
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Tue, 10 Nov 2015 21:15:04 +0100 |
parents | 64e30831fa42 |
children | 6ba7182fb7bd |
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 \ |
7092
64e30831fa42
commit https://github.com/vim/vim/commit/aa23b379421aa214e6543b06c974594a25799b09
Christian Brabandt <cb@256bit.org>
parents:
7064
diff
changeset
|
65 test_cdo.out \ |
6096 | 66 test_changelist.out \ |
6991 | 67 test_charsearch.out \ |
6398 | 68 test_close_count.out \ |
6424 | 69 test_command_count.out \ |
7064
5fc5c5bf2233
commit https://github.com/vim/vim/commit/37a8de17d4dfd3d463960c38a204ce399c8e19d4
Christian Brabandt <cb@256bit.org>
parents:
6991
diff
changeset
|
70 test_comparators.out \ |
6712 | 71 test_erasebackword.out \ |
5796 | 72 test_eval.out \ |
6933 | 73 test_fixeol.out \ |
6868 | 74 test_increment.out \ |
6098 | 75 test_insertcount.out \ |
6777 | 76 test_listchars.out \ |
6140 | 77 test_listlbr.out \ |
78 test_listlbr_utf8.out \ | |
6299 | 79 test_mapping.out \ |
6616 | 80 test_marks.out \ |
6947 | 81 test_match_conceal.out \ |
6438 | 82 test_nested_function.out \ |
6140 | 83 test_options.out \ |
6847 | 84 test_perl.out \ |
6140 | 85 test_qf_title.out \ |
6847 | 86 test_ruby.out \ |
6903 | 87 test_search_mbyte.out \ |
6841 | 88 test_set.out \ |
6307 | 89 test_signs.out \ |
6675 | 90 test_textobjects.out \ |
6140 | 91 test_utf8.out |
1724 | 92 |
2050
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2005
diff
changeset
|
93 SCRIPTS32 = test50.out test70.out |
1724 | 94 |
95 SCRIPTS_GUI = test16.out | |
96 | |
6328 | 97 SCRIPTS_BENCH = bench_re_freeze.out |
98 | |
1724 | 99 .SUFFIXES: .in .out |
100 | |
101 vimall: fixff $(SCRIPTS16) $(SCRIPTS) $(SCRIPTS_GUI) $(SCRIPTS32) | |
102 echo ALL DONE | |
103 | |
104 nongui: fixff $(SCRIPTS16) $(SCRIPTS) | |
105 echo ALL DONE | |
106 | |
6328 | 107 benchmark: $(SCRIPTS_BENCH) |
108 | |
1724 | 109 small: |
110 echo ALL DONE | |
111 | |
112 gui: fixff $(SCRIPTS16) $(SCRIPTS) $(SCRIPTS_GUI) | |
113 echo ALL DONE | |
114 | |
115 win32: fixff $(SCRIPTS16) $(SCRIPTS) $(SCRIPTS32) | |
116 echo ALL DONE | |
117 | |
118 fixff: | |
119 -$(VIMPROG) -u dos.vim --noplugin "+argdo set ff=dos|upd" +q *.in *.ok | |
3463 | 120 -$(VIMPROG) -u dos.vim --noplugin "+argdo set ff=unix|upd" +q \ |
121 dotest.in test60.ok test71.ok test74.ok | |
1724 | 122 |
123 clean: | |
124 -$(DEL) *.out | |
125 -$(DEL) test.ok | |
126 -$(DEL) small.vim | |
127 -$(DEL) tiny.vim | |
128 -$(DEL) mbyte.vim | |
2050
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2005
diff
changeset
|
129 -$(DEL) mzscheme.vim |
3855 | 130 -$(DEL) lua.vim |
1724 | 131 -$(DEL) X* |
132 -$(DEL) viminfo | |
133 | |
134 .in.out: | |
135 $(CP) $*.ok test.ok | |
136 $(VIMPROG) -u dos.vim -U NONE --noplugin -s dotest.in $*.in | |
137 diff test.out $*.ok | |
138 -$(DEL) $*.out | |
139 $(MV) test.out $*.out | |
140 -$(DEL) X* | |
141 -$(DEL) test.ok | |
142 -$(DEL) viminfo | |
6328 | 143 |
144 bench_re_freeze.out: bench_re_freeze.vim | |
145 -$(DEL) benchmark.out | |
146 $(VIMPROG) -u dos.vim -U NONE --noplugin $*.in | |
147 $(CAT) benchmark.out |