authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2023-03-14 20:24:46-07:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2023-03-15 10:48:15-07:00
log1a70ea0576ce9bbdfb02f4cbd8eb42efb099d71c
treecf7b92e6e9ea44e04ed47e39e7e2a78dc7c047f4
parenta1058dd27bd32fed2fba14732b8a6c7009fd1116

windows_spawn standalone test: test on native OS

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 {
66 b.default_step = test_step;
77
88 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;
1312
1413 const hello = b.addExecutable(.{
1514 .name = "hello",