Remove unused and unnecessary classpath entries in compiler tests

Also remove obsolete additional path arguments for runIde task.
This commit is contained in:
Ilya Gorbunov
2018-08-15 03:13:36 +03:00
parent 237d870618
commit 38d8451d1c
3 changed files with 4 additions and 10 deletions
@@ -36,9 +36,7 @@ public abstract class CompilerSmokeTestBase extends KotlinIntegrationTestBase {
javaArgs.add("-cp");
javaArgs.add(StringsKt.join(Arrays.asList(
getCompilerLib().getAbsolutePath() + File.separator + "kotlin-compiler.jar",
new File("dependencies/bootstrap-compiler/Kotlin/kotlinc/lib/kotlin-runtime.jar").getAbsolutePath(),
new File("dependencies/bootstrap-compiler/Kotlin/kotlinc/lib/kotlin-reflect.jar").getAbsolutePath()
getCompilerLib().getAbsolutePath() + File.separator + "kotlin-compiler.jar"
), File.pathSeparator));
javaArgs.add("org.jetbrains.kotlin.cli.jvm.K2JVMCompiler");