[JS] Remove js legacy codegen

This commit is contained in:
Ilya Goncharov
2023-06-12 20:09:55 +02:00
committed by Space Team
parent e7e6fba81f
commit 5783693039
5 changed files with 0 additions and 42693 deletions
@@ -146,17 +146,6 @@ fun main(args: Array<String>) {
}
testGroup("js/js.tests/tests-gen", "compiler/testData", testRunnerMethodName = "runTest0") {
testClass<AbstractJsCodegenBoxTest> {
model("codegen/box", excludeDirs = jvmOnlyBoxTests)
}
testClass<AbstractJsCodegenInlineTest> {
model("codegen/boxInline")
}
testClass<AbstractJsLegacyPrimitiveArraysBoxTest> {
model("codegen/box/arrays")
}
testClass<AbstractIrJsCodegenBoxTest> {
model("codegen/box", excludeDirs = jvmOnlyBoxTests)
@@ -72,30 +72,6 @@ open class AbstractBoxJsTest : AbstractJsTest(pathToTestDir = "${JsEnvironmentCo
}
}
open class AbstractJsCodegenBoxTest : AbstractJsTest(
pathToTestDir = "compiler/testData/codegen/box/",
testGroupOutputDirPrefix = "codegen/box/"
)
open class AbstractJsCodegenInlineTest : AbstractJsTest(
pathToTestDir = "compiler/testData/codegen/boxInline",
testGroupOutputDirPrefix = "codegen/boxInline"
)
open class AbstractJsLegacyPrimitiveArraysBoxTest : AbstractJsTest(
pathToTestDir = "compiler/testData/codegen/box/arrays/",
testGroupOutputDirPrefix = "codegen/box/arrays-legacy-primitivearrays/"
) {
override fun configure(builder: TestConfigurationBuilder) {
super.configure(builder)
with(builder) {
defaultDirectives {
-JsEnvironmentConfigurationDirectives.TYPED_ARRAYS
}
}
}
}
open class AbstractSourceMapGenerationSmokeTest : AbstractJsTest(
pathToTestDir = "${JsEnvironmentConfigurator.TEST_DATA_DIR_PATH}/sourcemap/",
testGroupOutputDirPrefix = "sourcemap/"