block-sha1: Use '(B&C)+(D&(B^C))' instead of '(B&C)|(D&(B|C))' in round 3
[git/dscho.git] / t / t4016-diff-quote.sh
blob55eb5f83f17c0ebfb537d390fd3913b7c89d65f4
1 #!/bin/sh
3 # Copyright (c) 2007 Junio C Hamano
6 test_description='Quoting paths in diff output.
9 . ./test-lib.sh
11 P0='pathname'
12 P1='pathname with HT'
13 P2='pathname with SP'
14 P3='pathname
15 with LF'
16 : 2>/dev/null >"$P1" && test -f "$P1" && rm -f "$P1" || {
17 say 'Your filesystem does not allow tabs in filenames, test skipped.'
18 test_done
21 test_expect_success setup '
22 echo P0.0 >"$P0.0" &&
23 echo P0.1 >"$P0.1" &&
24 echo P0.2 >"$P0.2" &&
25 echo P0.3 >"$P0.3" &&
26 echo P1.0 >"$P1.0" &&
27 echo P1.2 >"$P1.2" &&
28 echo P1.3 >"$P1.3" &&
29 git add . &&
30 git commit -m initial &&
31 git mv "$P0.0" "R$P0.0" &&
32 git mv "$P0.1" "R$P1.0" &&
33 git mv "$P0.2" "R$P2.0" &&
34 git mv "$P0.3" "R$P3.0" &&
35 git mv "$P1.0" "R$P0.1" &&
36 git mv "$P1.2" "R$P2.1" &&
37 git mv "$P1.3" "R$P3.1" &&
41 cat >expect <<\EOF
42 rename pathname.1 => "Rpathname\twith HT.0" (100%)
43 rename pathname.3 => "Rpathname\nwith LF.0" (100%)
44 rename "pathname\twith HT.3" => "Rpathname\nwith LF.1" (100%)
45 rename pathname.2 => Rpathname with SP.0 (100%)
46 rename "pathname\twith HT.2" => Rpathname with SP.1 (100%)
47 rename pathname.0 => Rpathname.0 (100%)
48 rename "pathname\twith HT.0" => Rpathname.1 (100%)
49 EOF
50 test_expect_success 'git diff --summary -M HEAD' '
51 git diff --summary -M HEAD >actual &&
52 test_cmp expect actual
55 cat >expect <<\EOF
56 pathname.1 => "Rpathname\twith HT.0" | 0
57 pathname.3 => "Rpathname\nwith LF.0" | 0
58 "pathname\twith HT.3" => "Rpathname\nwith LF.1" | 0
59 pathname.2 => Rpathname with SP.0 | 0
60 "pathname\twith HT.2" => Rpathname with SP.1 | 0
61 pathname.0 => Rpathname.0 | 0
62 "pathname\twith HT.0" => Rpathname.1 | 0
63 7 files changed, 0 insertions(+), 0 deletions(-)
64 EOF
65 test_expect_success 'git diff --stat -M HEAD' '
66 git diff --stat -M HEAD >actual &&
67 test_cmp expect actual
70 test_done