diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/Makefile b/Makefile deleted file mode 100644 index b414ffa3..00000000 --- a/Makefile +++ /dev/null @@ -1,28 +0,0 @@ -# -# 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: t/Test.php - $(PROVE_BIN) $(ALL_TESTS) - -fast: t/Test.php - $(PROVE_BIN) $(FAST_TESTS) - -maint: - $(PROVE_BIN) $(MAINTENANCE_TESTS) - -verbose: t/Test.php - $(PROVE_BIN) -v $(ALL_TESTS) | egrep -v '^ok' |