Debugger, fix tests: add kotlin-runtime to classpath compiling Java Sources for tinyApp

This commit is contained in:
Natalia Ukhorskaya
2014-09-01 13:45:56 +04:00
parent b794b827f9
commit d8d01ead14
@@ -131,7 +131,7 @@ public abstract class KotlinDebuggerTestCase extends DescriptorTestCase {
MockLibraryUtil.compileKotlin(sourcesDir, new File(outputDir), CUSTOM_LIBRARY_JAR.getPath());
List<String> options = Arrays.asList("-d", outputDir);
List<String> options = Arrays.asList("-d", outputDir, "-classpath", ForTestCompileRuntime.runtimeJarForTests().getPath());
JetTestUtils.compileJavaFiles(findJavaFiles(new File(sourcesDir)), options);
IS_TINY_APP_COMPILED = true;