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 /
cpan /
IPC-SysV /
t /
Delete
Unzip
Name
Size
Permission
Date
Action
ipcsysv.t
8.1
KB
-r--r--r--
2014-12-27 11:48
msg.t
2.29
KB
-r--r--r--
2014-12-27 11:48
pod.t
1.42
KB
-r--r--r--
2014-12-27 11:48
podcov.t
1.24
KB
-r--r--r--
2014-12-27 11:48
sem.t
2.19
KB
-r--r--r--
2014-12-27 11:48
shm.t
2.33
KB
-r--r--r--
2014-12-27 11:48
Save
Rename
################################################################################ # # Version 2.x, Copyright (C) 2007-2013, Marcus Holland-Moritz <mhx@cpan.org>. # Version 1.x, Copyright (C) 1999, Graham Barr <gbarr@pobox.com>. # # This program is free software; you can redistribute it and/or # modify it under the same terms as Perl itself. # ################################################################################ BEGIN { if ($ENV{'PERL_CORE'}) { chdir 't' if -d 't'; @INC = '../lib' if -d '../lib' && -d '../ext'; } require Test::More; import Test::More; require Config; import Config; if ($ENV{'PERL_CORE'} && $Config{'extensions'} !~ m[\bIPC/SysV\b]) { plan(skip_all => 'IPC::SysV was not built'); } } use strict; my @modules = qw( IPC::SysV IPC::Msg IPC::Semaphore IPC::SharedMem ); eval 'use Pod::Coverage 0.10'; plan skip_all => "testing pod coverage requires Pod::Coverage 0.10" if $@; eval 'use Test::Pod::Coverage 1.08'; plan skip_all => "testing pod coverage requires Test::Pod::Coverage 1.08" if $@; plan tests => scalar @modules; my $mod = shift @modules; pod_coverage_ok($mod, { trustme => [qw( dl_load_flags )] }, "$mod is covered"); for my $mod (@modules) { pod_coverage_ok($mod, "$mod is covered"); }