Andrew's git
/
gitweb.git
/ diff
summary
|
log
|
commit
| diff |
tree
commit
grep
author
committer
pickaxe
?
re
git-diff: add a test for git diff --quiet -w
author
Larry D'Anna
<larry@elder-gods.org>
Mon, 22 Feb 2010 02:58:44 +0000
(21:58 -0500)
committer
Junio C Hamano
<gitster@pobox.com>
Mon, 22 Feb 2010 05:57:19 +0000
(21:57 -0800)
This patch adds two test cases for:
6977c25
git diff --quiet -w: check and report the status
Signed-off-by: Larry D'Anna <larry@elder-gods.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
t/t4017-diff-retval.sh
patch
|
blob
|
history
raw
|
patch
|
inline
| side by side (parent:
6977c25
)
diff --git
a/t/t4017-diff-retval.sh
b/t/t4017-diff-retval.sh
index 60dd2014d5ae5d5e9e168b8b60278d90ef93cc53..0391a5827ea8ba196b7796b7df818f8ac860c387 100755
(executable)
--- a/
t/t4017-diff-retval.sh
+++ b/
t/t4017-diff-retval.sh
@@
-5,6
+5,9
@@
test_description='Return value of diffs'
. ./test-lib.sh
test_expect_success 'setup' '
. ./test-lib.sh
test_expect_success 'setup' '
+ echo "1 " >a &&
+ git add . &&
+ git commit -m zeroth &&
echo 1 >a &&
git add . &&
git commit -m first &&
echo 1 >a &&
git add . &&
git commit -m first &&
@@
-13,6
+16,18
@@
test_expect_success 'setup' '
git commit -a -m second
'
git commit -a -m second
'
+test_expect_success 'git diff --quiet -w HEAD^^ HEAD^' '
+ git diff --quiet -w HEAD^^ HEAD^
+'
+
+test_expect_success 'git diff --quiet HEAD^^ HEAD^' '
+ test_must_fail git diff --quiet HEAD^^ HEAD^
+'
+
+test_expect_success 'git diff --quiet -w HEAD^ HEAD' '
+ test_must_fail git diff --quiet -w HEAD^ HEAD
+'
+
test_expect_success 'git diff-tree HEAD^ HEAD' '
git diff-tree --exit-code HEAD^ HEAD
test $? = 1
test_expect_success 'git diff-tree HEAD^ HEAD' '
git diff-tree --exit-code HEAD^ HEAD
test $? = 1