summaryrefslogtreecommitdiff
path: root/Test/B13whence.ztst
diff options
context:
space:
mode:
authorDaniel Shahaf <d.s@daniel.shahaf.name>2020-03-26 21:41:49 +0000
committerDaniel Shahaf <d.s@daniel.shahaf.name>2020-03-28 00:46:51 +0000
commit5e3f6b60e8480ae24af4e30cc5dd0408daab8422 (patch)
tree127f56a80915d0296ea184382486abf0384a0b92 /Test/B13whence.ztst
parentd13d6afb2e788fac8eefeff47e889a54498eea9a (diff)
downloadzsh-5e3f6b60e8480ae24af4e30cc5dd0408daab8422.tar.gz
zsh-5e3f6b60e8480ae24af4e30cc5dd0408daab8422.zip
45640: Fix new test when ${PWD}'s value contains symlinks.
Diffstat (limited to 'Test/B13whence.ztst')
-rw-r--r--Test/B13whence.ztst11
1 files changed, 7 insertions, 4 deletions
diff --git a/Test/B13whence.ztst b/Test/B13whence.ztst
index ea0a4dae5..3b35835fe 100644
--- a/Test/B13whence.ztst
+++ b/Test/B13whence.ztst
@@ -1,7 +1,10 @@
%prep
mkdir whence.tmp
- pushd whence.tmp
+ ln -s . whence.tmp/cwd
+ # cd through the symlink in order to test the case that ${prefix} and
+ # ${prefix:P} are different
+ pushd whence.tmp/cwd
ln -s real step3
ln -s step3 step2
ln -s step2 step1
@@ -16,13 +19,13 @@
%test
(
- path=( $PWD/whence.tmp $path )
+ path=( ${PWD:P}/whence.tmp $path )
whence -S step1
whence -s step1
)
0q:whence symlink resolution
->$prefix/step1 -> $prefix/step2 -> $prefix/step3 -> $prefix/real
->$prefix/step1 -> $prefix/real
+>${prefix:P}/step1 -> ${prefix:P}/step2 -> ${prefix:P}/step3 -> ${prefix:P}/real
+>${prefix:P}/step1 -> ${prefix:P}/real
(
path=( $PWD/whence.tmp $path )