diff options
author | Magnus Blåudd <magnus.blaudd@sun.com> | 2009-10-08 10:39:15 +0200 |
---|---|---|
committer | Magnus Blåudd <magnus.blaudd@sun.com> | 2009-10-08 10:39:15 +0200 |
commit | fabde82dbd0d4281421ee414603640659c9ab8aa (patch) | |
tree | 72b9fdde9818a49d59101883ad22a3d992fd508c /mysql-test/mysql-test-run.pl | |
parent | 7a633b68d29f9cc52985547c3dabc8b1772df92f (diff) | |
download | mariadb-git-fabde82dbd0d4281421ee414603640659c9ab8aa.tar.gz |
Bug#47801 The plugin test fails with the Embedded Server on Windows
- Remove the "hack" from mtr.pl that skipped searching for the .dll files
when embedded and windows. Now the variables will be preoperly initialized.
- Make the tests detect that they can't run on windows+embedded
Diffstat (limited to 'mysql-test/mysql-test-run.pl')
-rwxr-xr-x | mysql-test/mysql-test-run.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/mysql-test-run.pl b/mysql-test/mysql-test-run.pl index b3f1a89bd36..846f307ea97 100755 --- a/mysql-test/mysql-test-run.pl +++ b/mysql-test/mysql-test-run.pl @@ -1797,7 +1797,7 @@ sub environment_setup { # -------------------------------------------------------------------------- # Add the path where mysqld will find ha_example.so # -------------------------------------------------------------------------- - if ($mysql_version_id >= 50100 && !(IS_WINDOWS && $opt_embedded_server)) { + if ($mysql_version_id >= 50100) { my $plugin_filename; if (IS_WINDOWS) { |