aboutsummaryrefslogtreecommitdiff
path: root/src-self-hosted/test.zig
diff options
context:
space:
mode:
authorAndrew Kelley <superjoe30@gmail.com>2018-08-10 13:19:07 -0400
committerAndrew Kelley <superjoe30@gmail.com>2018-08-10 13:19:07 -0400
commit598e80957e6eccc13ade72ce2693dcd60934763d (patch)
tree7a98fc680877bbdf00c9431fd3f2cd922a1ce8b0 /src-self-hosted/test.zig
parent0df485d4dc764afc582b8ab684106b71d765d74f (diff)
downloadzig-598e80957e6eccc13ade72ce2693dcd60934763d.tar.gz
zig-598e80957e6eccc13ade72ce2693dcd60934763d.zip
windows: call CancelIo when canceling an fs watch
Diffstat (limited to 'src-self-hosted/test.zig')
-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 572215e489..3582bbcf81 100644
--- a/src-self-hosted/test.zig
+++ b/src-self-hosted/test.zig
@@ -43,7 +43,7 @@ pub const TestContext = struct {
.file_index = std.atomic.Int(usize).init(0),
};
- try self.loop.initMultiThreaded(allocator);
+ try self.loop.initSingleThreaded(allocator);
errdefer self.loop.deinit();
self.zig_compiler = try ZigCompiler.init(&self.loop);