Unify checks for iOS device in backend.native tests

This commit is contained in:
Sergey Bogolepov
2021-04-05 17:02:48 +07:00
committed by TeamCityServer
parent 316d62a72f
commit 7272e5dcad
4 changed files with 9 additions and 3 deletions
@@ -5251,7 +5251,7 @@ project.tasks.register("debugger_test", Test.class) {
}
// Configure build for iOS device targets.
if (target.family == Family.IOS && (target.architecture == ARM32 || target.architecture == ARM64)) {
if (UtilsKt.supportsRunningTestsOnDevice(target)) {
project.tasks
.withType(KonanTestExecutable.class)
.configureEach {