diff options
author | David Coallier <davidc@php.net> | 2008-03-08 18:50:14 +0000 |
---|---|---|
committer | David Coallier <davidc@php.net> | 2008-03-08 18:50:14 +0000 |
commit | e506d59a0ed4bc45a83dedee7d00725a55d4806f (patch) | |
tree | dc7bb8a4511c6bde84be97781f68bc02965e9564 | |
parent | 64aad3d2101bd4713ae0fd7c1fafd2700aba6d9a (diff) | |
download | php-git-e506d59a0ed4bc45a83dedee7d00725a55d4806f.tar.gz |
- Ok to fail on OSX, adjusted bug, patch from scoates
-rw-r--r-- | tests/lang/bug30638.phpt | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/lang/bug30638.phpt b/tests/lang/bug30638.phpt index 0ebe8d49dd..101ce934eb 100644 --- a/tests/lang/bug30638.phpt +++ b/tests/lang/bug30638.phpt @@ -4,6 +4,8 @@ Bug #30638 (localeconv returns wrong LC_NUMERIC settings) (ok to fail on MacOS X <?php # try to activate a german locale if (setlocale(LC_NUMERIC, "de_DE", "de", "german", "ge") === FALSE) { print "skip setlocale() failed"; +} elseif (strtolower(php_uname('s')) == 'darwin') { + print "skip ok to fail on MacOS X"; } ?> --FILE-- |