blob: 8678b5dadb34c635b125714d6b08e29416729cbe [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001#
2# Makefile to run al tests for Vim, on Dos-like machines.
3#
4# Requires a set of Unix tools: echo, diff, etc.
5
6VIMPROG = ..\\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
16SCRIPTS16 = 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 \
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +000020 test48.out test51.out test53.out test54.out
Bram Moolenaar071d4272004-06-13 20:20:40 +000021
22SCRIPTS = test3.out test4.out test5.out test6.out test7.out \
23 test8.out test9.out test11.out test13.out test14.out \
24 test15.out test17.out test18.out test21.out test26.out \
25 test30.out test31.out test32.out test33.out test34.out \
26 test37.out test38.out test39.out test40.out test41.out \
27 test42.out test52.out
28
29SCRIPTS32 = test50.out
30
31SCRIPTS_GUI = test16.out
32
33.SUFFIXES: .in .out
34
Bram Moolenaarb78b0b02005-01-02 11:32:29 +000035nongui: fixff $(SCRIPTS16) $(SCRIPTS)
Bram Moolenaar071d4272004-06-13 20:20:40 +000036 echo ALL DONE
37
Bram Moolenaarb78b0b02005-01-02 11:32:29 +000038small: fixff $(SCRIPTS16)
Bram Moolenaar071d4272004-06-13 20:20:40 +000039 echo ALL DONE
40
Bram Moolenaarb78b0b02005-01-02 11:32:29 +000041gui: fixff $(SCRIPTS16) $(SCRIPTS) $(SCRIPTS_GUI)
Bram Moolenaar071d4272004-06-13 20:20:40 +000042 echo ALL DONE
43
Bram Moolenaarb78b0b02005-01-02 11:32:29 +000044win32: fixff $(SCRIPTS16) $(SCRIPTS) $(SCRIPTS32)
Bram Moolenaar071d4272004-06-13 20:20:40 +000045 echo ALL DONE
46
Bram Moolenaarb78b0b02005-01-02 11:32:29 +000047fixff:
48 -$(VIMPROG) -u dos.vim --noplugin "+argdo set ff=dos|upd" +q *.in *.ok
49
Bram Moolenaar071d4272004-06-13 20:20:40 +000050clean:
51 -del *.out
52 -del test.ok
53 -del small.vim
54 -del tiny.vim
55 -del mbyte.vim
56 -del X*
57 -del viminfo
58
59.in.out:
60 copy $*.ok test.ok
61 $(VIMPROG) -u dos.vim -U NONE --noplugin -s dotest.in $*.in
62 diff test.out $*.ok
63 -del $*.out
64 rename test.out $*.out
65 -del X*
66 -del test.ok
67 -del viminfo