Add an info to the comment field of the newuserlog when an account was created "by...
[lhc/web/wiklou.git] / Makefile
index e0763a6..b9d5b1c 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,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 -r t
+       $(PROVE_BIN) $(ALL_TESTS)
+
+fast: Test.php
+       $(PROVE_BIN) $(FAST_TESTS)
 
-verbose:
-       prove -v -r t | egrep -v '^ok'
+verbose: Test.php
+       $(PROVE_BIN) -v $(ALL_TESTS) | egrep -v '^ok'