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