From: Brandon Casey Date: Tue, 12 Feb 2013 10:17:30 +0000 (-0800) Subject: t/test-lib-functions.sh: allow to specify the tag name to test_commit X-Git-Tag: v1.8.3-rc0~149^2~10 X-Git-Url: https://git.lorimer.id.au/gitweb.git/diff_plain/4c9941943bebbe23039254cdda576ecd97e1d397?hp=9b1515220912b4e436145babf0b5887ecbfb0ac4 t/test-lib-functions.sh: allow to specify the tag name to test_commit The 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 Reviewed-by: Jonathan Nieder Signed-off-by: Junio C Hamano --- diff --git a/t/test-lib-functions.sh b/t/test-lib-functions.sh index 8889ba5104..7c4c633592 100644 --- a/t/test-lib-functions.sh +++ b/t/test-lib-functions.sh @@ -135,12 +135,12 @@ test_pause () { fi } -# Call test_commit with the arguments " [ []]" +# Call test_commit with the arguments " [ [ []]]" # # This will commit a file with the given contents and the given commit -# message. It will also add a tag with as name. +# message, and tag the resulting commit with the given tag name. # -# Both and default to . +# , , and all default to . test_commit () { notick= && @@ -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 " ", where