diff options
author | Bjorn Munch <Bjorn.Munch@sun.com> | 2009-10-19 15:51:47 +0200 |
---|---|---|
committer | Bjorn Munch <Bjorn.Munch@sun.com> | 2009-10-19 15:51:47 +0200 |
commit | e6bc01d170b3beb967b235d385aaa05c665bf7f9 (patch) | |
tree | 8ba9a38ab19495848f63f18cf51979b2fe9b1e49 /mysql-test/mysql-test-run.pl | |
parent | c6533f9eb3945a36608fd90a6f7100028da54c2c (diff) | |
download | mariadb-git-e6bc01d170b3beb967b235d385aaa05c665bf7f9.tar.gz |
Bug #48149 MTR should automatically skip SSL tests if SSL not supported
Knowledge of no SSL support is not used
Skip tests the same way e.g. innodb tests are
Does not refer to have_ssl_communication.inc,
will add this when merging to 6.0-codebase
Diffstat (limited to 'mysql-test/mysql-test-run.pl')
-rwxr-xr-x | mysql-test/mysql-test-run.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/mysql-test-run.pl b/mysql-test/mysql-test-run.pl index e59b226825d..21e253cfb95 100755 --- a/mysql-test/mysql-test-run.pl +++ b/mysql-test/mysql-test-run.pl @@ -144,7 +144,7 @@ our @opt_extra_mysqld_opt; my $opt_compress; my $opt_ssl; my $opt_skip_ssl; -my $opt_ssl_supported; +our $opt_ssl_supported; my $opt_ps_protocol; my $opt_sp_protocol; my $opt_cursor_protocol; |