From 66fd93ee060a1e7f831316f6c81e57f43c5578ba Mon Sep 17 00:00:00 2001 From: Johannes Sixt Date: Mon, 16 Jul 2012 22:46:56 +0200 Subject: [PATCH] t4012: use 'printf' instead of 'dd' to generate a binary file For some reason, 'echo X | dd bs=1k seek=1' creates a file with 2050 bytes on Windows instead of the expected 1026 bytes, so that a test fails. Since the actual contents of the file are irrelevant as long as there is at least one zero byte so that the diff machinery recognizes it as binary, use printf to generate it. Signed-off-by: Johannes Sixt Signed-off-by: Junio C Hamano Signed-off-by: Alexander Strasser Signed-off-by: Junio C Hamano --- t/t4012-diff-binary.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/t/t4012-diff-binary.sh b/t/t4012-diff-binary.sh index 7b0e759c74..077870e95d 100755 --- a/t/t4012-diff-binary.sh +++ b/t/t4012-diff-binary.sh @@ -131,7 +131,7 @@ cat >expect <binfile && git add binfile && i=0 && while test $i -lt 10000; do -- 2.11.4.GIT