summaryrefslogtreecommitdiffstats
path: root/t/t9810-git-p4-rcs.sh
diff options
context:
space:
mode:
authorPete Wyckoff <pw@padd.com>2012-06-27 14:00:55 +0200
committerJunio C Hamano <gitster@pobox.com>2012-06-28 06:06:34 +0200
commit23bd0c99f7b789077c40ae5384dd0054ef5c00ac (patch)
tree08d5f2fdd0a1a5ed55df87fffc33f11d1399e369 /t/t9810-git-p4-rcs.sh
parentgit p4 test: wait longer for p4d to start and test its pid (diff)
downloadgit-23bd0c99f7b789077c40ae5384dd0054ef5c00ac.tar.xz
git-23bd0c99f7b789077c40ae5384dd0054ef5c00ac.zip
git p4 test: use real_path to resolve p4 client symlinks
The p4 program is finicky about making sure the recorded client Root matches the current working directory. The way it discovers the latter seems to be to inspect shell variable $PWD. This could involve symlinks, that while leading to the same place as the client Root, look different, and cause p4 to fail. Resolve all client paths using "test-path-utils real_path $path". This removes ".." and resolves all symlinks. Discovered while running with --root=/dev/shm, which is a link to /run/shm. Signed-off-by: Pete Wyckoff <pw@padd.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t9810-git-p4-rcs.sh')
-rwxr-xr-xt/t9810-git-p4-rcs.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t9810-git-p4-rcs.sh b/t/t9810-git-p4-rcs.sh
index d8d9ca4679..c7313b0bd9 100755
--- a/t/t9810-git-p4-rcs.sh
+++ b/t/t9810-git-p4-rcs.sh
@@ -244,7 +244,7 @@ test_expect_success 'cope with rcs keyword expansion damage' '
cd "$git" &&
git config git-p4.skipSubmitEdit true &&
git config git-p4.attemptRCSCleanup true &&
- (cd ../cli && p4_append_to_file kwfile1.c) &&
+ (cd "$cli" && p4_append_to_file kwfile1.c) &&
old_lines=$(wc -l <kwfile1.c) &&
perl -n -i -e "print unless m/Revision:/" kwfile1.c &&
new_lines=$(wc -l <kwfile1.c) &&