On Wed, May 18, 2016 at 11:27 AM, Vasco Almeida <vascomalmeida@xxxxxxx> wrote: > The test t9003-help-autocorrect.sh fails when run under GETTEXT_POISON, > because it's expecting to filter out the original output. Accommodate > gettext poison case by also filtering out the default simulated output. > > Signed-off-by: Vasco Almeida <vascomalmeida@xxxxxxx> > --- > diff --git a/t/t9003-help-autocorrect.sh b/t/t9003-help-autocorrect.sh > @@ -31,10 +31,14 @@ test_expect_success 'autocorrect showing candidates' ' > git config help.autocorrect 0 && > > test_must_fail git lfg 2>actual && > - sed -e "1,/^Did you mean this/d" actual | grep lgf && > + sed -e "1,/^Did you mean this/d" actual | > + sed -e "/GETTEXT POISON/d" actual | Why not do so with a single sed invocation? sed -e "..." -e "..." | > + grep lgf && > > test_must_fail git distimdist 2>actual && > - sed -e "1,/^Did you mean this/d" actual | grep distimdistim > + sed -e "1,/^Did you mean this/d" actual | > + sed -e "/GETTEXT POISON/d" actual | Ditto. > + grep distimdistim > ' -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html