Home
last modified time | relevance | path

Searched refs:abs_path (Results 1 – 22 of 22) sorted by relevance

/openbsd-src/gnu/usr.bin/perl/t/op/
H A Dchdir.t31 sub abs_path {
35 my $Cwd = abs_path;
39 my ($vol,$dir) = splitpath(abs_path,1);
50 is( abs_path, catdir($Cwd, $test_dir), ' abs_path() agrees' );
53 $Cwd = abs_path;
126 is( abs_path, $Cwd, ' abs_path() did not change' );
131 is( abs_path, $ENV{$key}, ' abs_path() agrees' );
133 is( abs_path, $Cwd, ' and back again' );
200 is( abs_path, $Cwd, ' abs_path() agrees' );
/openbsd-src/gnu/usr.bin/perl/dist/PathTools/t/
H A Dabs2rel.t46 my $abs_path = File::Spec->rel2abs($rel_path);
49 ok(-f $abs_path, "'$abs_path' is readable by effective uid/gid");
52 [ (stat $abs_path)[0..5] ],
64 my $ar_link = File::Spec->abs2rel($abs_path, $rel_base);
65 my $aa_link = File::Spec->abs2rel($abs_path, $abs_base);
H A Dcwd.t57 ok( !defined(&abs_path), ' nor abs_path()' );
182 Cwd::abs_path($Test_Dir);
198 my $abs_path = Cwd::abs_path($file);
214 like($abs_path, qr|$want$|i, "Cwd::abs_path produced $abs_path");
232 path_ends_with(Cwd::abs_path($path), 'cwd.t', 'abs_path() can be invoked on a file');
238 path_ends_with(Cwd::abs_path($path), 'cwd.t', 'abs_path() can be invoked on a file');
248 my $root = Cwd::abs_path(File::Spec->rootdir); # Add drive letter?
257 is Cwd::abs_path($file), $file, 'abs_path() works on files in the root directory';
H A Dcwd_enoent.t40 local *Cwd::abs_path = \&Cwd::_perl_abs_path if $type eq "perl";
50 $res = Cwd::abs_path(".");
52 is $res, undef, "$type abs_path result on non-existent directory";
53 ok((grep { $eno == $_ } @acceptable_errnos), "$type abs_path errno on non-existent directory")
H A Dtaint.t23 abs_path fast_abs_path
/openbsd-src/gnu/usr.bin/perl/dist/PathTools/
H A DCwd.pm13 our @EXPORT_OK = qw(chdir abs_path fast_abs_path realpath fast_realpath);
30 *abs_path = \&fast_abs_path;
94 abs_path => '_vms_abs_path',
105 abs_path => 'fast_abs_path',
115 abs_path => 'fast_abs_path',
125 abs_path => '_qnx_abs_path',
134 abs_path => 'fast_abs_path',
143 abs_path => 'fast_abs_path',
243 abs_path('.');
396 return abs_path(
[all...]
H A DChanges287 - abs_path() on Unix(ish) platforms has been upgraded to a much later
292 - Reimplemented abs_path() on VMS to use
307 - abs_path() now behaves correctly with symbolic links on VMS.
452 abs_path('.'). The pure-perl version has been kept for cases in
617 - Fixed a bug in which Cwd::abs_path() called on a file in the root
624 abs_path(), since all they seemed to be doing was causing people
663 - abs_path() on Windows was trampling on $ENV{PWD} - fixed. [Spotted
715 - The abs_path($arg) fix from 2.18 didn't work for VMS, now it's
720 - Fixed a problem in which abs_path($arg) on some platforms could
724 - Fixed fast_abs_path($arg) in the same way as abs_path($arg) above.
[all …]
H A DCwd.xs596 abs_path(pathsv=Nullsv) in getcwd()
/openbsd-src/gnu/usr.bin/perl/dist/FindBin/lib/
H A DFindBin.pm100 use Cwd qw(getcwd cwd abs_path);
175 $Bin = abs_path($Bin);
178 $RealBin = abs_path($RealBin) if($RealBin);
/openbsd-src/gnu/llvm/clang/tools/scan-build/libexec/
H A Dc++-analyzer6 use lib dirname(abs_path($0));
H A Dccc-analyzer175 print OUT abs_path($file), "\n";
/openbsd-src/gnu/usr.bin/perl/cpan/Pod-Usage/t/pod/
H A Dtestp2pt.pl10 my $THISDIR = abs_path(dirname $0);
45 my $INSTDIR = abs_path(dirname $0);
/openbsd-src/usr.bin/libtool/LT/
H A DUtil.pm31 return dirname(Cwd::abs_path($a));
/openbsd-src/gnu/usr.bin/perl/cpan/File-Temp/lib/File/
H A DTemp.pm914 $cwd = Cwd::abs_path(File::Spec->curdir) if not defined $cwd;
915 my $abs = Cwd::abs_path($dir);
963 $fname = Cwd::abs_path($fname);
1146 my $real_dir = Cwd::abs_path( $tempdir );
/openbsd-src/gnu/usr.bin/perl/cpan/ExtUtils-MakeMaker/t/
H A Decho.t25 my $cwd = abs_path;
/openbsd-src/usr.bin/libtool/LT/Mode/
H A DLink.pm581 my $absla = abs_path($file);
626 my $fulla = abs_path($arg);
706 my $fulla = abs_path($arg);
779 my $p = abs_path($f);
/openbsd-src/gnu/usr.bin/perl/dist/Net-Ping/t/
H A D501_ping_icmpv6.t34 my $dir = Cwd::abs_path(File::Spec->catdir($up, $up));
H A D500_ping_icmp.t43 my $dir = Cwd::abs_path(File::Spec->catdir($up, $up));
/openbsd-src/gnu/llvm/clang/tools/scan-build/bin/
H A Dscan-build382 $BugFile = abs_path($1);
1573 $Options{OutputDir} = abs_path($OutDir);
1593 $Options{OutputDir} = abs_path($OutDir);
/openbsd-src/gnu/usr.bin/perl/t/
H A DTEST329 $Valgrind_Log = Cwd::abs_path("$options->{run_dir}/$Valgrind_Log");
/openbsd-src/gnu/usr.bin/perl/cpan/ExtUtils-MakeMaker/lib/ExtUtils/
H A DMakeMaker.pm240 local @INC = map eval {abs_path($_) if -e} || $_, @INC;
/openbsd-src/gnu/llvm/lldb/source/Plugins/SymbolFile/DWARF/
H A DSymbolFileDWARF.cpp195 std::string abs_path; in GetFileByIndex() local
197 if (prologue.getFileNameByIndex(idx, compile_dir, absolute, abs_path, style)) in GetFileByIndex()
198 return std::move(abs_path); in GetFileByIndex()