diff options
| author | MarcoFalke <[email protected]> | 2016-05-27 08:21:37 +0200 |
|---|---|---|
| committer | MarcoFalke <[email protected]> | 2016-05-27 08:22:09 +0200 |
| commit | 06bd4f637f15e769f088d9051a5af94bbb0217a3 (patch) | |
| tree | 89f1795498e40dfff805f4446f14e2f4805f9862 /qa/rpc-tests/test_framework/test_framework.py | |
| parent | Merge #8102: Bugfix: use global ::fRelayTxes instead of CNode in version send (diff) | |
| parent | [qa] test_framework: Append portseed to tmpdir (diff) | |
| download | discoin-06bd4f637f15e769f088d9051a5af94bbb0217a3.tar.xz discoin-06bd4f637f15e769f088d9051a5af94bbb0217a3.zip | |
Merge #8098: [qa] test_framework: Append portseed to tmpdir
fa57b0c [qa] test_framework: Append portseed to tmpdir (MarcoFalke)
Diffstat (limited to 'qa/rpc-tests/test_framework/test_framework.py')
| -rwxr-xr-x | qa/rpc-tests/test_framework/test_framework.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/qa/rpc-tests/test_framework/test_framework.py b/qa/rpc-tests/test_framework/test_framework.py index 49f419226..30e8b5755 100755 --- a/qa/rpc-tests/test_framework/test_framework.py +++ b/qa/rpc-tests/test_framework/test_framework.py @@ -119,6 +119,8 @@ class BitcoinTestFramework(object): self.add_options(parser) (self.options, self.args) = parser.parse_args() + self.options.tmpdir += '/' + str(self.options.port_seed) + if self.options.trace_rpc: logging.basicConfig(level=logging.DEBUG, stream=sys.stdout) |