summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorMichael J Gruber <git@drmicha.warpmail.net>2009-01-14 17:03:22 (GMT)
committerJunio C Hamano <gitster@pobox.com>2009-01-14 17:34:22 (GMT)
commitbe17262d13f5f3df5ee9635b11dad180613e9cbd (patch)
tree34fb5f904503c7af364219ab030d5516262d0197 /t
parent3772923f1429f2888074e698c36c071b864effe3 (diff)
downloadgit-be17262d13f5f3df5ee9635b11dad180613e9cbd.zip
git-be17262d13f5f3df5ee9635b11dad180613e9cbd.tar.gz
git-be17262d13f5f3df5ee9635b11dad180613e9cbd.tar.bz2
fix handling of multiple untracked files for git mv -k
The "-k" option to "git mv" should allow specifying multiple untracked files. Currently, multiple untracked files raise an assertion if they appear consecutively as arguments. Fix this by decrementing the loop index after removing one entry from the array of arguments. Signed-off-by: Michael J Gruber <git@drmicha.warpmail.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't')
-rwxr-xr-xt/t7001-mv.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t7001-mv.sh b/t/t7001-mv.sh
index fddcdde..19493c8 100755
--- a/t/t7001-mv.sh
+++ b/t/t7001-mv.sh
@@ -49,7 +49,7 @@ test_expect_success \
test -f untracked1 &&
test ! -f path0/untracked1'
-test_expect_failure \
+test_expect_success \
'checking -k on multiple untracked files' \
'touch untracked2 &&
git mv -k untracked1 untracked2 path0 &&