Torsten Bögershausen <[email protected]> writes:
> The following tweak will make t1512 work on my Mac OS box:
>
>
> --- a/t/t1512-rev-parse-disambiguation.sh
> +++ b/t/t1512-rev-parse-disambiguation.sh
> @@ -257,7 +257,7 @@ test_expect_success 'rev-parse --disambiguate' '
> # commits created by commit-tree in earlier tests do not share
> # the prefix.
> git rev-parse --disambiguate=000000000 >actual &&
> - test "$(wc -l <actual)" = 16 &&
> + test "$(wc -l <actual)" -eq 16 &&
I think the other tests in t/ prefer to unquote it so that we would
ignore spaces around "wc -l" output, i.e.
test $(wc -l <actual) = 16
Thanks for a report.
--
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to [email protected]
More majordomo info at http://vger.kernel.org/majordomo-info.html