Merge #8018: Autofind rpc tests --srcdir

5ea4508 Autofind rpc tests --srcdir (Jonas Schnelli)
This commit is contained in:
MarcoFalke 2016-05-09 16:59:54 +02:00
commit 3e90fe6534
No known key found for this signature in database
GPG Key ID: 2D7F2372E50FE137
1 changed files with 1 additions and 1 deletions

View File

@ -102,7 +102,7 @@ class BitcoinTestFramework(object):
help="Leave bitcoinds and test.* datadir on exit or error")
parser.add_option("--noshutdown", dest="noshutdown", default=False, action="store_true",
help="Don't stop bitcoinds after the test execution")
parser.add_option("--srcdir", dest="srcdir", default="../../src",
parser.add_option("--srcdir", dest="srcdir", default=os.path.normpath(os.path.dirname(os.path.realpath(__file__))+"/../../../src"),
help="Source directory containing bitcoind/bitcoin-cli (default: %default)")
parser.add_option("--tmpdir", dest="tmpdir", default=tempfile.mkdtemp(prefix="test"),
help="Root directory for datadirs")