Signed-off-by: Nazri Ramliy <ayiehere@xxxxxxxxx> --- t/lib-rebase.sh | 8 ++++++++ 1 files changed, 8 insertions(+), 0 deletions(-) diff --git a/t/lib-rebase.sh b/t/lib-rebase.sh index 6aefe27..21d2fef 100644 --- a/t/lib-rebase.sh +++ b/t/lib-rebase.sh @@ -4,6 +4,8 @@ # # - override the commit message with $FAKE_COMMIT_MESSAGE # - amend the commit message with $FAKE_COMMIT_AMEND +# - check that the commit header(s) text shown in the editor matches that in the +# file $EXPECT_HEADER. # - check that non-commit messages have a certain line count with $EXPECT_COUNT # - check the commit count in the commit message header with $EXPECT_HEADER_COUNT # - rewrite a rebase -i script as directed by $FAKE_LINES. @@ -34,6 +36,12 @@ case "$1" in exit ;; esac +test -z "$EXPECT_HEADER" || + ( + grep '^pick' < "$1" | cut -d' ' -f3- > commit_headers.$$ && + diff "$EXPECT_HEADER" commit_headers.$$ > /dev/null + ) || + exit test -z "$EXPECT_COUNT" || test "$EXPECT_COUNT" = $(sed -e '/^#/d' -e '/^$/d' < "$1" | wc -l) || exit -- 1.7.2.rc2 -- 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