From b2070c524380ada14f538a8d75fb929f0088d13c Mon Sep 17 00:00:00 2001 From: Sergey Bogolepov Date: Tue, 15 Dec 2020 13:06:53 +0700 Subject: [PATCH] Fix tests on qemu-arm and qemu-aarch64 --- kotlin-native/backend.native/tests/build.gradle | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/kotlin-native/backend.native/tests/build.gradle b/kotlin-native/backend.native/tests/build.gradle index c0d59b55731..87ee21d2406 100644 --- a/kotlin-native/backend.native/tests/build.gradle +++ b/kotlin-native/backend.native/tests/build.gradle @@ -3872,7 +3872,9 @@ standaloneTest("interop_objc_allocException") { interopTest("interop0") { disabled = (project.testTarget == 'wasm32') || // No interop for wasm yet. (project.testTarget == 'linux_mips32') || // st_uid of '/' is not equal to 0 when using qemu - (project.testTarget == 'linux_mipsel32') + (project.testTarget == 'linux_mipsel32') || + (project.testTarget == 'linux_arm32_hfp') || + (project.testTarget == 'linux_arm64') goldValue = "0\n0\n" source = "interop/basics/0.kt" interop = 'sysstat'