blob: b60bd4885a1d0ea9b3db7fbeb2dadb71f7b95474 [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
6
Bram Moolenaar4d2fffc2007-08-14 15:29:16 +00007# Uncomment this line for using valgrind.
8# The output goes into a file "valgrind.$PID" (sorry, no test number).
Bram Moolenaar9d2c8c12007-09-25 16:00:00 +00009# VALGRIND = valgrind --tool=memcheck --leak-check=yes --num-callers=15 --logfile=valgrind
Bram Moolenaar4d2fffc2007-08-14 15:29:16 +000010
Bram Moolenaar071d4272004-06-13 20:20:40 +000011SCRIPTS = test1.out test2.out test3.out test4.out test5.out test6.out \
12 test7.out test8.out test9.out test10.out test11.out \
13 test12.out test13.out test14.out test15.out test17.out \
14 test18.out test19.out test20.out test21.out test22.out \
15 test23.out test24.out test25.out test26.out test27.out \
16 test28.out test29.out test30.out test31.out test32.out \
17 test33.out test34.out test35.out test36.out test37.out \
18 test38.out test39.out test40.out test41.out test42.out \
19 test43.out test44.out test45.out test46.out test47.out \
Bram Moolenaarb5bf5b82004-12-24 14:35:23 +000020 test48.out test49.out test51.out test52.out test53.out \
Bram Moolenaar53180ce2005-07-05 21:48:14 +000021 test54.out test55.out test56.out test57.out test58.out \
Bram Moolenaar4d2fffc2007-08-14 15:29:16 +000022 test59.out test60.out test61.out test62.out test63.out \
Bram Moolenaar9d77dcc2009-03-11 15:28:26 +000023 test64.out test65.out test66.out
Bram Moolenaar071d4272004-06-13 20:20:40 +000024
25SCRIPTS_GUI = test16.out
26
27.SUFFIXES: .in .out
28
Bram Moolenaarf2e53da2008-09-10 16:26:04 +000029nongui: nolog $(SCRIPTS) report
Bram Moolenaar071d4272004-06-13 20:20:40 +000030
Bram Moolenaarf2e53da2008-09-10 16:26:04 +000031gui: nolog $(SCRIPTS) $(SCRIPTS_GUI) report
32
33report:
Bram Moolenaar071d4272004-06-13 20:20:40 +000034 @echo
Bram Moolenaarf2e53da2008-09-10 16:26:04 +000035 @echo 'Test results:'
36 @/bin/sh -c "if test -f test.log; \
37 then cat test.log; echo TEST FAILURE; exit 1; \
38 else echo ALL DONE; \
39 fi"
Bram Moolenaar071d4272004-06-13 20:20:40 +000040
41$(SCRIPTS) $(SCRIPTS_GUI): $(VIMPROG)
42
43clean:
Bram Moolenaar9d2c8c12007-09-25 16:00:00 +000044 -rm -rf *.out *.failed *.rej *.orig test.log tiny.vim small.vim mbyte.vim test.ok X* valgrind.pid* viminfo
Bram Moolenaar071d4272004-06-13 20:20:40 +000045
46test1.out: test1.in
47 -rm -f $*.failed tiny.vim small.vim mbyte.vim test.ok X* viminfo
Bram Moolenaar4d2fffc2007-08-14 15:29:16 +000048 $(VALGRIND) $(VIMPROG) -u unix.vim -U NONE --noplugin -s dotest.in $*.in
Bram Moolenaar071d4272004-06-13 20:20:40 +000049 @/bin/sh -c "if diff test.out $*.ok; \
50 then mv -f test.out $*.out; \
51 else echo; \
52 echo test1 FAILED - Something basic is wrong; \
53 echo; exit 1; fi"
54 -rm -rf X* viminfo
55
56.in.out:
Bram Moolenaara5792f52005-11-23 21:25:05 +000057 -rm -rf $*.failed test.ok test.out X* viminfo
Bram Moolenaar071d4272004-06-13 20:20:40 +000058 cp $*.ok test.ok
Bram Moolenaar47136d72004-10-12 20:02:24 +000059 # Sleep a moment to avoid that the xterm title is messed up
60 @-sleep .2
Bram Moolenaar4d2fffc2007-08-14 15:29:16 +000061 -$(VALGRIND) $(VIMPROG) -u unix.vim -U NONE --noplugin -s dotest.in $*.in
Bram Moolenaar5313dcb2005-02-22 08:56:13 +000062 @/bin/sh -c "if test -f test.out; then\
63 if diff test.out $*.ok; \
64 then mv -f test.out $*.out; \
65 else echo $* FAILED >>test.log; mv -f test.out $*.failed; \
66 fi \
67 else echo $* NO OUTPUT >>test.log; \
Bram Moolenaar071d4272004-06-13 20:20:40 +000068 fi"
Bram Moolenaar42332f52005-07-06 22:38:49 +000069 -rm -rf X* test.ok viminfo
Bram Moolenaar071d4272004-06-13 20:20:40 +000070
Bram Moolenaar9d2c8c12007-09-25 16:00:00 +000071test49.out: test49.vim
72
73test60.out: test60.vim
74
Bram Moolenaar071d4272004-06-13 20:20:40 +000075nolog:
Bram Moolenaarf2e53da2008-09-10 16:26:04 +000076 -rm -f test.log