Tests: remove TargetBackend.JVM_OLD

TargetBackend.JVM is equivalent to it at this point.
This commit is contained in:
Alexander Udalov
2023-06-22 19:19:20 +02:00
committed by Space Team
parent dd3bebb690
commit eeef70b2c8
8 changed files with 11 additions and 17 deletions
@@ -110,11 +110,11 @@ fun generateJUnit3CompilerTests(args: Array<String>) {
}
testClass<AbstractCustomScriptCodegenTest> {
model("codegen/customScript", pattern = "^(.*)$")
model("codegen/customScript", pattern = "^(.*)$", targetBackend = TargetBackend.JVM)
}
testClass<AbstractIrCustomScriptCodegenTest> {
model("codegen/customScript", pattern = "^(.*)$")
model("codegen/customScript", pattern = "^(.*)$", targetBackend = TargetBackend.JVM_IR)
}
testClass<AbstractIrCfgTestCase> {