On Tue, Aug 21, 2012 at 12:17 PM, Jonathan Nieder <jrnieder@xxxxxxxxx> wrote: >> --- a/t/t5530-upload-pack-error.sh >> +++ b/t/t5530-upload-pack-error.sh >> @@ -35,7 +35,7 @@ test_expect_success 'upload-pack fails due to error in pack-objects packing' ' >> printf "0032want %s\n00000009done\n0000" \ >> $(git rev-parse HEAD) >input && >> test_must_fail git upload-pack . <input >/dev/null 2>output.err && >> - grep "unable to read" output.err && >> + test_i18ngrep "unable to read" output.err && >> grep "pack-objects died" output.err > > Wouldn't it make sense to change the second "grep" of output intended > for humans to test_i18ngrep while at it? This comes from error("git upload-pack: git-pack-objects died with error.") in unpack-trees.c, which is not i18n-ized yet. There's another test in t5530 that does the same grep. I think we should leave it as is until we mark the string for translation, then gettext poison will spot it (verified) and we can fix it. -- Duy -- 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