diff options
author | Ping Yin <pkufranky@gmail.com> | 2008-05-02 21:35:33 +0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2008-05-04 17:41:27 -0700 |
commit | 7c08a2a6370ea70f16addcbad9096b4510a6b467 (patch) | |
tree | 409574dd84696f702855c34841dd744ab30f2d2a /t | |
parent | c697ad143ba1ff58b29e7efe149d244d4b7010a5 (diff) | |
download | git-7c08a2a6370ea70f16addcbad9096b4510a6b467.tar.gz git-7c08a2a6370ea70f16addcbad9096b4510a6b467.tar.xz |
t4027: test diff for submodule with empty directory
Signed-off-by: Ping Yin <pkufranky@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't')
-rwxr-xr-x | t/t4027-diff-submodule.sh | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/t/t4027-diff-submodule.sh b/t/t4027-diff-submodule.sh index 1fd3fb74d..ba6679c6e 100755 --- a/t/t4027-diff-submodule.sh +++ b/t/t4027-diff-submodule.sh @@ -50,4 +50,11 @@ test_expect_success 'git diff-files --raw' ' test_cmp expect actual.files ' +test_expect_success 'git diff (empty submodule dir)' ' + : >empty && + rm -rf sub/* sub/.git && + git diff > actual.empty && + test_cmp empty actual.empty +' + test_done |