Revert "FIR IC: fix test with behavior different from non-tight cycle variants"

This reverts commit c4a29651 as it is no longer needed after IC fix: `5ba3053e` "[IC] Do not report recompilation of non-existing files", because now fix-ic-build.log duplicates the main build.log

#KT-54991 In Progress
This commit is contained in:
Aleksei.Cherepanov
2022-11-23 18:06:15 +01:00
committed by Space Team
parent 67f308dbdb
commit a0fa438735
3 changed files with 1 additions and 36 deletions
@@ -25,7 +25,6 @@ data class BuildLogFinder(
private val isScopeExpansionEnabled: Boolean = false,
private val isKlibEnabled: Boolean = false,
private val isFirEnabled: Boolean = false,
private val isFirIcEnabled: Boolean = false,
private val isJpsBuild: Boolean = false,
) {
companion object {
@@ -35,7 +34,6 @@ data class BuildLogFinder(
private const val GRADLE_LOG = "gradle-build.log"
private const val DATA_CONTAINER_LOG = "data-container-version-build.log"
const val JS_JPS_LOG = "js-jps-build.log"
private const val FIR_IC_LOG = "fir-ic-build.log"
private const val FIR_LOG = "fir-build.log"
private const val GRADLE_FIR_LOG = "gradle-fir-build.log"
const val JPS_LOG = "jps-build.log"
@@ -53,7 +51,6 @@ data class BuildLogFinder(
isScopeExpansionEnabled && SCOPE_EXPANDING_LOG in files -> SCOPE_EXPANDING_LOG
isKlibEnabled && KLIB_LOG in files -> KLIB_LOG
isJsEnabled && JS_LOG in files -> JS_LOG
isFirIcEnabled && FIR_IC_LOG in files -> FIR_IC_LOG
isGradleEnabled && isFirEnabled && GRADLE_FIR_LOG in files -> GRADLE_FIR_LOG
isFirEnabled && FIR_LOG in files -> FIR_LOG
isGradleEnabled && GRADLE_LOG in files -> GRADLE_LOG