Merge pull request #475
ef4c5b5
unit_tests: fix build without berkeleydb (moneromooo-monero)
This commit is contained in:
commit
6a01030533
1 changed files with 7 additions and 1 deletions
|
@ -37,7 +37,9 @@
|
||||||
|
|
||||||
#include "blockchain_db/blockchain_db.h"
|
#include "blockchain_db/blockchain_db.h"
|
||||||
#include "blockchain_db/lmdb/db_lmdb.h"
|
#include "blockchain_db/lmdb/db_lmdb.h"
|
||||||
|
#ifdef BERKELEY_DB
|
||||||
#include "blockchain_db/berkeleydb/db_bdb.h"
|
#include "blockchain_db/berkeleydb/db_bdb.h"
|
||||||
|
#endif
|
||||||
#include "cryptonote_core/cryptonote_format_utils.h"
|
#include "cryptonote_core/cryptonote_format_utils.h"
|
||||||
|
|
||||||
using namespace cryptonote;
|
using namespace cryptonote;
|
||||||
|
@ -223,7 +225,11 @@ protected:
|
||||||
|
|
||||||
using testing::Types;
|
using testing::Types;
|
||||||
|
|
||||||
typedef Types<BlockchainLMDB, BlockchainBDB> implementations;
|
typedef Types<BlockchainLMDB
|
||||||
|
#ifdef BERKELEY_DB
|
||||||
|
, BlockchainBDB
|
||||||
|
#endif
|
||||||
|
> implementations;
|
||||||
|
|
||||||
TYPED_TEST_CASE(BlockchainDBTest, implementations);
|
TYPED_TEST_CASE(BlockchainDBTest, implementations);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue