summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile9
1 files changed, 6 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index b9d5b1cf..b414ffa3 100644
--- a/Makefile
+++ b/Makefile
@@ -15,11 +15,14 @@ MAINTENANCE_TESTS=$(wildcard t/maint/*t)
FAST_TESTS=$(BASE_TEST) $(INCLUDES_TESTS)
ALL_TESTS=$(BASE_TEST) $(INCLUDES_TESTS) $(MAINTENANCE_TESTS)
-test: Test.php
+test: t/Test.php
$(PROVE_BIN) $(ALL_TESTS)
-fast: Test.php
+fast: t/Test.php
$(PROVE_BIN) $(FAST_TESTS)
-verbose: Test.php
+maint:
+ $(PROVE_BIN) $(MAINTENANCE_TESTS)
+
+verbose: t/Test.php
$(PROVE_BIN) -v $(ALL_TESTS) | egrep -v '^ok'