-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmain.cpp
45 lines (40 loc) · 1.51 KB
/
main.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
/**
* @file
* @copyright defined in eos/LICENSE
*/
#include <cstdlib>
#include <iostream>
#include <boost/test/included/unit_test.hpp>
#include <fc/log/logger.hpp>
#include <eosio/chain/exceptions.hpp>
//extern uint32_t EOS_TESTING_GENESIS_TIMESTAMP;
void translate_fc_exception(const fc::exception &e) {
std::cerr << "\033[33m" << e.to_detail_string() << "\033[0m" << std::endl;
BOOST_TEST_FAIL("Caught Unexpected Exception");
}
boost::unit_test::test_suite* init_unit_test_suite(int argc, char* argv[]) {
// Turn off blockchain logging if no --verbose parameter is not added
// To have verbose enabled, call "tests/chain_test -- --verbose"
bool is_verbose = false;
std::string verbose_arg = "--verbose";
for (int i = 0; i < argc; i++) {
if (verbose_arg == argv[i]) {
is_verbose = true;
break;
}
}
if(!is_verbose) fc::logger::get(DEFAULT_LOGGER).set_log_level(fc::log_level::off);
// Register fc::exception translator
boost::unit_test::unit_test_monitor.register_exception_translator<fc::exception>(&translate_fc_exception);
std::srand(time(NULL));
std::cout << "Random number generator seeded to " << time(NULL) << std::endl;
/*
const char* genesis_timestamp_str = getenv("EOS_TESTING_GENESIS_TIMESTAMP");
if( genesis_timestamp_str != nullptr )
{
EOS_TESTING_GENESIS_TIMESTAMP = std::stoul( genesis_timestamp_str );
}
std::cout << "EOS_TESTING_GENESIS_TIMESTAMP is " << EOS_TESTING_GENESIS_TIMESTAMP << std::endl;
*/
return nullptr;
}