aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2020-05-02 01:54:36 -0400
committerAndrew Kelley <andrew@ziglang.org>2020-05-02 01:54:36 -0400
commit92f3e9c92acd6cba98a8a8f46341d138f89aae53 (patch)
tree401dbf1f1c4214e04dd1b788a4c9bd1db7b4f287
parentbeebcbb677350b86c9f36a850a8b8853b7a71769 (diff)
downloadzig-92f3e9c92acd6cba98a8a8f46341d138f89aae53.tar.gz
zig-92f3e9c92acd6cba98a8a8f46341d138f89aae53.zip
remove last use of share_with_child_process
-rw-r--r--src-self-hosted/test.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/src-self-hosted/test.zig b/src-self-hosted/test.zig
index 5868f9383d..8186f1f4d8 100644
--- a/src-self-hosted/test.zig
+++ b/src-self-hosted/test.zig
@@ -96,7 +96,7 @@ pub const TestContext = struct {
case: ZIRCompareOutputCase,
target: std.Target,
) !void {
- var tmp = std.testing.tmpDir(.{ .share_with_child_process = true });
+ var tmp = std.testing.tmpDir(.{});
defer tmp.cleanup();
var prg_node = root_node.start(case.name, 4);