mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-06 13:54:21 +00:00
std: Disable std.zon parse float on dynamic x86-linux-musl
https://github.com/ziglang/zig/issues/23922#issuecomment-3054296672
This commit is contained in:
parent
7c709f920b
commit
820f1a23a5
1 changed files with 2 additions and 0 deletions
|
|
@ -2759,6 +2759,8 @@ test "std.zon negative char" {
|
||||||
}
|
}
|
||||||
|
|
||||||
test "std.zon parse float" {
|
test "std.zon parse float" {
|
||||||
|
if (builtin.cpu.arch == .x86 and builtin.abi == .musl and builtin.link_mode == .dynamic) return error.SkipZigTest;
|
||||||
|
|
||||||
const gpa = std.testing.allocator;
|
const gpa = std.testing.allocator;
|
||||||
|
|
||||||
// Test decimals
|
// Test decimals
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue