diff options
author | Junio C Hamano <junkio@cox.net> | 2006-04-13 11:57:57 -0700 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-04-13 11:57:57 -0700 |
commit | 2283645b85dc91ca958b05066511083255a8612a (patch) | |
tree | 9eab1486e295d89481f22d5bfc83d3b17e1c482a /t | |
parent | f43ba60e2c3bec4925eee229fa0f420dd1296f0c (diff) | |
download | git-2283645b85dc91ca958b05066511083255a8612a.tar.gz |
t3600-rm: skip failed-remove test when we cannot make an unremovable file.
When running t3600-rm test under fakeroot (or as root), we
cannot make a file unremovable with "chmod a-w .". Detect this
case early and skip that test.
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 't')
-rwxr-xr-x | t/t3600-rm.sh | 18 |
1 files changed, 15 insertions, 3 deletions
diff --git a/t/t3600-rm.sh b/t/t3600-rm.sh index d1947e11c1..acaa4d6bdc 100755 --- a/t/t3600-rm.sh +++ b/t/t3600-rm.sh @@ -23,6 +23,16 @@ else test_tabs=n fi +# Later we will try removing an unremovable path to make sure +# git-rm barfs, but if the test is run as root that cannot be +# arranged. +: >test-file +chmod a-w . +rm -f test-file +test -f test-file && test_failed_remove=y +chmod 775 . +rm -f test-file + test_expect_success \ 'Pre-check that foo exists and is in index before git-rm foo' \ '[ -f foo ] && git-ls-files --error-unmatch foo' @@ -56,12 +66,14 @@ test "$test_tabs" = y && test_expect_success \ "git-rm -f 'space embedded' 'tab embedded' 'newline embedded'" -if test "$test_tabs" = y; then -chmod u-w . +if test "$test_failed_remove" = y; then +chmod a-w . test_expect_failure \ 'Test that "git-rm -f" fails if its rm fails' \ 'git-rm -f baz' -chmod u+w . +chmod 775 . +else + test_expect_success 'skipping removal failure (perhaps running as root?)' : fi test_expect_success \ |