php-src/ext/intl/tests/bug62081.phpt

17 lines
452 B
Plaintext
Raw Normal View History

--TEST--
Bug #62081: IntlDateFormatter leaks memory if called twice
2012-06-03 22:02:35 +00:00
--INI--
date.timezone=Atlantic/Azores
--SKIPIF--
<?php
if (!extension_loaded('intl'))
die('skip intl extension not enabled');
--FILE--
<?php
ini_set('intl.error_level', E_WARNING);
2012-06-03 22:02:35 +00:00
$x = new IntlDateFormatter('en', 1, 1);
var_dump($x->__construct('en', 1, 1));
--EXPECTF--
Warning: IntlDateFormatter::__construct(): datefmt_create: cannot call constructor twice in %s on line %d
NULL