aboutsummaryrefslogtreecommitdiff
path: root/test/functional/test_runner.py
diff options
context:
space:
mode:
authorPieter Wuille <pieter.wuille@gmail.com>2020-03-18 10:16:53 -0700
committerPieter Wuille <pieter@wuille.net>2020-03-18 13:54:01 -0700
commita733ad514a172a77309b84cbc6c81562bdf12e28 (patch)
tree944e45f31b296c5cd0c439cd7d59a12f9241302a /test/functional/test_runner.py
parenta3ad6459b77e9b7156e486a9e4a37dbfdc35e324 (diff)
downloadbitcoin-a733ad514a172a77309b84cbc6c81562bdf12e28.tar.xz
Add bn2vch test to functional tests
Diffstat (limited to 'test/functional/test_runner.py')
-rwxr-xr-xtest/functional/test_runner.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/functional/test_runner.py b/test/functional/test_runner.py
index 9d87b5638c..3bac8d5d95 100755
--- a/test/functional/test_runner.py
+++ b/test/functional/test_runner.py
@@ -222,6 +222,7 @@ BASE_SCRIPTS = [
'rpc_help.py',
'feature_help.py',
'feature_shutdown.py',
+ 'framework_test_script.py',
# Don't append tests at the end to avoid merge conflicts
# Put them in a random line within the section that fits their approximate run-time
]
@@ -614,7 +615,7 @@ class TestResult():
def check_script_prefixes():
"""Check that test scripts start with one of the allowed name prefixes."""
- good_prefixes_re = re.compile("(example|feature|interface|mempool|mining|p2p|rpc|wallet|tool)_")
+ good_prefixes_re = re.compile("^(example|feature|interface|mempool|mining|p2p|rpc|wallet|tool|framework_test)_")
bad_script_names = [script for script in ALL_SCRIPTS if good_prefixes_re.match(script) is None]
if bad_script_names: