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