1
0
mirror of https://github.com/MariaDB/server.git synced 2025-04-21 20:06:07 +03:00
Sergei Golubchik c2db9397c7 MDEV-18565 Galera mtr-suite fails if galera library is not installed
revert/simplify f5390eea9a9

remove galera-specific checks from mtr and the main suite
2020-04-27 09:22:36 +02:00

18 lines
387 B
Perl

package My::Suite::WSREP;
use lib 'suite';
use wsrep::common;
@ISA = qw(My::Suite);
return wsrep_not_ok() if wsrep_not_ok();
push @::global_suppressions,
(
qr(WSREP: Could not open saved state file for reading: .*),
qr(WSREP: Could not open state file for reading: .*),
qr|WSREP: access file\(.*gvwstate.dat\) failed\(No such file or directory\)|,
);
bless { };