diff options
author | Johannes Sixt <j6t@kdbg.org> | 2015-08-11 22:29:48 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2015-08-11 15:17:07 -0700 |
commit | fbf2fecf505e44c4f45f4b6d29a37011989ac071 (patch) | |
tree | 9ba9cc4eb9044d4ba82817eb509a52b977f2c95e | |
parent | 38ae8784074852c8e7b651f4f6e44e07466da7e1 (diff) | |
download | git-fbf2fecf505e44c4f45f4b6d29a37011989ac071.tar.gz |
t7300-clean: require POSIXPERM for chmod 0 testee/clean-remove-dirs
A test case introduced by 91479b9c (t7300: add tests to document
behavior of clean and nested git) uses 'chmod 0' to verify that a
subdirectory that has an unreadable .git file is not removed. This can
work only when the system pays attention to the permissions set with
'chmod'. Therefore, set the POSIXPERM prerequisite on the test case.
Signed-off-by: Johannes Sixt <j6t@kdbg.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rwxr-xr-x | t/t7300-clean.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t7300-clean.sh b/t/t7300-clean.sh index 32e96da7e3..27557d64f3 100755 --- a/t/t7300-clean.sh +++ b/t/t7300-clean.sh @@ -499,7 +499,7 @@ test_expect_success 'should not clean submodules' ' test_path_is_missing to_clean ' -test_expect_success 'should avoid cleaning possible submodules' ' +test_expect_success POSIXPERM 'should avoid cleaning possible submodules' ' rm -fr to_clean possible_sub1 && mkdir to_clean possible_sub1 && test_when_finished "rm -rf possible_sub*" && |