zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

commit 32e78e239f7571a7383c38913f45f66e065e4018 (tree)
parent abd960873cfa3404f48b4ee2b4a3aabb451bbc39
Author: Jan Philipp Hafer <anon_1plus1equals3@mailbox.org>
Date:   Tue, 25 Jul 2023 00:10:49 +0200

re-enable test "fmt.parseFloat nan and inf" after llvm fix

Closes #12027.

Diffstat:
Mlib/std/fmt/parse_float.zig | 5-----
1 file changed, 0 insertions(+), 5 deletions(-)

diff --git a/lib/std/fmt/parse_float.zig b/lib/std/fmt/parse_float.zig @@ -70,11 +70,6 @@ test "fmt.parseFloat" { } test "fmt.parseFloat nan and inf" { - if (builtin.zig_backend == .stage2_llvm and builtin.cpu.arch == .aarch64) { - // https://github.com/ziglang/zig/issues/12027 - return error.SkipZigTest; - } - inline for ([_]type{ f16, f32, f64, f128 }) |T| { const Z = std.meta.Int(.unsigned, @typeInfo(T).Float.bits);