php-src/ext/com_dotnet/tests/bug72498.phpt
Max Semenik 56f90492d6 Migrate skip checks to --EXTENSIONS--, p1
For rationale, see https://github.com/php/php-src/pull/6787

Extensions migrated in this part:
* bcmath
* bz2
* calendar
* com_dotnet
* ctype

Closes GH-6797.
2021-03-22 17:51:02 +01:00

18 lines
368 B
PHP

--TEST--
Bug #72498 variant_date_from_timestamp null dereference
--EXTENSIONS--
com_dotnet
--FILE--
<?php
$v1 = PHP_INT_MAX;
try {
var_dump(variant_date_from_timestamp($v1));
} catch (\ValueError $e) {
echo $e->getMessage() . \PHP_EOL;
}
?>
--EXPECT--
variant_date_from_timestamp(): Argument #1 ($timestamp) must not go past 23:59:59, December 31, 3000, UTC