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 /
win32 /
Delete
Unzip
Name
Size
Permission
Date
Action
fs.t
742
B
-r--r--r--
2014-12-27 11:49
popen.t
634
B
-r--r--r--
2014-12-27 11:49
runenv.t
6.96
KB
-r--r--r--
2014-12-27 11:49
signal.t
1.44
KB
-r--r--r--
2014-12-27 11:49
system.t
3.19
KB
-r--r--r--
2014-12-27 11:49
system_tests
2.18
KB
-r--r--r--
2014-12-27 11:49
Save
Rename
#!./perl BEGIN { chdir 't' if -d 't'; @INC = '../lib'; require "./test.pl"; eval 'use Errno'; die $@ if $@ and !is_miniperl(); } my $has_link = Win32::FsType() eq 'NTFS'; $has_link or skip_all("link() only works on NTFS"); plan tests => 4; my $tmpfile1 = tempfile(); my $tmpfile2 = tempfile(); # RT #112272 ok(!link($tmpfile1, $tmpfile2), "Cannot link to unknown file"); is(0+$!, &Errno::ENOENT, "check errno is ENOENT"); open my $fh, ">", $tmpfile1 or skip("Cannot create test link src", 2); close $fh; open my $fh, ">", $tmpfile2 or skip("Cannot create test link target", 2); close $fh; ok(!link($tmpfile1, $tmpfile2), "Cannot link to existing file"); is(0+$!, &Errno::EEXIST, "check for EEXIST");