[FIR JS] Add a Fir2IrJsText runner

This commit is contained in:
Nikolay Lunyak
2022-02-24 17:34:44 +03:00
committed by teamcity
parent 4038c06b1e
commit da8a8a8988
2 changed files with 42 additions and 5 deletions
@@ -17,6 +17,7 @@ import org.jetbrains.kotlin.js.testOld.wasm.semantics.AbstractIrCodegenBoxWasmTe
import org.jetbrains.kotlin.js.testOld.wasm.semantics.AbstractIrCodegenWasmJsInteropWasmTest
import org.jetbrains.kotlin.js.testOld.wasm.semantics.AbstractJsTranslatorWasmTest
import org.jetbrains.kotlin.test.TargetBackend
import org.jetbrains.kotlin.test.runners.ir.AbstractFir2IrJsTextTest
fun main(args: Array<String>) {
System.setProperty("java.awt.headless", "true")
@@ -147,6 +148,12 @@ fun main(args: Array<String>) {
testClass<AbstractIrCodegenWasmJsInteropJsTest> {
model("codegen/boxWasmJsInterop")
}
testClass<AbstractFir2IrJsTextTest>(
suiteTestClassName = "Fir2IrJsTextTestGenerated"
) {
model("ir/irJsText")
}
}
}
}