On 26/05 21.18, chuck.bell@stripped wrote:
> mysql-test/mysql-test-run.pl
> === modified file 'mysql-test/mysql-test-run.pl'
> --- a/mysql-test/mysql-test-run.pl 2011-05-26 19:25:47 +0000
> +++ b/mysql-test/mysql-test-run.pl 2011-05-26 21:17:01 +0000
> @@ -2221,6 +2221,18 @@ sub environment_setup {
> push(@ld_library_paths, "$basedir/storage/ndb/src/.libs");
> }
>
> + # Add the path where thread_pool can be found
> + # --------------------------------------------------------------------------
> + if (my $lib_plugin= find_plugin("thread_pool", "plugin/thread_pool"))
> + {
> + my $lib_dirname= dirname($lib_plugin);
> + $ENV{'THREADPOOL_PLUGIN_DIR'}= $lib_dirname;
> + }
> + else
> + {
> + $ENV{'THREADPOOL_PLUGIN_DIR'}="";
> + }
> +
Hmmm. This should also be placed in include/plugin.defs but that means
perhaps this file should also be modified in the main directory for
testing separate plugins.
- Bjorn