diff options
author | Johannes Sixt <j6t@kdbg.org> | 2012-07-16 22:46:56 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2012-07-16 13:51:10 -0700 |
commit | 66fd93ee060a1e7f831316f6c81e57f43c5578ba (patch) | |
tree | abb653bb03947d5c71c51d241556dac220cde264 /t | |
parent | 3e9cdf7fca90acd6efd380a2ed0d6801f33a46b7 (diff) | |
download | git-66fd93ee060a1e7f831316f6c81e57f43c5578ba.tar.gz git-66fd93ee060a1e7f831316f6c81e57f43c5578ba.tar.xz |
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 <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>
Diffstat (limited to 't')
-rwxr-xr-x | t/t4012-diff-binary.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t4012-diff-binary.sh b/t/t4012-diff-binary.sh index 7b0e759c7..077870e95 100755 --- a/t/t4012-diff-binary.sh +++ b/t/t4012-diff-binary.sh @@ -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 |