aboutsummaryrefslogtreecommitdiff
path: root/std
diff options
context:
space:
mode:
Diffstat (limited to 'std')
-rw-r--r--std/event/tcp.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/std/event/tcp.zig b/std/event/tcp.zig
index 5151ecf934..27eab9f0bb 100644
--- a/std/event/tcp.zig
+++ b/std/event/tcp.zig
@@ -125,7 +125,7 @@ pub async fn connect(loop: *Loop, _address: *const std.net.Address) !std.os.File
test "listen on a port, send bytes, receive bytes" {
if (builtin.os != builtin.Os.linux) {
// TODO build abstractions for other operating systems
- return;
+ return error.skip;
}
const MyServer = struct {
tcp_server: Server,