Skip to content
This repository was archived by the owner on Oct 2, 2019. It is now read-only.

Commit 8142957

Browse files
committed
Merge pull request zendframework#657 from mhujer/soap-skip-5-4-37
Skip Zend_Soap tests on Travis with PHP 5.4.37 because of segfaults
2 parents ed500bd + bd0fc6c commit 8142957

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

tests/Zend/Soap/AllTests.php

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,12 @@ public static function suite()
5151
{
5252
$suite = new PHPUnit_Framework_TestSuite('Zend Framework - Zend_Soap');
5353

54+
//early exit because of segfault in this specific version
55+
//https://github.com/zendframework/zf1/issues/650
56+
if (getenv('TRAVIS') && version_compare(PHP_VERSION, '5.4.37', '=')) {
57+
return $suite;
58+
}
59+
5460
$suite->addTestSuite('Zend_Soap_ClientTest');
5561
$suite->addTestSuite('Zend_Soap_ServerTest');
5662
$suite->addTestSuite('Zend_Soap_WsdlTest');

0 commit comments

Comments
 (0)