Skip to content

Commit

Permalink
[FrameworkBundle] Skipping one test failing on PHP5.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
pborreli authored and fabpot committed Nov 22, 2011
1 parent 27a26b3 commit cf81a72
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Tests/HttpKernelTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,10 @@ public function getProviderTypes()

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');
Expand Down

0 comments on commit cf81a72

Please sign in to comment.