diff --git a/backend.native/debugger-tests/src/main/kotlin/org/jetbrains/kotlin/compiletest/DistProperties.kt b/backend.native/debugger-tests/src/main/kotlin/org/jetbrains/kotlin/compiletest/DistProperties.kt index ccceae8033a..adb36046366 100644 --- a/backend.native/debugger-tests/src/main/kotlin/org/jetbrains/kotlin/compiletest/DistProperties.kt +++ b/backend.native/debugger-tests/src/main/kotlin/org/jetbrains/kotlin/compiletest/DistProperties.kt @@ -8,7 +8,7 @@ import java.nio.file.Paths object DistProperties { private val dist: Path = Paths.get(requireProp("konan.home")) - private val konancDriver = if (HostManager.host.family == Family.WINDOWS) "konanc.bat" else "konanc" + private val konancDriver = if (HostManager.host.family == Family.MINGW) "konanc.bat" else "konanc" val konanc: Path = dist.resolve("bin/$konancDriver") val lldb: Path = Paths.get("lldb") val lldbPrettyPrinters: Path = dist.resolve("tools/konan_lldb.py")