[K/N][tests] Move driver tests into their own project ^KT-61259

This commit is contained in:
Alexander Shabalin
2024-03-07 12:01:06 +01:00
committed by Space Team
parent 316614bc9e
commit 8c6966765b
26 changed files with 87 additions and 59 deletions
@@ -0,0 +1,27 @@
plugins {
kotlin("jvm")
}
dependencies {
testImplementation(platform(libs.junit.bom))
testImplementation(libs.junit.jupiter.api)
testRuntimeOnly(libs.junit.jupiter.engine)
testImplementation(projectTests(":native:native.tests"))
}
sourceSets {
"main" { none() }
"test" {
projectDefault()
generatedTestDir()
}
}
testsJar {}
nativeTest(
"test",
null,
allowParallelExecution = false, // Driver tests run Native compiler from CLI. This is resource-intensive and should be done isolated.
)