8000 [Routing] Skip PhpGeneratorDumperTest::testDumpWithTooManyRoutes on HHVM · symfony/symfony@cb23212 · GitHub
[go: up one dir, main page]

Skip to content

Commit cb23212

Browse files
[Routing] Skip PhpGeneratorDumperTest::testDumpWithTooManyRoutes on HHVM
1 parent ef53d6d commit cb23212

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/Symfony/Component/Routing/Tests/Generator/Dumper/PhpGeneratorDumperTest.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,10 @@ public function testDumpWithRoutes()
8585

8686
public function testDumpWithTooManyRoutes()
8787
{
88+
if (defined('HHVM_VERSION_ID')) {
89+
$this->markTestSkipped('HHVM consumes too much memory on this test.');
90+
}
91+
8892
$this->routeCollection->add('Test', new Route('/testing/{foo}'));
8993
for ($i = 0; $i < 32769; ++$i) {
9094
$this->routeCollection->add('route_'.$i, new Route('/route_'.$i));

0 commit comments

Comments
 (0)
0