summaryrefslogtreecommitdiff
path: root/t/t3200-branch.sh
diff options
context:
space:
mode:
authorLars Hjemli <hjemli@gmail.com>2006-11-29 20:44:56 (GMT)
committerJunio C Hamano <junkio@cox.net>2006-12-06 07:50:57 (GMT)
commit16c2bfbb449a90db00a46984d7dd7f735caa1d56 (patch)
tree6d268e2843256244951d6e07ba7473f3156aa201 /t/t3200-branch.sh
parentc976d415e5352886f0650f8e2edba81866c38587 (diff)
downloadgit-16c2bfbb449a90db00a46984d7dd7f735caa1d56.zip
git-16c2bfbb449a90db00a46984d7dd7f735caa1d56.tar.gz
git-16c2bfbb449a90db00a46984d7dd7f735caa1d56.tar.bz2
rename_ref: use lstat(2) when testing for symlink
The current check for symlinked reflogs was based on stat(2), which is utterly embarrassing. Fix it, and add a matching testcase. Signed-off-by: Lars Hjemli <hjemli@gmail.com> Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 't/t3200-branch.sh')
-rwxr-xr-xt/t3200-branch.sh7
1 files changed, 7 insertions, 0 deletions
diff --git a/t/t3200-branch.sh b/t/t3200-branch.sh
index afaa853..5782c30 100755
--- a/t/t3200-branch.sh
+++ b/t/t3200-branch.sh
@@ -104,4 +104,11 @@ test_expect_success \
git-branch -m s/s s &&
test -f .git/logs/refs/heads/s'
+test_expect_failure \
+ 'git-branch -m u v should fail when the reflog for u is a symlink' \
+ 'git-branch -l u &&
+ mv .git/logs/refs/heads/u real-u &&
+ ln -s real-u .git/logs/refs/heads/u &&
+ git-branch -m u v'
+
test_done