git-check-attr: Demonstrate problems with relative paths

Signed-off-by: Michael Haggerty <mhagger@alum.mit.edu>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Michael Haggerty 2011-08-04 06:47:45 +02:00 committed by Junio C Hamano
parent d4d4f8df14
commit 0216af8356

View File

@ -19,7 +19,7 @@ attr_check () {
test_expect_success 'setup' '
mkdir -p a/b/d a/c &&
mkdir -p a/b/d a/c b &&
(
echo "[attr]notest !test"
echo "f test=f"
@ -102,6 +102,19 @@ test_expect_failure 'unnormalized paths' '
'
test_expect_failure 'relative paths' '
(cd a && attr_check ../f f) &&
(cd a && attr_check f f) &&
(cd a && attr_check i a/i) &&
(cd a && attr_check g a/g) &&
(cd a && attr_check b/g a/b/g) &&
(cd b && attr_check ../a/f f) &&
(cd b && attr_check ../a/g a/g) &&
(cd b && attr_check ../a/b/g a/b/g)
'
test_expect_success 'core.attributesfile' '
attr_check global unspecified &&
git config core.attributesfile "$HOME/global-gitattributes" &&