From: Date: December 18 2008 1:23pm Subject: bzr commit into mysql-6.0-rpl branch (john.embretsen:2755) Bug#41502, Bug#41014 List-Archive: http://lists.mysql.com/commits/61963 X-Bug: 41502 Message-Id: <20081218122350.E9C991B1@urd07.norway.sun.com> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit #At file:///export/home/tmp/je159969/mysql/bzr-shared/rpl-6.0/ 2755 John H. Embretsen 2008-12-18 [merge] Fix (preliminary?) for Bug#41502 - MTR v2 should not load plugins during server bootstrap. Adding --loose-skip-falcon option to the mysqld options provided by MTR (v2) during mysqld bootstrap in order to avoid plugin (in this case Falcon) initialization of static variables etc. Options --loose-skip-innodb and --loose-skip-ndbcluster were already included. This will fix Bug#41014 (falcon_bug_39708 fails in pushbuild in 6.0-rpl: "succeeded - should have failed") in the case of MTR v2 (which currently is available in -rpl branches only). MTR v1 (e.g. in main 6.0 branch) does not have this problem. It would be more ideal to remove the --loose-skip-* options and provide a single option disabling all plugin initialization instead, or have bootstrap do this by default. Server modifications are (most likely) needed to be able to do that. modified: mysql-test/mysql-test-run.pl per-file messages: mysql-test/mysql-test-run.pl Reintroduced the --loose-skip-falcon bootstrap option used by the previous version of this test runner. === modified file 'mysql-test/mysql-test-run.pl' --- a/mysql-test/mysql-test-run.pl 2008-12-15 12:41:31 +0000 +++ b/mysql-test/mysql-test-run.pl 2008-12-18 12:23:18 +0000 @@ -2589,6 +2589,7 @@ sub mysql_install_db { mtr_add_arg($args, "--basedir=%s", $install_basedir); mtr_add_arg($args, "--datadir=%s", $install_datadir); mtr_add_arg($args, "--loose-skip-innodb"); + mtr_add_arg($args, "--loose-skip-falcon"); mtr_add_arg($args, "--loose-skip-ndbcluster"); mtr_add_arg($args, "--tmpdir=%s", "$opt_vardir/tmp/"); mtr_add_arg($args, "--core-file");