std.zon.parse: disable std.zon parse float on 32-bit x86 in general

https://github.com/ziglang/zig/issues/23922
This commit is contained in:
Alex Rønne Petersen
2026-03-08 19:23:37 +01:00
parent 9598010303
commit 6def6beacd
+1 -1
View File
@@ -2795,7 +2795,7 @@ test "std.zon negative char" {
}
test "std.zon parse float" {
if (builtin.cpu.arch == .x86 and builtin.abi == .musl and builtin.link_mode == .dynamic) return error.SkipZigTest;
if (builtin.cpu.arch == .x86) return error.SkipZigTest;
const gpa = std.testing.allocator;