[Test] Migrate AbstractAsmLikeInstructionListingTest to new test infrastructure

This commit is contained in:
Dmitriy Novozhilov
2021-10-05 16:40:15 +03:00
committed by TeamCityServer
parent bc7cc6b5a9
commit aab8870903
93 changed files with 1512 additions and 228 deletions
@@ -106,10 +106,6 @@ fun generateJUnit3CompilerTests(args: Array<String>) {
model("codegen/kapt", targetBackend = TargetBackend.JVM)
}
testClass<AbstractAsmLikeInstructionListingTest> {
model("codegen/asmLike", targetBackend = TargetBackend.JVM)
}
testClass<AbstractScriptCodegenTest> {
model("codegen/script", extension = "kts")
}
@@ -407,10 +403,6 @@ fun generateJUnit3CompilerTests(args: Array<String>) {
model("debug/localVariables", targetBackend = TargetBackend.JVM_IR)
}
testClass<AbstractIrAsmLikeInstructionListingTest> {
model("codegen/asmLike", targetBackend = TargetBackend.JVM_IR)
}
testClass<AbstractIrScriptCodegenTest> {
model("codegen/script", extension = "kts", targetBackend = TargetBackend.JVM_IR)
}
@@ -138,6 +138,14 @@ fun generateJUnit5CompilerTests(args: Array<String>) {
testClass<AbstractIrBytecodeListingTest> {
model("codegen/bytecodeListing")
}
testClass<AbstractAsmLikeInstructionListingTest> {
model("codegen/asmLike")
}
testClass<AbstractIrAsmLikeInstructionListingTest> {
model("codegen/asmLike")
}
}
// ---------------------------------------------- FIR tests ----------------------------------------------