diff options
author | Monty <monty@mariadb.org> | 2021-03-31 13:06:12 +0300 |
---|---|---|
committer | Sergei Golubchik <serg@mariadb.org> | 2021-05-19 22:54:13 +0200 |
commit | aa1626d15e2b433d5241ea307c37cfcb4b84caa8 (patch) | |
tree | 2d54dd96a923bf6d0e17a667c1b2c0985eeab9d8 | |
parent | 83e529eced51aa965805e894349bbadd26881f3f (diff) | |
download | mariadb-git-aa1626d15e2b433d5241ea307c37cfcb4b84caa8.tar.gz |
Made --mariadbd a synonym for --mysqld in mysql-test-run
- mariadbd and mariadbd-env added
- Changed output of print_global_resfile to use mariadbd instead of mysqld
-rwxr-xr-x | mysql-test/mysql-test-run.pl | 19 |
1 files changed, 12 insertions, 7 deletions
diff --git a/mysql-test/mysql-test-run.pl b/mysql-test/mysql-test-run.pl index de5eaebb1c3..c1adb76fe0f 100755 --- a/mysql-test/mysql-test-run.pl +++ b/mysql-test/mysql-test-run.pl @@ -1033,7 +1033,7 @@ sub print_global_resfile { resfile_global("compress", $opt_compress ? 1 : 0); resfile_global("parallel", $opt_parallel); resfile_global("check-testcases", $opt_check_testcases ? 1 : 0); - resfile_global("mysqld", \@opt_extra_mysqld_opt); + resfile_global("mariadbd", \@opt_extra_mysqld_opt); resfile_global("debug", $opt_debug ? 1 : 0); resfile_global("gcov", $opt_gcov ? 1 : 0); resfile_global("gprof", $opt_gprof ? 1 : 0); @@ -1051,7 +1051,7 @@ sub print_global_resfile { resfile_global("shutdown-timeout", $opt_shutdown_timeout ? 1 : 0); resfile_global("warnings", $opt_warnings ? 1 : 0); resfile_global("max-connections", $opt_max_connections); - resfile_global("product", "MySQL"); + resfile_global("product", "MariaDB"); resfile_global("xml-report", $opt_xml_report); # Somewhat hacky code to convert numeric version back to dot notation my $v1= int($mysql_version_id / 10000); @@ -1115,7 +1115,10 @@ sub command_line_setup { 'check-testcases!' => \$opt_check_testcases, 'mark-progress' => \$opt_mark_progress, - # Extra options used when starting mysqld + # Extra options used when starting mariadbd + 'mariadbd=s' => \@opt_extra_mysqld_opt, + 'mariadbd-env=s' => \@opt_mysqld_envs, + # mysqld is an alias for mariadbd 'mysqld=s' => \@opt_extra_mysqld_opt, 'mysqld-env=s' => \@opt_mysqld_envs, @@ -5798,8 +5801,10 @@ Options for test case authoring Options that pass on options (these may be repeated) - mysqld=ARGS Specify additional arguments to "mysqld" - mysqld-env=VAR=VAL Specify additional environment settings for "mysqld" + mariadbd=ARGS Specify additional arguments to "mariadbd" + mysqld Alias for mariadbd. + mariadbd-env=VAR=VAL Specify additional environment settings for "mariadbd" + mysqld-env Alias for mariadbd-env. Options to run test on running server @@ -5846,8 +5851,8 @@ Misc options start-dirty Only start the servers (without initialization) for the first specified test case user-args In combination with start* and no test name, drops - arguments to mysqld except those specified with - --mysqld (if any) + arguments to mariadbd except those specified with + --mariadbd (if any) wait-all If --start or --start-dirty option is used, wait for all servers to exit before finishing the process fast Run as fast as possible, don't wait for servers |