mirror of
https://github.com/php/php-src.git
synced 2024-11-25 19:05:31 +08:00
d32ac3efc8
Added date.timezone=Atlantic/Azores to all tests that were failing because of ext/date warning about a timezone not having been set.
38 lines
1.1 KiB
PHP
38 lines
1.1 KiB
PHP
--TEST--
|
|
IntlCalendar::setTime(): bad arguments
|
|
--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);
|
|
|
|
$c = new IntlGregorianCalendar(NULL, 'pt_PT');
|
|
|
|
var_dump($c->setTime(1, 2));
|
|
var_dump($c->setTime("jjj"));
|
|
|
|
var_dump(intlcal_set_time($c, 1, 2));
|
|
var_dump(intlcal_set_time(1));
|
|
--EXPECTF--
|
|
|
|
Warning: IntlCalendar::setTime() expects exactly 1 parameter, 2 given in %s on line %d
|
|
|
|
Warning: IntlCalendar::setTime(): intlcal_set_time: bad arguments in %s on line %d
|
|
bool(false)
|
|
|
|
Warning: IntlCalendar::setTime() expects parameter 1 to be double, string given in %s on line %d
|
|
|
|
Warning: IntlCalendar::setTime(): intlcal_set_time: bad arguments in %s on line %d
|
|
bool(false)
|
|
|
|
Warning: intlcal_set_time() expects exactly 2 parameters, 3 given in %s on line %d
|
|
|
|
Warning: intlcal_set_time(): intlcal_set_time: bad arguments in %s on line %d
|
|
bool(false)
|
|
|
|
Catchable fatal error: Argument 1 passed to intlcal_set_time() must be an instance of IntlCalendar, integer given in %s on line %d
|