t5303: drop "count=1" from corruption dd
commit50b72ede0592b16cb62e1b92d52bdccc4cee9b20
authorJeff King <peff@peff.net>
Fri, 14 Jun 2013 21:51:01 +0000 (14 17:51 -0400)
committerJunio C Hamano <gitster@pobox.com>
Fri, 14 Jun 2013 21:56:08 +0000 (14 14:56 -0700)
treeed1cdf83375a8a857a08b4a549b3674c6a3dcf57
parentf2b4626d9e78e00d2168a8470633d6c7f5331a13
t5303: drop "count=1" from corruption dd

This test corrupts pack objects by using "dd" with a seek
command. It passes "count=1 bs=1" to munge just a single
byte. However, the test added in commit b3118bdc wants to
munge two bytes, and the second byte of corruption is
silently ignored.

This turned out not to impact the test, however. The idea
was to reduce the "size of this entry" part of the header so
that zlib runs out of input bytes while inflating the entry.
That header is two bytes long, and the test reduced the
value of both bytes; since we experience the problem if we
are off by even 1 byte, it is sufficient to munge only the
first one.

Even though the test would have worked with only a single
byte munged, and we could simply tweak the test to use a
single byte, it makes sense to lift this 1-byte restriction
from do_corrupt_object. It will allow future tests that do
need to change multiple bytes to do so.

Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
t/t5303-pack-corruption-resilience.sh