Mercurial > vim
annotate src/testdir/Make_dos.mak @ 6614:03688be95994 v7.4.633
updated for version 7.4.633
Problem: After 7.4.630 the problem persists.
Solution: Also skip redo when calling a user function.
author | Bram Moolenaar <bram@vim.org> |
---|---|
date | Tue, 17 Feb 2015 12:44:09 +0100 |
parents | a03e143b9358 |
children | 290631797b76 |
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 Dos-like machines. |
7 | 3 # |
4 # Requires a set of Unix tools: echo, diff, etc. | |
5 | |
6 VIMPROG = ..\\vim | |
7 | |
8 # Omitted: | |
9 # test2 "\\tmp" doesn't work. | |
10 # test10 'errorformat' is different | |
11 # test12 can't unlink a swap file | |
12 # test25 uses symbolic link | |
13 # 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
|
14 # test97 \{ and \$ are not escaped characters. |
7 | 15 |
16 SCRIPTS16 = test1.out test19.out test20.out test22.out \ | |
17 test23.out test24.out test28.out test29.out \ | |
18 test35.out test36.out test43.out \ | |
19 test44.out test45.out test46.out test47.out \ | |
270 | 20 test48.out test51.out test53.out test54.out \ |
618 | 21 test55.out test56.out test57.out test58.out test59.out \ |
1358 | 22 test60.out test61.out test62.out test63.out test64.out |
7 | 23 |
24 SCRIPTS = test3.out test4.out test5.out test6.out test7.out \ | |
25 test8.out test9.out test11.out test13.out test14.out \ | |
26 test15.out test17.out test18.out test21.out test26.out \ | |
27 test30.out test31.out test32.out test33.out test34.out \ | |
28 test37.out test38.out test39.out test40.out test41.out \ | |
2005 | 29 test42.out test52.out test65.out test66.out test67.out \ |
2607 | 30 test68.out test69.out test71.out test72.out test73.out \ |
2904 | 31 test74.out test75.out test76.out test77.out test78.out \ |
3443 | 32 test79.out test80.out test81.out test82.out test83.out \ |
4113 | 33 test84.out test85.out test86.out test87.out test88.out \ |
4274 | 34 test89.out test90.out test91.out test92.out test93.out \ |
5450 | 35 test94.out test95.out test96.out test98.out test99.out \ |
5690 | 36 test100.out test101.out test102.out test103.out test104.out \ |
5948 | 37 test105.out test106.out test107.out\ |
6522 | 38 test_argument_0count.out \ |
6398 | 39 test_argument_count.out \ |
5848 | 40 test_autoformat_join.out \ |
5995 | 41 test_breakindent.out \ |
6096 | 42 test_changelist.out \ |
6398 | 43 test_close_count.out \ |
6424 | 44 test_command_count.out \ |
5796 | 45 test_eval.out \ |
6098 | 46 test_insertcount.out \ |
6140 | 47 test_listlbr.out \ |
48 test_listlbr_utf8.out \ | |
6299 | 49 test_mapping.out \ |
6438 | 50 test_nested_function.out \ |
6140 | 51 test_options.out \ |
52 test_qf_title.out \ | |
6307 | 53 test_signs.out \ |
6140 | 54 test_utf8.out |
7 | 55 |
2050
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2005
diff
changeset
|
56 SCRIPTS32 = test50.out test70.out |
7 | 57 |
58 SCRIPTS_GUI = test16.out | |
59 | |
60 .SUFFIXES: .in .out | |
61 | |
4934
81e623ff2e55
updated for version 7.3.1212
Bram Moolenaar <bram@vim.org>
parents:
4817
diff
changeset
|
62 nongui: fixff $(SCRIPTS16) $(SCRIPTS) report |
7 | 63 |
4934
81e623ff2e55
updated for version 7.3.1212
Bram Moolenaar <bram@vim.org>
parents:
4817
diff
changeset
|
64 small: report |
7 | 65 |
4934
81e623ff2e55
updated for version 7.3.1212
Bram Moolenaar <bram@vim.org>
parents:
4817
diff
changeset
|
66 gui: fixff $(SCRIPTS16) $(SCRIPTS) $(SCRIPTS_GUI) report |
7 | 67 |
4934
81e623ff2e55
updated for version 7.3.1212
Bram Moolenaar <bram@vim.org>
parents:
4817
diff
changeset
|
68 win32: fixff $(SCRIPTS16) $(SCRIPTS) $(SCRIPTS32) report |
7 | 69 |
49 | 70 fixff: |
71 -$(VIMPROG) -u dos.vim --noplugin "+argdo set ff=dos|upd" +q *.in *.ok | |
3463 | 72 -$(VIMPROG) -u dos.vim --noplugin "+argdo set ff=unix|upd" +q \ |
6272 | 73 dotest.in test60.ok test71.ok test74.ok test100.ok |
49 | 74 |
4934
81e623ff2e55
updated for version 7.3.1212
Bram Moolenaar <bram@vim.org>
parents:
4817
diff
changeset
|
75 report: |
81e623ff2e55
updated for version 7.3.1212
Bram Moolenaar <bram@vim.org>
parents:
4817
diff
changeset
|
76 @echo "" |
81e623ff2e55
updated for version 7.3.1212
Bram Moolenaar <bram@vim.org>
parents:
4817
diff
changeset
|
77 @echo Test results: |
81e623ff2e55
updated for version 7.3.1212
Bram Moolenaar <bram@vim.org>
parents:
4817
diff
changeset
|
78 @IF EXIST test.log ( type test.log & echo TEST FAILURE & exit /b 1 ) \ |
81e623ff2e55
updated for version 7.3.1212
Bram Moolenaar <bram@vim.org>
parents:
4817
diff
changeset
|
79 ELSE ( ECHO ALL DONE ) |
81e623ff2e55
updated for version 7.3.1212
Bram Moolenaar <bram@vim.org>
parents:
4817
diff
changeset
|
80 |
7 | 81 clean: |
82 -del *.out | |
4946
d10ede931224
updated for version 7.3.1218
Bram Moolenaar <bram@vim.org>
parents:
4934
diff
changeset
|
83 -del *.failed |
1358 | 84 -if exist test.ok del test.ok |
85 -if exist small.vim del small.vim | |
86 -if exist tiny.vim del tiny.vim | |
87 -if exist mbyte.vim del mbyte.vim | |
2101
8ae4de2d02af
updated for version 7.2.384
Bram Moolenaar <bram@zimbu.org>
parents:
2050
diff
changeset
|
88 -if exist mzscheme.vim del mzscheme.vim |
3855 | 89 -if exist lua.vim del lua.vim |
7 | 90 -del X* |
4946
d10ede931224
updated for version 7.3.1218
Bram Moolenaar <bram@vim.org>
parents:
4934
diff
changeset
|
91 -if exist Xdir1 rd /s /q Xdir1 |
d10ede931224
updated for version 7.3.1218
Bram Moolenaar <bram@vim.org>
parents:
4934
diff
changeset
|
92 -if exist Xfind rd /s /q Xfind |
1358 | 93 -if exist viminfo del viminfo |
4934
81e623ff2e55
updated for version 7.3.1212
Bram Moolenaar <bram@vim.org>
parents:
4817
diff
changeset
|
94 -del test.log |
6330 | 95 -if exist benchmark.out del benchmark.out |
7 | 96 |
97 .in.out: | |
4946
d10ede931224
updated for version 7.3.1218
Bram Moolenaar <bram@vim.org>
parents:
4934
diff
changeset
|
98 -if exist $*.failed del $*.failed |
7 | 99 copy $*.ok test.ok |
100 $(VIMPROG) -u dos.vim -U NONE --noplugin -s dotest.in $*.in | |
4946
d10ede931224
updated for version 7.3.1218
Bram Moolenaar <bram@vim.org>
parents:
4934
diff
changeset
|
101 @diff test.out $*.ok & if errorlevel 1 \ |
d10ede931224
updated for version 7.3.1218
Bram Moolenaar <bram@vim.org>
parents:
4934
diff
changeset
|
102 ( move /y test.out $*.failed & echo $* FAILED >> test.log ) \ |
d10ede931224
updated for version 7.3.1218
Bram Moolenaar <bram@vim.org>
parents:
4934
diff
changeset
|
103 else ( move /y test.out $*.out ) |
7 | 104 -del X* |
105 -del test.ok | |
4946
d10ede931224
updated for version 7.3.1218
Bram Moolenaar <bram@vim.org>
parents:
4934
diff
changeset
|
106 -if exist Xdir1 rd /s /q Xdir1 |
d10ede931224
updated for version 7.3.1218
Bram Moolenaar <bram@vim.org>
parents:
4934
diff
changeset
|
107 -if exist Xfind rd /s /q Xfind |
1358 | 108 -if exist viminfo del viminfo |
4934
81e623ff2e55
updated for version 7.3.1212
Bram Moolenaar <bram@vim.org>
parents:
4817
diff
changeset
|
109 |
81e623ff2e55
updated for version 7.3.1212
Bram Moolenaar <bram@vim.org>
parents:
4817
diff
changeset
|
110 nolog: |
81e623ff2e55
updated for version 7.3.1212
Bram Moolenaar <bram@vim.org>
parents:
4817
diff
changeset
|
111 -del test.log |
6328 | 112 |
113 benchmark: | |
114 bench_re_freeze.out | |
115 | |
116 bench_re_freeze.out: bench_re_freeze.vim | |
117 -if exist benchmark.out del benchmark.out | |
118 $(VIMPROG) -u dos.vim -U NONE --noplugin $*.in | |
119 @IF EXIST benchmark.out ( type benchmark.out ) |