[K/N][tests] Move tests into better places

^KT-61259
This commit is contained in:
Vladimir Sukharev
2024-01-04 10:56:00 +01:00
committed by Space Team
parent e68bd1f04f
commit d972fec13c
7 changed files with 7349 additions and 7406 deletions
@@ -4,7 +4,8 @@
*/ */
// TODO: string deduplication across several components seems to require // TODO: string deduplication across several components seems to require
// linking them as bitcode modules before translating to machine code. // linking them as bitcode modules before translating to machine code.
// IGNORE_BACKEND: NATIVE, JVM, JVM_IR // IGNORE_BACKEND: JVM, JVM_IR
// DISABLE_NATIVE
// WITH_STDLIB // WITH_STDLIB
import kotlin.test.* import kotlin.test.*
@@ -38,8 +38,6 @@ fun main() {
) )
) { ) {
model("codegen", targetBackend = TargetBackend.NATIVE) model("codegen", targetBackend = TargetBackend.NATIVE)
model("datagen", targetBackend = TargetBackend.NATIVE)
model("runtime", targetBackend = TargetBackend.NATIVE)
} }
testClass<AbstractNativeCodegenBoxTest>( testClass<AbstractNativeCodegenBoxTest>(
suiteTestClassName = "FirNativeCodegenLocalTestGenerated", suiteTestClassName = "FirNativeCodegenLocalTestGenerated",
@@ -49,8 +47,6 @@ fun main() {
) )
) { ) {
model("codegen", targetBackend = TargetBackend.NATIVE) model("codegen", targetBackend = TargetBackend.NATIVE)
model("datagen", targetBackend = TargetBackend.NATIVE)
model("runtime", targetBackend = TargetBackend.NATIVE)
} }
} }