diff options
Diffstat (limited to 'std/math/cos.zig')
| -rw-r--r-- | std/math/cos.zig | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/std/math/cos.zig b/std/math/cos.zig index dc4aff59d6..5261a25f80 100644 --- a/std/math/cos.zig +++ b/std/math/cos.zig @@ -100,6 +100,10 @@ test "math.cos32" { } test "math.cos64" { + if (builtin.os == .linux and builtin.arch == .arm and builtin.abi == .musleabihf) { + // TODO https://github.com/ziglang/zig/issues/3289 + return error.SkipZigTest; + } const epsilon = 0.000001; expect(math.approxEq(f64, cos_(f64, 0.0), 1.0, epsilon)); |
