aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <junkio@cox.net>2006-02-11 23:08:23 -0800
committerJunio C Hamano <junkio@cox.net>2006-02-11 23:08:23 -0800
commit16139f9035137ccd81e1e9a9dc203fbede6997a0 (patch)
treef7087103a865b3c0230ef945227619a5816463c4
parent1536dd9c61b5582cf079999057cb715dd6dc6620 (diff)
downloadgit-16139f9035137ccd81e1e9a9dc203fbede6997a0.tar.gz
git-16139f9035137ccd81e1e9a9dc203fbede6997a0.tar.xz
t5500: adjust to change in pack-object reporting behaviour.
Now pack-object is not as chatty when its stderr is not connected to a terminal, so the test needs to be adjusted for that. Signed-off-by: Junio C Hamano <junkio@cox.net>
-rwxr-xr-xt/t5500-fetch-pack.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t5500-fetch-pack.sh b/t/t5500-fetch-pack.sh
index 0781bd287..e15e14fc3 100755
--- a/t/t5500-fetch-pack.sh
+++ b/t/t5500-fetch-pack.sh
@@ -76,7 +76,7 @@ function pull_to_client () {
git-symbolic-ref HEAD refs/heads/${heads:0:1}
test_expect_success "fsck" 'git-fsck-objects --full > fsck.txt 2>&1'
test_expect_object_count "after $number pull" $count
- pack_count=$(grep Packing log.txt|tr -dc "0-9")
+ pack_count=$(grep Unpacking log.txt|tr -dc "0-9")
test -z "$pack_count" && pack_count=0
if [ -z "$no_strict_count_check" ]; then
test_expect_success "minimal count" "test $count = $pack_count"