diff options
author | luigi1111 <luigi1111w@gmail.com> | 2019-09-24 10:10:28 -0500 |
---|---|---|
committer | luigi1111 <luigi1111w@gmail.com> | 2019-09-24 10:10:28 -0500 |
commit | 06bee964a8989c3dcafdf8e665f74762814b43a2 (patch) | |
tree | 23a74b3f5dc698afbf95f79a9817cabed728b0b4 /tests | |
parent | Merge pull request #5877 (diff) | |
parent | Removed Berkeley DB and db switching logic (diff) | |
download | monero-06bee964a8989c3dcafdf8e665f74762814b43a2.tar.xz |
Merge pull request #5878
f9b3f6e Removed Berkeley DB and db switching logic (JesusRami)
Diffstat (limited to 'tests')
-rw-r--r-- | tests/unit_tests/blockchain_db.cpp | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/tests/unit_tests/blockchain_db.cpp b/tests/unit_tests/blockchain_db.cpp index d7c60cecb..6b569d113 100644 --- a/tests/unit_tests/blockchain_db.cpp +++ b/tests/unit_tests/blockchain_db.cpp @@ -38,9 +38,6 @@ #include "string_tools.h" #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_basic/cryptonote_format_utils.h" using namespace cryptonote; @@ -233,11 +230,7 @@ protected: using testing::Types; -typedef Types<BlockchainLMDB -#ifdef BERKELEY_DB - , BlockchainBDB -#endif -> implementations; +typedef Types<BlockchainLMDB> implementations; TYPED_TEST_CASE(BlockchainDBTest, implementations); |