Skip to content

Commit

Permalink
Test interaction between diff --check and --exit-code
Browse files Browse the repository at this point in the history
Make sure that it works as advertised in the man page.

Signed-off-by: Wincent Colaiuta <win@wincent.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
  • Loading branch information
Wincent Colaiuta authored and Junio C Hamano committed Dec 15, 2007
1 parent 420f4f0 commit 5973a07
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions t/t4017-diff-retval.sh
Original file line number Diff line number Diff line change
Expand Up @@ -76,4 +76,33 @@ test_expect_success 'git diff-index --cached HEAD' '
}
'

test_expect_success '--check --exit-code returns 0 for no difference' '
git diff --check --exit-code
'

test_expect_success '--check --exit-code returns 1 for a clean difference' '
echo "good" > a &&
git diff --check --exit-code
test $? = 1
'

test_expect_success '--check --exit-code returns 3 for a dirty difference' '
echo "bad " >> a &&
git diff --check --exit-code
test $? = 3
'

test_expect_success '--check with --no-pager returns 2 for dirty difference' '
git --no-pager diff --check
test $? = 2
'

test_done

0 comments on commit 5973a07

Please sign in to comment.