summaryrefslogtreecommitdiff
path: root/mysql-test/suite/plugins/suite.pm
blob: 9ada541e44bcbc62c266a3ae3aa307e166e2801e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package My::Suite::Plugins;

@ISA = qw(My::Suite);

sub skip_combinations {
  my %skip;
  $skip{'t/pam.test'} = 'No pam setup for mtr'
             unless -e '/etc/pam.d/mariadb_mtr';
  %skip;
}

bless { };