Skip to content

Commit

Permalink
Merge branch 'master' of git.php.net:php-src
Browse files Browse the repository at this point in the history
* 'master' of git.php.net:php-src:
  Two tests deactivated until #63688 was fixed
  • Loading branch information
dstogov committed Dec 5, 2012
2 parents 77a9b9a + 9e50c54 commit 4facafd
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tests/lang/034.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ Bug #12647 (Locale settings affecting float parsing)
precision=14
--SKIPIF--
<?php # try to activate a german locale
if (substr(PHP_OS, 0, 3) == 'WIN') {
/* skip on windows until #63688 was fixed */
die('skip');
}
if (setlocale(LC_NUMERIC, "de_DE.UTF-8", "de_DE", "de", "german", "ge", "de_DE.ISO-8859-1") === FALSE) {
print "skip Can't find german locale";
}
Expand Down
4 changes: 4 additions & 0 deletions tests/lang/bug30638.phpt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@
Bug #30638 (localeconv returns wrong LC_NUMERIC settings) (ok to fail on MacOS X)
--SKIPIF--
<?php # try to activate a german locale
if (substr(PHP_OS, 0, 3) == 'WIN') {
/* skip on windows until #63688 was fixed */
die('skip');
}
if (setlocale(LC_NUMERIC, "de_DE.UTF-8", "de_DE", "de", "german", "ge", "de_DE.ISO-8859-1") === FALSE) {
print "skip setlocale() failed";
} elseif (strtolower(php_uname('s')) == 'darwin') {
Expand Down

0 comments on commit 4facafd

Please sign in to comment.