1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-03-06 04:55:52 +02:00

Don't assume that Perl's getpwd agrees with our

pwd when there are multiple names for the working directory
(which can happen with an automounter, sigh).
This commit is contained in:
Paul Eggert
2004-07-28 19:23:07 +00:00
parent d2d008b6fe
commit f4bc6c5d12

View File

@@ -8,12 +8,12 @@ $PERL -e 1 > /dev/null 2>&1 || {
exit 77
}
pwd=`pwd`
framework_failure=0
pwd=`${BUILD_SRC_DIR?}/pwd` || framework_failure=1
t0=`echo "$0"|sed 's,.*/,,'`.tmp; tmp=$t0/$$
trap 'status=$?; cd $pwd; chmod -R u+rwx $t0; rm -rf $t0 && exit $status' 0
trap '(exit $?); exit $?' 1 2 13 15
framework_failure=0
mkdir -p $tmp || framework_failure=1
cd $tmp || framework_failure=1
@@ -25,6 +25,9 @@ fi
ARGV_0=$0
export ARGV_0
CWD=$pwd/$tmp
export CWD
$PERL -w -- - <<\EOF
# Show that pwd works even when the length of the resulting
@@ -34,8 +37,7 @@ use Cwd;
(my $ME = $ENV{ARGV_0}) =~ s|.*/||;
my $cwd = getcwd;
chomp $cwd;
my $cwd = $ENV{CWD};
my $z = 'z' x 31;
my $n = 256;
my $expected = $cwd . ("/$z" x $n);