xref: /vim-8.2.3635/src/testdir/Makefile (revision fc39ecf8)
1#
2# Makefile to run all tests for Vim
3#
4
5VIMPROG = ../vim
6SCRIPTSOURCE = ../../runtime
7
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.$*
13
14
15SCRIPTS = test1.out test2.out test3.out test4.out test5.out test6.out \
16		test7.out test8.out test9.out test10.out test11.out \
17		test12.out test13.out test14.out test15.out test17.out \
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 \
24		test48.out test49.out test51.out test52.out test53.out \
25		test54.out test55.out test56.out test57.out test58.out \
26		test59.out test60.out test61.out test62.out test63.out \
27		test64.out test65.out test66.out test67.out test68.out \
28		test69.out test70.out test71.out test72.out test73.out \
29		test74.out test75.out test76.out test77.out test78.out \
30		test79.out test80.out test81.out test82.out test83.out \
31		test84.out test85.out test86.out test87.out test88.out \
32		test89.out test90.out test91.out test92.out test93.out \
33		test94.out test95.out test96.out test97.out test98.out \
34		test99.out test100.out test101.out test102.out test103.out \
35		test104.out test105.out test106.out test107.out \
36		test_argument_0count.out \
37		test_argument_count.out \
38		test_autocmd_option.out \
39		test_autoformat_join.out \
40		test_breakindent.out \
41		test_changelist.out \
42		test_charsearch.out \
43		test_close_count.out \
44		test_command_count.out \
45		test_erasebackword.out \
46		test_eval.out \
47		test_fixeol.out \
48		test_increment.out \
49		test_insertcount.out \
50		test_listchars.out \
51		test_listlbr.out \
52		test_listlbr_utf8.out \
53		test_mapping.out \
54		test_marks.out \
55		test_match_conceal.out \
56		test_nested_function.out \
57		test_options.out \
58		test_perl.out \
59		test_qf_title.out \
60		test_ruby.out \
61		test_search_mbyte.out \
62		test_set.out \
63		test_signs.out \
64		test_textobjects.out \
65		test_utf8.out
66
67SCRIPTS_GUI = test16.out
68
69SCRIPTS_BENCH = bench_re_freeze.out
70
71.SUFFIXES: .in .out
72
73nongui:	nolog $(SCRIPTS) report
74
75gui:	nolog $(SCRIPTS) $(SCRIPTS_GUI) report
76
77benchmark: $(SCRIPTS_BENCH)
78
79report:
80	@echo
81	@echo 'Test results:'
82	@/bin/sh -c "if test -f test.log; \
83		then cat test.log; echo TEST FAILURE; exit 1; \
84		else echo ALL DONE; \
85		fi"
86
87$(SCRIPTS) $(SCRIPTS_GUI): $(VIMPROG)
88
89RM_ON_RUN = test.out X* viminfo
90RM_ON_START = tiny.vim small.vim mbyte.vim mzscheme.vim lua.vim test.ok benchmark.out
91RUN_VIM = VIMRUNTIME=$(SCRIPTSOURCE); export VIMRUNTIME; $(VALGRIND) $(VIMPROG) -u unix.vim -U NONE --noplugin -s dotest.in
92
93clean:
94	-rm -rf *.out *.failed *.rej *.orig test.log $(RM_ON_RUN) $(RM_ON_START) valgrind.*
95
96test1.out: test1.in
97	-rm -rf $*.failed $(RM_ON_RUN) $(RM_ON_START) wrongtermsize
98	$(RUN_VIM) $*.in
99	@/bin/sh -c "if test -f wrongtermsize; \
100		then echo; \
101		echo test1 FAILED - terminal size must be 80x24 or larger; \
102		echo; exit 1; \
103		elif diff test.out $*.ok; \
104		then mv -f test.out $*.out; \
105		else echo; \
106		echo test1 FAILED - Something basic is wrong; \
107		echo; exit 1; fi"
108	-rm -rf X* viminfo
109
110.in.out:
111	-rm -rf $*.failed test.ok $(RM_ON_RUN)
112	cp $*.ok test.ok
113	# Sleep a moment to avoid that the xterm title is messed up.
114	# 200 msec is sufficient, but only modern sleep supports a fraction of
115	# a second, fall back to a second if it fails.
116	@-/bin/sh -c "sleep .2 > /dev/null 2>&1 || sleep 1"
117	-$(RUN_VIM) $*.in
118
119	# For flaky tests retry one time.
120	@/bin/sh -c "if test -f test.out -a $* = test61; then \
121		  if diff test.out $*.ok; \
122		  then echo flaky test ok first time; \
123		  else rm -rf $*.failed $(RM_ON_RUN); \
124			$(RUN_VIM) $*.in; \
125		  fi \
126		fi"
127
128	# Check if the test.out file matches test.ok.
129	@/bin/sh -c "if test -f test.out; then \
130		  if diff test.out $*.ok; \
131		  then mv -f test.out $*.out; \
132		  else echo $* FAILED >>test.log; mv -f test.out $*.failed; \
133		  fi \
134		else echo $* NO OUTPUT >>test.log; \
135		fi"
136	@/bin/sh -c "if test -f valgrind; then\
137		  mv -f valgrind valgrind.$*; \
138		fi"
139	-rm -rf X* test.ok viminfo
140
141test49.out: test49.vim
142
143test60.out: test60.vim
144
145bench_re_freeze.out: bench_re_freeze.vim
146	-rm -rf benchmark.out $(RM_ON_RUN)
147	# Sleep a moment to avoid that the xterm title is messed up.
148	# 200 msec is sufficient, but only modern sleep supports a fraction of
149	# a second, fall back to a second if it fails.
150	@-/bin/sh -c "sleep .2 > /dev/null 2>&1 || sleep 1"
151	-$(RUN_VIM) $*.in
152	@/bin/sh -c "if test -f benchmark.out; then cat benchmark.out; fi"
153
154nolog:
155	-rm -f test.log
156