summaryrefslogtreecommitdiff
path: root/ext/bcmath/tests
diff options
context:
space:
mode:
authorChristoph M. Becker <cmbecker69@gmx.de>2017-09-11 23:51:19 +0200
committerChristoph M. Becker <cmbecker69@gmx.de>2017-09-11 23:52:14 +0200
commit77f3cef35ced72f4aa873427ec053763ed3f3771 (patch)
treeb7c274013b7aa5fa68c8c8315bfe8e5e4df06ad9 /ext/bcmath/tests
parent613bac9eb36d9aae6a7d91bd3852865f44106d12 (diff)
parent87a91aef835c2c361e93b4352636f0dcb3275ac9 (diff)
downloadphp-git-77f3cef35ced72f4aa873427ec053763ed3f3771.tar.gz
Merge branch 'PHP-7.1' into PHP-7.2
* PHP-7.1: Fixed bug #46781 (BC math handles minus zero incorrectly)
Diffstat (limited to 'ext/bcmath/tests')
-rw-r--r--ext/bcmath/tests/bug46781.phpt16
1 files changed, 16 insertions, 0 deletions
diff --git a/ext/bcmath/tests/bug46781.phpt b/ext/bcmath/tests/bug46781.phpt
new file mode 100644
index 0000000000..caffe83860
--- /dev/null
+++ b/ext/bcmath/tests/bug46781.phpt
@@ -0,0 +1,16 @@
+--TEST--
+Bug #46781 (BC math handles minus zero incorrectly)
+--SKIPIF--
+<?php
+if (!extension_loaded('bcmath')) die('skip bcmath extension is not available');
+?>
+--FILE--
+<?php
+var_dump(bcadd('-0.0', '-0.0', 1));
+var_dump(bccomp('-0.0', '0', 1));
+?>
+===DONE===
+--EXPECT--
+string(3) "0.0"
+int(0)
+===DONE===