Junio C Hamano <gitster@xxxxxxxxx> writes: > Tay Ray Chuan <rctay89@xxxxxxxxx> writes: > >> Simplify the grep expressions in the non-fast-forward tests to check >> only for the first line of the non-fast-forward warning - having that >> line should be enough assurance that the full warning is printed. >> >> In the first place, grep can't deal with expressions for multiple >> lines. > > This shows that nobody has ever run this test since January 8th, not even > the original author? > > Hmmm. Actually, if you grep with a pattern with multiple lines, it is equivalent to giving each of these lines as a separate pattern from the command line. So it is understandable that the tests passed. They were checking if these match, but it doesn't check (and grep is not designed to) if the first pattern matched the first line, the second to second, etc. So I'd say something like... Don't feed multiple-line pattern to grep and expect them to match with lines in order. Simplify the grep expressions in the non-fast-forward tests to check only for the first line of the non-fast-forward warning - having that line should be enough assurance that the full warning is printed. Signed-off-by: Tay Ray Chuan <rctay89@xxxxxxxxx> instead. -- 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