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 /
lib /
Delete
Unzip
Name
Size
Permission
Date
Action
Devel
[ DIR ]
drwxr-xr-x
2015-02-14 16:56
charnames
[ DIR ]
drwxr-xr-x
2015-02-14 16:56
croak
[ DIR ]
drwxr-xr-x
2015-02-14 16:56
deprecate
[ DIR ]
drwxr-xr-x
2016-10-10 18:14
feature
[ DIR ]
drwxr-xr-x
2015-02-14 16:56
locale
[ DIR ]
drwxr-xr-x
2015-02-14 16:56
strict
[ DIR ]
drwxr-xr-x
2015-02-14 16:56
subs
[ DIR ]
drwxr-xr-x
2015-02-14 16:56
warnings
[ DIR ]
drwxr-xr-x
2015-02-14 16:56
1_compile.t
1.64
KB
-r--r--r--
2014-12-27 11:49
Cname.pm
934
B
-r--r--r--
2014-12-27 11:49
Count.pm
107
B
-r--r--r--
2014-12-27 11:49
Sans_mypragma.pm
72
B
-r--r--r--
2014-12-27 11:49
common.pl
1.37
KB
-r--r--r--
2014-12-27 11:49
commonsense.t
583
B
-r--r--r--
2014-12-27 11:49
compmod.pl
274
B
-r--r--r--
2014-12-27 11:49
croak.t
126
B
-r--r--r--
2014-12-27 11:49
cygwin.t
2.2
KB
-r--r--r--
2014-12-27 11:49
dbmt_common.pl
11.85
KB
-r--r--r--
2014-12-27 11:49
deprecate.t
2.11
KB
-r--r--r--
2014-12-27 11:49
h2ph.h
3.98
KB
-r--r--r--
2014-12-27 11:49
h2ph.pht
3.96
KB
-r--r--r--
2014-12-27 11:49
mypragma.pm
596
B
-r--r--r--
2014-12-27 11:49
mypragma.t
1.32
KB
-r--r--r--
2014-12-27 11:49
no_load.t
637
B
-r--r--r--
2014-12-27 11:49
overload_fallback.t
388
B
-r--r--r--
2014-12-27 11:49
overload_nomethod.t
362
B
-r--r--r--
2014-12-27 11:49
proxy_constant_subs.t
873
B
-r--r--r--
2014-12-27 11:49
test_require.pm
114
B
-r--r--r--
2014-12-27 11:49
test_use.pm
126
B
-r--r--r--
2014-12-27 11:49
test_use_14937.pm
3
B
-r--r--r--
2014-12-27 11:49
universal.t
1.89
KB
-r--r--r--
2014-12-27 11:49
Save
Rename
#!./perl # # Check that certain modules don't get loaded when other modules are used. # BEGIN { chdir 't' if -d 't'; @INC = qw(. ../lib); } use strict; use warnings; require "test.pl"; # # Format: [Module-that-should-not-be-loaded => modules to test] # foreach my $test ([Carp => qw(warnings Exporter)], ) { my ($exclude, @modules) = @$test; foreach my $module (@modules) { my $prog = <<" --"; use $module; print exists \$INC {'$exclude.pm'} ? "not ok" : "ok"; -- fresh_perl_is ($prog, "ok", {}, "$module does not load $exclude"); } } done_testing();