diff options
| author | Jakub Konka <kubkon@jakubkonka.com> | 2022-11-28 19:50:06 +0100 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2022-11-28 18:10:51 -0500 |
| commit | 870872dd630d8846d524ceae4fc7fd04bb1b65b1 (patch) | |
| tree | 5cd17f75f6b6764f23ab73fb80a6780cd6351c9a /test/behavior/floatop.zig | |
| parent | 07bf4de6a914d54720e5486b8e65c5d85943e775 (diff) | |
| download | zig-870872dd630d8846d524ceae4fc7fd04bb1b65b1.tar.gz zig-870872dd630d8846d524ceae4fc7fd04bb1b65b1.zip | |
aarch64-windows: skip failing floatop behavior test
Diffstat (limited to 'test/behavior/floatop.zig')
| -rw-r--r-- | test/behavior/floatop.zig | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/behavior/floatop.zig b/test/behavior/floatop.zig index 2bad45bbeb..e8f997c988 100644 --- a/test/behavior/floatop.zig +++ b/test/behavior/floatop.zig @@ -420,6 +420,10 @@ test "@log2 with vectors" { if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest; // TODO if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest; // TODO if (builtin.zig_backend == .stage2_c) return error.SkipZigTest; // TODO + // https://github.com/ziglang/zig/issues/13681 + if (builtin.zig_backend == .stage2_llvm and + builtin.cpu.arch == .aarch64 and + builtin.os.tag == .windows) return error.SkipZigTest; comptime try testLog2WithVectors(); try testLog2WithVectors(); |
