t7501.8: feed a meaningful command

The command expects "git commit --interactive <path>" to fail because you
cannot (yet) limit "commit --interactive" with a pathspec, but even if the
command allowed to take <path>, the test would have failed as saying just
7:quit would leave the index the same as the current commit, leading to an
attempt to create an empty commit that would fail without --allow-empty.

Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
maint
Jeff King 2011-05-09 16:53:00 -07:00 committed by Junio C Hamano
parent 1020d08786
commit 587ac8c9d4
1 changed files with 6 additions and 4 deletions

View File

@ -41,10 +41,12 @@ test_expect_success \
"echo King of the bongo >file && "echo King of the bongo >file &&
test_must_fail git commit -m foo -a file" test_must_fail git commit -m foo -a file"


test_expect_success PERL \ test_expect_success PERL 'cannot use paths with --interactive' '
"using paths with --interactive" \ echo bong-o-bong >file &&
"echo bong-o-bong >file && # 2: update, 1:st path, that is all, 7: quit
! (echo 7 | git commit -m foo --interactive file)" ( echo 2; echo 1; echo; echo 7 ) |
test_must_fail git commit -m foo --interactive file
'


test_expect_success \ test_expect_success \
"using invalid commit with -C" \ "using invalid commit with -C" \