1
0
mirror of https://github.com/codership/wsrep-lib.git synced 2025-07-31 18:24:25 +03:00

Moved tests under separate directory.

This commit is contained in:
Teemu Ollakka
2018-06-12 18:17:32 +03:00
parent 9e8e6d47ba
commit 174ecfe578
16 changed files with 1355 additions and 33 deletions

32
test/test_utils.hpp Normal file
View File

@ -0,0 +1,32 @@
//
// Copyright (C) 2018 Codership Oy <info@codership.com>
//
// Forward declarations
namespace wsrep
{
class client_context;
class mock_server_context;
}
#include "wsrep/transaction_context.hpp"
#include "wsrep/provider.hpp"
//
// Utility functions
//
namespace wsrep_test
{
// Simple BF abort method to BF abort unordered transasctions
void bf_abort_unordered(wsrep::client_context& cc);
// Simple BF abort method to BF abort unordered transasctions
void bf_abort_ordered(wsrep::client_context& cc);
// BF abort method to abort transactions via provider
void bf_abort_provider(wsrep::mock_server_context& sc,
const wsrep::transaction_context& tc,
wsrep::seqno bf_seqno);
}