t4012: Fix invalid call to dd(1)
commit849ff8300586988a9fa2582454253524416998a5
authorJohannes Schindelin <johannes.schindelin@gmx.de>
Sat, 12 May 2012 02:11:45 +0000 (11 21:11 -0500)
committerPat Thoyts <patthoyts@users.sourceforge.net>
Tue, 19 Jun 2012 22:45:05 +0000 (19 23:45 +0100)
tree213f03c649fe50b4427d0efcd6e653b117115472
parentbee410c08b28fc891123c1720b87ae5aedc7b5ab
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