[IC KLIB] Replace JS IR build log with KLIB build log for klib compialtion

- fix test data
This commit is contained in:
Roman Artemev
2020-12-21 18:22:13 +03:00
parent 5c25ef62e2
commit 350ff8033d
15 changed files with 3 additions and 6 deletions
@@ -16,5 +16,5 @@ abstract class AbstractIncrementalJsCompilerRunnerWithMetadataOnlyTest : Abstrac
}
override val buildLogFinder: BuildLogFinder
get() = super.buildLogFinder.copy(isJsIrEnabled = true)
get() = super.buildLogFinder.copy(isKlibEnabled = true)
}
@@ -17,7 +17,7 @@ abstract class AbstractIncrementalJsKlibCompilerRunnerTest : AbstractIncremental
}
override val buildLogFinder: BuildLogFinder
get() = super.buildLogFinder.copy(isJsIrEnabled = true, isKlibEnabled = true)
get() = super.buildLogFinder.copy(isKlibEnabled = true)
}
abstract class AbstractIncrementalJsKlibCompilerWithScopeExpansionRunnerTest : AbstractIncrementalJsKlibCompilerRunnerTest() {
@@ -28,7 +28,7 @@ abstract class AbstractIncrementalMultiModuleJsKlibCompilerRunnerTest :
}
override val buildLogFinder: BuildLogFinder
get() = super.buildLogFinder.copy(isJsIrEnabled = true, isKlibEnabled = true)
get() = super.buildLogFinder.copy(isKlibEnabled = true)
override fun makeForSingleModule(
moduleCacheDir: File,