mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-26 03:03:22 -03:00
qa: Do not assume running feature_asmap.py
from source directory
This commit is contained in:
parent
9bf7ca6cad
commit
a8e3af1a82
1 changed files with 3 additions and 2 deletions
|
@ -30,7 +30,7 @@ from test_framework.test_framework import BitcoinTestFramework
|
||||||
from test_framework.util import assert_equal
|
from test_framework.util import assert_equal
|
||||||
|
|
||||||
DEFAULT_ASMAP_FILENAME = 'ip_asn.map' # defined in src/init.cpp
|
DEFAULT_ASMAP_FILENAME = 'ip_asn.map' # defined in src/init.cpp
|
||||||
ASMAP = '../../src/test/data/asmap.raw' # path to unit test skeleton asmap
|
ASMAP = 'src/test/data/asmap.raw' # path to unit test skeleton asmap
|
||||||
VERSION = 'fec61fa21a9f46f3b17bdcd660d7f4cd90b966aad3aec593c99b35f0aca15853'
|
VERSION = 'fec61fa21a9f46f3b17bdcd660d7f4cd90b966aad3aec593c99b35f0aca15853'
|
||||||
|
|
||||||
def expected_messages(filename):
|
def expected_messages(filename):
|
||||||
|
@ -133,7 +133,8 @@ class AsmapTest(BitcoinTestFramework):
|
||||||
self.node = self.nodes[0]
|
self.node = self.nodes[0]
|
||||||
self.datadir = self.node.chain_path
|
self.datadir = self.node.chain_path
|
||||||
self.default_asmap = os.path.join(self.datadir, DEFAULT_ASMAP_FILENAME)
|
self.default_asmap = os.path.join(self.datadir, DEFAULT_ASMAP_FILENAME)
|
||||||
self.asmap_raw = os.path.join(os.path.dirname(os.path.realpath(__file__)), ASMAP)
|
base_dir = self.config["environment"]["SRCDIR"]
|
||||||
|
self.asmap_raw = os.path.join(base_dir, ASMAP)
|
||||||
|
|
||||||
self.test_without_asmap_arg()
|
self.test_without_asmap_arg()
|
||||||
self.test_asmap_with_absolute_path()
|
self.test_asmap_with_absolute_path()
|
||||||
|
|
Loading…
Add table
Reference in a new issue