Merge branch 'PHP-5.4'

* PHP-5.4:
  fix test
  fix test
This commit is contained in:
Stanislav Malyshev 2012-05-29 23:53:01 -07:00
commit ec2029a894
2 changed files with 2 additions and 2 deletions

View file

@ -1,7 +1,7 @@
--TEST-- --TEST--
Bug #62097: fix for bug #54547 is wrong for 32-bit machines Bug #62097: fix for bug #54547 is wrong for 32-bit machines
--SKIPIF-- --SKIPIF--
<php <?php
if (PHP_INT_MAX !== 2147483647) if (PHP_INT_MAX !== 2147483647)
die('skip for system with 32-bit wide longs only'); die('skip for system with 32-bit wide longs only');
--FILE-- --FILE--

View file

@ -15,7 +15,7 @@ $value = $formatter->parse('2147483650', \NumberFormatter::TYPE_INT64);
var_dump($value); var_dump($value);
?> ?>
--EXPECTREGEX-- --EXPECT--
int(2147483647) int(2147483647)
int(2147483650) int(2147483650)