Merge pull request #475

ef4c5b5 unit_tests: fix build without berkeleydb (moneromooo-monero)
pull/95/head
Riccardo Spagni 9 years ago
commit 6a01030533
No known key found for this signature in database
GPG Key ID: 55432DF31CCD4FCD

@ -37,7 +37,9 @@
#include "blockchain_db/blockchain_db.h"
#include "blockchain_db/lmdb/db_lmdb.h"
#ifdef BERKELEY_DB
#include "blockchain_db/berkeleydb/db_bdb.h"
#endif
#include "cryptonote_core/cryptonote_format_utils.h"
using namespace cryptonote;
@ -223,7 +225,11 @@ protected:
using testing::Types;
typedef Types<BlockchainLMDB, BlockchainBDB> implementations;
typedef Types<BlockchainLMDB
#ifdef BERKELEY_DB
, BlockchainBDB
#endif
> implementations;
TYPED_TEST_CASE(BlockchainDBTest, implementations);

Loading…
Cancel
Save