aboutsummaryrefslogtreecommitdiff
path: root/test/functional/test_runner.py
diff options
context:
space:
mode:
authorMarcoFalke <falke.marco@gmail.com>2018-05-08 12:56:13 -0400
committerMarcoFalke <falke.marco@gmail.com>2018-05-08 13:07:31 -0400
commitfac1e1f3b2d256d7c29b6ba06ae2acc0fbcdf0c2 (patch)
tree0ead07229f3a9a030e251ca527df89dfd105e6af /test/functional/test_runner.py
parent66cc47be982aa431b72494f5d655c20eea17a0f5 (diff)
downloadbitcoin-fac1e1f3b2d256d7c29b6ba06ae2acc0fbcdf0c2.tar.xz
qa: Remove unused option --srcdir
Diffstat (limited to 'test/functional/test_runner.py')
-rwxr-xr-xtest/functional/test_runner.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/test/functional/test_runner.py b/test/functional/test_runner.py
index ff4b480165..dad2ad8cda 100755
--- a/test/functional/test_runner.py
+++ b/test/functional/test_runner.py
@@ -313,8 +313,7 @@ def run_tests(test_list, src_dir, build_dir, tmpdir, jobs=1, enable_coverage=Fal
tests_dir = src_dir + '/test/functional/'
- flags = ["--srcdir={}/src".format(build_dir)] + args
- flags.append("--cachedir=%s" % cache_dir)
+ flags = ['--cachedir={}'.format(cache_dir)] + args
if enable_coverage:
coverage = RPCCoverage()