diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2022-07-09 17:35:14 -0700 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2022-07-09 17:35:14 -0700 |
| commit | f9bf4889264aee387639bb8a35fdf594236b1283 (patch) | |
| tree | bde1a63069820223ca014b40d701f4e5a597ec20 /lib/std/math.zig | |
| parent | 31281a7d14a843f25156a731dd2108a7018680ad (diff) | |
| download | zig-f9bf4889264aee387639bb8a35fdf594236b1283.tar.gz zig-f9bf4889264aee387639bb8a35fdf594236b1283.zip | |
two more regressed test cases; same cause as last two commits
Diffstat (limited to 'lib/std/math.zig')
| -rw-r--r-- | lib/std/math.zig | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/lib/std/math.zig b/lib/std/math.zig index c249ae04e8..0487ef2d3c 100644 --- a/lib/std/math.zig +++ b/lib/std/math.zig @@ -1647,13 +1647,7 @@ fn testSign() !void { } test "sign" { - if ((builtin.zig_backend == .stage1 or builtin.zig_backend == .stage2_llvm) and - builtin.cpu.arch == .aarch64) - { - // https://github.com/ziglang/zig/issues/12012 - return error.SkipZigTest; - } - if ((builtin.zig_backend == .stage1) and builtin.cpu.arch == .x86_64) { + if (builtin.zig_backend == .stage1 or builtin.zig_backend == .stage2_llvm) { // https://github.com/ziglang/zig/issues/12012 return error.SkipZigTest; } |
