KotlinToolRunner: Add "java.system.class.loader" to execSystemPropertiesBlacklist

IDE integration tests will forward an unvailable intellij classloader
which will fail the execution.
This commit is contained in:
sebastian.sellmair
2021-04-23 09:19:54 +02:00
committed by Space
parent 7b8926f85b
commit 28690b7f32
@@ -27,8 +27,9 @@ internal abstract class KotlinToolRunner(
open val execSystemProperties: Map<String, String> = emptyMap()
open val execSystemPropertiesBlacklist: Set<String> = setOf(
"java.endorsed.dirs", // Fix for KT-25887
"user.dir" // Don't propagate the working dir of the current Gradle process
"java.endorsed.dirs", // Fix for KT-25887
"user.dir", // Don't propagate the working dir of the current Gradle process
"java.system.class.loader" // Don't use custom class loaders
)
abstract val classpath: Set<File>