Mercurial > vim
annotate src/testdir/Make_dos.mak @ 3443:21219ffc9790 v7.3.487
updated for version 7.3.487
Problem: When setting 'timeoutlen' or 'ttimeoutlen' the column for vertical
movement is reset unnecessarily.
Solution: Do not set w_set_curswant for every option. Add a test for this.
(Kana Natsuno) Add the P_CURSWANT flag for options.
author | Bram Moolenaar <bram@vim.org> |
---|---|
date | Wed, 28 Mar 2012 19:59:04 +0200 |
parents | 52526aec4afb |
children | e070b34fe35e |
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 | |
14 # test31 16 bit version runs out of memory... | |
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 \ |
33 test84.out | |
7 | 34 |
2050
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2005
diff
changeset
|
35 SCRIPTS32 = test50.out test70.out |
7 | 36 |
37 SCRIPTS_GUI = test16.out | |
38 | |
39 .SUFFIXES: .in .out | |
40 | |
49 | 41 nongui: fixff $(SCRIPTS16) $(SCRIPTS) |
7 | 42 echo ALL DONE |
43 | |
799 | 44 small: |
7 | 45 echo ALL DONE |
46 | |
49 | 47 gui: fixff $(SCRIPTS16) $(SCRIPTS) $(SCRIPTS_GUI) |
7 | 48 echo ALL DONE |
49 | |
49 | 50 win32: fixff $(SCRIPTS16) $(SCRIPTS) $(SCRIPTS32) |
7 | 51 echo ALL DONE |
52 | |
49 | 53 fixff: |
54 -$(VIMPROG) -u dos.vim --noplugin "+argdo set ff=dos|upd" +q *.in *.ok | |
2459
64df5d008ccb
Fix: test 69 didn't work on MS-Windows. Test 72 beeped too often.
Bram Moolenaar <bram@vim.org>
parents:
2440
diff
changeset
|
55 -$(VIMPROG) -u dos.vim --noplugin "+argdo set ff=unix|upd" +q dotest.in |
49 | 56 |
7 | 57 clean: |
58 -del *.out | |
1358 | 59 -if exist test.ok del test.ok |
60 -if exist small.vim del small.vim | |
61 -if exist tiny.vim del tiny.vim | |
62 -if exist mbyte.vim del mbyte.vim | |
2101
8ae4de2d02af
updated for version 7.2.384
Bram Moolenaar <bram@zimbu.org>
parents:
2050
diff
changeset
|
63 -if exist mzscheme.vim del mzscheme.vim |
7 | 64 -del X* |
1358 | 65 -if exist viminfo del viminfo |
7 | 66 |
67 .in.out: | |
68 copy $*.ok test.ok | |
69 $(VIMPROG) -u dos.vim -U NONE --noplugin -s dotest.in $*.in | |
70 diff test.out $*.ok | |
1358 | 71 -if exist $*.out del $*.out |
7 | 72 rename test.out $*.out |
73 -del X* | |
2549
c210e31a2ec5
More fixes for :find completion. (mostly by Nazri Ramliy)
Bram Moolenaar <bram@vim.org>
parents:
2489
diff
changeset
|
74 -del X*.* |
7 | 75 -del test.ok |
2558
3908363237a9
Use mkdir() instead of !mkdir in test 73, it's more reliable.
Bram Moolenaar <bram@vim.org>
parents:
2549
diff
changeset
|
76 -rmdir /s /q Xfind |
1358 | 77 -if exist viminfo del viminfo |