diff options
author | Junio C Hamano <gitster@pobox.com> | 2011-05-04 14:57:06 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2011-05-04 14:57:06 -0700 |
commit | 391b4933442dd07507a5de112092eaa4efc902bb (patch) | |
tree | bae576a334e6e8941aa3997555b3c7e78aa4b242 /t | |
parent | a3402c18b66347a9357cdb1af5a581f1ecc5264d (diff) | |
parent | 0235017eafa8dfc3a7353b7091ad5109d0beb7a5 (diff) | |
download | git-391b4933442dd07507a5de112092eaa4efc902bb.tar.gz git-391b4933442dd07507a5de112092eaa4efc902bb.tar.xz |
Merge branch 'ar/clean-rmdir-empty' into maint
* ar/clean-rmdir-empty:
clean: unreadable directory may still be rmdir-able if it is empty
Diffstat (limited to 't')
-rwxr-xr-x | t/t7300-clean.sh | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/t/t7300-clean.sh b/t/t7300-clean.sh index 7e1be4440..800b5368a 100755 --- a/t/t7300-clean.sh +++ b/t/t7300-clean.sh @@ -453,4 +453,11 @@ test_expect_success 'git clean -e' ' ) ' +test_expect_success SANITY 'git clean -d with an unreadable empty directory' ' + mkdir foo && + chmod a= foo && + git clean -dfx foo && + ! test -d foo +' + test_done |