Remove tests on jvm-abi-gen with old JVM backend

#KT-48532 Fixed
This commit is contained in:
Alexander Udalov
2022-09-05 21:18:39 +02:00
parent da86e536ad
commit 97f63d539c
31 changed files with 35 additions and 408 deletions
@@ -151,26 +151,14 @@ fun main(args: Array<String>) {
testGroup("plugins/jvm-abi-gen/test", "plugins/jvm-abi-gen/testData") {
testClass<AbstractCompareJvmAbiTest> {
model("compare", recursive = false, extension = null, targetBackend = TargetBackend.JVM)
}
testClass<AbstractJvmAbiContentTest> {
model("content", recursive = false, extension = null, targetBackend = TargetBackend.JVM)
}
testClass<AbstractCompileAgainstJvmAbiTest> {
model("compile", recursive = false, extension = null, targetBackend = TargetBackend.JVM)
}
testClass<AbstractIrCompareJvmAbiTest> {
model("compare", recursive = false, extension = null, targetBackend = TargetBackend.JVM_IR)
}
testClass<AbstractIrJvmAbiContentTest> {
testClass<AbstractJvmAbiContentTest> {
model("content", recursive = false, extension = null, targetBackend = TargetBackend.JVM_IR)
}
testClass<AbstractIrCompileAgainstJvmAbiTest> {
testClass<AbstractCompileAgainstJvmAbiTest> {
model("compile", recursive = false, extension = null, targetBackend = TargetBackend.JVM_IR)
}
}
@@ -181,15 +169,15 @@ fun main(args: Array<String>) {
additionalRunnerArguments = listOf("\"// IGNORE_BACKEND_LEGACY: \"")
) {
testClass<AbstractLegacyCompareJvmAbiTest> {
model("compare", recursive = false, extension = null, targetBackend = TargetBackend.JVM)
model("compare", recursive = false, extension = null, targetBackend = TargetBackend.JVM_IR)
}
testClass<AbstractLegacyJvmAbiContentTest> {
model("content", recursive = false, extension = null, targetBackend = TargetBackend.JVM)
model("content", recursive = false, extension = null, targetBackend = TargetBackend.JVM_IR)
}
testClass<AbstractLegacyCompileAgainstJvmAbiTest> {
model("compile", recursive = false, extension = null, targetBackend = TargetBackend.JVM)
model("compile", recursive = false, extension = null, targetBackend = TargetBackend.JVM_IR)
}
}