Exclude check for vector type on raspberrypi (#3811)
This commit is contained in:
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user