1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

Manual merge of the added "--comment=<string>" option

to both the Shell and the Perl vaerion of "mysql-test-run"-
This commit is contained in:
joerg@mysql.com
2006-03-01 13:29:37 +01:00
2 changed files with 19 additions and 1 deletions

View File

@ -555,7 +555,14 @@ while test $# -gt 0; do
FAST_START=1
;;
--use-old-data)
USE_OLD_DATA=1;
USE_OLD_DATA=1
;;
--comment=*)
TMP=`$ECHO "$1" | $SED -e "s;--comment=;;"`
echo
echo '############################################'
echo "# $TMP"
echo '############################################'
;;
-- ) shift; break ;;
--* ) $ECHO "Unrecognized option: $1"; exit 1 ;;