0
0
Fork 0
mirror of https://github.com/bitcoin/bitcoin.git synced 2025-02-03 09:56:38 -05:00

qa: Temporarily disable test that reads the default datadir location

This commit is contained in:
MarcoFalke 2018-07-17 09:14:21 -04:00
parent 41a8c8dfaf
commit fabe28a0cd
No known key found for this signature in database
GPG key ID: CE2B75697E69A548

View file

@ -36,13 +36,15 @@ class ConfArgsTest(BitcoinTestFramework):
f.write("datadir=" + new_data_dir + "\n") f.write("datadir=" + new_data_dir + "\n")
f.write(conf_file_contents) f.write(conf_file_contents)
self.nodes[0].assert_start_raises_init_error(['-conf=' + conf_file], 'Error reading configuration file: specified data directory "' + new_data_dir + '" does not exist.') # Temporarily disabled, because this test would access the user's home dir (~/.bitcoin)
#self.nodes[0].assert_start_raises_init_error(['-conf=' + conf_file], 'Error reading configuration file: specified data directory "' + new_data_dir + '" does not exist.')
# Create the directory and ensure the config file now works # Create the directory and ensure the config file now works
os.mkdir(new_data_dir) os.mkdir(new_data_dir)
self.start_node(0, ['-conf='+conf_file, '-wallet=w1']) # Temporarily disabled, because this test would access the user's home dir (~/.bitcoin)
self.stop_node(0) #self.start_node(0, ['-conf='+conf_file, '-wallet=w1'])
assert os.path.exists(os.path.join(new_data_dir, 'regtest', 'wallets', 'w1')) #self.stop_node(0)
#assert os.path.exists(os.path.join(new_data_dir, 'regtest', 'wallets', 'w1'))
# Ensure command line argument overrides datadir in conf # Ensure command line argument overrides datadir in conf
os.mkdir(new_data_dir_2) os.mkdir(new_data_dir_2)