blob: cf10301b226bd44838b1e4343c8a15eabda5f5e2 [file] [log] [blame]
Bram Moolenaar68392722010-07-30 22:04:17 +02001#
2# Makefile to run all tests for Vim, on Dos-like machines
Bram Moolenaar34b6cb12008-09-20 14:27:03 +00003# 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
11ifneq (sh.exe, $(SHELL))
12DEL = rm -f
13MV = mv
14CP = cp
15DIRSLASH = /
16else
17DEL = del
18MV = rename
19CP = copy
20DIRSLASH = \\
21endif
22
23VIMPROG = ..$(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
Bram Moolenaaree0ee2a2013-07-03 21:19:07 +020031# test97 \{ and \$ are not escaped characters.
Bram Moolenaar34b6cb12008-09-20 14:27:03 +000032
33SCRIPTS16 = 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
44SCRIPTS = 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 \
Bram Moolenaarf11021b2009-11-17 16:57:14 +000049 test42.out test52.out test65.out test66.out test67.out \
Bram Moolenaar680eeca2010-10-20 17:44:42 +020050 test68.out test69.out test71.out test72.out test73.out \
Bram Moolenaar978287b2011-06-19 04:32:15 +020051 test74.out test75.out test76.out test77.out test78.out \
Bram Moolenaar913077c2012-03-28 19:59:04 +020052 test79.out test80.out test81.out test82.out test83.out \
Bram Moolenaarf4e5e862013-02-13 15:44:26 +010053 test84.out test85.out test86.out test87.out test88.out \
Bram Moolenaare3e6e572013-04-12 13:45:02 +020054 test89.out test90.out test91.out test92.out test93.out \
Bram Moolenaarc1c023e2013-11-07 03:26:06 +010055 test94.out test95.out test96.out test98.out test99.out \
Bram Moolenaar26df0922014-02-23 23:39:13 +010056 test100.out test101.out test102.out test103.out test104.out \
Bram Moolenaarc35b0fb2014-05-29 11:47:40 +020057 test105.out test106.out test107.out \
Bram Moolenaard69bd9a2014-04-29 12:15:40 +020058 test_autoformat_join.out \
Bram Moolenaar597a4222014-06-25 14:39:50 +020059 test_breakindent.out \
Bram Moolenaar86b17e92014-07-02 20:00:47 +020060 test_listlbr.out \
Bram Moolenaarb5647f72014-07-16 17:01:53 +020061 test_listlbr_utf8.out \
Bram Moolenaarfb604092014-07-23 15:55:00 +020062 test_qf_title.out \
Bram Moolenaarb7cb42b2014-04-02 19:55:10 +020063 test_eval.out \
Bram Moolenaarefa304d2014-04-01 14:08:28 +020064 test_options.out
Bram Moolenaar34b6cb12008-09-20 14:27:03 +000065
Bram Moolenaar7e506b62010-01-19 15:55:06 +010066SCRIPTS32 = test50.out test70.out
Bram Moolenaar34b6cb12008-09-20 14:27:03 +000067
68SCRIPTS_GUI = test16.out
69
70.SUFFIXES: .in .out
71
72vimall: fixff $(SCRIPTS16) $(SCRIPTS) $(SCRIPTS_GUI) $(SCRIPTS32)
73 echo ALL DONE
74
75nongui: fixff $(SCRIPTS16) $(SCRIPTS)
76 echo ALL DONE
77
78small:
79 echo ALL DONE
80
81gui: fixff $(SCRIPTS16) $(SCRIPTS) $(SCRIPTS_GUI)
82 echo ALL DONE
83
84win32: fixff $(SCRIPTS16) $(SCRIPTS) $(SCRIPTS32)
85 echo ALL DONE
86
87fixff:
88 -$(VIMPROG) -u dos.vim --noplugin "+argdo set ff=dos|upd" +q *.in *.ok
Bram Moolenaar09210ac2012-04-13 19:11:20 +020089 -$(VIMPROG) -u dos.vim --noplugin "+argdo set ff=unix|upd" +q \
90 dotest.in test60.ok test71.ok test74.ok
Bram Moolenaar34b6cb12008-09-20 14:27:03 +000091
92clean:
93 -$(DEL) *.out
94 -$(DEL) test.ok
95 -$(DEL) small.vim
96 -$(DEL) tiny.vim
97 -$(DEL) mbyte.vim
Bram Moolenaar7e506b62010-01-19 15:55:06 +010098 -$(DEL) mzscheme.vim
Bram Moolenaarb35c3382012-10-06 19:10:35 +020099 -$(DEL) lua.vim
Bram Moolenaar34b6cb12008-09-20 14:27:03 +0000100 -$(DEL) X*
101 -$(DEL) viminfo
102
103.in.out:
104 $(CP) $*.ok test.ok
105 $(VIMPROG) -u dos.vim -U NONE --noplugin -s dotest.in $*.in
106 diff test.out $*.ok
107 -$(DEL) $*.out
108 $(MV) test.out $*.out
109 -$(DEL) X*
110 -$(DEL) test.ok
111 -$(DEL) viminfo