aboutsummaryrefslogtreecommitdiff
path: root/qa
diff options
context:
space:
mode:
authorMarcoFalke <falke.marco@gmail.com>2016-05-15 11:06:23 +0200
committerMarcoFalke <falke.marco@gmail.com>2016-05-20 09:18:41 +0200
commitfa57b0c5ef8101e1228d17a2bdce28a36e6f2ff6 (patch)
tree7f5d85a06d051f839484a1b5f41d93bb7bb3c378 /qa
parent7771aa57bdd606a3b9b9020b59da9ff8832860b6 (diff)
downloadbitcoin-fa57b0c5ef8101e1228d17a2bdce28a36e6f2ff6.tar.xz
[qa] test_framework: Append portseed to tmpdir
This makes it possible to specify a tmpdir while running tests in parallel
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 3480de6c6e..0913781864 100755
--- a/qa/rpc-tests/test_framework/test_framework.py
+++ b/qa/rpc-tests/test_framework/test_framework.py
@@ -115,6 +115,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)