[Test] Migrate AbstractIrCompileKotlinAgainstKotlinTest to new infrastructure
This commit is contained in:
-27
@@ -1,27 +0,0 @@
|
||||
/*
|
||||
* Copyright 2010-2019 JetBrains s.r.o. and Kotlin Programming Language contributors.
|
||||
* Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
|
||||
*/
|
||||
|
||||
package org.jetbrains.kotlin.codegen.ir
|
||||
|
||||
import org.jetbrains.kotlin.codegen.AbstractCompileKotlinAgainstKotlinTest
|
||||
import org.jetbrains.kotlin.test.TargetBackend
|
||||
|
||||
abstract class AbstractIrCompileKotlinAgainstKotlinTest : AbstractCompileKotlinAgainstKotlinTest() {
|
||||
override val backend: TargetBackend get() = TargetBackend.JVM_IR
|
||||
}
|
||||
|
||||
abstract class AbstractJvmIrAgainstOldBoxTest : AbstractIrCompileKotlinAgainstKotlinTest() {
|
||||
override val backend: TargetBackend get() = TargetBackend.JVM_MULTI_MODULE_IR_AGAINST_OLD
|
||||
|
||||
override fun getBackendA(): TargetBackend = TargetBackend.JVM
|
||||
override fun getBackendB(): TargetBackend = TargetBackend.JVM_IR
|
||||
}
|
||||
|
||||
abstract class AbstractJvmOldAgainstIrBoxTest : AbstractIrCompileKotlinAgainstKotlinTest() {
|
||||
override val backend: TargetBackend get() = TargetBackend.JVM_MULTI_MODULE_OLD_AGAINST_IR
|
||||
|
||||
override fun getBackendA(): TargetBackend = TargetBackend.JVM_IR
|
||||
override fun getBackendB(): TargetBackend = TargetBackend.JVM
|
||||
}
|
||||
Reference in New Issue
Block a user