diff options
Diffstat (limited to 't')
-rwxr-xr-x | t/t1450-fsck.sh | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/t/t1450-fsck.sh b/t/t1450-fsck.sh index d3a17b4508..4597af0eb6 100755 --- a/t/t1450-fsck.sh +++ b/t/t1450-fsck.sh @@ -16,4 +16,16 @@ test_expect_success 'HEAD is part of refs' ' test 0 = $(git fsck | wc -l) ' +test_expect_success 'loose objects borrowed from alternate are not missing' ' + mkdir another && + ( + cd another && + git init && + echo ../../../.git/objects >.git/objects/info/alternates && + test_commit C fileC one && + git fsck >out && + ! grep "missing blob" out + ) +' + test_done |