Add parser method to call parser functions
[mediawiki.git] / tests / phpunit / install-phpunit.sh
blob360127483223204596fe66a9d91b33124c558866
1 #!/bin/sh
3 has_binary () {
4 if [ -z `which $1` ]; then
5 return 1
6 fi
7 return 0
10 if [ `id -u` -ne 0 ]; then
11 echo '*** ERROR' Must be root to run
12 exit 1
15 if ( has_binary phpunit ); then
16 echo PHPUnit already installed
17 else if ( has_binary pear ); then
18 echo Installing phpunit with pear
19 pear channel-discover pear.phpunit.de
20 pear channel-discover components.ez.no
21 pear channel-discover pear.symfony.com
22 pear update-channels
23 pear install --alldeps phpunit/PHPUnit
24 else if ( has_binary apt-get ); then
25 echo Installing phpunit with apt-get
26 apt-get install phpunit
27 else if ( has_binary yum ); then
28 echo Installing phpunit with yum
29 yum install phpunit
30 else if ( has_binary port ); then
31 echo Installing phpunit with macports
32 port install php5-unit