aboutsummaryrefslogtreecommitdiff
path: root/qa
diff options
context:
space:
mode:
authorMarcoFalke <falke.marco@gmail.com>2016-05-27 08:21:37 +0200
committerMarcoFalke <falke.marco@gmail.com>2016-05-27 08:22:09 +0200
commit06bd4f637f15e769f088d9051a5af94bbb0217a3 (patch)
tree89f1795498e40dfff805f4446f14e2f4805f9862 /qa
parent425278d17bd0edf8a3a7cc81e55016f7fd8e7726 (diff)
parentfa57b0c5ef8101e1228d17a2bdce28a36e6f2ff6 (diff)
downloadbitcoin-06bd4f637f15e769f088d9051a5af94bbb0217a3.tar.xz
Merge #8098: [qa] test_framework: Append portseed to tmpdir
fa57b0c [qa] test_framework: Append portseed to tmpdir (MarcoFalke)
Diffstat (limited to 'qa')
-rwxr-xr-xqa/rpc-tests/test_framework/test_framework.py2
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 49f4192269..30e8b5755d 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)