Skip to content

Commit

Permalink
t/test-lib-functions.sh: allow to specify the tag name to test_commit
Browse files Browse the repository at this point in the history
The <message> part of test_commit() may not be appropriate for a tag name.
So let's allow test_commit to accept a fourth argument to specify the tag
name.

Signed-off-by: Brandon Casey <bcasey@nvidia.com>
Reviewed-by: Jonathan Nieder <jrnieder@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
  • Loading branch information
Brandon Casey authored and Junio C Hamano committed Feb 12, 2013
1 parent 9b15152 commit 4c99419
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions t/test-lib-functions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -135,12 +135,12 @@ test_pause () {
fi
}

# Call test_commit with the arguments "<message> [<file> [<contents>]]"
# Call test_commit with the arguments "<message> [<file> [<contents> [<tag>]]]"
#
# This will commit a file with the given contents and the given commit
# message. It will also add a tag with <message> as name.
# message, and tag the resulting commit with the given tag name.
#
# Both <file> and <contents> default to <message>.
# <file>, <contents>, and <tag> all default to <message>.

test_commit () {
notick= &&
Expand Down Expand Up @@ -168,7 +168,7 @@ test_commit () {
test_tick
fi &&
git commit $signoff -m "$1" &&
git tag "$1"
git tag "${4:-$1}"
}

# Call test_merge with the arguments "<message> <commit>", where <commit>
Expand Down

0 comments on commit 4c99419

Please sign in to comment.