Merge branch 'PHP-5.6'

* PHP-5.6:
  abstract namespace for unix sockets is a linux only feature
This commit is contained in:
Ferenc Kovacs 2014-04-09 19:04:35 +02:00
commit 1b1dabcf60

View File

@ -3,6 +3,7 @@ Bug #64330 (stream_socket_server() creates wrong Abstract Namespace UNIX sockets
--SKIPIF--
<?php
if (!in_array("unix", stream_get_transports())) die("SKIP unix domain sockets unavailable");
if (!stristr(PHP_OS, "Linux")) die('skip abstract namespace is a Linux-only feature');
?>
--FILE--
<?php