Linux cpanel2.daytoncreative.net 2.6.32-754.29.2.el6.x86_64 #1 SMP Tue May 12 17:39:04 UTC 2020 x86_64
Apache/2.4.43 (cPanel) OpenSSL/1.1.1g mod_bwlimited/1.4
Server IP : 70.62.220.67 & Your IP : 216.73.216.193
Domains :
Cant Read [ /etc/named.conf ]
User : michaelgreg
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
log /
perl-5.20.2 /
ext /
POSIX /
t /
Delete
Unzip
Name
Size
Permission
Date
Action
export.t
6.17
KB
-r--r--r--
2014-12-27 11:49
is.t
3.79
KB
-r--r--r--
2014-12-27 11:49
math.t
1.96
KB
-r--r--r--
2014-12-27 11:49
posix.t
13.02
KB
-r--r--r--
2014-12-27 11:49
sigaction.t
5.3
KB
-r--r--r--
2014-12-27 11:48
sigset.t
3.08
KB
-r--r--r--
2014-12-27 11:48
sysconf.t
4.56
KB
-r--r--r--
2014-12-27 11:48
taint.t
1.32
KB
-r--r--r--
2014-12-27 11:48
termios.t
4.81
KB
-r--r--r--
2014-12-27 11:48
time.t
3.65
KB
-r--r--r--
2014-12-27 11:48
unimplemented.t
3.77
KB
-r--r--r--
2014-12-27 11:48
usage.t
1.44
KB
-r--r--r--
2014-12-27 11:48
waitpid.t
1.82
KB
-r--r--r--
2014-12-27 11:48
wrappers.t
6.24
KB
-r--r--r--
2014-12-27 11:48
Save
Rename
#!perl -w use strict; use POSIX; use Test::More; # These tests are mainly to make sure that these arithmetic functions # exist and are accessible. They are not meant to be an exhaustive # test for the interface. sub between { my ($low, $have, $high, $desc) = @_; local $Test::Builder::Level = $Test::Builder::Level + 1; cmp_ok($have, '>=', $low, $desc); cmp_ok($have, '<=', $high, $desc); } is(acos(1), 0, "Basic acos(1) test"); between(3.14, acos(-1), 3.15, 'acos(-1)'); between(1.57, acos(0), 1.58, 'acos(0)'); is(asin(0), 0, "Basic asin(0) test"); cmp_ok(asin(1), '>', 1.57, "Basic asin(1) test"); cmp_ok(asin(-1), '<', -1.57, "Basic asin(-1) test"); cmp_ok(asin(1), '==', -asin(-1), 'asin(1) == -asin(-1)'); is(atan(0), 0, "Basic atan(0) test"); between(0.785, atan(1), 0.786, 'atan(1)'); between(-0.786, atan(-1), -0.785, 'atan(-1)'); cmp_ok(atan(1), '==', -atan(-1), 'atan(1) == -atan(-1)'); is(cosh(0), 1, "Basic cosh(0) test"); between(1.54, cosh(1), 1.55, 'cosh(1)'); between(1.54, cosh(-1), 1.55, 'cosh(-1)'); is(cosh(1), cosh(-1), 'cosh(1) == cosh(-1)'); is(floor(1.23441242), 1, "Basic floor(1.23441242) test"); is(floor(-1.23441242), -2, "Basic floor(-1.23441242) test"); is(fmod(3.5, 2.0), 1.5, "Basic fmod(3.5, 2.0) test"); is(join(" ", frexp(1)), "0.5 1", "Basic frexp(1) test"); is(ldexp(0,1), 0, "Basic ldexp(0,1) test"); is(log10(1), 0, "Basic log10(1) test"); is(log10(10), 1, "Basic log10(10) test"); is(join(" ", modf(1.76)), "0.76 1", "Basic modf(1.76) test"); is(sinh(0), 0, "Basic sinh(0) test"); between(1.17, sinh(1), 1.18, 'sinh(1)'); between(-1.18, sinh(-1), -1.17, 'sinh(-1)'); is(tan(0), 0, "Basic tan(0) test"); between(1.55, tan(1), 1.56, 'tan(1)'); between(1.55, tan(1), 1.56, 'tan(-1)'); cmp_ok(tan(1), '==', -tan(-1), 'tan(1) == -tan(-1)'); is(tanh(0), 0, "Basic tanh(0) test"); between(0.76, tanh(1), 0.77, 'tanh(1)'); between(-0.77, tanh(-1), -0.76, 'tanh(-1)'); cmp_ok(tanh(1), '==', -tanh(-1), 'tanh(1) == -tanh(-1)'); done_testing();