From: Junio C Hamano Date: Sun, 9 Nov 2008 21:08:38 +0000 (-0800) Subject: t5303: work around printf breakage in dash X-Git-Tag: v1.6.1-rc1~55^2~1 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=8c1f6f6c5797d1a3fa9ec9d38ae30b4f19e70a3c;p=git-core%2Fgit.git t5303: work around printf breakage in dash Signed-off-by: Junio C Hamano --- diff --git a/t/t5303-pack-corruption-resilience.sh b/t/t5303-pack-corruption-resilience.sh index ac181ea38..f471eadb9 100755 --- a/t/t5303-pack-corruption-resilience.sh +++ b/t/t5303-pack-corruption-resilience.sh @@ -234,7 +234,7 @@ test_expect_success \ 'corruption #1 in delta base reference of first delta (OBJ_OFS_DELTA)' \ 'create_new_pack --delta-base-offset && git prune-packed && - printf "\x01" | do_corrupt_object $blob_2 2 && + tr "\000" "\001" /dev/null && test_must_fail git cat-file blob $blob_2 > /dev/null && test_must_fail git cat-file blob $blob_3 > /dev/null'