[Wasm] Mute codegen box tests

This commit is contained in:
Svyatoslav Kuzmich
2020-10-18 20:53:41 +03:00
parent 02a84fa6e1
commit fdd7fa5aea
1292 changed files with 16876 additions and 4 deletions
@@ -77,6 +77,33 @@ fun main(args: Array<String>) {
model("codegen/boxError", targetBackend = TargetBackend.JS_IR)
}
testClass<AbstractIrCodegenBoxWasmTest> {
model(
"codegen/box", pattern = "^([^_](.+))\\.kt$", targetBackend = TargetBackend.WASM, excludeDirs = listOf(
// TODO: Support reflection
"toArray", "classLiteral", "reflection",
// TODO: Add stdlib
"contracts", "platformTypes",
// TODO: ArrayList
"ranges/stepped/unsigned",
// TODO: Support coroutines
"coroutines", "parametersMetadata",
// TODO: Support exceptions
"finally", "deadCodeElimination", "controlStructures/tryCatchInExpressions",
// TODO: Support delegated properties
"delegatedProperty",
"oldLanguageVersions"
)
)
}
testClass<AbstractIrJsCodegenBoxES6Test> {
model("codegen/box", targetBackend = TargetBackend.JS_IR_ES6)
}
File diff suppressed because it is too large Load Diff