From 92f3e9c92acd6cba98a8a8f46341d138f89aae53 Mon Sep 17 00:00:00 2001 From: Andrew Kelley Date: Sat, 2 May 2020 01:54:36 -0400 Subject: [PATCH] remove last use of share_with_child_process --- src-self-hosted/test.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);