Add a regression test for the git log -M --follow $diff_option bug introduced in v1.7.2-rc0~103^2~2, $diff_option being diff related options like -p, --stat, --name-only etc. Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@xxxxxxxxx> --- Version two of this test case, simpler, and takes into account commentary from Junio. t/t4202-log.sh | 13 +++++++++++++ 1 files changed, 13 insertions(+), 0 deletions(-) diff --git a/t/t4202-log.sh b/t/t4202-log.sh index 95ac3f8..a0be122 100755 --- a/t/t4202-log.sh +++ b/t/t4202-log.sh @@ -441,5 +441,18 @@ test_expect_success 'log.decorate configuration' ' ' +test_expect_success 'show added path under "--follow -M"' ' + # This tests for a regression introduced in v1.7.2-rc0~103^2~2 + test_create_repo regression && + ( + cd regression && + test_commit needs-another-commit && + test_commit Foo.bar && + git log -M --follow -p Foo.bar.t && + git log -M --follow --stat Foo.bar.t && + git log -M --follow --name-only Foo.bar.t + ) +' + test_done -- 1.7.2.1.339.gfad93 -- 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