소스 검색

[FrameworkBundle] Skipping one test failing on PHP5.3.2

pborreli 13 년 전
부모
커밋
1fb90397c4
1개의 변경된 파일4개의 추가작업 그리고 0개의 파일을 삭제
  1. 4 0
      src/Symfony/Bundle/FrameworkBundle/Tests/HttpKernelTest.php

+ 4 - 0
src/Symfony/Bundle/FrameworkBundle/Tests/HttpKernelTest.php

@@ -169,6 +169,10 @@ class HttpKernelTest extends \PHPUnit_Framework_TestCase
 
     public function testExceptionInSubRequestsDoesNotMangleOutputBuffers()
     {
+        if (version_compare(phpversion(), "5.3.2", "<=")) {
+            $this->markTestSkipped('Test fails with PHP5.3.2 due to https://bugs.php.net/bug.php?id=50563');
+        }
+
         $request = new Request();
 
         $container = $this->getMock('Symfony\\Component\\DependencyInjection\\ContainerInterface');