aboutsummaryrefslogtreecommitdiff
path: root/t/t2200-add-update.sh
diff options
context:
space:
mode:
authorBenoit Sigoure <tsuna@lrde.epita.fr>2007-09-14 10:29:04 +0200
committerJunio C Hamano <gitster@pobox.com>2007-09-14 14:30:05 -0700
commit43b98acc23306fd7fff888477937063361a09593 (patch)
treeafd20e933ba31c99c2905217f529992caaeaed47 /t/t2200-add-update.sh
parent42b5f8693eddbbd486579fb2304db1bc7282ac26 (diff)
downloadgit-43b98acc23306fd7fff888477937063361a09593.tar.gz
git-43b98acc23306fd7fff888477937063361a09593.tar.xz
Add test to check recent fix to "git add -u"
An earlier commit fixed type-change case in "git add -u". This adds a test to make sure we do not introduce regression. At the same time, it fixes a stupid typo in the error message. Signed-off-by: Benoit Sigoure <tsuna@lrde.epita.fr> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t2200-add-update.sh')
-rwxr-xr-xt/t2200-add-update.sh11
1 files changed, 10 insertions, 1 deletions
diff --git a/t/t2200-add-update.sh b/t/t2200-add-update.sh
index 61d08bb43..eb1ced3c3 100755
--- a/t/t2200-add-update.sh
+++ b/t/t2200-add-update.sh
@@ -16,11 +16,12 @@ only the updates to dir/sub.'
test_expect_success setup '
echo initial >check &&
echo initial >top &&
+ echo initial >foo &&
mkdir dir1 dir2 &&
echo initial >dir1/sub1 &&
echo initial >dir1/sub2 &&
echo initial >dir2/sub3 &&
- git add check dir1 dir2 top &&
+ git add check dir1 dir2 top foo &&
test_tick
git-commit -m initial &&
@@ -76,4 +77,12 @@ test_expect_success 'change gets noticed' '
'
+test_expect_success 'replace a file with a symlink' '
+
+ rm foo &&
+ ln -s top foo &&
+ git add -u -- foo
+
+'
+
test_done