Mercurial > vim
annotate src/testdir/Makefile @ 3058:4a7097153089 v7.3.301
updated for version 7.3.301
Problem: When 'smartindent' and 'copyindent' are set a Tab is used even
though 'expandtab' is set.
Solution: Do not insert Tabs. Add a test. (Christian Brabandt)
author | Bram Moolenaar <bram@vim.org> |
---|---|
date | Wed, 07 Sep 2011 19:58:09 +0200 |
parents | c21429d7768c |
children | 52526aec4afb |
rev | line source |
---|---|
7 | 1 # |
1326 | 2 # Makefile to run all tests for Vim |
7 | 3 # |
4 | |
5 VIMPROG = ../vim | |
6 | |
1920 | 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.$* | |
1357 | 12 |
2607 | 13 |
7 | 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 \ | |
40 | 23 test48.out test49.out test51.out test52.out test53.out \ |
391 | 24 test54.out test55.out test56.out test57.out test58.out \ |
1357 | 25 test59.out test60.out test61.out test62.out test63.out \ |
2004 | 26 test64.out test65.out test66.out test67.out test68.out \ |
2607 | 27 test69.out test70.out test71.out test72.out test73.out \ |
2904 | 28 test74.out test75.out test76.out test77.out test78.out \ |
2961 | 29 test79.out test80.out test81.out test82.out |
7 | 30 |
31 SCRIPTS_GUI = test16.out | |
32 | |
33 .SUFFIXES: .in .out | |
34 | |
1717 | 35 nongui: nolog $(SCRIPTS) report |
36 | |
37 gui: nolog $(SCRIPTS) $(SCRIPTS_GUI) report | |
7 | 38 |
1717 | 39 report: |
7 | 40 @echo |
1717 | 41 @echo 'Test results:' |
42 @/bin/sh -c "if test -f test.log; \ | |
43 then cat test.log; echo TEST FAILURE; exit 1; \ | |
44 else echo ALL DONE; \ | |
45 fi" | |
7 | 46 |
47 $(SCRIPTS) $(SCRIPTS_GUI): $(VIMPROG) | |
48 | |
49 clean: | |
2579 | 50 -rm -rf *.out *.failed *.rej *.orig test.log tiny.vim small.vim mbyte.vim mzscheme.vim test.ok X* valgrind.* viminfo |
7 | 51 |
52 test1.out: test1.in | |
2050
afcf9db31561
updated for version 7.2.336
Bram Moolenaar <bram@zimbu.org>
parents:
2004
diff
changeset
|
53 -rm -f $*.failed tiny.vim small.vim mbyte.vim mzscheme.vim test.ok X* viminfo |
1357 | 54 $(VALGRIND) $(VIMPROG) -u unix.vim -U NONE --noplugin -s dotest.in $*.in |
7 | 55 @/bin/sh -c "if diff test.out $*.ok; \ |
56 then mv -f test.out $*.out; \ | |
57 else echo; \ | |
58 echo test1 FAILED - Something basic is wrong; \ | |
59 echo; exit 1; fi" | |
60 -rm -rf X* viminfo | |
61 | |
62 .in.out: | |
557 | 63 -rm -rf $*.failed test.ok test.out X* viminfo |
7 | 64 cp $*.ok test.ok |
32 | 65 # Sleep a moment to avoid that the xterm title is messed up |
66 @-sleep .2 | |
1357 | 67 -$(VALGRIND) $(VIMPROG) -u unix.vim -U NONE --noplugin -s dotest.in $*.in |
169 | 68 @/bin/sh -c "if test -f test.out; then\ |
69 if diff test.out $*.ok; \ | |
70 then mv -f test.out $*.out; \ | |
71 else echo $* FAILED >>test.log; mv -f test.out $*.failed; \ | |
72 fi \ | |
73 else echo $* NO OUTPUT >>test.log; \ | |
7 | 74 fi" |
2885 | 75 -rm -rf X* test.ok viminfo |
7 | 76 |
1405 | 77 test49.out: test49.vim |
78 | |
79 test60.out: test60.vim | |
80 | |
7 | 81 nolog: |
1717 | 82 -rm -f test.log |