Fix Java9ModulesIntegrationTest.testDependencyOnReflect
Since javac is invoked on a module-info with a reference to the module kotlin.reflect, we need to pass kotlin-reflect.jar in the module path
This commit is contained in:
@@ -259,6 +259,6 @@ class Java9ModulesIntegrationTest : AbstractKotlinCompilerIntegrationTest() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
fun testDependencyOnReflect() {
|
fun testDependencyOnReflect() {
|
||||||
module("usage")
|
module("usage", listOf(ForTestCompileRuntime.reflectJarForTests()))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user