8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef53d6d commit cb23212Copy full SHA for cb23212
src/Symfony/Component/Routing/Tests/Generator/Dumper/PhpGeneratorDumperTest.php
@@ -85,6 +85,10 @@ public function testDumpWithRoutes()
85
86
public function testDumpWithTooManyRoutes()
87
{
88
+ if (defined('HHVM_VERSION_ID')) {
89
+ $this->markTestSkipped('HHVM consumes too much memory on this test.');
90
+ }
91
+
92
$this->routeCollection->add('Test', new Route('/testing/{foo}'));
93
for ($i = 0; $i < 32769; ++$i) {
94
$this->routeCollection->add('route_'.$i, new Route('/route_'.$i));
0 commit comments