0
0
Fork 0
mirror of https://github.com/bitcoin/bitcoin.git synced 2025-02-09 10:43:19 -05:00

Run functional tests with all possible flags

This commit is contained in:
Samuel Dobson 2021-09-26 13:58:19 +13:00
parent 16ccb3a1cd
commit b8909b0746

View file

@ -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: