diff options
author | Anatoliy Belsky <ab@php.net> | 2012-04-10 11:54:22 (GMT) |
---|---|---|
committer | Anatoliy Belsky <ab@php.net> | 2012-04-10 11:54:22 (GMT) |
commit | 15e26c6d4a9431d40d65d50611794cb930c88b58 (patch) | |
tree | 1e4e786846f257ae946159592a620b9e3c10fe14 | |
parent | af8646c188b39f811184f79c8011239e8b8a57f3 (diff) | |
download | php-15e26c6d4a9431d40d65d50611794cb930c88b58.tar.gz |
Fixed bug #61637 ext\sockets\tests\socket_sentto_recvfrom_unix.phpt
-rw-r--r-- | ext/sockets/tests/socket_sentto_recvfrom_unix.phpt | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ext/sockets/tests/socket_sentto_recvfrom_unix.phpt b/ext/sockets/tests/socket_sentto_recvfrom_unix.phpt index ab11189..4cfdebb 100644 --- a/ext/sockets/tests/socket_sentto_recvfrom_unix.phpt +++ b/ext/sockets/tests/socket_sentto_recvfrom_unix.phpt @@ -2,6 +2,9 @@ Test if socket_recvfrom() receives data sent by socket_sendto() through a Unix domain socket --SKIPIF-- <?php +if (substr(PHP_OS, 0, 3) == 'WIN') { + die('skip.. Not valid for Windows'); +} if (!extension_loaded('sockets')) { die('SKIP The sockets extension is not loaded.'); } |