diff options
author | serg@sergbook.mysql.com <> | 2007-04-29 17:46:18 -0700 |
---|---|---|
committer | serg@sergbook.mysql.com <> | 2007-04-29 17:46:18 -0700 |
commit | 1bd2953c024e0c4189c797df1cb06d35515ebd71 (patch) | |
tree | c68f10a49e87ce71ee63c89a6b80db97df935586 /mysql-test/mysql-test-run.pl | |
parent | 10057bf4c35fd2b9c1e1db4ad659c317af6cbf43 (diff) | |
download | mariadb-git-1bd2953c024e0c4189c797df1cb06d35515ebd71.tar.gz |
compilation/test fixes
Diffstat (limited to 'mysql-test/mysql-test-run.pl')
-rwxr-xr-x | mysql-test/mysql-test-run.pl | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/mysql-test/mysql-test-run.pl b/mysql-test/mysql-test-run.pl index 413da029acc..1096123bf47 100755 --- a/mysql-test/mysql-test-run.pl +++ b/mysql-test/mysql-test-run.pl @@ -1361,7 +1361,10 @@ sub collect_mysqld_features () { # --no-defaults and --skip-grant-tables are to avoid loading # system-wide configs and plugins # - my $list= `$exe_mysqld --no-defaults --datadir=$default_vardir --language=$path_language --skip-grant-tables --verbose --help`; + # --datadir - for lowercase test to work + # + my $tmp_datadir=$opt_vardir || $default_vardir; + my $list= `$exe_mysqld --no-defaults --datadir=$tmp_datadir --language=$path_language --skip-grant-tables --verbose --help`; foreach my $line (split('\n', $list)) { |