28 lines
559 B
Kotlin
28 lines
559 B
Kotlin
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,
|
|
requirePlatformLibs = true,
|
|
allowParallelExecution = false, // Stress tests are resource-intensive tests and they must be run in isolation.
|
|
) |