From 9cf1a2b40479278b57d083af5c3ea103ed29d9f5 Mon Sep 17 00:00:00 2001 From: Zalim Bashorov Date: Thu, 19 Dec 2019 01:17:46 +0300 Subject: [PATCH] [Build] Remove the property to skip JS IR BE tests It's no longer needed since we going to start building libraries using the new BE, so we have to be sure that everything works well in releases branches too. --- js/js.tests/build.gradle.kts | 3 --- 1 file changed, 3 deletions(-) diff --git a/js/js.tests/build.gradle.kts b/js/js.tests/build.gradle.kts index 8d200f767a9..d3798746e52 100644 --- a/js/js.tests/build.gradle.kts +++ b/js/js.tests/build.gradle.kts @@ -106,9 +106,6 @@ fun Test.setUpJsBoxTests(jsEnabled: Boolean, jsIrEnabled: Boolean) { if (!jsEnabled && jsIrEnabled) include("org/jetbrains/kotlin/js/test/ir/semantics/*") jvmArgs("-da:jdk.nashorn.internal.runtime.RecompilableScriptFunctionData") // Disable assertion which fails due to a bug in nashorn (KT-23637) - if (findProperty("kotlin.compiler.js.ir.tests.skip")?.toString()?.toBoolean() == true) { - exclude("org/jetbrains/kotlin/js/test/ir/semantics/*") - } setUpBoxTests() }