php-src/ext/bcmath/tests/bug72093.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

21 lines
491 B
PHP

--TEST--
Bug 72093: bcpowmod fails on negative scale and corrupts _one_ definition
--EXTENSIONS--
bcmath
--FILE--
<?php
try {
var_dump(bcpowmod(1, 0, 128, -200));
} catch (\ValueError $e) {
echo $e->getMessage() . \PHP_EOL;
}
try {
var_dump(bcpowmod(1, 1.2, 1, 1));
} catch (\ValueError $e) {
echo $e->getMessage() . \PHP_EOL;
}
?>
--EXPECT--
bcpowmod(): Argument #4 ($scale) must be between 0 and 2147483647
bcpowmod(): Argument #2 ($exponent) cannot have a fractional part