mariadb/mysql-test/suite/plugins/suite.pm

25 lines
531 B
Perl
Raw Normal View History

2011-12-02 16:27:13 +01:00
package My::Suite::Plugins;
use My::Platform;
2011-12-02 16:27:13 +01:00
@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/cassandra.test'} = 'Cassandra is not running'
unless cassandra_running();
$skip{'t/cassandra_qcache.test'} = $skip{'t/cassandra.test'};
%skip;
}
2011-12-02 16:27:13 +01:00
bless { };