From: Johannes Schindelin <Johannes.Schindelin@xxxxxx> It has a broken sed which adds a newline to the last line, if it does not end with one. Signed-off-by: Johannes Schindelin <Johannes.Schindelin@xxxxxx> Acked-by: Shawn O. Pearce <spearce@xxxxxxxxxxx> --- From: Johannes Schindelin <Johannes.Schindelin@xxxxxx> > Does this work for you? Yes. ;-) t/annotate-tests.sh | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/t/annotate-tests.sh b/t/annotate-tests.sh index 87403da..cacb273 100644 --- a/t/annotate-tests.sh +++ b/t/annotate-tests.sh @@ -114,7 +114,8 @@ test_expect_success \ test_expect_success \ 'some edit' \ 'mv file file.orig && - sed -e "s/^3A/99/" -e "/^1A/d" < file.orig > file && + sed -e "s/^3A/99/" -e "/^1A/d" -e "/^incomplete/d" < file.orig > file && + echo "incomplete" | tr -d "\\012" >>file && GIT_AUTHOR_NAME="D" git commit -a -m "edit"' test_expect_success \ - 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