commit c029a98f1c601f4ff1369b49a4402d5c94fbb168 (tree) parent cf543199cad033b9739ce1b623d95fd30c973791 Author: Jakub Konka <kubkon@jakubkonka.com> Date: Fri, 2 Dec 2022 11:07:35 +0100 compiler_c test: skip build modes on aarch64-windows Diffstat:
| M | test/standalone.zig | | | 3 | ++- |
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/test/standalone.zig b/test/standalone.zig @@ -65,7 +65,8 @@ pub fn addCases(cases: *tests.StandaloneContext) void { } cases.addBuildFile("test/standalone/c_compiler/build.zig", .{ - .build_modes = true, + // https://github.com/ziglang/zig/issues/13738 + .build_modes = !(builtin.os.tag == .windows and builtin.cpu.arch == .aarch64), .cross_targets = true, });