Allow to skip JS IR tests with gradle property kotlin.compiler.js.ir.tests.skip
This commit is contained in:
@@ -53,6 +53,9 @@ projectTest {
|
||||
dependsOn(":dist")
|
||||
jvmArgs("-da:jdk.nashorn.internal.runtime.RecompilableScriptFunctionData") // Disable assertion which fails due to a bug in nashorn (KT-23637)
|
||||
workingDir = rootDir
|
||||
if (findProperty("kotlin.compiler.js.ir.tests.skip")?.toString()?.toBoolean() == true) {
|
||||
exclude("org/jetbrains/kotlin/js/test/semantics/Ir*")
|
||||
}
|
||||
doFirst {
|
||||
systemProperty("kotlin.ant.classpath", antLauncherJar.asPath)
|
||||
systemProperty("kotlin.ant.launcher.class", "org.apache.tools.ant.Main")
|
||||
|
||||
Reference in New Issue
Block a user