authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2023-08-25 14:12:08-07:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2023-09-19 09:37:53-07:00
log2145cc0dd1f5ab651c65aeafcb2e258051ed1daa
tree74552ec70929f5507ae206a75e75c2e5b0e16e16
parent3dfa0c8df165849246c6938fd61a1d9605f8ddeb

disable failing test: standalone.c_compiler on aarch64-windows

Regressed by LLVM 17 Tracked by #16965

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

test/standalone/c_compiler/build.zig+5
...@@ -5,6 +5,11 @@ pub fn build(b: *std.Build) void {...@@ -5,6 +5,11 @@ pub fn build(b: *std.Build) void {
5 const test_step = b.step("test", "Test it");5 const test_step = b.step("test", "Test it");
6 b.default_step = test_step;6 b.default_step = test_step;
77
8 if (builtin.os.tag == .windows and builtin.cpu.arch == .aarch64) {
9 // https://github.com/ziglang/zig/issues/16965
10 return;
11 }
12
8 add(b, test_step, "test_c_Debug", "test_cpp_Debug", .Debug);13 add(b, test_step, "test_c_Debug", "test_cpp_Debug", .Debug);
9 add(b, test_step, "test_c_ReleaseFast", "test_cpp_ReleaseFast", .ReleaseFast);14 add(b, test_step, "test_c_ReleaseFast", "test_cpp_ReleaseFast", .ReleaseFast);
10 add(b, test_step, "test_c_ReleaseSmall", "test_cpp_ReleaseSmall", .ReleaseSmall);15 add(b, test_step, "test_c_ReleaseSmall", "test_cpp_ReleaseSmall", .ReleaseSmall);