summaryrefslogtreecommitdiff
path: root/ext/standard/tests/math/tan_basiclong_64bit.phpt
blob: bdc97b07323b1e88804f2ad2a8eb1840a87a69b6 (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
61
62
63
--TEST--
Test tan function : 64bit long tests
--INI--
precision=5
--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(tan($longVal));
}

?>
===DONE===
--EXPECT--
--- testing: 9223372036854775807 ---
float(84.739)
--- testing: -9223372036854775808 ---
float(-84.739)
--- testing: 2147483647 ---
float(1.0524)
--- testing: -2147483648 ---
float(4.0843)
--- testing: 9223372034707292160 ---
float(-0.25739)
--- testing: -9223372034707292160 ---
float(0.25739)
--- testing: 2147483648 ---
float(-4.0843)
--- testing: -2147483649 ---
float(0.34328)
--- testing: 4294967294 ---
float(-19.579)
--- testing: 4294967295 ---
float(-0.57225)
--- testing: 4294967293 ---
float(0.71667)
--- testing: 9223372036854775806 ---
float(84.739)
--- testing: 9.2234E+18 ---
float(84.739)
--- testing: -9223372036854775807 ---
float(-84.739)
--- testing: -9.2234E+18 ---
float(-84.739)
===DONE===