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

18 lines
387 B
Perl
Raw Normal View History

2015-01-16 13:52:30 -05:00
package My::Suite::WSREP;
use lib 'suite';
use wsrep::common;
2015-01-16 13:52:30 -05:00
@ISA = qw(My::Suite);
2015-01-16 13:52:30 -05:00
return wsrep_not_ok() if wsrep_not_ok();
2015-01-16 13:52:30 -05:00
2015-01-26 22:43:46 -05:00
push @::global_suppressions,
(
qr(WSREP: Could not open saved state file for reading: .*),
qr(WSREP: Could not open state file for reading: .*),
2015-08-14 13:45:52 -04:00
qr|WSREP: access file\(.*gvwstate.dat\) failed\(No such file or directory\)|,
2015-01-26 22:43:46 -05:00
);
2015-01-16 13:52:30 -05:00
bless { };