Mercurial > vim
annotate src/testdir/Make_os2.mak @ 3986:56bb88c68f98 v7.3.748
updated for version 7.3.748
Problem: Cannot properly test conceal mode.
Solution: Add the screencol() and screenrow() functions. Use them in
test88. (Simon Ruderich)
author | Bram Moolenaar <bram@vim.org> |
---|---|
date | Wed, 05 Dec 2012 16:10:42 +0100 |
parents | c052f3b79b99 |
children | 8904ccd5ee85 |
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 OS/2 |
7 | 3 # |
4 # Requires a set of Unix tools: echo, diff, etc. | |
5 | |
6 VIMPROG = ../vim.exe | |
7 | |
8 # Omitted: | |
9 # test2 "\\tmp" doesn't work. | |
10 # test10 'errorformat' is different | |
11 # test11 requires sed | |
12 # test12 can't unlink a swap file | |
13 # test25 uses symbolic link | |
14 # test27 can't edit file with "*" in file name | |
15 # test52 only for Win32 | |
3452 | 16 # test85 no Lua interface |
3618 | 17 # test86, 87 no Python interface |
7 | 18 |
19 SCRIPTS = test1.out test3.out test4.out test5.out test6.out \ | |
20 test7.out test8.out test9.out \ | |
21 test13.out test14.out test15.out test17.out \ | |
22 test18.out test19.out test20.out test21.out test22.out \ | |
23 test23.out test24.out test26.out \ | |
24 test28.out test29.out test30.out test31.out test32.out \ | |
25 test33.out test34.out test35.out test36.out test37.out \ | |
26 test38.out test39.out test40.out test41.out test42.out \ | |
27 test43.out test44.out test45.out test46.out test47.out \ | |
268 | 28 test48.out test51.out test53.out test54.out test55.out \ |
764 | 29 test56.out test57.out test58.out test59.out test60.out \ |
1840 | 30 test61.out test62.out test63.out test64.out test65.out \ |
2232
2e6906bbc5f4
A few more fixes for undo file. Split test in two parts so that it doesn't
Bram Moolenaar <bram@vim.org>
parents:
2005
diff
changeset
|
31 test66.out test67.out test68.out test69.out test70.out \ |
2631 | 32 test71.out test72.out test73.out test74.out test75.out \ |
2925 | 33 test76.out test77.out test78.out test79.out test80.out \ |
3986 | 34 test81.out test82.out test83.out test84.out test88.out |
7 | 35 |
36 .SUFFIXES: .in .out | |
37 | |
38 all: /tmp $(SCRIPTS) | |
39 @echo ALL DONE | |
40 | |
41 $(SCRIPTS): $(VIMPROG) | |
42 | |
43 clean: | |
44 -rm -rf *.out Xdotest test.ok tiny.vim small.vim mbyte.vim viminfo | |
45 | |
46 # Make sure all .in and .out files are in DOS fileformat. | |
47 .in.out: | |
48 $(VIMPROG) -u NONE -s todos.vim $*.in | |
49 $(VIMPROG) -u NONE -s todos.vim $*.ok | |
50 copy $*.ok test.ok | |
51 $(VIMPROG) -u os2.vim --noplugin -s dotest.in $*.in | |
52 $(VIMPROG) -u NONE -s todos.vim test.out | |
53 diff test.out $*.ok | |
54 rename test.out $*.out | |
55 -rm -rf X* viminfo | |
56 -del test.ok | |
57 | |
58 # Create a directory for temp files | |
59 /tmp: | |
60 -mkdir /tmp |