Index: trunk/phase3/Makefile |
— | — | @@ -1,23 +0,0 @@ |
2 | | -# |
3 | | -# This Makefile is used to test some MediaWiki functions. If you |
4 | | -# want to install MediaWiki, point your browser to ./config/ |
5 | | -# |
6 | | - |
7 | | -# Configuration: |
8 | | -PROVE_BIN="prove" |
9 | | - |
10 | | -# Describe our tests: |
11 | | -BASE_TEST=$(wildcard t/*.t) |
12 | | -INCLUDES_TESTS=$(wildcard t/inc/*t) |
13 | | - |
14 | | -# Build groups: |
15 | | -ALL_TESTS=$(BASE_TEST) $(INCLUDES_TESTS) |
16 | | - |
17 | | -test: t/Test.php |
18 | | - $(PROVE_BIN) $(ALL_TESTS) |
19 | | - |
20 | | -fast: t/Test.php |
21 | | - $(PROVE_BIN) $(ALL_TESTS) |
22 | | - |
23 | | -verbose: t/Test.php |
24 | | - $(PROVE_BIN) -v $(ALL_TESTS) | egrep -v '^ok' |