mirror of
https://codeberg.org/ziglang/zig.git
synced 2026-04-27 19:09:47 +03:00
std: move child process APIs to std.Io
this gets the build runner compiling again on linux this work is incomplete; it only moves code around so that environment variables can be wrangled properly. a future commit will need to audit the cancelation and error handling of this moved logic.
This commit is contained in:
+1
-1
@@ -2718,7 +2718,7 @@ pub fn addIncrementalTests(b: *std.Build, test_step: *Step, test_filters: []cons
|
||||
if (b.enable_wasmtime) run.addArg("-fwasmtime");
|
||||
if (b.enable_darling) run.addArg("-fdarling");
|
||||
|
||||
run.addCheck(.{ .expect_term = .{ .Exited = 0 } });
|
||||
run.addCheck(.{ .expect_term = .{ .exited = 0 } });
|
||||
|
||||
test_step.dependOn(&run.step);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user