diff options
| author | Wladimir J. van der Laan <[email protected]> | 2018-05-09 10:41:40 +0200 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2018-05-09 10:42:38 +0200 |
| commit | 4a50ec0efd06477b4121cd1767a37ccc25632c6f (patch) | |
| tree | 45a600c21df88ae738c0d10a1e15b1f890d12c38 /test/functional/test_runner.py | |
| parent | Merge #12265: [test] fundrawtransaction: lock watch-only shared address (diff) | |
| parent | qa: Remove unused option --srcdir (diff) | |
| download | discoin-4a50ec0efd06477b4121cd1767a37ccc25632c6f.tar.xz discoin-4a50ec0efd06477b4121cd1767a37ccc25632c6f.zip | |
Merge #13188: qa: Remove unused option --srcdir
fac1e1f qa: Remove unused option --srcdir (MarcoFalke)
Pull request description:
The `srcdir` option was both unused and misleading; It should have been called `builddir`. So remove it.
Tree-SHA512: 2c24dcf2aa82219158b8cbbf03dd3f0f51f805f1f5f670faa1fd59e5a8d60fda120ffddadeccb058d8d3f20583b4952be7afd2df6bbefb9367d35c0f0a9fda3c
Diffstat (limited to 'test/functional/test_runner.py')
| -rwxr-xr-x | test/functional/test_runner.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/test/functional/test_runner.py b/test/functional/test_runner.py index 0989064fd..dfa8c3372 100755 --- a/test/functional/test_runner.py +++ b/test/functional/test_runner.py @@ -314,8 +314,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() |