summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 1020d08)
raw | patch | inline | side by side (parent: 1020d08)
author | Jeff King <peff@peff.net> | |
Mon, 9 May 2011 23:53:00 +0000 (16:53 -0700) | ||
committer | Junio C Hamano <gitster@pobox.com> | |
Tue, 10 May 2011 00:02:08 +0000 (17:02 -0700) |
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>
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>
t/t7501-commit.sh | patch | blob | history |
diff --git a/t/t7501-commit.sh b/t/t7501-commit.sh
index a76c47419590ed16c53b8d4d82c2d92c11853154..3d2b14d3035e02e14696f64edd0ddabca204f576 100755 (executable)
--- a/t/t7501-commit.sh
+++ b/t/t7501-commit.sh
"echo King of the bongo >file &&
test_must_fail git commit -m foo -a file"
-test_expect_success PERL \
- "using paths with --interactive" \
- "echo bong-o-bong >file &&
- ! (echo 7 | git commit -m foo --interactive file)"
+test_expect_success PERL 'cannot use paths with --interactive' '
+ echo bong-o-bong >file &&
+ # 2: update, 1:st path, that is all, 7: quit
+ ( echo 2; echo 1; echo; echo 7 ) |
+ test_must_fail git commit -m foo --interactive file
+'
test_expect_success \
"using invalid commit with -C" \