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 /
Delete
Unzip
Name
Size
Permission
Date
Action
base
[ DIR ]
drwxr-xr-x
2015-02-14 16:56
benchmark
[ DIR ]
drwxr-xr-x
2015-02-14 16:56
bigmem
[ DIR ]
drwxr-xr-x
2015-02-14 16:56
cmd
[ DIR ]
drwxr-xr-x
2015-02-14 16:56
comp
[ DIR ]
drwxr-xr-x
2015-02-14 16:56
io
[ DIR ]
drwxr-xr-x
2015-02-14 16:56
japh
[ DIR ]
drwxr-xr-x
2015-02-14 16:56
lib
[ DIR ]
drwxr-xr-x
2016-10-10 18:53
mro
[ DIR ]
drwxr-xr-x
2015-02-14 16:56
op
[ DIR ]
drwxr-xr-x
2015-02-14 16:56
opbasic
[ DIR ]
drwxr-xr-x
2015-02-14 16:56
porting
[ DIR ]
drwxr-xr-x
2015-02-14 16:56
re
[ DIR ]
drwxr-xr-x
2015-02-14 16:56
run
[ DIR ]
drwxr-xr-x
2015-02-14 16:56
test_pl
[ DIR ]
drwxr-xr-x
2015-02-14 16:56
uni
[ DIR ]
drwxr-xr-x
2015-02-14 16:56
win32
[ DIR ]
drwxr-xr-x
2015-02-14 16:56
x2p
[ DIR ]
drwxr-xr-x
2015-02-14 16:56
README
1.44
KB
-r--r--r--
2014-12-27 11:49
TEST
24.34
KB
-r-xr-xr-x
2014-12-27 11:49
harness
6.12
KB
-r--r--r--
2014-12-27 11:49
loc_tools.pl
10.37
KB
-r--r--r--
2014-12-27 11:49
perl
1.63
MB
-rwxr-xr-x
2016-10-10 19:19
perl.supp
537
B
-r--r--r--
2014-12-27 11:49
rantests
10
B
-rw-r--r--
2016-10-10 19:00
test.pl
47.84
KB
-r--r--r--
2014-12-27 11:49
thread_it.pl
1.5
KB
-r--r--r--
2014-12-27 11:49
Save
Rename
#!perl use strict; use warnings; # As perlfunc.pod says: # Note that the file will not be included twice under the same specified name. # So ensure that this, textually, is the same name as all the loaded tests use. # Otherwise if we require 'test.pl' and they require './test.pl', it is loaded # twice. require './test.pl'; skip_all_without_config('useithreads'); skip_all_if_miniperl("no dynamic loading on miniperl, no threads"); require threads; # Which file called us? my $caller = (caller)[1]; die "Can't figure out which test to run from filename '$caller'" unless $caller =~ m!((?:op|re)/[-_a-z0-9A-Z]+)_thr\.t\z!; my $file = "$1.t"; $::running_as_thread = "running tests in a new thread"; require $file; note('running tests in a new thread'); # Currently 59*4096 is the minimum stack size to just get t/re/pat_thr.t to # pass on HP-UX 64bit PA-RISC. The test for capture buffers (eg \87) # recurses heavily, and busts the default stack size (65536 on PA-RISC) # On Mac OS X under gcc and g++, the default stack size is also too small. # Ditto on VMS, although threshold varies by platform and -Dusevmsdebug. my $curr = threads->create({ stack_size => $^O eq 'hpux' ? 524288 : $^O eq 'darwin' ? 1000000: $^O eq 'VMS' ? 150000 : 0, }, sub { run_tests(); return defined &curr_test ? curr_test() : () })->join(); curr_test($curr) if defined $curr; 1;