From b2173d28fc8b56236eddc8aa10dcda61471633ec Mon Sep 17 00:00:00 2001 From: Jordi Boggiano Date: Tue, 16 Jun 2015 11:43:55 +0100 Subject: [PATCH] Fix 5.3.3 build --- tests/Composer/Test/Autoload/ClassMapGeneratorTest.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/Composer/Test/Autoload/ClassMapGeneratorTest.php b/tests/Composer/Test/Autoload/ClassMapGeneratorTest.php index e249fa364..468f72378 100644 --- a/tests/Composer/Test/Autoload/ClassMapGeneratorTest.php +++ b/tests/Composer/Test/Autoload/ClassMapGeneratorTest.php @@ -27,6 +27,10 @@ class ClassMapGeneratorTest extends \PHPUnit_Framework_TestCase public function getTestCreateMapTests() { + if (PHP_VERSION_ID == 50303) { + $this->markTestSkipped('Test segfaults on travis 5.3.3 due to ClassMap\LongString'); + } + $data = array( array(__DIR__.'/Fixtures/Namespaced', array( 'Namespaced\\Bar' => realpath(__DIR__).'/Fixtures/Namespaced/Bar.inc',