aboutsummaryrefslogtreecommitdiff
path: root/test/functional/wallet_multiwallet.py
diff options
context:
space:
mode:
authorChun Kuan Lee <ken2812221@gmail.com>2018-10-24 12:33:50 +0800
committerChun Kuan Lee <ken2812221@gmail.com>2018-10-24 23:08:16 +0800
commit4ea77320c5f0b275876be41ff530bb328ba0cb87 (patch)
tree319d9c8ce4687d01c23235fcdf935c13fa87b739 /test/functional/wallet_multiwallet.py
parent2d796faf62095e83f74337c26e7e1a8c3957cf3c (diff)
downloadbitcoin-4ea77320c5f0b275876be41ff530bb328ba0cb87.tar.xz
tests: add test case for loading copied wallet twice
Diffstat (limited to 'test/functional/wallet_multiwallet.py')
-rwxr-xr-xtest/functional/wallet_multiwallet.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/functional/wallet_multiwallet.py b/test/functional/wallet_multiwallet.py
index 7d7c77638e..39df54ebfa 100755
--- a/test/functional/wallet_multiwallet.py
+++ b/test/functional/wallet_multiwallet.py
@@ -229,6 +229,10 @@ class MultiWalletTest(BitcoinTestFramework):
# Fail to load if one wallet is a copy of another
assert_raises_rpc_error(-1, "BerkeleyBatch: Can't open database w8_copy (duplicates fileid", self.nodes[0].loadwallet, 'w8_copy')
+ # Fail to load if one wallet is a copy of another, test this twice to make sure that we don't re-introduce #14304
+ assert_raises_rpc_error(-1, "BerkeleyBatch: Can't open database w8_copy (duplicates fileid", self.nodes[0].loadwallet, 'w8_copy')
+
+
# Fail to load if wallet file is a symlink
if os.name != 'nt':
assert_raises_rpc_error(-4, "Wallet file verification failed: Invalid -wallet path 'w8_symlink'", self.nodes[0].loadwallet, 'w8_symlink')