mirror of
https://github.com/php/php-src.git
synced 2025-08-20 09:24:05 +02:00
Merge branch 'PHP-7.1' into PHP-7.2
* PHP-7.1: Fix bug75178.phpt on Windows
This commit is contained in:
commit
20fe838c76
2 changed files with 24 additions and 0 deletions
21
ext/bcmath/tests/bug75178-win32.phpt
Normal file
21
ext/bcmath/tests/bug75178-win32.phpt
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
--TEST--
|
||||||
|
Bug #75178 (bcpowmod() misbehaves for non-integer base or modulus)
|
||||||
|
--SKIPIF--
|
||||||
|
<?php
|
||||||
|
if (!extension_loaded('bcmath')) die('skip bcmath extension is not available');
|
||||||
|
if (substr(PHP_OS, 0, 3) != 'WIN') {
|
||||||
|
die('skip valid only for windows');
|
||||||
|
}
|
||||||
|
?>
|
||||||
|
--FILE--
|
||||||
|
<?php
|
||||||
|
var_dump(bcpowmod('4.1', '4', '3', 3));
|
||||||
|
var_dump(bcpowmod('4', '4', '3.1', 3));
|
||||||
|
?>
|
||||||
|
===DONE===
|
||||||
|
--EXPECT--
|
||||||
|
string(5) "1.000"
|
||||||
|
string(5) "1.000"
|
||||||
|
===DONE===
|
||||||
|
bc math warning: non-zero scale in base
|
||||||
|
bc math warning: non-zero scale in modulus
|
|
@ -3,6 +3,9 @@ Bug #75178 (bcpowmod() misbehaves for non-integer base or modulus)
|
||||||
--SKIPIF--
|
--SKIPIF--
|
||||||
<?php
|
<?php
|
||||||
if (!extension_loaded('bcmath')) die('skip bcmath extension is not available');
|
if (!extension_loaded('bcmath')) die('skip bcmath extension is not available');
|
||||||
|
if (substr(PHP_OS, 0, 3) == 'WIN') {
|
||||||
|
die('skip Not valid for windows');
|
||||||
|
}
|
||||||
?>
|
?>
|
||||||
--FILE--
|
--FILE--
|
||||||
<?php
|
<?php
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue