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