1
0
mirror of https://github.com/codership/wsrep-lib.git synced 2025-07-25 21:41:56 +03:00
Files
wsrep-lib/src/test_utils.hpp
Teemu Ollakka 58ea925dc3 * Unit test for BF abort after after_command_before_result()
* Revised logic for handling BF abort around after command operations
* Added lighweight thread class for runtime thread id checking
2018-06-11 11:48:07 +03:00

30 lines
647 B
C++

//
// 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);
// 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);
}