summaryrefslogtreecommitdiff
path: root/ext/intl
diff options
context:
space:
mode:
authorStanislav Malyshev <stas@php.net>2014-07-07 09:33:05 -0700
committerStanislav Malyshev <stas@php.net>2014-07-07 09:33:05 -0700
commit31b395ac688d4d68de38c4efbc3c00fa9245c4eb (patch)
treea9d94ae6aa76b862c5032edd68f4df403a09b6b8 /ext/intl
parent432bb7abe5effd0978b7c7e09e46630c1a6826d3 (diff)
parent0e1599afe0c6aa89c725f31a88d484c901f16359 (diff)
downloadphp-git-31b395ac688d4d68de38c4efbc3c00fa9245c4eb.tar.gz
Merge branch 'PHP-5.5' into PHP-5.6
* PHP-5.5: rm test for now
Diffstat (limited to 'ext/intl')
-rw-r--r--ext/intl/tests/bug67052.phpt25
1 files changed, 0 insertions, 25 deletions
diff --git a/ext/intl/tests/bug67052.phpt b/ext/intl/tests/bug67052.phpt
deleted file mode 100644
index f3245f8398..0000000000
--- a/ext/intl/tests/bug67052.phpt
+++ /dev/null
@@ -1,25 +0,0 @@
---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