From: Alex Riesen Date: Wed, 14 Mar 2007 22:57:23 +0000 (+0100) Subject: Add tests for --quiet option of diff programs X-Git-Tag: v1.5.1-rc1~13^2 X-Git-Url: https://git.lorimer.id.au/gitweb.git/diff_plain/0c66d6be4f888096865b8f3d5fdc00c83e4ecc3f?ds=inline;hp=--cc Add tests for --quiet option of diff programs Signed-off-by: Alex Riesen --- 0c66d6be4f888096865b8f3d5fdc00c83e4ecc3f diff --git a/t/t4017-quiet.sh b/t/t4017-quiet.sh new file mode 100755 index 0000000000..e747e84227 --- /dev/null +++ b/t/t4017-quiet.sh @@ -0,0 +1,80 @@ +#!/bin/sh + +test_description='Return value of diffs' + +. ./test-lib.sh + +test_expect_success 'setup' ' + echo 1 >a && + git add . && + git commit -m first && + echo 2 >b && + git add . && + git commit -a -m second +' + +test_expect_success 'git diff-tree HEAD^ HEAD' ' + git diff-tree --quiet HEAD^ HEAD >cnt + test $? = 1 && test $(wc -l cnt + test $? = 0 && test $(wc -l cnt + test $? = 1 && test $(wc -l cnt + test $? = 1 && test $(wc -l cnt + test $? = 0 && test $(wc -l cnt + test $? = 0 && test $(wc -l cnt + test $? = 0 && test $(wc -l cnt + test $? = 1 && test $(wc -l >b && + echo 3 >c && + git add . && { + git diff-index --quiet --cached HEAD^ >cnt + test $? = 1 && test $(wc -l cnt + test $? = 1 && test $(wc -l cnt + test $? = 0 && test $(wc -l >c && { + git diff-files --quiet >cnt + test $? = 1 && test $(wc -l cnt + test $? = 1 && test $(wc -l