]> git.ipfire.org Git - thirdparty/git.git/commitdiff
t4012: use 'printf' instead of 'dd' to generate a binary file
authorJohannes Sixt <j6t@kdbg.org>
Mon, 16 Jul 2012 20:46:56 +0000 (22:46 +0200)
committerJunio C Hamano <gitster@pobox.com>
Mon, 16 Jul 2012 20:51:10 +0000 (13:51 -0700)
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 <j6t@kdbg.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Signed-off-by: Alexander Strasser <eclipse7@gmx.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
t/t4012-diff-binary.sh

index 7b0e759c74bac0fbff2a4bd7ec4c6f92df70e2c0..077870e95dda56b47d8cad2516402ab78a8d0c55 100755 (executable)
@@ -131,7 +131,7 @@ cat >expect <<EOF
 EOF
 
 test_expect_success 'diff --stat with binary files and big change count' '
-       echo X | dd of=binfile bs=1k seek=1 &&
+       printf "\01\00%1024d" 1 >binfile &&
        git add binfile &&
        i=0 &&
        while test $i -lt 10000; do