From fcc6e12d69e371e160735bcd4fb324f7a382eda3 Mon Sep 17 00:00:00 2001 From: Nirbhay Choubey Date: Wed, 18 Feb 2015 19:02:00 -0500 Subject: [PATCH] MDEV-7544: Update global_suppressions to include warning related to "gvwstate.dat" --- mysql-test/suite/galera/suite.pm | 1 + mysql-test/suite/wsrep/suite.pm | 1 + 2 files changed, 2 insertions(+) diff --git a/mysql-test/suite/galera/suite.pm b/mysql-test/suite/galera/suite.pm index 7642b937e05..9c48ad1982d 100644 --- a/mysql-test/suite/galera/suite.pm +++ b/mysql-test/suite/galera/suite.pm @@ -35,6 +35,7 @@ push @::global_suppressions, qr(WSREP: last inactive check more than .* skipping check), qr(WSREP: SQL statement was ineffective), qr(WSREP: Releasing seqno [0-9]* before [0-9]* was assigned.), + qr|WSREP: access file\(gvwstate.dat\) failed\(No such file or directory\)|, ); diff --git a/mysql-test/suite/wsrep/suite.pm b/mysql-test/suite/wsrep/suite.pm index 7b3b2db6836..f6c8409f6a8 100644 --- a/mysql-test/suite/wsrep/suite.pm +++ b/mysql-test/suite/wsrep/suite.pm @@ -29,6 +29,7 @@ push @::global_suppressions, qr(WSREP: Could not open saved state file for reading: ), qr(WSREP: option --wsrep-casual-reads is deprecated), qr(WSREP: --wsrep-casual-reads=ON takes precedence over --wsrep-sync-wait=0), + qr|WSREP: access file\(gvwstate.dat\) failed\(No such file or directory\)|, ); $ENV{PATH}="$epath:$ENV{PATH}";