commit e498d8da3c7a957fe3754db8f3517d71f7fc650e (tree) parent d90068db5a18ef9de65ea9ec468e70e50a58f09d Author: mlugg <mlugg@mlugg.co.uk> Date: Sun, 15 Jun 2025 22:15:06 +0100 std: disable test on LLVM (#24191) Diffstat:
| M | lib/std/math/big/int_test.zig | | | 1 | + |
1 file changed, 1 insertion(+), 0 deletions(-)
diff --git a/lib/std/math/big/int_test.zig b/lib/std/math/big/int_test.zig @@ -484,6 +484,7 @@ fn toFloat(comptime Float: type) !void { ); } test toFloat { + if (builtin.zig_backend == .stage2_llvm) return error.SkipZigTest; // https://github.com/ziglang/zig/issues/24191 try toFloat(f16); try toFloat(f32); try toFloat(f64);