aboutsummaryrefslogtreecommitdiff
path: root/test/behavior/vector.zig
diff options
context:
space:
mode:
authorAlex Rønne Petersen <alex@alexrp.com>2025-01-06 21:51:56 +0100
committerGitHub <noreply@github.com>2025-01-06 21:51:56 +0100
commit0fb80b0633fc5ebc92776449cb4e76068b5845f5 (patch)
tree3d72f6598837e534f7a306f3f94b70a6be8591d3 /test/behavior/vector.zig
parenta7a5f3506b74651235ba7112ce38b7c3205d0527 (diff)
parent03ac40d5709060168e10c9c3187ffb5a161e773b (diff)
downloadzig-0fb80b0633fc5ebc92776449cb4e76068b5845f5.tar.gz
zig-0fb80b0633fc5ebc92776449cb4e76068b5845f5.zip
Merge pull request #22430 from alexrp/thumbeb
Some QEMU fixes + disable some tests for `thumbeb` in addition to `armeb`
Diffstat (limited to 'test/behavior/vector.zig')
-rw-r--r--test/behavior/vector.zig8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/behavior/vector.zig b/test/behavior/vector.zig
index 5798665d0c..3180d1554a 100644
--- a/test/behavior/vector.zig
+++ b/test/behavior/vector.zig
@@ -640,7 +640,7 @@ test "vector division operators" {
};
try comptime S.doTheTest();
- if (builtin.cpu.arch == .armeb and builtin.zig_backend == .stage2_llvm) return error.SkipZigTest; // https://github.com/ziglang/zig/issues/22060
+ if ((builtin.cpu.arch == .armeb or builtin.cpu.arch == .thumbeb) and builtin.zig_backend == .stage2_llvm) return error.SkipZigTest; // https://github.com/ziglang/zig/issues/22060
try S.doTheTest();
}
@@ -1100,7 +1100,7 @@ test "@addWithOverflow" {
}
};
try comptime S.doTheTest();
- if (builtin.cpu.arch == .armeb and builtin.zig_backend == .stage2_llvm) return error.SkipZigTest; // https://github.com/ziglang/zig/issues/22060
+ if ((builtin.cpu.arch == .armeb or builtin.cpu.arch == .thumbeb) and builtin.zig_backend == .stage2_llvm) return error.SkipZigTest; // https://github.com/ziglang/zig/issues/22060
try S.doTheTest();
}
@@ -1134,7 +1134,7 @@ test "@subWithOverflow" {
}
};
try comptime S.doTheTest();
- if (builtin.cpu.arch == .armeb and builtin.zig_backend == .stage2_llvm) return error.SkipZigTest; // https://github.com/ziglang/zig/issues/22060
+ if ((builtin.cpu.arch == .armeb or builtin.cpu.arch == .thumbeb) and builtin.zig_backend == .stage2_llvm) return error.SkipZigTest; // https://github.com/ziglang/zig/issues/22060
try S.doTheTest();
}
@@ -1158,7 +1158,7 @@ test "@mulWithOverflow" {
}
};
try comptime S.doTheTest();
- if (builtin.cpu.arch == .armeb and builtin.zig_backend == .stage2_llvm) return error.SkipZigTest; // https://github.com/ziglang/zig/issues/22060
+ if ((builtin.cpu.arch == .armeb or builtin.cpu.arch == .thumbeb) and builtin.zig_backend == .stage2_llvm) return error.SkipZigTest; // https://github.com/ziglang/zig/issues/22060
try S.doTheTest();
}