mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 03:52:35 +01:00
Bug #16813007 - MTR IS NOT TAKING MYSQLTEST CLIENT USING THE ENV VARIABLE MYSQL_TEST
This commit is contained in:
parent
59b43c7965
commit
40fbf8bc28
1 changed files with 11 additions and 1 deletions
|
@ -1785,7 +1785,17 @@ sub executable_setup () {
|
|||
}
|
||||
else
|
||||
{
|
||||
$exe_mysqltest= mtr_exe_exists("$path_client_bindir/mysqltest");
|
||||
if ( defined $ENV{'MYSQL_TEST'} )
|
||||
{
|
||||
$exe_mysqltest=$ENV{'MYSQL_TEST'};
|
||||
print "===========================================================\n";
|
||||
print "WARNING:The mysqltest binary is fetched from $exe_mysqltest\n";
|
||||
print "===========================================================\n";
|
||||
}
|
||||
else
|
||||
{
|
||||
$exe_mysqltest= mtr_exe_exists("$path_client_bindir/mysqltest");
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue