We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 6c5560b + 867a137 commit 624ef62Copy full SHA for 624ef62
tests/TcpConnectorTest.php
@@ -65,7 +65,12 @@ public function connectionToIp6TcpServerShouldSucceed()
65
$server = new Server($loop);
66
$server->on('connection', $this->expectCallableOnce());
67
$server->on('connection', array($server, 'shutdown'));
68
- $server->listen(9999, '::1');
+
69
+ try {
70
+ $server->listen(9999, '::1');
71
+ } catch (\Exception $e) {
72
+ $this->markTestSkipped('Unable to start IPv6 server socket (IPv6 not supported on this system?)');
73
+ }
74
75
$connector = new TcpConnector($loop);
76
0 commit comments