1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

mysql-test/mysql-test-run.sh : Add a "--comment=<string>" option, to get it logged when the test is run.

This commit is contained in:
joerg@mysql.com
2006-03-01 12:21:44 +01:00
parent c64727e7c0
commit 0afe7f1987

View File

@ -410,6 +410,13 @@ while test $# -gt 0; do
--fast)
FAST_START=1
;;
--comment=*)
TMP=`$ECHO "$1" | $SED -e "s;--comment=;;"`
echo
echo '############################################'
echo "# $TMP"
echo '############################################'
;;
-- ) shift; break ;;
--* ) $ECHO "Unrecognized option: $1"; exit 1 ;;
* ) break ;;