From d8d01ead14068bd5c6d62603b24dced36e9b892c Mon Sep 17 00:00:00 2001 From: Natalia Ukhorskaya Date: Mon, 1 Sep 2014 13:45:56 +0400 Subject: [PATCH] Debugger, fix tests: add kotlin-runtime to classpath compiling Java Sources for tinyApp --- .../jetbrains/jet/plugin/debugger/KotlinDebuggerTestCase.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/idea/tests/org/jetbrains/jet/plugin/debugger/KotlinDebuggerTestCase.java b/idea/tests/org/jetbrains/jet/plugin/debugger/KotlinDebuggerTestCase.java index 0887d5843d9..83e706365e9 100644 --- a/idea/tests/org/jetbrains/jet/plugin/debugger/KotlinDebuggerTestCase.java +++ b/idea/tests/org/jetbrains/jet/plugin/debugger/KotlinDebuggerTestCase.java @@ -131,7 +131,7 @@ public abstract class KotlinDebuggerTestCase extends DescriptorTestCase { MockLibraryUtil.compileKotlin(sourcesDir, new File(outputDir), CUSTOM_LIBRARY_JAR.getPath()); - List options = Arrays.asList("-d", outputDir); + List options = Arrays.asList("-d", outputDir, "-classpath", ForTestCompileRuntime.runtimeJarForTests().getPath()); JetTestUtils.compileJavaFiles(findJavaFiles(new File(sourcesDir)), options); IS_TINY_APP_COMPILED = true;