Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F4648423
PHPUnit with both HHVM and PHP5
No One
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Authored By
Sebastian_Berlin-WMSE
Oct 24 2016, 8:08 AM
2016-10-24 08:08:54 (UTC+0)
Size
459 B
Referenced Files
None
Subscribers
None
PHPUnit with both HHVM and PHP5
View Options
#! /usr/bin/env bash
function
runHhvm
{
echo
"******"
echo
"*HHVM*"
echo
"******"
/vagrant/mediawiki/tests/phpunit/phpunit.php
$*
||
return
1
}
function
runPhp5
{
echo
"******"
echo
"*PHP5*"
echo
"******"
php5 /vagrant/mediawiki/tests/phpunit/phpunit.php
$*
||
return
1
}
while
getopts
"h"
optname
do
case
"
$optname
"
in
"h"
)
shouldPhp5Run
=
false
;;
esac
done
runHhvm
$*
&&
runPhp5
$*
File Metadata
Details
Attached
Mime Type
text/plain; charset=utf-8
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
4088121
Default Alt Text
PHPUnit with both HHVM and PHP5 (459 B)
Attached To
Mode
P4291 PHPUnit with both HHVM and PHP5
Attached
Detach File
Event Timeline
Log In to Comment