Commit bc411af4ff

kristopher tate <kt@connectfree.co.jp>
2018-07-21 19:21:52
std.event.tcp: SKIP test instead of OKing test;
tracking issue #1274 ;
1 parent df574cc
Changed files (1)
std
event
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,