1
0
Fork 0

Skip the phar building on HHVM

Building a phar does not work on HHVM. It looks like it tries to read the phar file which does not exist yet.
pull/3489/head
Christophe Coevoet 2014-12-02 14:31:37 +01:00
parent c0e6656429
commit ea44412476
1 changed files with 4 additions and 0 deletions

View File

@ -60,6 +60,10 @@ class AllFunctionalTest extends \PHPUnit_Framework_TestCase
public function testBuildPhar()
{
if (defined('HHVM_VERSION')) {
$this->markTestSkipped('Building the phar does not work on HHVM.');
}
$fs = new Filesystem;
$fs->removeDirectory(dirname(self::$pharPath));
$fs->ensureDirectoryExists(dirname(self::$pharPath));