Run lldb tests only on arm64 macOS and only in debug mode

^KT-63598
This commit is contained in:
Timofey Solonin
2023-12-05 17:28:14 +01:00
committed by Space Team
parent 1901ed36ec
commit c8b77fe18c
@@ -24,8 +24,12 @@ import org.junit.jupiter.api.Test
import java.io.File
@EnforcedProperty(ClassLevelProperty.COMPILER_OUTPUT_INTERCEPTOR, "NONE")
@EnforcedHostTarget
@EnforcedProperty(ClassLevelProperty.COMPILER_OUTPUT_INTERCEPTOR, "NONE")
// FIXME: With -opt these tests can't set a breakpoint in inlined "fun bar()"
@EnforcedProperty(ClassLevelProperty.OPTIMIZATION_MODE, propertyValue = "DEBUG")
// FIXME: With Rosetta the step-out and step-over tests stop on the line after "[KotlinLibKt bar]"
@EnforcedProperty(ClassLevelProperty.TEST_TARGET, propertyValue = "macos_arm64")
class ObjCToKotlinSteppingInLLDBTest : AbstractNativeSimpleTest() {
@Test