Merge branch 'PHP-5.6'

* PHP-5.6:
  fix tests for systems with no de_DE locales
This commit is contained in:
Stanislav Malyshev 2014-11-30 16:13:14 -08:00
commit fff70770dd

View File

@ -6,6 +6,11 @@ Bug #67052 - NumberFormatter::parse() resets LC_NUMERIC setting
if (substr(PHP_OS, 0, 3) == 'WIN') {
die("skip Valid only on non Windows");
}
$l = setlocale(LC_ALL, 'de_DE');
if($l === false) {
die("skip de_DE locale not installed");
}
setlocale(LC_ALL, $l);
?>
--FILE--
<?php