Skip to content

Commit

Permalink
create locales and re-add test
Browse files Browse the repository at this point in the history
  • Loading branch information
smalyshev committed Jul 7, 2014
1 parent 0e1599a commit 5516963
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ notifications:
email:
on_failure: change

cache:
- apt

env:
global:
- MYSQL_TEST_HOST=127.0.0.1
Expand All @@ -21,6 +24,10 @@ env:
- ENABLE_MAINTAINER_ZTS=0 ENABLE_DEBUG=0
- ENABLE_MAINTAINER_ZTS=1 ENABLE_DEBUG=1

before_install:
- sudo cp ./travis/de /var/lib/locales/supported.d/de
- sudo dpkg-reconfigure locales

before_script:
# Compile PHP
- ./travis/compile.sh
Expand Down
25 changes: 25 additions & 0 deletions ext/intl/tests/bug67052.phpt
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
--TEST--
Bug #67052 - NumberFormatter::parse() resets LC_NUMERIC setting
--SKIPIF--
<?php if( !extension_loaded( 'intl' ) ) print 'skip'; ?>
--FILE--
<?php

function ut_main()
{
setlocale(LC_ALL, 'de_DE');
$fmt = new NumberFormatter( 'sl_SI.UTF-8', NumberFormatter::DECIMAL);
$num = "1.234.567,891";
$res_str = $fmt->parse($num)."\n";
$res_str .= setlocale(LC_NUMERIC, 0);
return $res_str;
}

include_once( 'ut_common.inc' );
ut_run();

?>
--EXPECT--
1234567,891
de_DE

2 changes: 2 additions & 0 deletions travis/de
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
de_DE.UTF-8 UTF-8
de_DE ISO-8859-1

0 comments on commit 5516963

Please sign in to comment.