diff options
author | unknown <kent@mysql.com> | 2005-11-14 01:59:15 +0200 |
---|---|---|
committer | unknown <kent@mysql.com> | 2005-11-14 01:59:15 +0200 |
commit | c2826d723e6581ce18a6e0974b47669b99da1d14 (patch) | |
tree | d98a56a4a1d47e809eb797220ae95a3f1ed034c4 /mysql-test/mysql-test-run.pl | |
parent | 6e56f7e0a9870aee1435a0eb2870472b2263b26d (diff) | |
download | mariadb-git-c2826d723e6581ce18a6e0974b47669b99da1d14.tar.gz |
mysql-test-run.pl:
Corrected search for 'mysqlimport' executable
mysql-test/mysql-test-run.pl:
Corrected search for 'mysqlimport' executable
Diffstat (limited to 'mysql-test/mysql-test-run.pl')
-rwxr-xr-x | mysql-test/mysql-test-run.pl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mysql-test/mysql-test-run.pl b/mysql-test/mysql-test-run.pl index c3025060e37..58308f0ccdd 100755 --- a/mysql-test/mysql-test-run.pl +++ b/mysql-test/mysql-test-run.pl @@ -871,7 +871,7 @@ sub executable_setup () { "/usr/bin/false"); } $exe_mysqldump= mtr_exe_exists("$path_client_bindir/mysqldump"); - $exe_mysqlimport= mtr_exe_exists("$path_client_bindir/mysqlimport"); + $exe_mysqlimport= mtr_exe_exists("$path_client_bindir/mysqlimport"); $exe_mysqlshow= mtr_exe_exists("$path_client_bindir/mysqlshow"); $exe_mysqlbinlog= mtr_exe_exists("$path_client_bindir/mysqlbinlog"); $exe_mysqladmin= mtr_exe_exists("$path_client_bindir/mysqladmin"); @@ -885,6 +885,7 @@ sub executable_setup () { { $path_client_bindir= mtr_path_exists("$glob_basedir/bin"); $exe_mysqldump= mtr_exe_exists("$path_client_bindir/mysqldump"); + $exe_mysqlimport= mtr_exe_exists("$path_client_bindir/mysqlimport"); $exe_mysqlshow= mtr_exe_exists("$path_client_bindir/mysqlshow"); $exe_mysqlbinlog= mtr_exe_exists("$path_client_bindir/mysqlbinlog"); $exe_mysqladmin= mtr_exe_exists("$path_client_bindir/mysqladmin"); |