mirror of
https://github.com/codership/wsrep-lib.git
synced 2025-07-31 18:24:25 +03:00
More unit tests for various error conditions on certification.
This commit is contained in:
@ -470,7 +470,7 @@ namespace wsrep
|
||||
* only for critical conditions which would sacrifice data
|
||||
* consistency.
|
||||
*/
|
||||
virtual void abort() const = 0;
|
||||
virtual void abort() = 0;
|
||||
|
||||
public:
|
||||
/*!
|
||||
@ -485,7 +485,7 @@ namespace wsrep
|
||||
/*!
|
||||
* Enter debug synchronization point.
|
||||
*/
|
||||
virtual void debug_sync(const char*) = 0;
|
||||
virtual void debug_sync(wsrep::unique_lock<wsrep::mutex>&, const char*) = 0;
|
||||
|
||||
/*!
|
||||
*
|
||||
|
@ -38,6 +38,13 @@ namespace wsrep
|
||||
};
|
||||
|
||||
|
||||
class log_warning : public log
|
||||
{
|
||||
public:
|
||||
log_warning()
|
||||
: log("WARNING") { }
|
||||
};
|
||||
|
||||
class log_debug : public log
|
||||
{
|
||||
public:
|
||||
|
Reference in New Issue
Block a user