Use language version 1.9 in (JsIr)AnalysisHandlerExtensionTest
This commit is contained in:
committed by
Space Team
parent
64d8df0a61
commit
4f5a00ac2a
@@ -68,9 +68,16 @@ class AnalysisHandlerExtensionTest : TestCaseWithTmpdir() {
|
|||||||
val plugin = writePlugin(klass)
|
val plugin = writePlugin(klass)
|
||||||
val args = listOf("-Xplugin=$plugin", mainKt.absolutePath)
|
val args = listOf("-Xplugin=$plugin", mainKt.absolutePath)
|
||||||
val outputPath = if (compiler is K2JSCompiler)
|
val outputPath = if (compiler is K2JSCompiler)
|
||||||
listOf("-Xforce-deprecated-legacy-compiler-usage", "-output", tmpdir.resolve("out.js").absolutePath)
|
listOf(
|
||||||
|
"-Xforce-deprecated-legacy-compiler-usage",
|
||||||
|
"-language-version", "1.9",
|
||||||
|
"-output", tmpdir.resolve("out.js").absolutePath
|
||||||
|
)
|
||||||
else
|
else
|
||||||
listOf("-d", tmpdir.resolve("out").absolutePath)
|
listOf(
|
||||||
|
"-language-version", "1.9",
|
||||||
|
"-d", tmpdir.resolve("out").absolutePath
|
||||||
|
)
|
||||||
|
|
||||||
val (output, exitCode) = CompilerTestUtil.executeCompiler(compiler, args + outputPath + extras)
|
val (output, exitCode) = CompilerTestUtil.executeCompiler(compiler, args + outputPath + extras)
|
||||||
assertEquals(expectedExitCode, exitCode, output)
|
assertEquals(expectedExitCode, exitCode, output)
|
||||||
|
|||||||
@@ -71,6 +71,7 @@ class JsIrAnalysisHandlerExtensionTest : TestCaseWithTmpdir() {
|
|||||||
"-libraries", libs,
|
"-libraries", libs,
|
||||||
"-ir-output-dir", outputFile.parentFile.path,
|
"-ir-output-dir", outputFile.parentFile.path,
|
||||||
"-ir-output-name", outputFile.nameWithoutExtension,
|
"-ir-output-name", outputFile.nameWithoutExtension,
|
||||||
|
"-language-version", "1.9",
|
||||||
mainKt.absolutePath
|
mainKt.absolutePath
|
||||||
)
|
)
|
||||||
CompilerTestUtil.executeCompilerAssertSuccessful(compiler, args + extras)
|
CompilerTestUtil.executeCompilerAssertSuccessful(compiler, args + extras)
|
||||||
|
|||||||
Reference in New Issue
Block a user