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 /
Pod-Checker /
t /
pod /
Delete
Unzip
Name
Size
Permission
Date
Action
contains_bad_pod.xr
31
B
-r--r--r--
2014-12-27 11:48
empty.xr
0
B
-r--r--r--
2014-12-27 11:48
podchkenc.t
570
B
-r--r--r--
2014-12-27 11:48
podchkenc.xr
74
B
-r--r--r--
2014-12-27 11:48
poderrs.t
3.56
KB
-r--r--r--
2014-12-27 11:48
poderrs.xr
4.18
KB
-r--r--r--
2014-12-27 11:48
selfcheck.t
1.09
KB
-r--r--r--
2014-12-27 11:48
testcmp.pl
2.76
KB
-r--r--r--
2014-12-27 11:48
testpchk.pl
3.58
KB
-r--r--r--
2014-12-27 11:48
Save
Rename
#!/usr/bin/perl use File::Basename; use File::Spec; use strict; my $THISDIR; BEGIN { $THISDIR = dirname $0; unshift @INC, $THISDIR; require "testpchk.pl"; import TestPodChecker qw(testpodcheck); } # test that our POD is correct! my $path = File::Spec->catfile($THISDIR,(File::Spec->updir()) x 2, 'lib', 'Pod', '*.pm'); print "THISDIR=$THISDIR PATH=$path\n"; my @pods = glob($path); print "PODS=@pods\n"; print "1..",scalar(@pods),"\n"; my $errs = 0; my $testnum = 1; foreach my $pod (@pods) { my $out = File::Spec->catfile($THISDIR, basename($pod)); $out =~ s{\.pm}{.OUT}; my %options = ( -Out => $out ); my $failmsg = testpodcheck(-In => $pod, -Out => $out, -Cmp => "$THISDIR/empty.xr"); if($failmsg) { if(open(IN, "<$out")) { while(<IN>) { warn "podchecker: $_"; } close(IN); } else { warn "Error: Cannot read output file $out: $!\n"; } print "not ok $testnum\n"; $errs++; } else { print "ok $testnum\n"; } $testnum++; } exit( ($errs == 0) ? 0 : -1 ) unless $ENV{HARNESS_ACTIVE};