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:
committed by
Space
parent
7b8926f85b
commit
28690b7f32
+3
-2
@@ -27,8 +27,9 @@ internal abstract class KotlinToolRunner(
|
|||||||
|
|
||||||
open val execSystemProperties: Map<String, String> = emptyMap()
|
open val execSystemProperties: Map<String, String> = emptyMap()
|
||||||
open val execSystemPropertiesBlacklist: Set<String> = setOf(
|
open val execSystemPropertiesBlacklist: Set<String> = setOf(
|
||||||
"java.endorsed.dirs", // Fix for KT-25887
|
"java.endorsed.dirs", // Fix for KT-25887
|
||||||
"user.dir" // Don't propagate the working dir of the current Gradle process
|
"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>
|
abstract val classpath: Set<File>
|
||||||
|
|||||||
Reference in New Issue
Block a user