diff --git a/vlib/net/unix/unix_test.v b/vlib/net/unix/unix_test.v index ec222e61b5..2b5ffce6c6 100644 --- a/vlib/net/unix/unix_test.v +++ b/vlib/net/unix/unix_test.v @@ -1,6 +1,15 @@ +import os import net.unix -const test_port = 'unix_domain_socket' +const test_port = os.join_path(os.temp_dir(), 'unix_domain_socket') + +fn testsuite_begin() { + os.rm(test_port) or { } +} + +fn testsuite_end() { + os.rm(test_port) or { } +} fn handle_conn(mut c unix.StreamConn) { for {