Browse Source

Merge #10690: [qa] Bugfix: allow overriding extra_args in ComparisonTestFramework

4ed3653 [qa] Bugfix: allow overriding extra_args in ComparisonTestFramework (Suhas Daftuar)

Tree-SHA512: d8f724b3324aad73a7b15cf87ff394e8d615bf3cd5a394d5715347d833f2ae9ac745a944202986866255eca5fc105ea06ab3abe12e168b67de34482f751c68e2
0.15
MarcoFalke 7 years ago
parent
commit
416af3edf5
No known key found for this signature in database
GPG Key ID: D2EA4850E7528B25
  1. 6
      test/functional/test_framework/test_framework.py

6
test/functional/test_framework/test_framework.py

@ -381,8 +381,10 @@ class ComparisonTestFramework(BitcoinTestFramework): @@ -381,8 +381,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