diff --git a/vlib/net/udp_test.v b/vlib/net/udp_test.v index 4dd5dc8dc7..100cf3d6c7 100644 --- a/vlib/net/udp_test.v +++ b/vlib/net/udp_test.v @@ -1,13 +1,5 @@ import net -fn testsuite_begin() { - $if windows { - $if !network ? { - exit(0) - } - } -} - fn echo_server(mut c net.UdpConn) { for { mut buf := []byte{len: 100, init: 0} @@ -64,3 +56,7 @@ fn test_udp() { l.close() or { } } + +fn main() { + test_udp() +}