Lines Matching refs:tmpfile2
23 my $tmpfile2 = tempfile();
272 unlink $tmpfile2;
273 if (system("mklink $tmpfile2 $tmpfile1") == 0) {
274 ok(-l $tmpfile2, "symlink to socket is a symlink (via lstat)");
275 ok(-S $tmpfile2, "symlink to socket is also a socket (via stat)");
276 unlink $tmpfile2;
288 if (system("mklink $tmpfile1 $tmpfile2") == 0
289 && system("mklink $tmpfile2 $tmpfile1") == 0) {
294 unlink $tmpfile2;
299 unlink $tmpfile1, $tmpfile2;
303 # $tmpfile4 -> $tmpfile1/file1 -> ../$tmpfile2 -> abspath($tmpfile3)
309 && system(qq(mklink $tmpfile1\\file1 ..\\$tmpfile2)) == 0
310 && system(qq(mklink $tmpfile2 "$cwd\\$tmpfile3")) == 0) {