* [GSoC PATCH] t8003: avoid suppressing git's exit code
@ 2026-03-26 14:11 Trieu Huynh
2026-03-26 15:19 ` Junio C Hamano
0 siblings, 1 reply; 2+ messages in thread
From: Trieu Huynh @ 2026-03-26 14:11 UTC (permalink / raw)
To: git; +Cc: Trieu Huynh
Update t8003-blame-corner-cases.sh to redirect git-blame output
to a temporary file instead of piping it directly to not hide
the exit code of git commands behind pipes, as a crash in git
might go unnoticed.
Signed-off-by: Trieu Huynh <vikingtc4@gmail.com>
---
t/t8003-blame-corner-cases.sh | 42 +++++++++++++++++++++++------------
1 file changed, 28 insertions(+), 14 deletions(-)
diff --git a/t/t8003-blame-corner-cases.sh b/t/t8003-blame-corner-cases.sh
index 731265541a..f753e26e82 100755
--- a/t/t8003-blame-corner-cases.sh
+++ b/t/t8003-blame-corner-cases.sh
@@ -50,67 +50,78 @@ test_expect_success setup '
test_expect_success 'straight copy without -C' '
- git blame uno | grep Second
+ git blame uno >actual &&
+ grep Second actual
'
test_expect_success 'straight move without -C' '
- git blame dos | grep Initial
+ git blame dos >actual &&
+ grep Initial actual
'
test_expect_success 'straight copy with -C' '
- git blame -C1 uno | grep Second
+ git blame -C1 uno >actual &&
+ grep Second actual
'
test_expect_success 'straight move with -C' '
- git blame -C1 dos | grep Initial
+ git blame -C1 dos >actual &&
+ grep Initial actual
'
test_expect_success 'straight copy with -C -C' '
- git blame -C -C1 uno | grep Initial
+ git blame -C -C1 uno >actual &&
+ grep Initial actual
'
test_expect_success 'straight move with -C -C' '
- git blame -C -C1 dos | grep Initial
+ git blame -C -C1 dos >actual &&
+ grep Initial actual
'
test_expect_success 'append without -C' '
- git blame -L2 tres | grep Second
+ git blame -L2 tres >actual &&
+ grep Second actual
'
test_expect_success 'append with -C' '
- git blame -L2 -C1 tres | grep Second
+ git blame -L2 -C1 tres >actual &&
+ grep Second actual
'
test_expect_success 'append with -C -C' '
- git blame -L2 -C -C1 tres | grep Second
+ git blame -L2 -C -C1 tres >actual &&
+ grep Second actual
'
test_expect_success 'append with -C -C -C' '
- git blame -L2 -C -C -C1 tres | grep Initial
+ git blame -L2 -C -C -C1 tres >actual &&
+ grep Initial actual
'
test_expect_success 'blame wholesale copy' '
- git blame -f -C -C1 HEAD^ -- cow | sed -e "$pick_fc" >current &&
+ git blame -f -C -C1 HEAD^ -- cow >actual &&
+ sed -e "$pick_fc" actual >current &&
cat >expected <<-\EOF &&
mouse-Initial
mouse-Second
@@ -122,7 +133,8 @@ test_expect_success 'blame wholesale copy' '
test_expect_success 'blame wholesale copy and more' '
- git blame -f -C -C1 HEAD -- cow | sed -e "$pick_fc" >current &&
+ git blame -f -C -C1 HEAD -- cow >actual &&
+ sed -e "$pick_fc" actual >current &&
cat >expected <<-\EOF &&
mouse-Initial
mouse-Second
@@ -144,7 +156,8 @@ test_expect_success 'blame wholesale copy and more in the index' '
EOF
git add horse &&
test_when_finished "git rm -f horse" &&
- git blame -f -C -C1 -- horse | sed -e "$pick_fc" >current &&
+ git blame -f -C -C1 -- horse >actual &&
+ sed -e "$pick_fc" actual >current &&
cat >expected <<-\EOF &&
mouse-Initial
mouse-Second
@@ -168,7 +181,8 @@ test_expect_success 'blame during cherry-pick with file rename conflict' '
(git cherry-pick HEAD@{1} || test $? -eq 1) &&
git show HEAD@{1}:rodent > rodent &&
git add rodent &&
- git blame -f -C -C1 rodent | sed -e "$pick_fc" >current &&
+ git blame -f -C -C1 rodent >actual &&
+ sed -e "$pick_fc" actual >current &&
cat >expected <<-\EOF &&
mouse-Initial
mouse-Second
--
2.53.0.719.g41688c1a23
^ permalink raw reply related [flat|nested] 2+ messages in thread* Re: [GSoC PATCH] t8003: avoid suppressing git's exit code
2026-03-26 14:11 [GSoC PATCH] t8003: avoid suppressing git's exit code Trieu Huynh
@ 2026-03-26 15:19 ` Junio C Hamano
0 siblings, 0 replies; 2+ messages in thread
From: Junio C Hamano @ 2026-03-26 15:19 UTC (permalink / raw)
To: Trieu Huynh; +Cc: git
Trieu Huynh <vikingtc4@gmail.com> writes:
> Update t8003-blame-corner-cases.sh to redirect git-blame output
> to a temporary file instead of piping it directly to not hide
> the exit code of git commands behind pipes, as a crash in git
> might go unnoticed.
>
> Signed-off-by: Trieu Huynh <vikingtc4@gmail.com>
> ---
> t/t8003-blame-corner-cases.sh | 42 +++++++++++++++++++++++------------
> 1 file changed, 28 insertions(+), 14 deletions(-)
I see nothing wrong in the proposed log message nor in the patch
text. Nicely done.
Having said that, we could be a little bit more ambitious and make
this into a two-patch series, i.e.,
[1/2] does this exact change + "grep -> test_grep"
[2/2] modernises the style to remove blank lines at both ends of
each test
> diff --git a/t/t8003-blame-corner-cases.sh b/t/t8003-blame-corner-cases.sh
> index 731265541a..f753e26e82 100755
> --- a/t/t8003-blame-corner-cases.sh
> +++ b/t/t8003-blame-corner-cases.sh
> @@ -50,67 +50,78 @@ test_expect_success setup '
>
> test_expect_success 'straight copy without -C' '
>
> - git blame uno | grep Second
> + git blame uno >actual &&
> + grep Second actual
>
> '
>
> test_expect_success 'straight move without -C' '
>
> - git blame dos | grep Initial
> + git blame dos >actual &&
> + grep Initial actual
>
> '
>
> test_expect_success 'straight copy with -C' '
>
> - git blame -C1 uno | grep Second
> + git blame -C1 uno >actual &&
> + grep Second actual
>
> '
>
> test_expect_success 'straight move with -C' '
>
> - git blame -C1 dos | grep Initial
> + git blame -C1 dos >actual &&
> + grep Initial actual
>
> '
>
> test_expect_success 'straight copy with -C -C' '
>
> - git blame -C -C1 uno | grep Initial
> + git blame -C -C1 uno >actual &&
> + grep Initial actual
>
> '
>
> test_expect_success 'straight move with -C -C' '
>
> - git blame -C -C1 dos | grep Initial
> + git blame -C -C1 dos >actual &&
> + grep Initial actual
>
> '
>
> test_expect_success 'append without -C' '
>
> - git blame -L2 tres | grep Second
> + git blame -L2 tres >actual &&
> + grep Second actual
>
> '
>
> test_expect_success 'append with -C' '
>
> - git blame -L2 -C1 tres | grep Second
> + git blame -L2 -C1 tres >actual &&
> + grep Second actual
>
> '
>
> test_expect_success 'append with -C -C' '
>
> - git blame -L2 -C -C1 tres | grep Second
> + git blame -L2 -C -C1 tres >actual &&
> + grep Second actual
>
> '
>
> test_expect_success 'append with -C -C -C' '
>
> - git blame -L2 -C -C -C1 tres | grep Initial
> + git blame -L2 -C -C -C1 tres >actual &&
> + grep Initial actual
>
> '
>
> test_expect_success 'blame wholesale copy' '
>
> - git blame -f -C -C1 HEAD^ -- cow | sed -e "$pick_fc" >current &&
> + git blame -f -C -C1 HEAD^ -- cow >actual &&
> + sed -e "$pick_fc" actual >current &&
> cat >expected <<-\EOF &&
> mouse-Initial
> mouse-Second
> @@ -122,7 +133,8 @@ test_expect_success 'blame wholesale copy' '
>
> test_expect_success 'blame wholesale copy and more' '
>
> - git blame -f -C -C1 HEAD -- cow | sed -e "$pick_fc" >current &&
> + git blame -f -C -C1 HEAD -- cow >actual &&
> + sed -e "$pick_fc" actual >current &&
> cat >expected <<-\EOF &&
> mouse-Initial
> mouse-Second
> @@ -144,7 +156,8 @@ test_expect_success 'blame wholesale copy and more in the index' '
> EOF
> git add horse &&
> test_when_finished "git rm -f horse" &&
> - git blame -f -C -C1 -- horse | sed -e "$pick_fc" >current &&
> + git blame -f -C -C1 -- horse >actual &&
> + sed -e "$pick_fc" actual >current &&
> cat >expected <<-\EOF &&
> mouse-Initial
> mouse-Second
> @@ -168,7 +181,8 @@ test_expect_success 'blame during cherry-pick with file rename conflict' '
> (git cherry-pick HEAD@{1} || test $? -eq 1) &&
> git show HEAD@{1}:rodent > rodent &&
> git add rodent &&
> - git blame -f -C -C1 rodent | sed -e "$pick_fc" >current &&
> + git blame -f -C -C1 rodent >actual &&
> + sed -e "$pick_fc" actual >current &&
> cat >expected <<-\EOF &&
> mouse-Initial
> mouse-Second
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2026-03-26 15:19 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-03-26 14:11 [GSoC PATCH] t8003: avoid suppressing git's exit code Trieu Huynh
2026-03-26 15:19 ` Junio C Hamano
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox