summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntony Dovgal <tony2001@php.net>2007-04-10 21:20:33 +0000
committerAntony Dovgal <tony2001@php.net>2007-04-10 21:20:33 +0000
commit5c2b931d6f1ff327b059a0a4d535e15f269da0f2 (patch)
tree723bfb7c30eeffc8f769e56312914cf0b6e6e525
parentc301d0fb428eae1f0a01d7793189df087e2b5af9 (diff)
downloadphp-git-5c2b931d6f1ff327b059a0a4d535e15f269da0f2.tar.gz
skip this test on MacOS
-rw-r--r--ext/standard/tests/network/inet_ipv6.phpt1
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/standard/tests/network/inet_ipv6.phpt b/ext/standard/tests/network/inet_ipv6.phpt
index bd5944da7a..125bd15fb3 100644
--- a/ext/standard/tests/network/inet_ipv6.phpt
+++ b/ext/standard/tests/network/inet_ipv6.phpt
@@ -9,6 +9,7 @@ $packed = str_repeat(chr(0), 15) . chr(1);
if (@inet_ntop((binary)$packed) === false) {
die("skip no IPv6 support");
}
+if (stristr(PHP_OS, "darwin") !== false) die("skip MacOS has broken inet_*() funcs");
?>
--FILE--
<?php