about summary refs log tree commit homepage
path: root/t/common.perl
diff options
context:
space:
mode:
Diffstat (limited to 't/common.perl')
-rw-r--r--t/common.perl7
1 files changed, 5 insertions, 2 deletions
diff --git a/t/common.perl b/t/common.perl
index 3f05b68a..91d65c5f 100644
--- a/t/common.perl
+++ b/t/common.perl
@@ -24,15 +24,18 @@ sub tcp_server () {
                 Proto => 'tcp',
                 Type => Socket::SOCK_STREAM(),
                 Listen => 1024,
+                Blocking => 0,
         )
 }
 
 sub unix_server ($) {
-        IO::Socket::UNIX->new(
+        my $s = IO::Socket::UNIX->new(
                 Listen => 1024,
                 Type => Socket::SOCK_STREAM(),
                 Local => $_[0],
-        )
+        );
+        $s->blocking(0);
+        $s;
 }
 
 sub spawn_listener {