summaryrefslogtreecommitdiff
path: root/t/t4030-diff-textconv.sh
diff options
context:
space:
mode:
authorJohannes Sixt <j6t@kdbg.org>2010-01-01 22:15:18 (GMT)
committerJunio C Hamano <gitster@pobox.com>2010-01-06 07:41:51 (GMT)
commit6396258368b76d432090c81096755dc1fbc89551 (patch)
tree9da3aee35fc2ea5281d680445fa2f66ffdffb1c5 /t/t4030-diff-textconv.sh
parent7ed7fac45a696ba6343707c7c8f4b268f309be32 (diff)
downloadgit-6396258368b76d432090c81096755dc1fbc89551.zip
git-6396258368b76d432090c81096755dc1fbc89551.tar.gz
git-6396258368b76d432090c81096755dc1fbc89551.tar.bz2
t4030, t4031: work around bogus MSYS bash path conversion
Recall that MSYS bash converts POSIX style absolute paths to Windows style absolute paths. Unfortunately, it converts a program argument that begins with a double-quote and otherwise looks like an absolute POSIX path, but in doing so, it strips everything past the second double-quote[*]. This case is triggered in the two test scripts. The work-around is to place the Windows style path returned by $(pwd) between the quotes to avoid the path conversion. [*] It is already bogus that a conversion is even considered when a program argument begins with a double-quote because it cannot be an absolute POSIX path. Signed-off-by: Johannes Sixt <j6t@kdbg.org> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t4030-diff-textconv.sh')
-rwxr-xr-xt/t4030-diff-textconv.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t4030-diff-textconv.sh b/t/t4030-diff-textconv.sh
index c16d538..88c5619 100755
--- a/t/t4030-diff-textconv.sh
+++ b/t/t4030-diff-textconv.sh
@@ -48,7 +48,7 @@ test_expect_success 'file is considered binary by plumbing' '
test_expect_success 'setup textconv filters' '
echo file diff=foo >.gitattributes &&
- git config diff.foo.textconv "\"$PWD\""/hexdump &&
+ git config diff.foo.textconv "\"$(pwd)\""/hexdump &&
git config diff.fail.textconv false
'