Browse Source

[qa] Bugfix: allow overriding extra_args in ComparisonTestFramework

0.15
Suhas Daftuar 7 years ago
parent
commit
4ed36539bc
  1. 6
      test/functional/test_framework/test_framework.py

6
test/functional/test_framework/test_framework.py

@ -380,8 +380,10 @@ class ComparisonTestFramework(BitcoinTestFramework): @@ -380,8 +380,10 @@ class ComparisonTestFramework(BitcoinTestFramework):
help="bitcoind binary to use for reference nodes (if any)")
def setup_network(self):
extra_args = [['-whitelist=127.0.0.1']]*self.num_nodes
if hasattr(self, "extra_args"):
extra_args = self.extra_args
self.nodes = self.start_nodes(
self.num_nodes, self.options.tmpdir,
extra_args=[['-whitelist=127.0.0.1']] * self.num_nodes,
self.num_nodes, self.options.tmpdir, extra_args,
binary=[self.options.testbinary] +
[self.options.refbinary]*(self.num_nodes-1))

Loading…
Cancel
Save