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:
Alexander Udalov
2017-10-13 16:47:52 +02:00
parent 863727955f
commit a52d719943
@@ -259,6 +259,6 @@ class Java9ModulesIntegrationTest : AbstractKotlinCompilerIntegrationTest() {
} }
fun testDependencyOnReflect() { fun testDependencyOnReflect() {
module("usage") module("usage", listOf(ForTestCompileRuntime.reflectJarForTests()))
} }
} }