From bf3d5965df8df0999dfd6d3439c407090c4c5de9 Mon Sep 17 00:00:00 2001 From: Pavel Punegov Date: Mon, 3 Feb 2020 18:24:23 +0300 Subject: [PATCH] Exclude check for vector type on raspberrypi (#3811) --- backend.native/tests/interop/basics/types.kt | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/backend.native/tests/interop/basics/types.kt b/backend.native/tests/interop/basics/types.kt index cc50a44a628..3779223169b 100644 --- a/backend.native/tests/interop/basics/types.kt +++ b/backend.native/tests/interop/basics/types.kt @@ -1,4 +1,5 @@ import kotlinx.cinterop.* +import kotlin.native.* import kotlin.test.* import ctypes.* @@ -27,7 +28,10 @@ fun main() { assertEquals('b'.toByte(), EnumExplicitCharB) assertEquals(EnumExplicitCharA, EnumExplicitCharDup) - assertEquals(49, sendV4I(vectorOf(1, 2, 3, 4))) + // FIXME: KT-36285 + if (Platform.osFamily != OsFamily.LINUX && Platform.cpuArchitecture != CpuArchitecture.ARM32) { + assertEquals(49, sendV4I(vectorOf(1, 2, 3, 4))) + } assertEquals(49, (sendV4F(vectorOf(1f, 2f, 3f, 4f)) + 0.00001).toInt()) memScoped {