Browse Source

git-check-attr: Demonstrate problems with unnormalized paths

Signed-off-by: Michael Haggerty <mhagger@alum.mit.edu>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
maint
Michael Haggerty 14 years ago committed by Junio C Hamano
parent
commit
d4d4f8df14
  1. 9
      t/t0003-attributes.sh

9
t/t0003-attributes.sh

@ -93,6 +93,15 @@ test_expect_success 'attribute test' ' @@ -93,6 +93,15 @@ test_expect_success 'attribute test' '

'

test_expect_failure 'unnormalized paths' '

attr_check ./f f &&
attr_check ./a/g a/g &&
attr_check a/./g a/g &&
attr_check a/c/../b/g a/b/g

'

test_expect_success 'core.attributesfile' '
attr_check global unspecified &&
git config core.attributesfile "$HOME/global-gitattributes" &&

Loading…
Cancel
Save