Extract the extra fast-test parameters from the line
(test_name, ln)
| 15 | non_suite_tests = [] |
| 16 | |
| 17 | def get_fast_test_params(test_name, ln): |
| 18 | "Extract the extra fast-test parameters from the line" |
| 19 | (_, rest_of_line) = ln.split(test_name, 1) |
| 20 | (_, nohuge, asan, _func) = rest_of_line.split(',', 3) |
| 21 | return f":{nohuge.strip().lower()}:{asan.strip().lower()}" |
| 22 | |
| 23 | for fname in input_list: |
| 24 | with open(fname, "r", encoding="utf-8") as f: |