Commit:    bbab846adaa268cbce7c809f3d471177991877a9
Author:    Anatoliy Belsky <a...@php.net>         Tue, 10 Apr 2012 13:54:22 
+0200
Parents:   70f2f30e67536b388817a4a3a88409f9eef24f94
Branches:  PHP-5.4 master

Link:       
http://git.php.net/?p=php-src.git;a=commitdiff;h=bbab846adaa268cbce7c809f3d471177991877a9

Log:
Fixed bug #61637 ext\sockets\tests\socket_sentto_recvfrom_unix.phpt

Bugs:
https://bugs.php.net/61637

Changed paths:
  M  ext/sockets/tests/socket_sentto_recvfrom_unix.phpt


Diff:
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.');
 }


--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to