We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2b556e0 commit 9390d06Copy full SHA for 9390d06
S32-io/IO-Socket-INET-UNIX.t
@@ -6,10 +6,12 @@ plan 8;
6
if $*DISTRO.is-win {
7
skip-rest 'UNIX socket support on Windows NYI';
8
} else {
9
+ chdir $*TMPDIR;
10
+
11
my IO::Socket::INET:_ $server;
12
my IO::Socket::INET:_ $client;
13
my IO::Socket::INET:_ $accepted;
- my Str:D $host = $*TMPDIR.add("test-$*PID.sock").Str;
14
+ my Str:D $host = "./test-$*PID.sock";
15
my Str:D $sent = 'Hello, world!';
16
my Str:_ $received;
17
LEAVE $host.IO.unlink if $host.IO.e;
0 commit comments