diff --git a/compiler/tests/org/jetbrains/kotlin/cli/LauncherScriptTest.kt b/compiler/tests/org/jetbrains/kotlin/cli/LauncherScriptTest.kt index 5871e3c1c95..04382bb697c 100644 --- a/compiler/tests/org/jetbrains/kotlin/cli/LauncherScriptTest.kt +++ b/compiler/tests/org/jetbrains/kotlin/cli/LauncherScriptTest.kt @@ -61,6 +61,7 @@ class LauncherScriptTest : TestCaseWithTmpdir() { fun testKotlincSimple() { runProcess( "kotlinc", + "-Xskip-java-check", "$testDataDirectory/helloWorld.kt", "-d", tmpdir.path ) @@ -69,6 +70,7 @@ class LauncherScriptTest : TestCaseWithTmpdir() { fun testKotlincJvmSimple() { runProcess( "kotlinc-jvm", + "-Xskip-java-check", "$testDataDirectory/helloWorld.kt", "-d", tmpdir.path ) @@ -77,6 +79,7 @@ class LauncherScriptTest : TestCaseWithTmpdir() { fun testKotlincJsSimple() { runProcess( "kotlinc-js", + "-Xskip-java-check", "$testDataDirectory/emptyMain.kt", "-no-stdlib", "-output", File(tmpdir, "out.js").path @@ -86,6 +89,7 @@ class LauncherScriptTest : TestCaseWithTmpdir() { fun testKotlinNoReflect() { runProcess( "kotlinc", + "-Xskip-java-check", "$testDataDirectory/reflectionUsage.kt", "-d", tmpdir.path )