git-remote-mediawiki: don't compute the diff when getting commit message
[git.git] / t / t4035-diff-quiet.sh
blobcdb9202f57ea75983cf8a25f892bbf868724250d
1 #!/bin/sh
3 test_description='Return value of diffs'
5 . ./test-lib.sh
7 test_expect_success 'setup' '
8 echo 1 >a &&
9 git add . &&
10 git commit -m first &&
11 echo 2 >b &&
12 git add . &&
13 git commit -a -m second
16 test_expect_success 'git diff-tree HEAD^ HEAD' '
17 git diff-tree --quiet HEAD^ HEAD >cnt
18 test $? = 1 && test_line_count = 0 cnt
20 test_expect_success 'git diff-tree HEAD^ HEAD -- a' '
21 git diff-tree --quiet HEAD^ HEAD -- a >cnt
22 test $? = 0 && test_line_count = 0 cnt
24 test_expect_success 'git diff-tree HEAD^ HEAD -- b' '
25 git diff-tree --quiet HEAD^ HEAD -- b >cnt
26 test $? = 1 && test_line_count = 0 cnt
28 # this diff outputs one line: sha1 of the given head
29 test_expect_success 'echo HEAD | git diff-tree --stdin' '
30 echo $(git rev-parse HEAD) | git diff-tree --quiet --stdin >cnt
31 test $? = 1 && test_line_count = 1 cnt
33 test_expect_success 'git diff-tree HEAD HEAD' '
34 git diff-tree --quiet HEAD HEAD >cnt
35 test $? = 0 && test_line_count = 0 cnt
37 test_expect_success 'git diff-files' '
38 git diff-files --quiet >cnt
39 test $? = 0 && test_line_count = 0 cnt
41 test_expect_success 'git diff-index --cached HEAD' '
42 git diff-index --quiet --cached HEAD >cnt
43 test $? = 0 && test_line_count = 0 cnt
45 test_expect_success 'git diff-index --cached HEAD^' '
46 git diff-index --quiet --cached HEAD^ >cnt
47 test $? = 1 && test_line_count = 0 cnt
49 test_expect_success 'git diff-index --cached HEAD^' '
50 echo text >>b &&
51 echo 3 >c &&
52 git add . && {
53 git diff-index --quiet --cached HEAD^ >cnt
54 test $? = 1 && test_line_count = 0 cnt
57 test_expect_success 'git diff-tree -Stext HEAD^ HEAD -- b' '
58 git commit -m "text in b" && {
59 git diff-tree --quiet -Stext HEAD^ HEAD -- b >cnt
60 test $? = 1 && test_line_count = 0 cnt
63 test_expect_success 'git diff-tree -Snot-found HEAD^ HEAD -- b' '
64 git diff-tree --quiet -Snot-found HEAD^ HEAD -- b >cnt
65 test $? = 0 && test_line_count = 0 cnt
67 test_expect_success 'git diff-files' '
68 echo 3 >>c && {
69 git diff-files --quiet >cnt
70 test $? = 1 && test_line_count = 0 cnt
73 test_expect_success 'git diff-index --cached HEAD' '
74 git update-index c && {
75 git diff-index --quiet --cached HEAD >cnt
76 test $? = 1 && test_line_count = 0 cnt
80 test_done