zig

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

commit 20c5b6ad65711c83ebbff7d0147ace03be795f1f (tree)
parent 0d92fcf6a503780dcaadccef87e72824c7942a96
Author: r00ster91 <r00ster91@proton.me>
Date:   Fri, 16 Dec 2022 00:18:25 +0100

compiler_rt: no longer skip f80 conversion test

This is working again.

Closes #11408

Diffstat:
Mlib/compiler_rt/int_to_float_test.zig | 3---
1 file changed, 0 insertions(+), 3 deletions(-)

diff --git a/lib/compiler_rt/int_to_float_test.zig b/lib/compiler_rt/int_to_float_test.zig @@ -1,5 +1,4 @@ const std = @import("std"); -const builtin = @import("builtin"); const testing = std.testing; const math = std.math; @@ -811,8 +810,6 @@ test "conversion to f32" { } test "conversion to f80" { - if (builtin.zig_backend == .stage1 and builtin.cpu.arch != .x86_64) - return error.SkipZigTest; // https://github.com/ziglang/zig/issues/11408 if (std.debug.runtime_safety) return error.SkipZigTest; const intToFloat = @import("./int_to_float.zig").intToFloat;