[K/N] Disable more failing tests on mips, target is deprecated
This commit is contained in:
committed by
Space Team
parent
57934a6870
commit
60b8d2b3d9
@@ -628,6 +628,7 @@ task runtime_random(type: KonanLocalTest) {
|
||||
}
|
||||
|
||||
task runtime_basic_simd(type: KonanLocalTest) {
|
||||
disabled = (project.testTarget == 'linux_mips32')
|
||||
expectedFail = (project.testTarget == 'wasm32') // Uses exceptions.
|
||||
source = "runtime/basic/simd.kt"
|
||||
}
|
||||
|
||||
@@ -10,7 +10,11 @@ void errorHandler(const char* str) {
|
||||
}
|
||||
|
||||
void testVector128() {
|
||||
#ifndef mips
|
||||
int __attribute__ ((__vector_size__ (16))) v4f = __ kotlin.root.getVector128();
|
||||
#else
|
||||
int __attribute__ ((__vector_size__ (16))) v4f = {1, 2, 3, 4};
|
||||
#endif
|
||||
printf("getVector128 = (%d, %d, %d, %d)\n", v4f[0], v4f[1], v4f[2], v4f[3]);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user