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 /
porting /
Delete
Unzip
Name
Size
Permission
Date
Action
FindExt.t
2.62
KB
-r--r--r--
2014-12-27 11:49
args_assert.t
1.39
KB
-r--r--r--
2014-12-27 11:49
authors.t
462
B
-r--r--r--
2014-12-27 11:49
bincompat.t
446
B
-r--r--r--
2014-12-27 11:49
checkcase.t
1.17
KB
-r--r--r--
2014-12-27 11:49
checkcfgvar.t
1.36
KB
-r--r--r--
2014-12-27 11:49
cmp_version.t
486
B
-r--r--r--
2014-12-27 11:49
copyright.t
1.88
KB
-r--r--r--
2014-12-27 11:49
corelist.t
532
B
-r--r--r--
2015-01-28 21:08
customized.dat
3.13
KB
-r--r--r--
2015-01-31 22:00
customized.t
3.02
KB
-r--r--r--
2014-12-27 11:49
diag.t
23.62
KB
-r--r--r--
2015-01-15 22:12
dual-life.t
1.63
KB
-r--r--r--
2014-12-27 11:49
exec-bit.t
1.81
KB
-r--r--r--
2014-12-27 11:49
extrefs.t
3.32
KB
-r--r--r--
2014-12-27 11:49
filenames.t
1.9
KB
-r--r--r--
2014-12-27 11:49
globvar.t
1.82
KB
-r--r--r--
2014-12-27 11:49
known_pod_issues.dat
9.81
KB
-r--r--r--
2015-01-17 16:54
maintainers.t
884
B
-r--r--r--
2014-12-27 11:49
manifest.t
3.05
KB
-r--r--r--
2014-12-27 11:49
pending-author.t
1.75
KB
-r--r--r--
2014-12-27 11:49
perlfunc.t
1.39
KB
-r--r--r--
2014-12-27 11:49
pod_rules.t
1.04
KB
-r--r--r--
2014-12-27 11:49
podcheck.t
75.45
KB
-r--r--r--
2014-12-27 12:37
readme.t
2.22
KB
-r--r--r--
2014-12-27 11:49
regen.t
2.04
KB
-r--r--r--
2014-12-27 12:37
ss_dup.t
863
B
-r--r--r--
2014-12-27 11:49
test_bootstrap.t
2.42
KB
-r--r--r--
2014-12-27 11:49
utils.t
3.3
KB
-r--r--r--
2014-12-27 11:49
Save
Rename
#!./perl -w # What does this test? # This tests the well-formed-ness of the MANIFEST file. # # Why do we test this? # TK # # It's broken - how do I fix it? # If MANIFEST is not sorted properly, you will get this error output: # got ''MANIFEST' is NOT sorted properly # # ' # # expected /(?^:is sorted properly)/ # # To correct this, run either: # # ./perl -Ilib Porting/manisort -o MANIFEST MANIFEST # # which will output "'MANIFEST' is NOT sorted properly" but which will # correct the problem; or: # # make manifest # # which will output "WARNING: re-sorting MANIFEST" but which will also # correct the problem. use Config; BEGIN { @INC = '..' if -f '../TestInit.pm'; } use TestInit qw(T); # T is chdir to the top level require 't/test.pl'; skip_all("Cross-compiling, the entire source might not be available") if $Config{usecrosscompile}; plan('no_plan'); my $manifest = 'MANIFEST'; open my $m, '<', $manifest or die "Can't open '$manifest': $!"; my @files; # Test that MANIFEST uses tabs - not spaces - after the name of the file. while (<$m>) { chomp; unless( /\s/ ) { push @files, $_; # no need for further tests on lines without whitespace (i.e., filename only) next; } my ($file, $separator) = /^(\S+)(\s+)/; push @files, $file; isnt($file, undef, "Line $. doesn't start with a blank") or next; ok(-f $file, "File $file exists"); if ($separator !~ tr/\t//c) { # It's all tabs next; } elsif ($separator !~ tr/ //c) { # It's all spaces fail("Spaces in entry for $file"); } elsif ($separator =~ tr/\t//) { fail("Mixed tabs and spaces in entry for $file"); } else { fail("Odd whitespace in entry for $file"); } } close $m or die $!; # Test that MANIFEST is properly sorted SKIP: { skip("'Porting/manisort' not found", 1) if (! -f 'Porting/manisort'); my $result = runperl('progfile' => 'Porting/manisort', 'args' => [ '-c', $manifest ], 'stderr' => 1, 'nolib' => 1 ); like($result, qr/is sorted properly/, 'MANIFEST sorted properly'); } SKIP: { find_git_or_skip(6); chomp(my @repo= grep { !/\.gitignore$/ } `git ls-files`); skip("git ls-files didnt work",3) if !@repo; is( 0+@repo, 0+@files, "git ls-files gives the same number of files as MANIFEST lists"); my %repo= map { $_ => 1 } @repo; my %mani= map { $_ => 1 } @files; is( 0+keys %mani, 0+@files, "no duplicate files in MANIFEST"); delete $mani{$_} for @repo; delete $repo{$_} for @files; my @not_in_mani= keys %repo; my @still_in_mani= keys %mani; is( 0+@not_in_mani, 0, "Nothing added to the repo that isn't in MANIFEST"); is( "not in MANIFEST: @not_in_mani", "not in MANIFEST: ", "Nothing added to the repo that isn't in MANIFEST"); is( 0+@still_in_mani, 0, "Nothing in the MANIFEST that isn't tracked by git"); is( "should not be in MANIFEST: @still_in_mani", "should not be in MANIFEST: ", "Nothing in the MANIFEST that isn't tracked by git"); } # EOF