Load kotlin.coroutines.Continuation from parent classloader

^KT-66004 Fixed
This commit is contained in:
Aleksei.Cherepanov
2024-02-21 15:13:08 +01:00
committed by Space Team
parent f32367d2c2
commit a34b87c63a
@@ -42,6 +42,8 @@ abstract class AbstractJvmLookupTrackerTest : AbstractLookupTrackerTest() {
override fun setUp() {
super.setUp()
sourceToOutputMapping.clear()
System.getProperties()
.setProperty("kotlin.jps.classPrefixesToLoadByParent", "kotlin.") // for debugging tests with in-process compiler
}
override fun markDirty(removedAndModifiedSources: Iterable<File>) {
@@ -269,7 +271,7 @@ abstract class AbstractLookupTrackerTest : TestWithWorkingDir() {
val exitCode: String,
val errors: List<String>,
val compiledFiles: Iterable<File>,
val lookups: Map<File, List<LookupInfo>>
val lookups: Map<File, List<LookupInfo>>,
)
private fun make(filesToCompile: Iterable<File>): CompilerOutput {