mirror of
https://github.com/phpseclib/phpseclib.git
synced 2024-11-04 20:47:54 +00:00
Run HHVM tests in parallel.
This commit is contained in:
parent
956660e9b9
commit
10050c1748
@ -20,6 +20,7 @@ env:
|
||||
before_install: true
|
||||
|
||||
install:
|
||||
- sudo apt-get install parallel
|
||||
- eval `ssh-agent -s`
|
||||
- travis/setup-secure-shell.sh
|
||||
- sh -c "if [ '$TRAVIS_PHP_VERSION' != 'hhvm' ]; then travis/install-php-extensions.sh; fi"
|
||||
|
@ -14,15 +14,21 @@ else
|
||||
PHPUNIT="$(dirname "$0")/../vendor/bin/phpunit"
|
||||
fi
|
||||
|
||||
PHPUNIT_EXTRA_ARGS=''
|
||||
PHPUNIT_ARGS='--verbose'
|
||||
if [ `php -r "echo (int) version_compare(PHP_VERSION, '5.4', '<');"` = "1" ]
|
||||
then
|
||||
PHPUNIT_EXTRA_ARGS="$PHPUNIT_EXTRA_ARGS -d zend.enable_gc=0"
|
||||
PHPUNIT_ARGS="$PHPUNIT_ARGS -d zend.enable_gc=0"
|
||||
fi
|
||||
|
||||
"$PHPUNIT" \
|
||||
$PHPUNIT_EXTRA_ARGS \
|
||||
--verbose \
|
||||
--coverage-text \
|
||||
--coverage-clover code_coverage/clover.xml \
|
||||
--coverage-html code_coverage/
|
||||
if [ "$TRAVIS_PHP_VERSION" = 'hhvm' ]
|
||||
then
|
||||
find tests -type f -name "*Test.php" | \
|
||||
parallel --gnu --keep-order \
|
||||
"echo '== {} =='; \"$PHPUNIT\" $PHPUNIT_ARGS {};"
|
||||
else
|
||||
"$PHPUNIT" \
|
||||
$PHPUNIT_ARGS \
|
||||
--coverage-text \
|
||||
--coverage-clover code_coverage/clover.xml \
|
||||
--coverage-html code_coverage/
|
||||
fi
|
||||
|
Loading…
Reference in New Issue
Block a user