From 3ab7a9865d90f297c8f6e6b9af1e22d551a6011b Mon Sep 17 00:00:00 2001 From: Pavel Punegov Date: Fri, 27 Sep 2019 19:26:18 +0300 Subject: [PATCH] Remove obsolete test excludes --- backend.native/tests/build.gradle | 2 +- .../src/main/groovy/org/jetbrains/kotlin/KonanTest.groovy | 4 +--- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/backend.native/tests/build.gradle b/backend.native/tests/build.gradle index 9a13d807d3d..a5f867c5735 100644 --- a/backend.native/tests/build.gradle +++ b/backend.native/tests/build.gradle @@ -246,7 +246,7 @@ task resultsTask() { boolean isExcluded(String dir) { // List of tests that fail due to unresolved compiler bugs - def excluded = [ "codegen/box/functions/bigArity" /* KT-26140 */ ] + def excluded = [ ] if (project.twoStageEnabled) { excluded += [ diff --git a/build-tools/src/main/groovy/org/jetbrains/kotlin/KonanTest.groovy b/build-tools/src/main/groovy/org/jetbrains/kotlin/KonanTest.groovy index c9e23136446..196ca550cc1 100644 --- a/build-tools/src/main/groovy/org/jetbrains/kotlin/KonanTest.groovy +++ b/build-tools/src/main/groovy/org/jetbrains/kotlin/KonanTest.groovy @@ -516,9 +516,7 @@ fun runTest() { static def excludeList = [ "build/external/compiler/codegen/box/functions/functionExpression/functionExpressionWithThisReference.kt", // KT-26973 - "build/external/compiler/codegen/box/inlineClasses/kt27096_innerClass.kt", // KT-27665 - "build/external/compiler/codegen/boxInline/anonymousObject/kt8133.kt", - "build/external/compiler/codegen/box/localClasses/anonymousObjectInExtension.kt" // KT-29282 + "build/external/compiler/codegen/boxInline/anonymousObject/kt8133.kt" // KT-34066 ] boolean isEnabledForNativeBackend(String fileName) {