Mercurial > vim
annotate src/testdir/Make_dos.mak @ 7528:53163e4d9e4f v7.4.1065
commit https://github.com/vim/vim/commit/25e4fcde767084d1a79e0926bc301c92987c0cce
Author: Bram Moolenaar <Bram@vim.org>
Date: Sat Jan 9 14:57:47 2016 +0100
patch 7.4.1065
Problem: Cannot use the "dll" options on MS-Windows.
Solution: Support the options on all platforms. Use the built-in name as
the default, so that it's clear what Vim is looking for.
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Sat, 09 Jan 2016 15:00:05 +0100 |
parents | e81526d6709f |
children | 2720952e9acb |
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 | |
7366
eec1dc8ca160
commit https://github.com/vim/vim/commit/40bbceee2213a6fa8fdc1d3f3920d61fb5370803
Christian Brabandt <cb@256bit.org>
parents:
7362
diff
changeset
|
8 default: nongui |
eec1dc8ca160
commit https://github.com/vim/vim/commit/40bbceee2213a6fa8fdc1d3f3920d61fb5370803
Christian Brabandt <cb@256bit.org>
parents:
7362
diff
changeset
|
9 |
7354
81dc9e30aad6
commit https://github.com/vim/vim/commit/7b6156f4cd4027b664a916ba546e9b05d4c49e11
Christian Brabandt <cb@256bit.org>
parents:
7350
diff
changeset
|
10 !include Make_all.mak |
81dc9e30aad6
commit https://github.com/vim/vim/commit/7b6156f4cd4027b664a916ba546e9b05d4c49e11
Christian Brabandt <cb@256bit.org>
parents:
7350
diff
changeset
|
11 |
7 | 12 # Omitted: |
13 # test2 "\\tmp" doesn't work. | |
14 # test10 'errorformat' is different | |
15 # test12 can't unlink a swap file | |
16 # test25 uses symbolic link | |
17 # test27 can't edit file with "*" in file name | |
7362
16c67ab8eafd
commit https://github.com/vim/vim/commit/da9888a3f0118ce1ce5acbdcf4720602c2de2a3b
Christian Brabandt <cb@256bit.org>
parents:
7356
diff
changeset
|
18 # test49 fails in various ways |
5116
6cabac58f26f
updated for version 7.3.1301
Bram Moolenaar <bram@vim.org>
parents:
5104
diff
changeset
|
19 # test97 \{ and \$ are not escaped characters. |
7 | 20 |
7354
81dc9e30aad6
commit https://github.com/vim/vim/commit/7b6156f4cd4027b664a916ba546e9b05d4c49e11
Christian Brabandt <cb@256bit.org>
parents:
7350
diff
changeset
|
21 SCRIPTS = $(SCRIPTS_ALL) $(SCRIPTS_MORE1) $(SCRIPTS_MORE3) $(SCRIPTS_MORE4) |
7 | 22 |
7356
f0eb9aa9eb32
commit https://github.com/vim/vim/commit/a60824308cd9bc192c5d38fc16cccfcf652b40f6
Christian Brabandt <cb@256bit.org>
parents:
7354
diff
changeset
|
23 TEST_OUTFILES = $(SCRIPTS_FIRST) $(SCRIPTS) $(SCRIPTS_WIN32) $(SCRIPTS_GUI) |
6643 | 24 DOSTMP = dostmp |
25 DOSTMP_OUTFILES = $(TEST_OUTFILES:test=dostmp\test) | |
26 DOSTMP_INFILES = $(DOSTMP_OUTFILES:.out=.in) | |
7 | 27 |
7378
a6c23c3c5880
commit https://github.com/vim/vim/commit/4e5a31c8b3e259605f4d8543aaae68578cf9b0d7
Christian Brabandt <cb@256bit.org>
parents:
7366
diff
changeset
|
28 .SUFFIXES: .in .out .res .vim |
7 | 29 |
7378
a6c23c3c5880
commit https://github.com/vim/vim/commit/4e5a31c8b3e259605f4d8543aaae68578cf9b0d7
Christian Brabandt <cb@256bit.org>
parents:
7366
diff
changeset
|
30 nongui: nolog $(SCRIPTS_FIRST) $(SCRIPTS) newtests report |
6643 | 31 |
32 small: nolog report | |
33 | |
7378
a6c23c3c5880
commit https://github.com/vim/vim/commit/4e5a31c8b3e259605f4d8543aaae68578cf9b0d7
Christian Brabandt <cb@256bit.org>
parents:
7366
diff
changeset
|
34 gui: nolog $(SCRIPTS_FIRST) $(SCRIPTS) $(SCRIPTS_GUI) newtests report |
7 | 35 |
7378
a6c23c3c5880
commit https://github.com/vim/vim/commit/4e5a31c8b3e259605f4d8543aaae68578cf9b0d7
Christian Brabandt <cb@256bit.org>
parents:
7366
diff
changeset
|
36 win32: nolog $(SCRIPTS_FIRST) $(SCRIPTS) $(SCRIPTS_WIN32) newtests report |
7 | 37 |
6643 | 38 # Copy the input files to dostmp, changing the fileformat to dos. |
39 $(DOSTMP_INFILES): $(*B).in | |
40 if not exist $(DOSTMP)\NUL md $(DOSTMP) | |
41 if exist $@ del $@ | |
42 $(VIMPROG) -u dos.vim --noplugin "+set ff=dos|f $@|wq" $(*B).in | |
7 | 43 |
6643 | 44 # For each input file dostmp/test99.in run the tests. |
45 # This moves test99.in to test99.in.bak temporarily. | |
46 $(TEST_OUTFILES): $(DOSTMP)\$(*B).in | |
47 -@if exist test.out DEL test.out | |
48 move $(*B).in $(*B).in.bak | |
49 copy $(DOSTMP)\$(*B).in $(*B).in | |
50 copy $(*B).ok test.ok | |
51 $(VIMPROG) -u dos.vim -U NONE --noplugin -s dotest.in $(*B).in | |
52 -@if exist test.out MOVE /y test.out $(DOSTMP)\$(*B).out | |
53 -@if exist $(*B).in.bak move /y $(*B).in.bak $(*B).in | |
54 -@if exist test.ok del test.ok | |
55 -@if exist Xdir1 rd /s /q Xdir1 | |
56 -@if exist Xfind rd /s /q Xfind | |
7445
e81526d6709f
commit https://github.com/vim/vim/commit/acf92d27c94811e3bd6b84cfd54246e91d44c355
Christian Brabandt <cb@256bit.org>
parents:
7395
diff
changeset
|
57 -@del X* |
6643 | 58 -@if exist viminfo del viminfo |
59 $(VIMPROG) -u dos.vim --noplugin "+set ff=unix|f test.out|wq" \ | |
60 $(DOSTMP)\$(*B).out | |
61 @diff test.out $*.ok & if errorlevel 1 \ | |
62 ( move /y test.out $*.failed \ | |
63 & del $(DOSTMP)\$(*B).out \ | |
64 & echo $* FAILED >> test.log ) \ | |
65 else ( move /y test.out $*.out ) | |
49 | 66 |
7395
377253525da5
commit https://github.com/vim/vim/commit/604619784c7f9007a883c123231d080598bd49f5
Christian Brabandt <cb@256bit.org>
parents:
7378
diff
changeset
|
67 # Must run test1 first to create small.vim. |
377253525da5
commit https://github.com/vim/vim/commit/604619784c7f9007a883c123231d080598bd49f5
Christian Brabandt <cb@256bit.org>
parents:
7378
diff
changeset
|
68 # This rule must come after the one that copies the input files to dostmp to |
377253525da5
commit https://github.com/vim/vim/commit/604619784c7f9007a883c123231d080598bd49f5
Christian Brabandt <cb@256bit.org>
parents:
7378
diff
changeset
|
69 # allow for running an individual test. |
377253525da5
commit https://github.com/vim/vim/commit/604619784c7f9007a883c123231d080598bd49f5
Christian Brabandt <cb@256bit.org>
parents:
7378
diff
changeset
|
70 $(SCRIPTS) $(SCRIPTS_GUI) $(SCRIPTS_WIN32) $(NEW_TESTS): $(SCRIPTS_FIRST) |
377253525da5
commit https://github.com/vim/vim/commit/604619784c7f9007a883c123231d080598bd49f5
Christian Brabandt <cb@256bit.org>
parents:
7378
diff
changeset
|
71 |
4934
81e623ff2e55
updated for version 7.3.1212
Bram Moolenaar <bram@vim.org>
parents:
4817
diff
changeset
|
72 report: |
81e623ff2e55
updated for version 7.3.1212
Bram Moolenaar <bram@vim.org>
parents:
4817
diff
changeset
|
73 @echo "" |
81e623ff2e55
updated for version 7.3.1212
Bram Moolenaar <bram@vim.org>
parents:
4817
diff
changeset
|
74 @echo Test results: |
6643 | 75 @if exist test.log ( type test.log & echo TEST FAILURE & exit /b 1 ) \ |
76 else ( echo ALL DONE ) | |
4934
81e623ff2e55
updated for version 7.3.1212
Bram Moolenaar <bram@vim.org>
parents:
4817
diff
changeset
|
77 |
7 | 78 clean: |
79 -del *.out | |
4946
d10ede931224
updated for version 7.3.1218
Bram Moolenaar <bram@vim.org>
parents:
4934
diff
changeset
|
80 -del *.failed |
7378
a6c23c3c5880
commit https://github.com/vim/vim/commit/4e5a31c8b3e259605f4d8543aaae68578cf9b0d7
Christian Brabandt <cb@256bit.org>
parents:
7366
diff
changeset
|
81 -del *.res |
6643 | 82 -if exist $(DOSTMP) rd /s /q $(DOSTMP) |
83 -if exist test.in del test.in | |
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 |
4946
d10ede931224
updated for version 7.3.1218
Bram Moolenaar <bram@vim.org>
parents:
4934
diff
changeset
|
90 -if exist Xdir1 rd /s /q Xdir1 |
d10ede931224
updated for version 7.3.1218
Bram Moolenaar <bram@vim.org>
parents:
4934
diff
changeset
|
91 -if exist Xfind rd /s /q Xfind |
7445
e81526d6709f
commit https://github.com/vim/vim/commit/acf92d27c94811e3bd6b84cfd54246e91d44c355
Christian Brabandt <cb@256bit.org>
parents:
7395
diff
changeset
|
92 -del X* |
1358 | 93 -if exist viminfo del viminfo |
6643 | 94 -if exist test.log del test.log |
7378
a6c23c3c5880
commit https://github.com/vim/vim/commit/4e5a31c8b3e259605f4d8543aaae68578cf9b0d7
Christian Brabandt <cb@256bit.org>
parents:
7366
diff
changeset
|
95 -if exist messages del messages |
6330 | 96 -if exist benchmark.out del benchmark.out |
7 | 97 |
4934
81e623ff2e55
updated for version 7.3.1212
Bram Moolenaar <bram@vim.org>
parents:
4817
diff
changeset
|
98 nolog: |
6643 | 99 -if exist test.log del test.log |
7378
a6c23c3c5880
commit https://github.com/vim/vim/commit/4e5a31c8b3e259605f4d8543aaae68578cf9b0d7
Christian Brabandt <cb@256bit.org>
parents:
7366
diff
changeset
|
100 -if exist messages del messages |
6328 | 101 |
102 benchmark: | |
103 bench_re_freeze.out | |
104 | |
105 bench_re_freeze.out: bench_re_freeze.vim | |
106 -if exist benchmark.out del benchmark.out | |
107 $(VIMPROG) -u dos.vim -U NONE --noplugin $*.in | |
108 @IF EXIST benchmark.out ( type benchmark.out ) | |
7378
a6c23c3c5880
commit https://github.com/vim/vim/commit/4e5a31c8b3e259605f4d8543aaae68578cf9b0d7
Christian Brabandt <cb@256bit.org>
parents:
7366
diff
changeset
|
109 |
a6c23c3c5880
commit https://github.com/vim/vim/commit/4e5a31c8b3e259605f4d8543aaae68578cf9b0d7
Christian Brabandt <cb@256bit.org>
parents:
7366
diff
changeset
|
110 # New style of tests uses Vim script with assert calls. These are easier |
a6c23c3c5880
commit https://github.com/vim/vim/commit/4e5a31c8b3e259605f4d8543aaae68578cf9b0d7
Christian Brabandt <cb@256bit.org>
parents:
7366
diff
changeset
|
111 # to write and a lot easier to read and debug. |
a6c23c3c5880
commit https://github.com/vim/vim/commit/4e5a31c8b3e259605f4d8543aaae68578cf9b0d7
Christian Brabandt <cb@256bit.org>
parents:
7366
diff
changeset
|
112 # Limitation: Only works with the +eval feature. |
a6c23c3c5880
commit https://github.com/vim/vim/commit/4e5a31c8b3e259605f4d8543aaae68578cf9b0d7
Christian Brabandt <cb@256bit.org>
parents:
7366
diff
changeset
|
113 |
a6c23c3c5880
commit https://github.com/vim/vim/commit/4e5a31c8b3e259605f4d8543aaae68578cf9b0d7
Christian Brabandt <cb@256bit.org>
parents:
7366
diff
changeset
|
114 newtests: $(NEW_TESTS) |
a6c23c3c5880
commit https://github.com/vim/vim/commit/4e5a31c8b3e259605f4d8543aaae68578cf9b0d7
Christian Brabandt <cb@256bit.org>
parents:
7366
diff
changeset
|
115 |
a6c23c3c5880
commit https://github.com/vim/vim/commit/4e5a31c8b3e259605f4d8543aaae68578cf9b0d7
Christian Brabandt <cb@256bit.org>
parents:
7366
diff
changeset
|
116 .vim.res: |
a6c23c3c5880
commit https://github.com/vim/vim/commit/4e5a31c8b3e259605f4d8543aaae68578cf9b0d7
Christian Brabandt <cb@256bit.org>
parents:
7366
diff
changeset
|
117 $(VIMPROG) -u NONE -S runtest.vim $*.vim |