]> scripts.mit.edu Git - autoinstalls/mediawiki.git/blob - tests/Makefile
MediaWiki 1.11.0-scripts
[autoinstalls/mediawiki.git] / tests / Makefile
1 .PHONY: help test
2 all test:
3         php run-test.php ArticleTest.php
4         php run-test.php GlobalTest.php
5         php run-test.php DatabaseTest.php
6         php run-test.php ImageFunctionsTest.php
7         php run-test.php SearchMySQL4Test.php
8 install:
9         cvs -z9 -d:pserver:cvsread:@cvs.php.net:/repository/ co -P pear/PHPUnit
10         mv pear/PHPUnit .
11         rm -rf pear
12 clean:
13         rm -rf PHPUnit pear
14 help:
15         # Options:
16         #       test (default)          Run the unit tests
17         #       install                 Install PHPUnit from CVS
18         #       clean                   Remove local PHPUnit install
19         #       help                    You're looking at it!