Mercurial > vim
annotate src/testdir/Make_ming.mak @ 6098:975d96776111 v7.4.387
updated for version 7.4.387
Problem: "4gro" replaces one character then executes "ooo". (Urtica Dioica)
Solution: Write the ESC in the second stuff buffer.
author | Bram Moolenaar <bram@vim.org> |
---|---|
date | Wed, 30 Jul 2014 16:00:58 +0200 |
parents | 09af7cb358f0 |
children | cb3218a69c2f |
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 | |
15 DIRSLASH = / | |
16 else | |
17 DEL = del | |
18 MV = rename | |
19 CP = copy | |
20 DIRSLASH = \\ | |
21 endif | |
22 | |
23 VIMPROG = ..$(DIRSLASH)vim | |
24 | |
25 # Omitted: | |
26 # test2 "\\tmp" doesn't work. | |
27 # test10 'errorformat' is different | |
28 # test12 can't unlink a swap file | |
29 # test25 uses symbolic link | |
30 # 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
|
31 # test97 \{ and \$ are not escaped characters. |
1724 | 32 |
33 SCRIPTS16 = test1.out test19.out test20.out test22.out \ | |
34 test23.out test24.out test28.out test29.out \ | |
35 test35.out test36.out test43.out \ | |
36 test44.out test45.out test46.out test47.out \ | |
37 test48.out test51.out test53.out \ | |
38 test55.out test56.out test57.out test58.out test59.out \ | |
39 test60.out test61.out test62.out test63.out test64.out | |
40 | |
41 # Had to remove test54 which doesn't work yet. | |
42 # test54.out | |
43 | |
44 SCRIPTS = test3.out test4.out test5.out test6.out test7.out \ | |
45 test8.out test9.out test11.out test13.out test14.out \ | |
46 test15.out test17.out test18.out test21.out test26.out \ | |
47 test30.out test31.out test32.out test33.out test34.out \ | |
48 test37.out test38.out test39.out test40.out test41.out \ | |
2005 | 49 test42.out test52.out test65.out test66.out test67.out \ |
2607 | 50 test68.out test69.out test71.out test72.out test73.out \ |
2904 | 51 test74.out test75.out test76.out test77.out test78.out \ |
3443 | 52 test79.out test80.out test81.out test82.out test83.out \ |
4113 | 53 test84.out test85.out test86.out test87.out test88.out \ |
4274 | 54 test89.out test90.out test91.out test92.out test93.out \ |
5450 | 55 test94.out test95.out test96.out test98.out test99.out \ |
5690 | 56 test100.out test101.out test102.out test103.out test104.out \ |
5948 | 57 test105.out test106.out test107.out \ |
5848 | 58 test_autoformat_join.out \ |
5995 | 59 test_breakindent.out \ |
6026 | 60 test_listlbr.out \ |
6062 | 61 test_listlbr_utf8.out \ |
6079 | 62 test_qf_title.out \ |
6096 | 63 test_changelist.out \ |
5796 | 64 test_eval.out \ |
6098 | 65 test_insertcount.out \ |
5774 | 66 test_options.out |
1724 | 67 |
2050
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2005
diff
changeset
|
68 SCRIPTS32 = test50.out test70.out |
1724 | 69 |
70 SCRIPTS_GUI = test16.out | |
71 | |
72 .SUFFIXES: .in .out | |
73 | |
74 vimall: fixff $(SCRIPTS16) $(SCRIPTS) $(SCRIPTS_GUI) $(SCRIPTS32) | |
75 echo ALL DONE | |
76 | |
77 nongui: fixff $(SCRIPTS16) $(SCRIPTS) | |
78 echo ALL DONE | |
79 | |
80 small: | |
81 echo ALL DONE | |
82 | |
83 gui: fixff $(SCRIPTS16) $(SCRIPTS) $(SCRIPTS_GUI) | |
84 echo ALL DONE | |
85 | |
86 win32: fixff $(SCRIPTS16) $(SCRIPTS) $(SCRIPTS32) | |
87 echo ALL DONE | |
88 | |
89 fixff: | |
90 -$(VIMPROG) -u dos.vim --noplugin "+argdo set ff=dos|upd" +q *.in *.ok | |
3463 | 91 -$(VIMPROG) -u dos.vim --noplugin "+argdo set ff=unix|upd" +q \ |
92 dotest.in test60.ok test71.ok test74.ok | |
1724 | 93 |
94 clean: | |
95 -$(DEL) *.out | |
96 -$(DEL) test.ok | |
97 -$(DEL) small.vim | |
98 -$(DEL) tiny.vim | |
99 -$(DEL) mbyte.vim | |
2050
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2005
diff
changeset
|
100 -$(DEL) mzscheme.vim |
3855 | 101 -$(DEL) lua.vim |
1724 | 102 -$(DEL) X* |
103 -$(DEL) viminfo | |
104 | |
105 .in.out: | |
106 $(CP) $*.ok test.ok | |
107 $(VIMPROG) -u dos.vim -U NONE --noplugin -s dotest.in $*.in | |
108 diff test.out $*.ok | |
109 -$(DEL) $*.out | |
110 $(MV) test.out $*.out | |
111 -$(DEL) X* | |
112 -$(DEL) test.ok | |
113 -$(DEL) viminfo |