t7003: Use test_commit instead of custom function
commit77f2e4f5f3e448794fd4fa80e898e4388042fabb
authorBrian Gernhardt <brian@gernhardtsoftware.com>
Fri, 10 Sep 2010 22:06:36 +0000 (10 18:06 -0400)
committerJunio C Hamano <gitster@pobox.com>
Mon, 13 Sep 2010 17:59:06 +0000 (13 10:59 -0700)
treef992b3d7b006796719f792158117d76e6b941b7f
parent5879b6bbcaba7696e4abfa717748da166f915405
t7003: Use test_commit instead of custom function

t7003-filter-branch.sh had a make_commit() function that was identical
to test_commit() in test-lib.sh except that it used tr to create a
lowercase file name from the uppercase branch name instead of
appending ".t".

Not only is this unneeded code duplication, it also was something
simply waiting to fail on case-insensitive file systems.  So replace
all uses of make_commit with test_commit.

While we're editing the setup, chain it together with && so that
failures early in the sequence don't get lost and add a commit graph.

Signed-off-by: Brian Gernhardt <brian@gernhardtsoftware.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
t/t7003-filter-branch.sh