summaryrefslogtreecommitdiff
path: root/ext/bcmath/tests/bug72093.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/bcmath/tests/bug72093.phpt')
-rw-r--r--ext/bcmath/tests/bug72093.phpt13
1 files changed, 13 insertions, 0 deletions
diff --git a/ext/bcmath/tests/bug72093.phpt b/ext/bcmath/tests/bug72093.phpt
new file mode 100644
index 0000000000..be664b8114
--- /dev/null
+++ b/ext/bcmath/tests/bug72093.phpt
@@ -0,0 +1,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"