(s, matcher)
| 59 | failures = [i.strip() for i in failures] |
| 60 | |
| 61 | def process_failure_string(s, matcher): |
| 62 | out = re.search(matcher, s) |
| 63 | return out.groups() |
| 64 | |
| 65 | SYMBOLIC_TRACE_MATCH = r'exhaustive_(.*)_cpu.*: (.*)' |
| 66 | failures = [process_failure_string(s, SYMBOLIC_TRACE_MATCH) for s in failures] |
no outgoing calls
no test coverage detected
searching dependent graphs…