On Mon, Mar 21, 2016 at 2:18 PM, Mehul Jain <mehul.jain2...@gmail.com> wrote:
> Changes introduced w.r.t. previous patch:
> [...]
> * Two more tests are added to checkout for error when "git pull
>   --[no-]autostash" is called. Here I'm forced to use "test_i18ncmp"
>   instead of "test_i18ngrep" to compare the expected error message with
>   the actual because grep was, unfortunately, reading "--[no-]autostash"
>   as an option and thus leading to test failure.

Pass -e to grep to treat the next argument as an expression (even if
it happens to look like an option):

    test_i18ngrep -e "--[no-]-autostash ..."

You may also need to escape the [ and ] with backslash (\) to force
grep to treat them as literal characters rather than as the character
set "[no-]". Alternately, rather than escaping, also pass the -F flag
to make it treat all characters as literals.
--
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to