mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
Skip looking for mysql_client_test in 4.1 on windows as it's not built by default
This commit is contained in:
@ -1417,18 +1417,27 @@ sub executable_setup () {
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
# Look for mysql_client_test executable
|
if ( $glob_win32 and $mysql_version_id < 50000 )
|
||||||
if ( $glob_use_embedded_server )
|
|
||||||
{
|
{
|
||||||
$exe_mysql_client_test=
|
# Skip looking for exe_mysql_client_test as its not built by default
|
||||||
mtr_exe_exists("$glob_basedir/libmysqld/examples/mysql_client_test_embedded");
|
# in 4.1 for windows.
|
||||||
|
exe_mysql_client_test= "unavailable";
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
$exe_mysql_client_test=
|
# Look for mysql_client_test executable
|
||||||
mtr_exe_exists("$glob_basedir/tests/mysql_client_test",
|
if ( $glob_use_embedded_server )
|
||||||
"$glob_basedir/tests/release/mysql_client_test",
|
{
|
||||||
"$glob_basedir/tests/debug/mysql_client_test");
|
$exe_mysql_client_test=
|
||||||
|
mtr_exe_exists("$glob_basedir/libmysqld/examples/mysql_client_test_embedded");
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
$exe_mysql_client_test=
|
||||||
|
mtr_exe_exists("$glob_basedir/tests/mysql_client_test",
|
||||||
|
"$glob_basedir/tests/release/mysql_client_test",
|
||||||
|
"$glob_basedir/tests/debug/mysql_client_test");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user