blob: e76a72b009222288d1c2a379e65640305e7e995e [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001#
Bram Moolenaar6ee10162007-07-26 20:58:42 +00002# Makefile to run all tests for Vim
Bram Moolenaar071d4272004-06-13 20:20:40 +00003#
4
5VIMPROG = ../vim
Bram Moolenaarefa304d2014-04-01 14:08:28 +02006SCRIPTSOURCE = ../../runtime
Bram Moolenaar071d4272004-06-13 20:20:40 +00007
Bram Moolenaar0c77b7b2009-06-24 16:08:18 +00008# 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.$*
Bram Moolenaar4d2fffc2007-08-14 15:29:16 +000013
Bram Moolenaar680eeca2010-10-20 17:44:42 +020014
Bram Moolenaar071d4272004-06-13 20:20:40 +000015SCRIPTS = test1.out test2.out test3.out test4.out test5.out test6.out \
16 test7.out test8.out test9.out test10.out test11.out \
Bram Moolenaar9750bb12012-12-05 16:10:42 +010017 test12.out test13.out test14.out test15.out test17.out \
Bram Moolenaar071d4272004-06-13 20:20:40 +000018 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 \
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +000024 test48.out test49.out test51.out test52.out test53.out \
Bram Moolenaar53180ce2005-07-05 21:48:14 +000025 test54.out test55.out test56.out test57.out test58.out \
Bram Moolenaar4d2fffc2007-08-14 15:29:16 +000026 test59.out test60.out test61.out test62.out test63.out \
Bram Moolenaar97b98102009-11-17 16:41:01 +000027 test64.out test65.out test66.out test67.out test68.out \
Bram Moolenaar680eeca2010-10-20 17:44:42 +020028 test69.out test70.out test71.out test72.out test73.out \
Bram Moolenaar978287b2011-06-19 04:32:15 +020029 test74.out test75.out test76.out test77.out test78.out \
Bram Moolenaar913077c2012-03-28 19:59:04 +020030 test79.out test80.out test81.out test82.out test83.out \
Bram Moolenaarf4e5e862013-02-13 15:44:26 +010031 test84.out test85.out test86.out test87.out test88.out \
Bram Moolenaare3e6e572013-04-12 13:45:02 +020032 test89.out test90.out test91.out test92.out test93.out \
Bram Moolenaare6a2fa62013-09-19 17:00:20 +020033 test94.out test95.out test96.out test97.out test98.out \
Bram Moolenaar4f943c02014-02-05 22:26:05 +010034 test99.out test100.out test101.out test102.out test103.out \
Bram Moolenaarc35b0fb2014-05-29 11:47:40 +020035 test104.out test105.out test106.out test107.out \
Bram Moolenaarb96a7f32014-11-27 16:22:48 +010036 test_argument_count.out \
Bram Moolenaard69bd9a2014-04-29 12:15:40 +020037 test_autoformat_join.out \
Bram Moolenaar597a4222014-06-25 14:39:50 +020038 test_breakindent.out \
Bram Moolenaar23fb7a92014-07-30 14:05:00 +020039 test_changelist.out \
Bram Moolenaarb96a7f32014-11-27 16:22:48 +010040 test_close_count.out \
Bram Moolenaarf1d6ccf2014-12-08 04:16:44 +010041 test_command_count.out \
Bram Moolenaard69bd9a2014-04-29 12:15:40 +020042 test_eval.out \
Bram Moolenaar4f5ce332014-07-30 16:00:58 +020043 test_insertcount.out \
Bram Moolenaarb5cf6c32014-08-16 18:36:43 +020044 test_listlbr.out \
45 test_listlbr_utf8.out \
Bram Moolenaarbdef5182014-10-21 16:22:17 +020046 test_mapping.out \
Bram Moolenaaref923902014-12-13 21:00:55 +010047 test_nested_function.out \
Bram Moolenaarb5cf6c32014-08-16 18:36:43 +020048 test_options.out \
49 test_qf_title.out \
Bram Moolenaar482a2b52014-10-21 20:57:15 +020050 test_signs.out \
Bram Moolenaarb5cf6c32014-08-16 18:36:43 +020051 test_utf8.out
Bram Moolenaar071d4272004-06-13 20:20:40 +000052
53SCRIPTS_GUI = test16.out
54
Bram Moolenaarfda37292014-11-05 14:27:36 +010055SCRIPTS_BENCH = bench_re_freeze.out
56
Bram Moolenaar071d4272004-06-13 20:20:40 +000057.SUFFIXES: .in .out
58
Bram Moolenaarf2e53da2008-09-10 16:26:04 +000059nongui: nolog $(SCRIPTS) report
Bram Moolenaar071d4272004-06-13 20:20:40 +000060
Bram Moolenaarf2e53da2008-09-10 16:26:04 +000061gui: nolog $(SCRIPTS) $(SCRIPTS_GUI) report
62
Bram Moolenaarfda37292014-11-05 14:27:36 +010063benchmark: $(SCRIPTS_BENCH)
64
Bram Moolenaarf2e53da2008-09-10 16:26:04 +000065report:
Bram Moolenaar071d4272004-06-13 20:20:40 +000066 @echo
Bram Moolenaarf2e53da2008-09-10 16:26:04 +000067 @echo 'Test results:'
68 @/bin/sh -c "if test -f test.log; \
69 then cat test.log; echo TEST FAILURE; exit 1; \
70 else echo ALL DONE; \
71 fi"
Bram Moolenaar071d4272004-06-13 20:20:40 +000072
73$(SCRIPTS) $(SCRIPTS_GUI): $(VIMPROG)
74
Bram Moolenaar60ec5f32012-12-05 18:21:32 +010075RM_ON_RUN = test.out X* viminfo
Bram Moolenaarfda37292014-11-05 14:27:36 +010076RM_ON_START = tiny.vim small.vim mbyte.vim mzscheme.vim lua.vim test.ok benchmark.out
Bram Moolenaar1c5a2132014-05-22 13:12:29 +020077RUN_VIM = VIMRUNTIME=$(SCRIPTSOURCE); export VIMRUNTIME; $(VALGRIND) $(VIMPROG) -u unix.vim -U NONE --noplugin -s dotest.in
Bram Moolenaar60ec5f32012-12-05 18:21:32 +010078
Bram Moolenaar071d4272004-06-13 20:20:40 +000079clean:
Bram Moolenaar60ec5f32012-12-05 18:21:32 +010080 -rm -rf *.out *.failed *.rej *.orig test.log $(RM_ON_RUN) $(RM_ON_START) valgrind.*
Bram Moolenaar071d4272004-06-13 20:20:40 +000081
82test1.out: test1.in
Bram Moolenaar6848c8b2013-09-22 15:03:38 +020083 -rm -rf $*.failed $(RM_ON_RUN) $(RM_ON_START) wrongtermsize
Bram Moolenaar60ec5f32012-12-05 18:21:32 +010084 $(RUN_VIM) $*.in
Bram Moolenaarf7dc2b52014-03-12 15:50:22 +010085 @/bin/sh -c "if test -f wrongtermsize; \
Bram Moolenaar6848c8b2013-09-22 15:03:38 +020086 then echo; \
87 echo test1 FAILED - terminal size must be 80x24 or larger; \
88 echo; exit 1; \
89 elif diff test.out $*.ok; \
Bram Moolenaar071d4272004-06-13 20:20:40 +000090 then mv -f test.out $*.out; \
91 else echo; \
92 echo test1 FAILED - Something basic is wrong; \
93 echo; exit 1; fi"
94 -rm -rf X* viminfo
95
96.in.out:
Bram Moolenaar60ec5f32012-12-05 18:21:32 +010097 -rm -rf $*.failed test.ok $(RM_ON_RUN)
Bram Moolenaar071d4272004-06-13 20:20:40 +000098 cp $*.ok test.ok
Bram Moolenaar3f991522013-04-24 12:56:19 +020099 # Sleep a moment to avoid that the xterm title is messed up.
100 # 200 msec is sufficient, but only modern sleep supports a fraction of
101 # a second, fall back to a second if it fails.
102 @-/bin/sh -c "sleep .2 > /dev/null 2>&1 || sleep 1"
Bram Moolenaar60ec5f32012-12-05 18:21:32 +0100103 -$(RUN_VIM) $*.in
104
105 # For flaky tests retry one time.
106 @/bin/sh -c "if test -f test.out -a $* = test61; then \
107 if diff test.out $*.ok; \
108 then echo flaky test ok first time; \
109 else rm -rf $*.failed $(RM_ON_RUN); \
110 $(RUN_VIM) $*.in; \
111 fi \
112 fi"
113
114 # Check if the test.out file matches test.ok.
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +0200115 @/bin/sh -c "if test -f test.out; then \
Bram Moolenaar5313dcb2005-02-22 08:56:13 +0000116 if diff test.out $*.ok; \
117 then mv -f test.out $*.out; \
118 else echo $* FAILED >>test.log; mv -f test.out $*.failed; \
119 fi \
120 else echo $* NO OUTPUT >>test.log; \
Bram Moolenaar071d4272004-06-13 20:20:40 +0000121 fi"
Bram Moolenaarfbc0d2e2013-05-19 19:40:29 +0200122 @/bin/sh -c "if test -f valgrind; then\
123 mv -f valgrind valgrind.$*; \
124 fi"
Bram Moolenaarb35c3382012-10-06 19:10:35 +0200125 -rm -rf X* test.ok viminfo
Bram Moolenaar071d4272004-06-13 20:20:40 +0000126
Bram Moolenaar9d2c8c12007-09-25 16:00:00 +0000127test49.out: test49.vim
128
129test60.out: test60.vim
130
Bram Moolenaarfda37292014-11-05 14:27:36 +0100131bench_re_freeze.out: bench_re_freeze.vim
132 -rm -rf benchmark.out $(RM_ON_RUN)
133 # Sleep a moment to avoid that the xterm title is messed up.
134 # 200 msec is sufficient, but only modern sleep supports a fraction of
135 # a second, fall back to a second if it fails.
136 @-/bin/sh -c "sleep .2 > /dev/null 2>&1 || sleep 1"
137 -$(RUN_VIM) $*.in
138 @/bin/sh -c "if test -f benchmark.out; then cat benchmark.out; fi"
139
Bram Moolenaar071d4272004-06-13 20:20:40 +0000140nolog:
Bram Moolenaarf2e53da2008-09-10 16:26:04 +0000141 -rm -f test.log