| Patch 61638.diff for Sockets related Bug #61638Patch version 2012-04-05 14:41 UTCReturn to Bug #61638 |
Download this patch Patch Revisions:
 Developer: ab@php.net
diff --git a/ext/sockets/tests/unixloop.phpt b/ext/sockets/tests/unixloop.phpt
index 1b547c3..4a19444 100644
--- a/ext/sockets/tests/unixloop.phpt
+++ b/ext/sockets/tests/unixloop.phpt
@@ -2,6 +2,9 @@
 Unix domain socket Loopback test
 --SKIPIF--
 <?php
+if (substr(PHP_OS, 0, 3) == 'WIN') {
+	die('skip.. Not valid for Windows');
+}
 	if (!extension_loaded('sockets')) {
 		die('skip sockets extension not available.');
 	}
 |