diff options
author | Bjorn Munch <Bjorn.Munch@sun.com> | 2010-02-18 09:02:38 +0100 |
---|---|---|
committer | Bjorn Munch <Bjorn.Munch@sun.com> | 2010-02-18 09:02:38 +0100 |
commit | 65d64449995f847ef6aa48040475e6d894c70e01 (patch) | |
tree | 963b6fa68a3bdac59aef1cc11864ff8cec43268e /mysql-test/mysql-test-run.pl | |
parent | dedad8ae4452966cfaed2aefb91c87370e07210c (diff) | |
parent | 90c3ace052e0649d6e93804be2b39b98db6ec15d (diff) | |
download | mariadb-git-65d64449995f847ef6aa48040475e6d894c70e01.tar.gz |
upmerge 51135
Diffstat (limited to 'mysql-test/mysql-test-run.pl')
-rwxr-xr-x | mysql-test/mysql-test-run.pl | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/mysql-test/mysql-test-run.pl b/mysql-test/mysql-test-run.pl index 6735d6704d3..0b355b54177 100755 --- a/mysql-test/mysql-test-run.pl +++ b/mysql-test/mysql-test-run.pl @@ -203,6 +203,7 @@ my $opt_skip_core; our $opt_check_testcases= 1; my $opt_mark_progress; +my $opt_max_connections; my $opt_sleep; @@ -922,6 +923,7 @@ sub command_line_setup { 'warnings!' => \$opt_warnings, 'timestamp' => \&report_option, 'timediff' => \&report_option, + 'max-connections=i' => \$opt_max_connections, 'help|h' => \$opt_usage, 'list-options' => \$opt_list_options, @@ -4956,6 +4958,10 @@ sub start_mysqltest ($) { mtr_add_arg($args, "--ssl"); } + if ( $opt_max_connections ) { + mtr_add_arg($args, "--max-connections=%d", $opt_max_connections); + } + if ( $opt_embedded_server ) { @@ -5514,6 +5520,7 @@ Misc options timestamp Print timestamp before each test report line timediff With --timestamp, also print time passed since *previous* test started + max-connections=N Max number of open connection to server in mysqltest HERE exit(1); |