1.1.0
This commit is contained in:
26
src/test/main.cpp
Normal file
26
src/test/main.cpp
Normal file
@@ -0,0 +1,26 @@
|
||||
// Copyright (c) 2011-2019 The Palladium Core developers
|
||||
// Distributed under the MIT software license, see the accompanying
|
||||
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||
|
||||
/**
|
||||
* See https://www.boost.org/doc/libs/1_71_0/libs/test/doc/html/boost_test/utf_reference/link_references/link_boost_test_module_macro.html
|
||||
*/
|
||||
#define BOOST_TEST_MODULE Palladium Core Test Suite
|
||||
|
||||
#include <boost/test/unit_test.hpp>
|
||||
|
||||
#include <test/util/setup_common.h>
|
||||
|
||||
#include <iostream>
|
||||
|
||||
/** Redirect debug log to unit_test.log files */
|
||||
const std::function<void(const std::string&)> G_TEST_LOG_FUN = [](const std::string& s) {
|
||||
static const bool should_log{std::any_of(
|
||||
&boost::unit_test::framework::master_test_suite().argv[1],
|
||||
&boost::unit_test::framework::master_test_suite().argv[boost::unit_test::framework::master_test_suite().argc],
|
||||
[](const char* arg) {
|
||||
return std::string{"DEBUG_LOG_OUT"} == arg;
|
||||
})};
|
||||
if (!should_log) return;
|
||||
std::cout << s;
|
||||
};
|
||||
Reference in New Issue
Block a user