diff --git a/native/native.tests/tests/org/jetbrains/kotlin/konan/blackboxtest/support/group/StandardTestCaseGroupProvider.kt b/native/native.tests/tests/org/jetbrains/kotlin/konan/blackboxtest/support/group/StandardTestCaseGroupProvider.kt index 1d4281cf1e7..aa85f94b185 100644 --- a/native/native.tests/tests/org/jetbrains/kotlin/konan/blackboxtest/support/group/StandardTestCaseGroupProvider.kt +++ b/native/native.tests/tests/org/jetbrains/kotlin/konan/blackboxtest/support/group/StandardTestCaseGroupProvider.kt @@ -49,7 +49,9 @@ internal class StandardTestCaseGroupProvider : TestCaseGroupProvider { val testCases = includedTestDataFiles.map { testDataFile -> createTestCase(testDataFile, settings) } val lldbTestCases = testCases.filter { it.kind == TestKind.STANDALONE_LLDB } - if (lldbTestCases.isNotEmpty() && !settings.get().isAvailable) { + if (lldbTestCases.isNotEmpty() + && (settings.get() != OptimizationMode.DEBUG || !settings.get().isAvailable) + ) { lldbTestCases.mapTo(disabledTestCaseIds) { it.id } }