aboutsummaryrefslogtreecommitdiff
path: root/std/math/complex/sinh.zig
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2019-09-25 17:04:51 -0400
committerGitHub <noreply@github.com>2019-09-25 17:04:51 -0400
commitf112e8af2760f9b475289966db7c0c53f4c6b310 (patch)
treec5ef1538c0bfa2bb37382c979ee90a3a881a584e /std/math/complex/sinh.zig
parentdc3c4197c6e6564fb2558768cf2102b868347442 (diff)
parentd1705baa749a696132e272974858fef8273614ff (diff)
downloadzig-f112e8af2760f9b475289966db7c0c53f4c6b310.tar.gz
zig-f112e8af2760f9b475289966db7c0c53f4c6b310.zip
Merge pull request #3312 from ziglang/armv8-linux-musleabihf
Enable test coverage for armv8-linux-musleabihf
Diffstat (limited to 'std/math/complex/sinh.zig')
-rw-r--r--std/math/complex/sinh.zig5
1 files changed, 5 insertions, 0 deletions
diff --git a/std/math/complex/sinh.zig b/std/math/complex/sinh.zig
index 6286d8447f..0b1294bb6a 100644
--- a/std/math/complex/sinh.zig
+++ b/std/math/complex/sinh.zig
@@ -4,6 +4,7 @@
// https://git.musl-libc.org/cgit/musl/tree/src/complex/csinhf.c
// https://git.musl-libc.org/cgit/musl/tree/src/complex/csinh.c
+const builtin = @import("builtin");
const std = @import("../../std.zig");
const testing = std.testing;
const math = std.math;
@@ -163,6 +164,10 @@ test "complex.csinh32" {
}
test "complex.csinh64" {
+ if (builtin.os == .linux and builtin.arch == .arm and builtin.abi == .musleabihf) {
+ // TODO https://github.com/ziglang/zig/issues/3289
+ return error.SkipZigTest;
+ }
const a = Complex(f64).new(5, 3);
const c = sinh(a);