[K/N] Disable code coverage testing
Since LLVM 8, coverage format has changed. We don't officially provide code coverage for end-users, so it's ok to disable it for now and fix later.
This commit is contained in:
+7
-4
@@ -3,10 +3,13 @@ package org.jetbrains.kotlin.konan.target
|
|||||||
// TODO: This all needs to go to konan.properties
|
// TODO: This all needs to go to konan.properties
|
||||||
|
|
||||||
fun KonanTarget.supportsCodeCoverage(): Boolean =
|
fun KonanTarget.supportsCodeCoverage(): Boolean =
|
||||||
this == KonanTarget.MINGW_X64 ||
|
// TODO: Disabled for now, because we don't support
|
||||||
this == KonanTarget.LINUX_X64 ||
|
// coverage format from LLVM 11.
|
||||||
this == KonanTarget.MACOS_X64 ||
|
false
|
||||||
this == KonanTarget.IOS_X64
|
// this == KonanTarget.MINGW_X64 ||
|
||||||
|
// this == KonanTarget.LINUX_X64 ||
|
||||||
|
// this == KonanTarget.MACOS_X64 ||
|
||||||
|
// this == KonanTarget.IOS_X64
|
||||||
|
|
||||||
fun KonanTarget.supportsMimallocAllocator(): Boolean =
|
fun KonanTarget.supportsMimallocAllocator(): Boolean =
|
||||||
when(this) {
|
when(this) {
|
||||||
|
|||||||
Reference in New Issue
Block a user