| author | |
| committer | |
| log | 3b41518c14cc2d9d9951a5ce3f44ed942502e1a9 |
| tree | 1a9b85b9cf56dd43f9f19aa330f5f35548c2e91d |
| parent | 91bcdbec34ae5f56293e7470fe66924d161cd5fc |
| signature |
3 files changed, 5 insertions(+), 0 deletions(-)
lib/std/Io/test.zig+1| ... | ... | @@ -628,6 +628,7 @@ test "randomSecure" { |
| 628 | 628 | |
| 629 | 629 | test "memory mapping" { |
| 630 | 630 | if (builtin.cpu.arch == .hexagon) return error.SkipZigTest; // mmap returned EINVAL |
| 631 | if (builtin.cpu.arch.isSPARC()) return error.SkipZigTest; // mmap returned EINVAL | |
| 631 | 632 | if (builtin.os.tag == .wasi and builtin.link_libc) { |
| 632 | 633 | // https://github.com/ziglang/zig/issues/20747 (open fd does not have write permission) |
| 633 | 634 | return error.SkipZigTest; |
lib/std/math/acos.zig+2| ... | ... | @@ -448,6 +448,8 @@ test "acosBinary128.special" { |
| 448 | 448 | } |
| 449 | 449 | |
| 450 | 450 | test "acosBinary128" { |
| 451 | if (builtin.cpu.arch.isSPARC()) return error.SkipZigTest; | |
| 452 | ||
| 451 | 453 | try testing.expectApproxEqAbs(0x1.250e9a58f049eeafa99db4360c88p1, acosBinary128(-0x1.511bdb99a3c4373bedf834ef4f68p-1), math.floatEpsAt(f128, 0x1.250e9a58f049eeafa99db4360c88p1)); |
| 452 | 454 | try testing.expectApproxEqAbs(0x1.2786664b1c676c99437b68590004p1, acosBinary128(-0x1.5879cc3ad6dfd2a52e9891c69808p-1), math.floatEpsAt(f128, 0x1.2786664b1c676c99437b68590004p1)); |
| 453 | 455 | try testing.expectApproxEqAbs(0x1.cb190cd361c7c03a09c470b4caebp-1, acosBinary128(0x1.3f988ba64a7eb97a751c5f0b3077p-1), math.floatEpsAt(f128, 0x1.cb190cd361c7c03a09c470b4caebp-1)); |
lib/std/math/asin.zig+2| ... | ... | @@ -442,6 +442,8 @@ test "asinBinary128.special" { |
| 442 | 442 | } |
| 443 | 443 | |
| 444 | 444 | test "asinBinary128" { |
| 445 | if (builtin.cpu.arch.isSPARC()) return error.SkipZigTest; | |
| 446 | ||
| 445 | 447 | try testing.expectApproxEqAbs(0x1.87e9c740d7837f8e8fa667988fbep-3, asinBinary128(0x1.85868ce287ca0196b01c25fec5ffp-3), math.floatEpsAt(f128, 0x1.87e9c740d7837f8e8fa667988fbep-3)); |
| 446 | 448 | try testing.expectApproxEqAbs(0x1.bd11a474e864213b48e0f005f1f4p-1, asinBinary128(0x1.8718d6d30b4daed08d04ef59f478p-1), math.floatEpsAt(f128, 0x1.bd11a474e864213b48e0f005f1f4p-1)); |
| 447 | 449 | try testing.expectApproxEqAbs(0x1.20b56f8b42649fe72d1f8d68a378p-1, asinBinary128(0x1.11a67640cd7f0ba5d5e362f3abfap-1), math.floatEpsAt(f128, 0x1.20b56f8b42649fe72d1f8d68a378p-1)); |