From da25e1bf216ab571e3e79883a24af3577960e410 Mon Sep 17 00:00:00 2001 From: Alexander Shabalin Date: Thu, 23 Sep 2021 12:13:10 +0300 Subject: [PATCH] [K/N] Enable a missing test --- kotlin-native/backend.native/tests/build.gradle | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/kotlin-native/backend.native/tests/build.gradle b/kotlin-native/backend.native/tests/build.gradle index 0c139ad57fc..ff4083d4b5b 100644 --- a/kotlin-native/backend.native/tests/build.gradle +++ b/kotlin-native/backend.native/tests/build.gradle @@ -3228,8 +3228,7 @@ task codegen_escapeAnalysis_recursion(type: KonanLocalTest) { standaloneTest("codegen_escapeAnalysis_stackAllocated") { disabled = (cacheTesting != null) || // Cache is not compatible with -opt. - project.globalTestArgs.contains('-g') || // -g and -opt are incompatible - isExperimentalMM // TODO: Experimental MM doesn't support stack-allocated objects yet. + project.globalTestArgs.contains('-g') // -g and -opt are incompatible flags = ['-opt', '-tr', '-opt-in=kotlin.native.internal.InternalForKotlinNative'] source = "codegen/escapeAnalysis/stackAllocated.kt" }