[Swift export] Move swift-export-standalone tests

Move them under `nativeCompilerTest` for the sake of unification, and
running under proper CI configuration.
This commit is contained in:
Sergey Bogolepov
2024-03-01 19:07:06 +02:00
committed by Space Team
parent 42cc181fa0
commit 35579692d9
2 changed files with 1 additions and 3 deletions
+1
View File
@@ -813,6 +813,7 @@ tasks {
register("nativeCompilerTest") { register("nativeCompilerTest") {
dependsOn(":native:native.tests:test") dependsOn(":native:native.tests:test")
dependsOn(":native:objcexport-header-generator:check") dependsOn(":native:objcexport-header-generator:check")
dependsOn(":native:swift:swift-export-standalone:test")
dependsOn(":kotlin-atomicfu-compiler-plugin:nativeTest") dependsOn(":kotlin-atomicfu-compiler-plugin:nativeTest")
} }
-3
View File
@@ -7,7 +7,4 @@ tasks.register("sirAllTests") {
":native:swift:sir-compiler-bridge:test", ":native:swift:sir-compiler-bridge:test",
":native:swift:sir-printer:test" ":native:swift:sir-printer:test"
) )
if (kotlinBuildProperties.isKotlinNativeEnabled) {
dependsOn(":native:swift:swift-export-standalone:test")
}
} }