mirror of
https://github.com/MariaDB/server.git
synced 2025-01-15 19:42:28 +01:00
68b3fa8865
mtr is checking the wrong path for the embedded executable on out of tree builds. The is_embedded.inc tests are also checking the version rather than the MTR MYSQL_EMBEDDED environment variable. As a result, a few tests are out of date in the result recordings.
9 lines
218 B
PHP
9 lines
218 B
PHP
let $is_win = `select convert(@@version_compile_os using latin1) IN ("Win32","Win64","Windows")`;
|
|
#echo is_win: $is_win;
|
|
if ($is_win)
|
|
{
|
|
if(!$MYSQL_EMBEDDED)
|
|
{
|
|
skip Not supported with embedded on windows;
|
|
}
|
|
}
|