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 /
io /
Delete
Unzip
Name
Size
Permission
Date
Action
argv.t
3.92
KB
-r--r--r--
2014-12-27 11:49
binmode.t
1.02
KB
-r--r--r--
2014-12-27 11:49
bom.t
329
B
-r--r--r--
2014-12-27 11:49
closepid.t
1.26
KB
-r--r--r--
2014-12-27 11:49
crlf.t
2.45
KB
-r--r--r--
2014-12-27 11:49
crlf_through.t
152
B
-r--r--r--
2014-12-27 11:49
data.t
1.5
KB
-r--r--r--
2014-12-27 11:49
defout.t
1.09
KB
-r--r--r--
2014-12-27 11:49
dup.t
3.09
KB
-r--r--r--
2014-12-27 11:49
eintr.t
3.65
KB
-r--r--r--
2015-01-12 20:14
eintr_print.t
2.48
KB
-r--r--r--
2014-12-27 11:49
errno.t
1.12
KB
-r--r--r--
2014-12-27 11:49
errnosig.t
746
B
-r--r--r--
2014-12-27 11:49
fflush.t
3.25
KB
-r--r--r--
2014-12-27 11:49
fs.t
12.97
KB
-r--r--r--
2014-12-27 11:49
inplace.t
1.83
KB
-r--r--r--
2014-12-27 11:49
iofile.t
644
B
-r--r--r--
2014-12-27 11:49
iprefix.t
707
B
-r--r--r--
2014-12-27 11:49
layers.t
6.37
KB
-r--r--r--
2014-12-27 11:49
nargv.t
1.16
KB
-r--r--r--
2014-12-27 11:49
open.t
14.56
KB
-r--r--r--
2014-12-27 11:49
openpid.t
2.39
KB
-r--r--r--
2014-12-27 11:49
perlio.t
5.73
KB
-r--r--r--
2014-12-27 11:49
perlio_fail.t
1.06
KB
-r--r--r--
2014-12-27 11:49
perlio_leaks.t
675
B
-r--r--r--
2014-12-27 11:49
perlio_open.t
756
B
-r--r--r--
2014-12-27 11:49
pipe.t
5.9
KB
-r--r--r--
2014-12-27 11:49
print.t
1.41
KB
-r--r--r--
2014-12-27 11:49
pvbm.t
2.39
KB
-r--r--r--
2014-12-27 11:49
read.t
523
B
-r--r--r--
2014-12-27 11:49
say.t
1.05
KB
-r--r--r--
2014-12-27 11:49
sem.t
1.78
KB
-r--r--r--
2014-12-27 11:49
shm.t
2.56
KB
-r--r--r--
2014-12-27 11:49
socket.t
3.51
KB
-r--r--r--
2014-12-27 11:49
tell.t
4.94
KB
-r--r--r--
2014-12-27 11:49
through.t
4.52
KB
-r--r--r--
2014-12-27 11:49
utf8.t
9.28
KB
-r--r--r--
2014-12-27 11:49
Save
Rename
#!./perl BEGIN { chdir 't' if -d 't'; @INC = '../lib'; require './test.pl'; } print "1..35\n"; $TST = 'TST'; $Is_Dosish = ($^O eq 'MSWin32' or $^O eq 'NetWare' or $^O eq 'dos' or $^O eq 'os2' or $^O eq 'cygwin' or $^O =~ /^uwin/); open($TST, 'harness') || (die "Can't open harness"); binmode $TST if $Is_Dosish; if (eof(TST)) { print "not ok 1\n"; } else { print "ok 1\n"; } $firstline = <$TST>; $secondpos = tell; $x = 0; while (<TST>) { if (eof) {$x++;} } if ($x == 1) { print "ok 2\n"; } else { print "not ok 2\n"; } $lastpos = tell; unless (eof) { print "not ok 3\n"; } else { print "ok 3\n"; } if (seek($TST,0,0)) { print "ok 4\n"; } else { print "not ok 4\n"; } if (eof) { print "not ok 5\n"; } else { print "ok 5\n"; } if ($firstline eq <TST>) { print "ok 6\n"; } else { print "not ok 6\n"; } if ($secondpos == tell) { print "ok 7\n"; } else { print "not ok 7\n"; } if (seek(TST,0,1)) { print "ok 8\n"; } else { print "not ok 8\n"; } if (eof($TST)) { print "not ok 9\n"; } else { print "ok 9\n"; } if ($secondpos == tell) { print "ok 10\n"; } else { print "not ok 10\n"; } if (seek(TST,0,2)) { print "ok 11\n"; } else { print "not ok 11\n"; } if ($lastpos == tell) { print "ok 12\n"; } else { print "not ok 12\n"; } unless (eof) { print "not ok 13\n"; } else { print "ok 13\n"; } if ($. == 0) { print "not ok 14\n"; } else { print "ok 14\n"; } $curline = $.; open(OTHER, 'harness') || (die "Can't open harness: $!"); binmode OTHER if (($^O eq 'MSWin32') || ($^O eq 'NetWare')); { local($.); if ($. == 0) { print "not ok 15\n"; } else { print "ok 15\n"; } tell OTHER; if ($. == 0) { print "ok 16\n"; } else { print "not ok 16\n"; } $. = 5; scalar <OTHER>; if ($. == 6) { print "ok 17\n"; } else { print "not ok 17\n"; } } if ($. == $curline) { print "ok 18\n"; } else { print "not ok 18\n"; } { local($.); scalar <OTHER>; if ($. == 7) { print "ok 19\n"; } else { print "not ok 19\n"; } } if ($. == $curline) { print "ok 20\n"; } else { print "not ok 20\n"; } { local($.); tell OTHER; if ($. == 7) { print "ok 21\n"; } else { print "not ok 21\n"; } } close(OTHER); { no warnings 'closed'; if (tell(OTHER) == -1) { print "ok 22\n"; } else { print "not ok 22\n"; } } { no warnings 'unopened'; if (tell(ETHER) == -1) { print "ok 23\n"; } else { print "not ok 23\n"; } } # ftell(STDIN) (or any std streams) is undefined, it can return -1 or # something else. ftell() on pipes, fifos, and sockets is defined to # return -1. my $written = tempfile(); close($TST); open($tst,">$written") || die "Cannot open $written:$!"; binmode $tst if $Is_Dosish; if (tell($tst) == 0) { print "ok 24\n"; } else { print "not ok 24\n"; } print $tst "fred\n"; if (tell($tst) == 5) { print "ok 25\n"; } else { print "not ok 25\n"; } print $tst "more\n"; if (tell($tst) == 10) { print "ok 26\n"; } else { print "not ok 26\n"; } close($tst); open($tst,"+>>$written") || die "Cannot open $written:$!"; binmode $tst if $Is_Dosish; if (0) { # :stdio does not pass these so ignore them for now if (tell($tst) == 0) { print "ok 27\n"; } else { print "not ok 27\n"; } $line = <$tst>; if ($line eq "fred\n") { print "ok 29\n"; } else { print "not ok 29\n"; } if (tell($tst) == 5) { print "ok 30\n"; } else { print "not ok 30\n"; } } print $tst "xxxx\n"; if (tell($tst) == 15 || tell($tst) == 5) # unset PERLIO or PERLIO=stdio (e.g. HP-UX, Solaris) { print "ok 27\n"; } else { print "not ok 27\n"; } close($tst); open($tst,">$written") || die "Cannot open $written:$!"; print $tst "foobar"; close $tst; open($tst,">>$written") || die "Cannot open $written:$!"; # This test makes a questionable assumption that the file pointer will # be at eof after opening a file but before seeking, reading, or writing. # The POSIX standard is vague on this point. # Cygwin and VOS differ from other implementations. if (tell ($tst) == 6) { print "ok 28\n"; } else { if (($^O eq "cygwin") && (&PerlIO::get_layers($tst) eq 'stdio')) { print "not ok 28 # TODO: file pointer not at eof\n"; } elsif ($^O eq "vos") { print "not ok 28 # TODO: Hit bug posix-2056. file pointer not at eof\n"; } else { print "not ok 28 - file pointer not at eof\n"; } } close $tst; open FH, "test.pl"; $fh = *FH; # coercible glob $not = "not " x! (tell $fh == 0); print "${not}ok 29 - tell on coercible glob\n"; $not = "not " x! (tell == 0); print "${not}ok 30 - argless tell after tell \$coercible\n"; tell *$fh; $not = "not " x! (tell == 0); print "${not}ok 31 - argless tell after tell *\$coercible\n"; eof $fh; $not = "not " x! (tell == 0); print "${not}ok 32 - argless tell after eof \$coercible\n"; eof *$fh; $not = "not " x! (tell == 0); print "${not}ok 33 - argless tell after eof *\$coercible\n"; seek $fh,0,0; $not = "not " x! (tell == 0); print "${not}ok 34 - argless tell after seek \$coercible...\n"; seek *$fh,0,0; $not = "not " x! (tell == 0); print "${not}ok 35 - argless tell after seek *\$coercible...\n";