| author | |
| committer | |
| log | 1a70ea0576ce9bbdfb02f4cbd8eb42efb099d71c |
| tree | cf7b92e6e9ea44e04ed47e39e7e2a78dc7c047f4 |
| parent | a1058dd27bd32fed2fba14732b8a6c7009fd1116 |
In master branch this test tests native Windows. In this branch, I
accidentally made aarch64-windows test x86_64-windows which caused some
subtle behavior that we aren't ready to add test coverage for yet.1 files changed, 3 insertions(+), 4 deletions(-)
test/standalone/windows_spawn/build.zig+3-4| ... | ... | @@ -6,10 +6,9 @@ pub fn build(b: *std.Build) void { |
| 6 | 6 | b.default_step = test_step; |
| 7 | 7 | |
| 8 | 8 | const optimize: std.builtin.OptimizeMode = .Debug; |
| 9 | const target: std.zig.CrossTarget = .{ | |
| 10 | .os_tag = .windows, | |
| 11 | .cpu_arch = .x86_64, | |
| 12 | }; | |
| 9 | const target: std.zig.CrossTarget = .{}; | |
| 10 | ||
| 11 | if (builtin.os.tag != .windows) return; | |
| 13 | 12 | |
| 14 | 13 | const hello = b.addExecutable(.{ |
| 15 | 14 | .name = "hello", |