X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=maintainer%2Frename-tests;h=bdbd791c8fa55112efc76a3030157f580f48367c;hb=90c69318b90f7d00013b4d4cbb3fbc1c469d2cec;hp=a58474862695c95be5931d8f2ff4412060a9da4e;hpb=f637fc39a65cac7eb7050359e6c352a235f64528;p=platform%2Fupstream%2Fautomake.git diff --git a/maintainer/rename-tests b/maintainer/rename-tests index a584748..bdbd791 100755 --- a/maintainer/rename-tests +++ b/maintainer/rename-tests @@ -19,6 +19,7 @@ set -e -u me=${0##*/} +msg_file=$me.git-msg fatal () { echo "$me: $*" >&2; exit 1; } case $# in @@ -30,7 +31,7 @@ esac AWK=${AWK-awk} SED=${SED-sed} -[[ -f automake.in && -d lib/Automake ]] \ +[[ -f bin/automake.in && -d lib/Automake ]] \ || fatal "can only be run from the top-level of the Automake source tree" $SED --version 2>&1 | grep GNU >/dev/null 2>&1 \ @@ -47,7 +48,7 @@ input=$( " <<<"$input") # Prepare git commit message. -exec 5>$me.git-msg +exec 5>"$msg_file" echo "tests: more significant names for some tests" >&5 echo >&5 $AWK >&5 <<<"$input" \ @@ -58,10 +59,15 @@ exec 5>&- eval "$($AWK '{ printf ("git mv %s %s\n", $1, $2) }' <<<"$input")" # Adjust the list of tests (do this conditionally, since such a -# list is not required nor used in Automake-NG. +# list is not required nor used in Automake-NG). if test -f t/list-of-tests.mk; then $SED -e "$($AWK '{ printf ("s|^%s |%s |\n", $1, $2) }' <<<"$input")" \ -i t/list-of-tests.mk + git add t/list-of-tests.mk fi git status +echo +echo "NOTICE: pre-filled commit message is in file '$msg_file'" + +exit 0