FIR: add incremental compilation tests

This commit is contained in:
Ilya Chernikov
2020-11-30 10:32:29 +01:00
parent 6cc39788fd
commit 7d29ae7cce
5 changed files with 2659 additions and 1 deletions
@@ -23,7 +23,8 @@ data class BuildLogFinder(
private val isGradleEnabled: Boolean = false,
private val isJsEnabled: Boolean = false,
private val isScopeExpansionEnabled: Boolean = false,
private val isKlibEnabled: Boolean = false
private val isKlibEnabled: Boolean = false,
private val isFirEnabled: Boolean = false
) {
companion object {
private const val JS_LOG = "js-build.log"
@@ -48,6 +49,7 @@ data class BuildLogFinder(
isGradleEnabled && GRADLE_LOG in files -> GRADLE_LOG
isJsEnabled && JS_JPS_LOG in files -> JS_JPS_LOG
isDataContainerBuildLogEnabled && DATA_CONTAINER_LOG in files -> DATA_CONTAINER_LOG
isFirEnabled && FIR_LOG in files -> FIR_LOG
SIMPLE_LOG in files -> SIMPLE_LOG
else -> null
}