From a1590d2e954916bb90afe4e4976c36861a162bbc Mon Sep 17 00:00:00 2001 From: Sergey Vojtovich Date: Wed, 24 Mar 2010 23:09:23 +0400 Subject: [PATCH] More exceptions for InnoDB plugin tests. --- mysql-test/lib/mtr_cases.pm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/mysql-test/lib/mtr_cases.pm b/mysql-test/lib/mtr_cases.pm index 1b6896e5a80..218701ff4a7 100644 --- a/mysql-test/lib/mtr_cases.pm +++ b/mysql-test/lib/mtr_cases.pm @@ -532,6 +532,9 @@ sub collect_one_suite($) next if ($test->{'name'} eq 'main.innodb-autoinc'); # Fails with innodb plugin: r6185 Testcases changes not included next if ($test->{'name'} eq 'main.innodb_bug44369'); + # Fix for BUG47621 is not in InnoDB plugin + next if ($test->{'name'} eq 'main.innodb_bug21704'); + next if ($test->{'name'} eq 'main.innodb_bug47621'); # Copy test options my $new_test= My::Test->new(); while (my ($key, $value) = each(%$test))