Commit 0afe7f19 authored by joerg@mysql.com's avatar joerg@mysql.com
Browse files

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

mysql-test/mysql-test-run.sh  :  Add a "--comment=<string>" option, to get it logged when the test is run.
parent c64727e7
Loading
Loading
Loading
Loading
+7 −0
Original line number Diff line number Diff line
@@ -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 ;;