diff options
| author | Jakub Konka <kubkon@jakubkonka.com> | 2022-12-02 11:07:35 +0100 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2022-12-10 16:00:59 -0700 |
| commit | c029a98f1c601f4ff1369b49a4402d5c94fbb168 (patch) | |
| tree | 0d503495a8acc711ccd299a65f26b88837c319e0 | |
| parent | cf543199cad033b9739ce1b623d95fd30c973791 (diff) | |
| download | zig-c029a98f1c601f4ff1369b49a4402d5c94fbb168.tar.gz zig-c029a98f1c601f4ff1369b49a4402d5c94fbb168.zip | |
compiler_c test: skip build modes on aarch64-windows
| -rw-r--r-- | test/standalone.zig | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/standalone.zig b/test/standalone.zig index aadcdbeb93..de8a0962a7 100644 --- 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, }); |
