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