X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=t%2Ft4040-whitespace-status.sh;h=3c728a3ebf9ce52e5c24c81525d5cb749cfb2957;hb=e9d4f7405b6ab399ef0ea62a796c646de676555d;hp=a30b03bcf27ba360c3761ade77ddf0ed00600470;hpb=2d83abd4b2d12584391cda288a17461a9ae4ba5f;p=git.git diff --git a/t/t4040-whitespace-status.sh b/t/t4040-whitespace-status.sh index a30b03bcf..3c728a3eb 100755 --- a/t/t4040-whitespace-status.sh +++ b/t/t4040-whitespace-status.sh @@ -60,4 +60,16 @@ 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_expect_success 'diff-tree --diff-filter --quiet' ' + git commit -a -m "worktree state" && + test_must_fail git diff-tree --diff-filter=M --quiet HEAD^ HEAD +' + test_done