7
|
1 #
|
1326
|
2 # Makefile to run all tests for Vim
|
7
|
3 #
|
|
4
|
|
5 VIMPROG = ../vim
|
|
6
|
1920
|
7 # Uncomment this line to use valgrind for memory leaks and extra warnings.
|
|
8 # The output goes into a file "valgrind.testN"
|
|
9 # Vim should be compiled with EXITFREE to avoid false warnings.
|
|
10 # This will make testing about 10 times as slow.
|
|
11 # VALGRIND = valgrind --tool=memcheck --leak-check=yes --num-callers=15 --log-file=valgrind.$*
|
1357
|
12
|
2607
|
13
|
7
|
14 SCRIPTS = test1.out test2.out test3.out test4.out test5.out test6.out \
|
|
15 test7.out test8.out test9.out test10.out test11.out \
|
3986
|
16 test12.out test13.out test14.out test15.out test17.out \
|
7
|
17 test18.out test19.out test20.out test21.out test22.out \
|
|
18 test23.out test24.out test25.out test26.out test27.out \
|
|
19 test28.out test29.out test30.out test31.out test32.out \
|
|
20 test33.out test34.out test35.out test36.out test37.out \
|
|
21 test38.out test39.out test40.out test41.out test42.out \
|
|
22 test43.out test44.out test45.out test46.out test47.out \
|
40
|
23 test48.out test49.out test51.out test52.out test53.out \
|
391
|
24 test54.out test55.out test56.out test57.out test58.out \
|
1357
|
25 test59.out test60.out test61.out test62.out test63.out \
|
2004
|
26 test64.out test65.out test66.out test67.out test68.out \
|
2607
|
27 test69.out test70.out test71.out test72.out test73.out \
|
2904
|
28 test74.out test75.out test76.out test77.out test78.out \
|
3443
|
29 test79.out test80.out test81.out test82.out test83.out \
|
4113
|
30 test84.out test85.out test86.out test87.out test88.out \
|
4274
|
31 test89.out test90.out test91.out test92.out test93.out \
|
4444
|
32 test94.out test95.out
|
7
|
33
|
|
34 SCRIPTS_GUI = test16.out
|
|
35
|
|
36 .SUFFIXES: .in .out
|
|
37
|
1717
|
38 nongui: nolog $(SCRIPTS) report
|
|
39
|
|
40 gui: nolog $(SCRIPTS) $(SCRIPTS_GUI) report
|
7
|
41
|
1717
|
42 report:
|
7
|
43 @echo
|
1717
|
44 @echo 'Test results:'
|
|
45 @/bin/sh -c "if test -f test.log; \
|
|
46 then cat test.log; echo TEST FAILURE; exit 1; \
|
|
47 else echo ALL DONE; \
|
|
48 fi"
|
7
|
49
|
|
50 $(SCRIPTS) $(SCRIPTS_GUI): $(VIMPROG)
|
|
51
|
3992
|
52 RM_ON_RUN = test.out X* viminfo
|
|
53 RM_ON_START = tiny.vim small.vim mbyte.vim mzscheme.vim lua.vim test.ok
|
|
54 RUN_VIM = $(VALGRIND) $(VIMPROG) -u unix.vim -U NONE --noplugin -s dotest.in
|
|
55
|
7
|
56 clean:
|
3992
|
57 -rm -rf *.out *.failed *.rej *.orig test.log $(RM_ON_RUN) $(RM_ON_START) valgrind.*
|
7
|
58
|
|
59 test1.out: test1.in
|
3992
|
60 -rm -rf $*.failed $(RM_ON_RUN) $(RM_ON_START)
|
|
61 $(RUN_VIM) $*.in
|
7
|
62 @/bin/sh -c "if diff test.out $*.ok; \
|
|
63 then mv -f test.out $*.out; \
|
|
64 else echo; \
|
|
65 echo test1 FAILED - Something basic is wrong; \
|
|
66 echo; exit 1; fi"
|
|
67 -rm -rf X* viminfo
|
|
68
|
|
69 .in.out:
|
3992
|
70 -rm -rf $*.failed test.ok $(RM_ON_RUN)
|
7
|
71 cp $*.ok test.ok
|
4313
|
72 # Sleep a moment to avoid that the xterm title is messed up.
|
|
73 # 200 msec is sufficient, but only modern sleep supports a fraction of
|
|
74 # a second, fall back to a second if it fails.
|
|
75 @-/bin/sh -c "sleep .2 > /dev/null 2>&1 || sleep 1"
|
3992
|
76 -$(RUN_VIM) $*.in
|
|
77
|
|
78 # For flaky tests retry one time.
|
|
79 @/bin/sh -c "if test -f test.out -a $* = test61; then \
|
|
80 if diff test.out $*.ok; \
|
|
81 then echo flaky test ok first time; \
|
|
82 else rm -rf $*.failed $(RM_ON_RUN); \
|
|
83 $(RUN_VIM) $*.in; \
|
|
84 fi \
|
|
85 fi"
|
|
86
|
|
87 # Check if the test.out file matches test.ok.
|
4444
|
88 @/bin/sh -c "if test -f test.out; then \
|
169
|
89 if diff test.out $*.ok; \
|
|
90 then mv -f test.out $*.out; \
|
|
91 else echo $* FAILED >>test.log; mv -f test.out $*.failed; \
|
|
92 fi \
|
|
93 else echo $* NO OUTPUT >>test.log; \
|
7
|
94 fi"
|
4444
|
95 @/bin/sh -c "if test -f valgrind; then\
|
|
96 mv -f valgrind valgrind.$*; \
|
|
97 fi"
|
3855
|
98 -rm -rf X* test.ok viminfo
|
7
|
99
|
1405
|
100 test49.out: test49.vim
|
|
101
|
|
102 test60.out: test60.vim
|
|
103
|
7
|
104 nolog:
|
1717
|
105 -rm -f test.log
|