summaryrefslogtreecommitdiff
path: root/t/t4040-whitespace-status.sh
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2011-03-23 21:55:17 (GMT)
committerJunio C Hamano <gitster@pobox.com>2011-03-23 21:55:17 (GMT)
commit7d0cf357a31cc8a442342696788d776265482ce9 (patch)
tree9b5eb5adb7a70fb7f2aef1af23b06a9a83855c17 /t/t4040-whitespace-status.sh
parent98b256bd0857ab2192fdad27c26edbb0df3d96d1 (diff)
parent2cfe8a68ccba86f046080f890102a9a43361cfdd (diff)
downloadgit-7d0cf357a31cc8a442342696788d776265482ce9.zip
git-7d0cf357a31cc8a442342696788d776265482ce9.tar.gz
git-7d0cf357a31cc8a442342696788d776265482ce9.tar.bz2
Merge branch 'jc/maint-diff-q-filter'
* jc/maint-diff-q-filter: diff --quiet: disable optimization when --diff-filter=X is used
Diffstat (limited to 't/t4040-whitespace-status.sh')
-rwxr-xr-xt/t4040-whitespace-status.sh7
1 files changed, 7 insertions, 0 deletions
diff --git a/t/t4040-whitespace-status.sh b/t/t4040-whitespace-status.sh
index a30b03b..abc4934 100755
--- a/t/t4040-whitespace-status.sh
+++ b/t/t4040-whitespace-status.sh
@@ -60,4 +60,11 @@ test_expect_success 'diff-files -b -p --exit-code' '
git diff-files -b -p --exit-code
'
+test_expect_success 'diff-files --diff-filter --quiet' '
+ git reset --hard &&
+ rm a/d &&
+ echo x >>b/e &&
+ test_must_fail git diff-files --diff-filter=M --quiet
+'
+
test_done