authorgravatar for kt@connectfree.co.jpkristopher tate <kt@connectfree.co.jp> 2018-07-22 02:21:52+09:00
committergravatar for kt@connectfree.co.jpkristopher tate <kt@connectfree.co.jp> 2018-07-22 02:21:52+09:00
logbc411af4ffb07fa0e8d713c300c2badd1116acff
tree2e7e3ef4fe2ccd48ab0ff8753deb81ae212ebd08
parentdf574ccf8655726dc204142e7bcfb36770426257

std.event.tcp: SKIP test instead of OKing test;

tracking issue #1274 ;

1 files changed, 1 insertions(+), 1 deletions(-)

std/event/tcp.zig+1-1
......@@ -125,7 +125,7 @@ pub async fn connect(loop: *Loop, _address: *const std.net.Address) !std.os.File
125125test "listen on a port, send bytes, receive bytes" {
126126 if (builtin.os != builtin.Os.linux) {
127127 // TODO build abstractions for other operating systems
128 return;
128 return error.skip;
129129 }
130130 const MyServer = struct {
131131 tcp_server: Server,