mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-06-09 06:31:41 +02:00
Run functional tests with all possible flags
This commit is contained in:
parent
16ccb3a1cd
commit
b8909b0746
@ -401,8 +401,9 @@ def main():
|
|||||||
for test in tests:
|
for test in tests:
|
||||||
script = test.split("/")[-1]
|
script = test.split("/")[-1]
|
||||||
script = script + ".py" if ".py" not in script else script
|
script = script + ".py" if ".py" not in script else script
|
||||||
if script in ALL_SCRIPTS:
|
matching_scripts = [s for s in ALL_SCRIPTS if s.startswith(script)]
|
||||||
test_list.append(script)
|
if matching_scripts:
|
||||||
|
test_list.extend(matching_scripts)
|
||||||
else:
|
else:
|
||||||
print("{}WARNING!{} Test '{}' not found in full test list.".format(BOLD[1], BOLD[0], test))
|
print("{}WARNING!{} Test '{}' not found in full test list.".format(BOLD[1], BOLD[0], test))
|
||||||
elif args.extended:
|
elif args.extended:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user