Mercurial > hg > RemoteEditor > vim7
annotate src/testdir/Makefile @ 34:e170173ecb68 current-release
before ack base protocol.
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Wed, 26 Nov 2008 15:02:10 +0900 |
parents | 76efa0be13f1 |
children | c16898406ff2 |
rev | line source |
---|---|
0 | 1 # |
2 # Makefile to run all tests for Vim | |
3 # | |
4 | |
5 VIMPROG = ../vim | |
6 | |
7 # Uncomment this line for using valgrind. | |
8 # The output goes into a file "valgrind.$PID" (sorry, no test number). | |
9 # VALGRIND = valgrind --tool=memcheck --leak-check=yes --num-callers=15 --logfile=valgrind | |
10 | |
11 SCRIPTS = 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 \ | |
20 test48.out test49.out test51.out test52.out test53.out \ | |
21 test54.out test55.out test56.out test57.out test58.out \ | |
22 test59.out test60.out test61.out test62.out test63.out \ | |
34
e170173ecb68
before ack base protocol.
Shinji KONO <kono@ie.u-ryukyu.ac.jp>
parents:
0
diff
changeset
|
23 test64.out test65.out |
0 | 24 |
25 SCRIPTS_GUI = test16.out | |
26 | |
27 .SUFFIXES: .in .out | |
28 | |
29 nongui: nolog $(SCRIPTS) | |
30 @echo | |
31 @cat test.log | |
32 @echo ALL DONE | |
33 | |
34 gui: nolog $(SCRIPTS) $(SCRIPTS_GUI) | |
35 @echo | |
36 @cat test.log | |
37 @echo ALL DONE | |
38 | |
39 $(SCRIPTS) $(SCRIPTS_GUI): $(VIMPROG) | |
40 | |
41 clean: | |
42 -rm -rf *.out *.failed *.rej *.orig test.log tiny.vim small.vim mbyte.vim test.ok X* valgrind.pid* viminfo | |
43 | |
44 test1.out: test1.in | |
45 -rm -f $*.failed tiny.vim small.vim mbyte.vim test.ok X* viminfo | |
46 $(VALGRIND) $(VIMPROG) -u unix.vim -U NONE --noplugin -s dotest.in $*.in | |
47 @/bin/sh -c "if diff test.out $*.ok; \ | |
48 then mv -f test.out $*.out; \ | |
49 else echo; \ | |
50 echo test1 FAILED - Something basic is wrong; \ | |
51 echo; exit 1; fi" | |
52 -rm -rf X* viminfo | |
53 | |
54 .in.out: | |
55 -rm -rf $*.failed test.ok test.out X* viminfo | |
56 cp $*.ok test.ok | |
57 # Sleep a moment to avoid that the xterm title is messed up | |
58 @-sleep .2 | |
59 -$(VALGRIND) $(VIMPROG) -u unix.vim -U NONE --noplugin -s dotest.in $*.in | |
60 @/bin/sh -c "if test -f test.out; then\ | |
61 if diff test.out $*.ok; \ | |
62 then mv -f test.out $*.out; \ | |
63 else echo $* FAILED >>test.log; mv -f test.out $*.failed; \ | |
64 fi \ | |
65 else echo $* NO OUTPUT >>test.log; \ | |
66 fi" | |
67 -rm -rf X* test.ok viminfo | |
68 | |
69 test49.out: test49.vim | |
70 | |
71 test60.out: test60.vim | |
72 | |
73 nolog: | |
74 -echo Test results: >test.log |