summaryrefslogtreecommitdiff
path: root/t/t1450-fsck.sh
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2015-01-07 21:27:13 (GMT)
committerJunio C Hamano <gitster@pobox.com>2015-01-07 21:27:13 (GMT)
commit64a03e970ab3ef0ce45d6bd3c1de1bff1de2beee (patch)
tree90144b1837dddc0cf0b805d3e23dc10b51018030 /t/t1450-fsck.sh
parent83332636f575f00edff8f3afb15a2f96885bf417 (diff)
parent3d8a54eb37d298c251c0b6823dc06935a611bc33 (diff)
downloadgit-64a03e970ab3ef0ce45d6bd3c1de1bff1de2beee.zip
git-64a03e970ab3ef0ce45d6bd3c1de1bff1de2beee.tar.gz
git-64a03e970ab3ef0ce45d6bd3c1de1bff1de2beee.tar.bz2
Merge branch 'maint-1.8.5' into maint-1.9
* maint-1.8.5: is_hfs_dotgit: loosen over-eager match of \u{..47}
Diffstat (limited to 't/t1450-fsck.sh')
-rwxr-xr-xt/t1450-fsck.sh15
1 files changed, 15 insertions, 0 deletions
diff --git a/t/t1450-fsck.sh b/t/t1450-fsck.sh
index 983568a..a5589e2 100755
--- a/t/t1450-fsck.sh
+++ b/t/t1450-fsck.sh
@@ -287,4 +287,19 @@ dot-backslash-case .\\\\.GIT\\\\foobar
dotgit-case-backslash .git\\\\foobar
EOF
+test_expect_success 'fsck allows .Ňit' '
+ (
+ git init not-dotgit &&
+ cd not-dotgit &&
+ echo content >file &&
+ git add file &&
+ git commit -m base &&
+ blob=$(git rev-parse :file) &&
+ printf "100644 blob $blob\t.\\305\\207it" >tree &&
+ tree=$(git mktree <tree) &&
+ git fsck 2>err &&
+ test_line_count = 0 err
+ )
+'
+
test_done