Merge pull request #6115

27522aaa core_tests: reset thread pool between tests (moneromooo-monero)
This commit is contained in:
Alexander Blair 2020-01-16 17:27:15 -08:00
commit 3acb22b889
No known key found for this signature in database
GPG key ID: C64552D877C32479
3 changed files with 29 additions and 7 deletions

View file

@ -47,6 +47,7 @@
#include "include_base_utils.h"
#include "common/boost_serialization_helper.h"
#include "common/command_line.h"
#include "common/threadpool.h"
#include "cryptonote_basic/account_boost_serialization.h"
#include "cryptonote_basic/cryptonote_basic.h"
@ -775,6 +776,7 @@ inline bool do_replay_events_get_core(std::vector<test_event_entry>& events, cry
t_test_class validator;
bool ret = replay_events_through_core<t_test_class>(c, events, validator);
tools::threadpool::getInstance().recycle();
// c.deinit();
return ret;
}