[K/N] Disable more failing tests on mips, target is deprecated

This commit is contained in:
Svyatoslav Scherbina
2023-03-09 12:42:56 +01:00
committed by Space Team
parent 57934a6870
commit 60b8d2b3d9
2 changed files with 5 additions and 0 deletions
@@ -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]);
}