X-Git-Url: https://scripts.mit.edu/gitweb/autoinstalls/mediawiki.git/blobdiff_plain/a4b52d2fe555a507c376e78ee624898c55968364..d7967d5e4460e08b6b258307afbca0596b18a3dd:/tests/Makefile diff --git a/tests/Makefile b/tests/Makefile index d980c9cb..25ccda35 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -1,6 +1,19 @@ .PHONY: help test +all test: + php run-test.php ArticleTest.php + php run-test.php GlobalTest.php + php run-test.php DatabaseTest.php + php run-test.php ImageFunctionsTest.php + php run-test.php SearchMySQL4Test.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: - # Run 'make test' to run the unit tests. - -test: - php RunTests.php + # Options: + # test (default) Run the unit tests + # install Install PHPUnit from CVS + # clean Remove local PHPUnit install + # help You're looking at it!