t4012: Fix invalid call to dd(1)
commitfce52b4ab1943af727874c8f998e09641c53b64d
authorJohannes Schindelin <johannes.schindelin@gmx.de>
Sat, 12 May 2012 02:11:45 +0000 (11 21:11 -0500)
committerJohannes Schindelin <johannes.schindelin@gmx.de>
Sun, 20 May 2012 23:45:49 +0000 (20 17:45 -0600)
treed3a0135c48974166bea2eeb74d277b3cdd8ffb07
parent6bb8d90faa90b033714d941eb32f4276da6c763b
t4012: Fix invalid call to dd(1)

t4012 assumed that it is okay to seek beyond the end of stdin. It is not,
and leads to an access violation (Windows speak for: segmentation fault)
with MinGW's dd.exe iff run in non-verbose mode.

Further, for some reason 'echo X | dd bs=1k seek=1' resulted in 2050 bytes
in this developer's setup instead of 1026.

So let's use a valid technique to generate 1024 NULs followed by X and a
line feed: a good ole' Perl script.

This patch is dedicated to Randal "Merlyn" Schwartz.

Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
t/t4012-diff-binary.sh