diff options
author | Magnus Svensson <msvensson@mysql.com> | 2009-01-27 14:21:18 +0100 |
---|---|---|
committer | Magnus Svensson <msvensson@mysql.com> | 2009-01-27 14:21:18 +0100 |
commit | b3e1ca1f2c97eed04a0682228f215015f21002a0 (patch) | |
tree | 874ed4ad1e059319f3cc10fe232d6302734a7e69 /mysql-test/mysql-test-run.pl | |
parent | 5e6d3997e9eba2b974b65426bfa130e13c0aaddd (diff) | |
download | mariadb-git-b3e1ca1f2c97eed04a0682228f215015f21002a0.tar.gz |
WL#4189 mtr.pl v2
- Add a "skip-ssl=1" to [mysqltest] section so that
mysqltest will not run with ssl turned on by default
but stil be able to turn it on when requested
- This avoids that check_warnings and check_testcase
connects to the server woth SSL turned on
Diffstat (limited to 'mysql-test/mysql-test-run.pl')
-rwxr-xr-x | mysql-test/mysql-test-run.pl | 20 |
1 files changed, 8 insertions, 12 deletions
diff --git a/mysql-test/mysql-test-run.pl b/mysql-test/mysql-test-run.pl index 4bd9f107f9d..53e87e30f29 100755 --- a/mysql-test/mysql-test-run.pl +++ b/mysql-test/mysql-test-run.pl @@ -130,14 +130,14 @@ our @opt_combinations; our @opt_extra_mysqld_opt; -our $opt_compress; -our $opt_ssl; -our $opt_skip_ssl; -our $opt_ssl_supported; -our $opt_ps_protocol; -our $opt_sp_protocol; -our $opt_cursor_protocol; -our $opt_view_protocol; +my $opt_compress; +my $opt_ssl; +my $opt_skip_ssl; +my $opt_ssl_supported; +my $opt_ps_protocol; +my $opt_sp_protocol; +my $opt_cursor_protocol; +my $opt_view_protocol; our $opt_debug; our @opt_cases; # The test cases names in argv @@ -4454,10 +4454,6 @@ sub start_mysqltest ($) { # Turn on SSL for _all_ test cases if option --ssl was used mtr_add_arg($args, "--ssl"); } - elsif ( $opt_ssl_supported ) - { - mtr_add_arg($args, "--skip-ssl"); - } if ( $opt_embedded_server ) { |