From 6c35e281455f7d34caf30627381fbebc5581888d Mon Sep 17 00:00:00 2001 From: SvyatoslavScherbina Date: Thu, 30 Apr 2020 11:23:52 +0300 Subject: [PATCH] Enabling some tests disabled in two-stage mode Apparently these tests pass now. --- backend.native/tests/build.gradle | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/backend.native/tests/build.gradle b/backend.native/tests/build.gradle index 4eb6904448c..75860edf0d4 100644 --- a/backend.native/tests/build.gradle +++ b/backend.native/tests/build.gradle @@ -281,13 +281,6 @@ boolean isExcluded(String dir) { // List of tests that fail due to unresolved compiler bugs def excluded = [ ] - if (project.twoStageEnabled) { - excluded += [ - "codegen/box/closures/captureInSuperConstructorCall", "codegen/box/enum", // KT-33207. - "codegen/box/objects" // KT-33267. - ] - } - boolean result = false excluded.forEach { if (dir.endsWith(it.replace("/", File.separator))) { @@ -3764,12 +3757,6 @@ if (PlatformInfo.isAppleTarget(project)) { source = "interop/objc/smoke.kt" interop = 'objcSmoke' - if (twoStageEnabled) { - // Without this flag the test fails in the two-stage mode due to KT-33160. - // TODO: Remove this flag when the bug is fixed. - flags += "-nodefaultlibs" - } - doBeforeBuild { mkdir(buildDir) execKonanClang(project.target) {