From: Bjorn Munch Date: May 27 2011 11:51am Subject: Re: bzr commit into mysql-5.5 branch (chuck.bell:3410) WL#5710 List-Archive: http://lists.mysql.com/commits/138319 Message-Id: <20110527115153.GA8056@khepri15.norway.sun.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii 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