Skip to content

Commit faf8f61

Browse files
author
MarcoFalke
committed
test: Add missing check for is_sqlite_compiled
1 parent fa7dde1 commit faf8f61

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

test/functional/tool_wallet.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -348,7 +348,8 @@ def test_dump_createfromdump(self):
348348
self.log.info('Checking createfromdump')
349349
self.do_tool_createfromdump("load", "wallet.dump")
350350
self.do_tool_createfromdump("load-bdb", "wallet.dump", "bdb")
351-
self.do_tool_createfromdump("load-sqlite", "wallet.dump", "sqlite")
351+
if self.is_sqlite_compiled():
352+
self.do_tool_createfromdump("load-sqlite", "wallet.dump", "sqlite")
352353

353354
self.log.info('Checking createfromdump handling of magic and versions')
354355
bad_ver_wallet_dump = os.path.join(self.nodes[0].datadir, "wallet-bad_ver1.dump")

0 commit comments

Comments
 (0)