]>
Commit | Line | Data |
---|---|---|
c5ae7cb6 | 1 | #!/bin/sh |
a624eaa7 JM |
2 | # |
3 | # Copyright (c) Jim Meyering | |
4 | # | |
950db879 | 5 | test_description='diff honors config option, diff.suppressBlankEmpty' |
a624eaa7 JM |
6 | |
7 | . ./test-lib.sh | |
8 | ||
b55ee572 | 9 | cat <<\EOF >expected || |
a624eaa7 JM |
10 | diff --git a/f b/f |
11 | index 5f6a263..8cb8bae 100644 | |
12 | --- a/f | |
13 | +++ b/f | |
14 | @@ -1,2 +1,2 @@ | |
15 | ||
16 | -x | |
17 | +y | |
18 | EOF | |
19 | exit 1 | |
20 | ||
7022ba33 | 21 | test_expect_success "$test_description" ' |
22 | printf "\nx\n" > f && | |
b55ee572 | 23 | before=$(git hash-object f) && |
24 | before=$(git rev-parse --short $before) && | |
7022ba33 | 25 | git add f && |
26 | git commit -q -m. f && | |
27 | printf "\ny\n" > f && | |
b55ee572 | 28 | after=$(git hash-object f) && |
29 | after=$(git rev-parse --short $after) && | |
30 | sed -e "s/^index .*/index $before..$after 100644/" expected >exp && | |
7022ba33 | 31 | git config --bool diff.suppressBlankEmpty true && |
32 | git diff f > actual && | |
33 | test_cmp exp actual && | |
34 | perl -i.bak -p -e "s/^\$/ /" exp && | |
35 | git config --bool diff.suppressBlankEmpty false && | |
36 | git diff f > actual && | |
37 | test_cmp exp actual && | |
38 | git config --bool --unset diff.suppressBlankEmpty && | |
39 | git diff f > actual && | |
40 | test_cmp exp actual | |
41 | ' | |
a624eaa7 JM |
42 | |
43 | test_done |