From e498d8da3c7a957fe3754db8f3517d71f7fc650e Mon Sep 17 00:00:00 2001 From: mlugg Date: Sun, 15 Jun 2025 22:15:06 +0100 Subject: [PATCH] std: disable test on LLVM (#24191) --- lib/std/math/big/int_test.zig | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/std/math/big/int_test.zig b/lib/std/math/big/int_test.zig index 820090b95b..5a0fda52b2 100644 --- 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);