mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-06 05:44:20 +00:00
std: disable test on LLVM (#24191)
This commit is contained in:
parent
d90068db5a
commit
e498d8da3c
1 changed files with 1 additions and 0 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue