authorgravatar for kubkon@jakubkonka.comJakub Konka <kubkon@jakubkonka.com> 2022-11-28 19:50:06+01:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2022-11-28 18:10:51-05:00
log870872dd630d8846d524ceae4fc7fd04bb1b65b1
tree5cd17f75f6b6764f23ab73fb80a6780cd6351c9a
parent07bf4de6a914d54720e5486b8e65c5d85943e775

aarch64-windows: skip failing floatop behavior test


1 files changed, 4 insertions(+), 0 deletions(-)

test/behavior/floatop.zig+4
......@@ -420,6 +420,10 @@ test "@log2 with vectors" {
420420 if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest; // TODO
421421 if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest; // TODO
422422 if (builtin.zig_backend == .stage2_c) return error.SkipZigTest; // TODO
423 // https://github.com/ziglang/zig/issues/13681
424 if (builtin.zig_backend == .stage2_llvm and
425 builtin.cpu.arch == .aarch64 and
426 builtin.os.tag == .windows) return error.SkipZigTest;
423427
424428 comptime try testLog2WithVectors();
425429 try testLog2WithVectors();