1#
2# Makefile to run all tests for Vim
3#
4
5VIMPROG = ../vim
6
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.$*
12
13SCRIPTS = test1.out test2.out test3.out test4.out test5.out test6.out \
14		test7.out test8.out test9.out test10.out test11.out \
15		test12.out  test13.out test14.out test15.out test17.out \
16		test18.out test19.out test20.out test21.out test22.out \
17		test23.out test24.out test25.out test26.out test27.out \
18		test28.out test29.out test30.out test31.out test32.out \
19		test33.out test34.out test35.out test36.out test37.out \
20		test38.out test39.out test40.out test41.out test42.out \
21		test43.out test44.out test45.out test46.out test47.out \
22		test48.out test49.out test51.out test52.out test53.out \
23		test54.out test55.out test56.out test57.out test58.out \
24		test59.out test60.out test61.out test62.out test63.out \
25		test64.out test65.out test66.out test67.out test68.out \
26		test69.out test70.out test71.out test72.out test73.out
27
28SCRIPTS_GUI = test16.out
29
30.SUFFIXES: .in .out
31
32nongui:	nolog $(SCRIPTS) report
33
34gui:	nolog $(SCRIPTS) $(SCRIPTS_GUI) report
35
36report:
37	@echo
38	@echo 'Test results:'
39	@/bin/sh -c "if test -f test.log; \
40		then cat test.log; echo TEST FAILURE; exit 1; \
41		else echo ALL DONE; \
42		fi"
43
44$(SCRIPTS) $(SCRIPTS_GUI): $(VIMPROG)
45
46clean:
47	-rm -rf *.out *.failed *.rej *.orig test.log tiny.vim small.vim mbyte.vim mzscheme.vim test.ok X* valgrind.pid* viminfo
48
49test1.out: test1.in
50	-rm -f $*.failed tiny.vim small.vim mbyte.vim mzscheme.vim test.ok X* viminfo
51	$(VALGRIND) $(VIMPROG) -u unix.vim -U NONE --noplugin -s dotest.in $*.in
52	@/bin/sh -c "if diff test.out $*.ok; \
53		then mv -f test.out $*.out; \
54		else echo; \
55		echo test1 FAILED - Something basic is wrong; \
56		echo; exit 1; fi"
57	-rm -rf X* viminfo
58
59.in.out:
60	-rm -rf $*.failed test.ok test.out X* viminfo
61	cp $*.ok test.ok
62	# Sleep a moment to avoid that the xterm title is messed up
63	@-sleep .2
64	-$(VALGRIND) $(VIMPROG) -u unix.vim -U NONE --noplugin -s dotest.in $*.in
65	@/bin/sh -c "if test -f test.out; then\
66		  if diff test.out $*.ok; \
67		  then mv -f test.out $*.out; \
68		  else echo $* FAILED >>test.log; mv -f test.out $*.failed; \
69		  fi \
70		else echo $* NO OUTPUT >>test.log; \
71		fi"
72	-rm -rf X* test.ok viminfo
73
74test49.out: test49.vim
75
76test60.out: test60.vim
77
78nolog:
79	-rm -f test.log
80