summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 92f9e27)
raw | patch | inline | side by side (parent: 92f9e27)
author | Junio C Hamano <gitster@pobox.com> | |
Tue, 9 Feb 2010 18:06:33 +0000 (10:06 -0800) | ||
committer | Junio C Hamano <gitster@pobox.com> | |
Wed, 10 Feb 2010 21:42:29 +0000 (13:42 -0800) |
Shell reports exit status only from the most downstream command
in a pipeline. In these tests, we want to make sure that the
command fails in a controlled way, and produces a correct error
message.
This issue was known by Jay who submitted the patch, and also was
pointed out by Hannes during the review process, but I forgot to
fix it up before applying. Sorry about that.
Signed-off-by: Junio C Hamano <gitster@pobox.com>
in a pipeline. In these tests, we want to make sure that the
command fails in a controlled way, and produces a correct error
message.
This issue was known by Jay who submitted the patch, and also was
pointed out by Hannes during the review process, but I forgot to
fix it up before applying. Sorry about that.
Signed-off-by: Junio C Hamano <gitster@pobox.com>
t/t8003-blame.sh | patch | blob | history |
diff --git a/t/t8003-blame.sh b/t/t8003-blame.sh
index 4a8db74f7e09a143e73d647479ef62af91547865..3bbddd03cbfcf5cbdff6ed2987d68da9402ed993 100755 (executable)
--- a/t/t8003-blame.sh
+++ b/t/t8003-blame.sh
'
test_expect_success 'blame -L with invalid start' '
- test_must_fail git blame -L5 tres 2>&1 | grep "has only 2 lines"
+ test_must_fail git blame -L5 tres 2>errors &&
+ grep "has only 2 lines" errors
'
test_expect_success 'blame -L with invalid end' '
- git blame -L1,5 tres 2>&1 | grep "has only 2 lines"
+ test_must_fail git blame -L1,5 tres 2>errors &&
+ grep "has only 2 lines" errors
'
test_done