From 89dda00bdfbf6892098b3d3d3b3db93385ce8d39 Mon Sep 17 00:00:00 2001 From: =?utf8?q?=C3=86var=20Arnfj=C3=B6r=C3=B0=20Bjarmason?= Date: Fri, 20 Jan 2006 22:49:07 +0000 Subject: [PATCH] * Added options to install phpunit for the lazy --- tests/Makefile | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/tests/Makefile b/tests/Makefile index d980c9cb69..0a649927ed 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -1,6 +1,15 @@ .PHONY: help test -help: - # Run 'make test' to run the unit tests. - -test: +all test: php RunTests.php +install: + cvs -z9 -d:pserver:cvsread:@cvs.php.net:/repository/ co -P pear/PHPUnit + mv pear/PHPUnit . + rm -rf pear +clean: + rm -rf PHPUnit pear +help: + # Options: + # test (default) Run the unit tests + # install Install PHPUnit from CVS + # clean Remove local PHPUnit install + # help You're looking at it! -- 2.20.1