summaryrefslogtreecommitdiff
path: root/ext/bcmath/tests/bug72093.phpt
blob: be664b81148b9cb6cd8cb1123d2588aba1f7677d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
--TEST--
Bug 72093: bcpowmod accepts negative scale and corrupts _one_ definition
--SKIPIF--
<?php if(!extension_loaded("bcmath")) print "skip"; ?>
--FILE--
<?php
var_dump(bcpowmod(1, "A", 128, -200));
var_dump(bcpowmod(1, 1.2, 1, 1));
?>
--EXPECTF--
string(1) "1"
bc math warning: non-zero scale in exponent
string(3) "0.0"