diff --git a/kotlin-native/build-tools/src/main/kotlin/org/jetbrains/kotlin/CacheTesting.kt b/kotlin-native/build-tools/src/main/kotlin/org/jetbrains/kotlin/CacheTesting.kt index 926c62ca9c2..15c6bddaa30 100644 --- a/kotlin-native/build-tools/src/main/kotlin/org/jetbrains/kotlin/CacheTesting.kt +++ b/kotlin-native/build-tools/src/main/kotlin/org/jetbrains/kotlin/CacheTesting.kt @@ -15,7 +15,7 @@ fun configureCacheTesting(project: Project): CacheTesting? { val cacheKindString = project.findProperty("test_with_cache_kind") as String? ?: return null val (cacheKind, makePerFileCache) = when (cacheKindString) { "dynamic" -> CompilerOutputKind.DYNAMIC_CACHE to false - "static" -> CompilerOutputKind.STATIC_CACHE to false + "static", "static_everywhere" -> CompilerOutputKind.STATIC_CACHE to false "static_per_file" -> CompilerOutputKind.STATIC_CACHE to true else -> error(cacheKindString) }