Revert "Initialise walletdb system in a temp dir for all gtests"

This reverts commit 74372eaa4c.
This commit is contained in:
Jack Grigg
2016-11-03 18:04:28 -05:00
parent 74372eaa4c
commit d873bd1d58
2 changed files with 14 additions and 10 deletions

View File

@@ -1,24 +1,14 @@
#include "gtest/gtest.h"
#include "crypto/common.h"
#include "wallet/db.h"
#include "libsnark/common/default_types/r1cs_ppzksnark_pp.hpp"
#include "libsnark/zk_proof_systems/ppzksnark/r1cs_ppzksnark/r1cs_ppzksnark.hpp"
#include <boost/filesystem.hpp>
int main(int argc, char **argv) {
assert(init_and_check_sodium() != -1);
libsnark::default_r1cs_ppzksnark_pp::init_public_params();
libsnark::inhibit_profiling_info = true;
libsnark::inhibit_profiling_counters = true;
// Get temporary and unique path for walletdb.
// bitdb.Open() only intialises once, so this dir is used for all tests.
// Note: / operator to append paths
boost::filesystem::path pathTemp = boost::filesystem::temp_directory_path() / boost::filesystem::unique_path();
boost::filesystem::create_directories(pathTemp);
bitdb.Open(pathTemp);
testing::InitGoogleTest(&argc, argv);
return RUN_ALL_TESTS();