[Test] Migrate AbstractIrCompileKotlinAgainstKotlinTest to new infrastructure

This commit is contained in:
Dmitriy Novozhilov
2021-01-26 09:03:30 +03:00
parent 49c2bfe637
commit 6f3713af5f
6 changed files with 396 additions and 165 deletions
@@ -400,16 +400,6 @@ fun generateJUnit3CompilerTests(args: Array<String>) {
)
}
testClass<AbstractJvmIrAgainstOldBoxTest> {
model("codegen/box/compileKotlinAgainstKotlin", targetBackend = TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD)
}
testClass<AbstractJvmOldAgainstIrBoxTest> {
model(
"codegen/box/compileKotlinAgainstKotlin",
targetBackend = TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR
)
}
testClass<AbstractIrBytecodeListingTest> {
model("codegen/bytecodeListing", targetBackend = TargetBackend.JVM_IR)
}
@@ -68,6 +68,14 @@ fun generateJUnit5CompilerTests(args: Array<String>) {
model("codegen/box", excludeDirs = listOf("oldLanguageVersions"))
}
testClass<AbstractJvmIrAgainstOldBoxTest> {
model("codegen/box/compileKotlinAgainstKotlin")
}
testClass<AbstractJvmOldAgainstIrBoxTest> {
model("codegen/box/compileKotlinAgainstKotlin")
}
testClass<AbstractIrTextTest> {
model("ir/irText")
}