Remove codegen tests on old language and API versions

This commit is contained in:
Alexander Udalov
2021-02-10 21:05:23 +01:00
parent 401f0ac583
commit 2d60fa787d
40 changed files with 11 additions and 1752 deletions
@@ -65,7 +65,7 @@ fun generateJUnit5CompilerTests(args: Array<String>) {
}
testClass<AbstractIrBlackBoxCodegenTest> {
model("codegen/box", excludeDirs = listOf("oldLanguageVersions"))
model("codegen/box")
}
testClass<AbstractJvmIrAgainstOldBoxTest> {
@@ -85,7 +85,7 @@ fun generateJUnit5CompilerTests(args: Array<String>) {
}
testClass<AbstractIrBytecodeTextTest> {
model("codegen/bytecodeText", excludeDirs = listOf("oldLanguageVersions"))
model("codegen/bytecodeText")
}
testClass<AbstractBlackBoxInlineCodegenTest> {
@@ -124,11 +124,11 @@ fun generateJUnit5CompilerTests(args: Array<String>) {
testGroup(testsRoot = "compiler/fir/fir2ir/tests-gen", testDataRoot = "compiler/testData") {
testClass<AbstractFirBlackBoxCodegenTest> {
model("codegen/box", excludeDirs = listOf("oldLanguageVersions"))
model("codegen/box")
}
testClass<AbstractFirBlackBoxInlineCodegenTest> {
model("codegen/boxInline", excludeDirs = listOf("oldLanguageVersions"))
model("codegen/boxInline")
}
}
@@ -152,7 +152,7 @@ fun generateJUnit5CompilerTests(args: Array<String>) {
}
testClass<AbstractFirBytecodeTextTest> {
model("codegen/bytecodeText", excludeDirs = listOf("oldLanguageVersions"))
model("codegen/bytecodeText")
}
}
}