summaryrefslogtreecommitdiff
path: root/ext/standard/tests/math/log_basiclong_64bit.phpt
blob: 5259899323d9570d928d41f13fd8c1f7ee4c10ff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
--TEST--
Test log function : 64bit long tests
--SKIPIF--
<?php
if (PHP_INT_SIZE != 8) die("skip this test is for 64bit platform only");
?>
--FILE--
<?php

define("MAX_64Bit", 9223372036854775807);
define("MAX_32Bit", 2147483647);
define("MIN_64Bit", -9223372036854775807 - 1);
define("MIN_32Bit", -2147483647 - 1);

$longVals = array(
    MAX_64Bit, MIN_64Bit, MAX_32Bit, MIN_32Bit, MAX_64Bit - MAX_32Bit, MIN_64Bit - MIN_32Bit,
    MAX_32Bit + 1, MIN_32Bit - 1, MAX_32Bit * 2, (MAX_32Bit * 2) + 1, (MAX_32Bit * 2) - 1,
    MAX_64Bit -1, MAX_64Bit + 1, MIN_64Bit + 1, MIN_64Bit - 1
);


foreach ($longVals as $longVal) {
   echo "--- testing: $longVal ---\n";
   var_dump(log($longVal));
}

?>
===DONE===
--EXPECT--
--- testing: 9223372036854775807 ---
float(43.668272375277)
--- testing: -9223372036854775808 ---
float(NAN)
--- testing: 2147483647 ---
float(21.487562596893)
--- testing: -2147483648 ---
float(NAN)
--- testing: 9223372034707292160 ---
float(43.668272375044)
--- testing: -9223372034707292160 ---
float(NAN)
--- testing: 2147483648 ---
float(21.487562597358)
--- testing: -2147483649 ---
float(NAN)
--- testing: 4294967294 ---
float(22.180709777453)
--- testing: 4294967295 ---
float(22.180709777685)
--- testing: 4294967293 ---
float(22.18070977722)
--- testing: 9223372036854775806 ---
float(43.668272375277)
--- testing: 9.2233720368548E+18 ---
float(43.668272375277)
--- testing: -9223372036854775807 ---
float(NAN)
--- testing: -9.2233720368548E+18 ---
float(NAN)
===DONE===