Merge lp:~laurynas-biveinis/percona-server/bug1318537 into lp:percona-server/5.6

Proposed by Laurynas Biveinis
Status: Merged
Approved by: Alexey Kopytov
Approved revision: no longer in the source branch.
Merged at revision: 587
Proposed branch: lp:~laurynas-biveinis/percona-server/bug1318537
Merge into: lp:percona-server/5.6
Diff against target: 16 lines (+6/-0)
1 file modified
mysql-test/mysql-test-run.pl (+6/-0)
To merge this branch: bzr merge lp:~laurynas-biveinis/percona-server/bug1318537
Reviewer Review Type Date Requested Status
Alexey Kopytov (community) Approve
Review via email: mp+219215@code.launchpad.net

Description of the change

Fix bug 1318537 (MTR --mysqld=--default-storage-engine=foo
incompatible w/ dynamically-loaded foo) by passing any --plugin-load*
options to mysqld during the MTR feature discovery stage.

http://jenkins.percona.com/job/percona-server-5.6-param/599/
Inspected several slaves to check that no extra tests are skipped.

To post a comment you must log in.
Revision history for this message
Alexey Kopytov (akopytov) :
review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'mysql-test/mysql-test-run.pl'
2--- mysql-test/mysql-test-run.pl 2014-04-25 10:55:01 +0000
3+++ mysql-test/mysql-test-run.pl 2014-05-12 15:08:24 +0000
4@@ -1854,6 +1854,12 @@
5 mtr_add_arg($args, "--user=root");
6 }
7
8+ foreach my $extra_opt (@opt_extra_mysqld_opt) {
9+ if ($extra_opt =~ /--plugin-load/) {
10+ mtr_add_arg($args, $extra_opt);
11+ }
12+ }
13+
14 my $exe_mysqld= find_mysqld($basedir);
15 my $cmd= join(" ", $exe_mysqld, @$args);
16 my $list= `$cmd`;

Subscribers

People subscribed via source and target branches