aboutsummaryrefslogtreecommitdiff
path: root/test/behavior/vector.zig
diff options
context:
space:
mode:
Diffstat (limited to 'test/behavior/vector.zig')
-rw-r--r--test/behavior/vector.zig5
1 files changed, 5 insertions, 0 deletions
diff --git a/test/behavior/vector.zig b/test/behavior/vector.zig
index 9c58fd1a36..49ed0a619f 100644
--- a/test/behavior/vector.zig
+++ b/test/behavior/vector.zig
@@ -103,6 +103,11 @@ test "vector float operators" {
return error.SkipZigTest;
}
+ if (builtin.os.tag == .macos and builtin.zig_backend == .stage2_c and builtin.cpu.arch == .aarch64) {
+ // TODO: test is failing
+ return error.SkipZigTest;
+ }
+
inline for ([_]type{ f16, f32, f64, f80, f128 }) |T| {
const S = struct {
fn doTheTest() !void {