mirror of
https://github.com/MariaDB/server.git
synced 2025-12-03 05:41:09 +03:00
New version of PAM plugin (v2.0) added along with the old v1.0. There the pam module is isolated in the auth_pam_tool application so cannot crash the server.
27 lines
630 B
Perl
27 lines
630 B
Perl
package My::Suite::Plugins;
|
|
|
|
use My::Platform;
|
|
|
|
@ISA = qw(My::Suite);
|
|
|
|
sub cassandra_running() {
|
|
return 0 if IS_WINDOWS;
|
|
system 'echo show version | cqlsh -3 2>/dev/null >/dev/null';
|
|
return $? == 0;
|
|
}
|
|
|
|
sub skip_combinations {
|
|
my %skip;
|
|
$skip{'t/pam.test'} = 'No pam setup for mtr'
|
|
unless -e '/etc/pam.d/mariadb_mtr';
|
|
$skip{'t/pam_v1.test'} = 'No pam setup for mtr'
|
|
unless -e '/etc/pam.d/mariadb_mtr';
|
|
$skip{'t/cassandra.test'} = 'Cassandra is not running'
|
|
unless cassandra_running();
|
|
$skip{'t/cassandra_qcache.test'} = $skip{'t/cassandra.test'};
|
|
%skip;
|
|
}
|
|
|
|
bless { };
|
|
|