[K/N][test] Add static_everywhere caching as an alias to static

To match the options in the new infrastructure, add the same option
to the old one


Merge-request: KT-MR-12949
Merged-by: Pavel Punegov <Pavel.Punegov@jetbrains.com>
This commit is contained in:
Pavel Punegov
2023-11-10 13:11:03 +00:00
committed by Space Team
parent b694f063ac
commit 3d720f9c03
@@ -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)
}