diff options
Diffstat (limited to 't')
-rwxr-xr-x | t/t5312-prune-corruption.sh | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/t/t5312-prune-corruption.sh b/t/t5312-prune-corruption.sh index 11423b3cb2..165cc80fa4 100755 --- a/t/t5312-prune-corruption.sh +++ b/t/t5312-prune-corruption.sh @@ -31,21 +31,21 @@ test_expect_success 'create history reachable only from a bogus-named ref' ' test_expect_success 'pruning does not drop bogus object' ' test_when_finished "git hash-object -w -t commit saved" && test_might_fail git prune --expire=now && - verbose git cat-file -e $bogus + git cat-file -e $bogus ' test_expect_success 'put bogus object into pack' ' git tag reachable $bogus && git repack -ad && git tag -d reachable && - verbose git cat-file -e $bogus + git cat-file -e $bogus ' test_expect_success 'destructive repack keeps packed object' ' test_might_fail git repack -Ad --unpack-unreachable=now && - verbose git cat-file -e $bogus && + git cat-file -e $bogus && test_might_fail git repack -ad && - verbose git cat-file -e $bogus + git cat-file -e $bogus ' # subsequent tests will have different corruptions @@ -78,7 +78,7 @@ test_expect_success 'create history with missing tip commit' ' test_expect_success 'pruning with a corrupted tip does not drop history' ' test_when_finished "git hash-object -w -t commit saved" && test_might_fail git prune --expire=now && - verbose git cat-file -e $recoverable + git cat-file -e $recoverable ' test_expect_success 'pack-refs does not silently delete broken loose ref' ' |