exec_cmd: remove unused extern
[git/dscho.git] / t / t4043-diff-rename-binary.sh
blob06012811a1abf2e7d9c766e84b32dae8a95a7321
1 #!/bin/sh
3 # Copyright (c) 2010 Jakub Narebski, Christian Couder
6 test_description='Move a binary file'
8 . ./test-lib.sh
11 test_expect_success 'prepare repository' '
12 git init &&
13 echo foo > foo &&
14 echo "barQ" | q_to_nul > bar &&
15 git add . &&
16 git commit -m "Initial commit"
19 test_expect_success 'move the files into a "sub" directory' '
20 mkdir sub &&
21 git mv bar foo sub/ &&
22 git commit -m "Moved to sub/"
25 cat > expected <<\EOF
26 bar => sub/bar | Bin 5 -> 5 bytes
27 foo => sub/foo | 0
28 2 files changed, 0 insertions(+), 0 deletions(-)
30 diff --git a/bar b/sub/bar
31 similarity index 100%
32 rename from bar
33 rename to sub/bar
34 diff --git a/foo b/sub/foo
35 similarity index 100%
36 rename from foo
37 rename to sub/foo
38 EOF
40 test_expect_success 'git show -C -C report renames' '
41 git show -C -C --raw --binary --stat | tail -n 12 > current &&
42 test_cmp expected current
45 test_done