diff options
author | unknown <msvensson@neptunus.(none)> | 2006-11-08 22:56:06 +0100 |
---|---|---|
committer | unknown <msvensson@neptunus.(none)> | 2006-11-08 22:56:06 +0100 |
commit | 26e6d78845deae2392bd9b06fe8a1592c8f39669 (patch) | |
tree | a9bd032733e322a8bc07181d83dd6408a54ccfe7 /mysql-test/mysql-test-run.pl | |
parent | 427f1acaaaeb8967462ae712dc6623f0310e34a4 (diff) | |
download | mariadb-git-26e6d78845deae2392bd9b06fe8a1592c8f39669.tar.gz |
No need to pass an additional arg to to mtr_add_arg when there is no % sign
Diffstat (limited to 'mysql-test/mysql-test-run.pl')
-rwxr-xr-x | mysql-test/mysql-test-run.pl | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/mysql-test/mysql-test-run.pl b/mysql-test/mysql-test-run.pl index f1c7897e975..e89fa21d610 100755 --- a/mysql-test/mysql-test-run.pl +++ b/mysql-test/mysql-test-run.pl @@ -4293,13 +4293,11 @@ sub run_mysqltest ($) { if ( $opt_ssl ) { # Turn on SSL for _all_ test cases if option --ssl was used - mtr_add_arg($args, "--ssl", - $glob_mysql_test_dir); + mtr_add_arg($args, "--ssl"); } elsif ( $opt_ssl_supported ) { - mtr_add_arg($args, "--skip-ssl", - $glob_mysql_test_dir); + mtr_add_arg($args, "--skip-ssl"); } # ---------------------------------------------------------------------- |