summaryrefslogtreecommitdiff
path: root/ext/standard/tests/math/cos_basiclong_64bit.phpt
blob: c9f041783b7daa1d2925f39d4e7681ca360ff907 (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 cos 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(cos($longVal));
}
   
?>
===DONE===
--EXPECT--
--- testing: 9223372036854775807 ---
float(0.0118000765128)
--- testing: -9223372036854775808 ---
float(0.0118000765128)
--- testing: 2147483647 ---
float(-0.68883669187794)
--- testing: -2147483648 ---
float(0.2378161945728)
--- testing: 9223372034707292160 ---
float(-0.96843630065544)
--- testing: -9223372034707292160 ---
float(-0.96843630065544)
--- testing: 2147483648 ---
float(0.2378161945728)
--- testing: -2147483649 ---
float(0.94582196847889)
--- testing: 4294967294 ---
float(-0.051008023845301)
--- testing: 4294967295 ---
float(-0.8679353473572)
--- testing: 4294967293 ---
float(0.81281584155442)
--- testing: 9223372036854775806 ---
float(0.0118000765128)
--- testing: 9.2233720368548E+18 ---
float(0.0118000765128)
--- testing: -9223372036854775807 ---
float(0.0118000765128)
--- testing: -9.2233720368548E+18 ---
float(0.0118000765128)
===DONE===