Commit 0d9e6366 authored by unknown's avatar unknown

Skip looking for mysql_client_test in 4.1 on windows as it's not built by default

parent 00e327ed
...@@ -1417,18 +1417,27 @@ sub executable_setup () { ...@@ -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");
}
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment