* [PATCH 4/6] t4012: Break up pipe into serial redirections
@ 2012-07-11 22:12 Alexander Strasser
0 siblings, 0 replies; only message in thread
From: Alexander Strasser @ 2012-07-11 22:12 UTC (permalink / raw)
To: git; +Cc: Zbigniew Jędrzejewski-Szmek, Junio C Hamano
Do not hide possible git errors by masquerading its process
exit status.
Signed-off-by: Alexander Strasser <eclipse7@gmx.net>
---
t/t4012-diff-binary.sh | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/t/t4012-diff-binary.sh b/t/t4012-diff-binary.sh
index 60c2f6c..daf8234 100755
--- a/t/t4012-diff-binary.sh
+++ b/t/t4012-diff-binary.sh
@@ -64,7 +64,8 @@ test_expect_success 'apply --numstat understands diff --binary format' '
# apply needs to be able to skip the binary material correctly
# in order to report the line number of a corrupt patch.
test_expect_success 'apply detecting corrupt patch correctly' '
- git diff | sed -e "s/-CIT/xCIT/" >broken &&
+ git diff >output &&
+ sed -e "s/-CIT/xCIT/" <output >broken &&
if git apply --stat --summary broken 2>detected
then
echo unhappy - should have detected an error
--
1.7.10.2.552.gaa3bb87
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2012-07-11 22:13 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-07-11 22:12 [PATCH 4/6] t4012: Break up pipe into serial redirections Alexander Strasser
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.