aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorHennadii Stepanov <32963518+hebasto@users.noreply.github.com>2023-07-29 12:46:57 +0100
committerHennadii Stepanov <32963518+hebasto@users.noreply.github.com>2023-07-30 11:10:59 +0100
commitab498d913c6f9f6096c75cc43a91e7a12cfc3fb7 (patch)
treeb60f229ca559df9c0c337ab06e672d3f0b9cf328 /test
parent4c57e53a61e6ae65ee87a25b1355530224b5ae9e (diff)
downloadbitcoin-ab498d913c6f9f6096c75cc43a91e7a12cfc3fb7.tar.xz
qa, doc: Fix comment
This change is a follow-up for: - https://github.com/bitcoin/bitcoin/pull/9956 - https://github.com/bitcoin/bitcoin/pull/10096
Diffstat (limited to 'test')
-rwxr-xr-xtest/functional/test_runner.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/functional/test_runner.py b/test/functional/test_runner.py
index 9762476a5d..e627a40e10 100755
--- a/test/functional/test_runner.py
+++ b/test/functional/test_runner.py
@@ -783,8 +783,8 @@ def check_script_prefixes():
def check_script_list(*, src_dir, fail_on_warn):
"""Check scripts directory.
- Check that there are no scripts in the functional tests directory which are
- not being run by pull-tester.py."""
+ Check that all python files in this directory are categorized
+ as a test script or meta script."""
script_dir = src_dir + '/test/functional/'
python_files = set([test_file for test_file in os.listdir(script_dir) if test_file.endswith(".py")])
missed_tests = list(python_files - set(map(lambda x: x.split()[0], ALL_SCRIPTS + NON_SCRIPTS)))