[native] Disable test that fail due to the unaligned int64 access

This commit is contained in:
Pavel Punegov
2021-06-15 11:51:43 +03:00
parent 695339e21f
commit f9d5cc90a8
@@ -4052,7 +4052,8 @@ interopTest("interop_types") {
}
interopTest("interop_structAnonym") {
disabled = (project.testTarget == 'wasm32') // No interop for wasm yet.
disabled = (project.testTarget == 'wasm32') || // No interop for wasm yet.
(project.testTarget == 'mingw_x86')
source = "interop/basics/structAnonym.kt"
interop = 'structAnonym'
}