From c52e96a9baecb494b5ed2106b18b4c3a28fb0343 Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Fri, 13 Sep 2019 11:27:15 +0200 Subject: [PATCH] Re-enable previously failing PHP 7.4 test cases --- Tests/Compiler/AutowirePassTest.php | 15 --------------- Tests/Compiler/ResolveBindingsPassTest.php | 5 ----- Tests/Dumper/PhpDumperTest.php | 5 ----- Tests/Loader/FileLoaderTest.php | 15 --------------- 4 files changed, 40 deletions(-) diff --git a/Tests/Compiler/AutowirePassTest.php b/Tests/Compiler/AutowirePassTest.php index b2a08c4d6..f729f72ba 100644 --- a/Tests/Compiler/AutowirePassTest.php +++ b/Tests/Compiler/AutowirePassTest.php @@ -377,11 +377,6 @@ public function testClassNotFoundThrowsException() $pass->process($container); } - /** - * @group issue-32995 - * - * @runInSeparateProcess https://github.com/symfony/symfony/issues/32995 - */ public function testParentClassNotFoundThrowsException() { $this->expectException('Symfony\Component\DependencyInjection\Exception\AutowiringFailedException'); @@ -693,11 +688,6 @@ public function getCreateResourceTests() ]; } - /** - * @group issue-32995 - * - * @runInSeparateProcess https://github.com/symfony/symfony/issues/32995 - */ public function testIgnoreServiceWithClassNotExisting() { $container = new ContainerBuilder(); @@ -896,11 +886,6 @@ public function testExceptionWhenAliasExists() $pass->process($container); } - /** - * @group issue-32995 - * - * @runInSeparateProcess https://github.com/symfony/symfony/issues/32995 - */ public function testExceptionWhenAliasDoesNotExist() { $this->expectException('Symfony\Component\DependencyInjection\Exception\AutowiringFailedException'); diff --git a/Tests/Compiler/ResolveBindingsPassTest.php b/Tests/Compiler/ResolveBindingsPassTest.php index 9a6404b5c..a44fea4d6 100644 --- a/Tests/Compiler/ResolveBindingsPassTest.php +++ b/Tests/Compiler/ResolveBindingsPassTest.php @@ -61,11 +61,6 @@ public function testUnusedBinding() $pass->process($container); } - /** - * @group issue-32995 - * - * @runInSeparateProcess https://github.com/symfony/symfony/issues/32995 - */ public function testMissingParent() { $this->expectException('Symfony\Component\DependencyInjection\Exception\InvalidArgumentException'); diff --git a/Tests/Dumper/PhpDumperTest.php b/Tests/Dumper/PhpDumperTest.php index c63380d3d..4e6083d99 100644 --- a/Tests/Dumper/PhpDumperTest.php +++ b/Tests/Dumper/PhpDumperTest.php @@ -893,11 +893,6 @@ public function testInlineSelfRef() $this->assertStringEqualsFile(self::$fixturesPath.'/php/services_inline_self_ref.php', $dumper->dump(['class' => 'Symfony_DI_PhpDumper_Test_Inline_Self_Ref'])); } - /** - * @group issue-32995 - * - * @runInSeparateProcess https://github.com/symfony/symfony/issues/32995 - */ public function testHotPathOptimizations() { $container = include self::$fixturesPath.'/containers/container_inline_requires.php'; diff --git a/Tests/Loader/FileLoaderTest.php b/Tests/Loader/FileLoaderTest.php index c5f1725fb..b6a816e40 100644 --- a/Tests/Loader/FileLoaderTest.php +++ b/Tests/Loader/FileLoaderTest.php @@ -107,11 +107,6 @@ public function testRegisterClasses() ); } - /** - * @group issue-32995 - * - * @runInSeparateProcess https://github.com/symfony/symfony/issues/32995 - */ public function testRegisterClassesWithExclude() { $container = new ContainerBuilder(); @@ -141,11 +136,6 @@ public function testRegisterClassesWithExclude() ); } - /** - * @group issue-32995 - * - * @runInSeparateProcess https://github.com/symfony/symfony/issues/32995 - */ public function testNestedRegisterClasses() { $container = new ContainerBuilder(); @@ -174,11 +164,6 @@ public function testNestedRegisterClasses() $this->assertFalse($alias->isPrivate()); } - /** - * @group issue-32995 - * - * @runInSeparateProcess https://github.com/symfony/symfony/issues/32995 - */ public function testMissingParentClass() { $container = new ContainerBuilder();