Lines Matching refs:m
49 m = re.search('----Running ([^ ]*) tests----', line)
50 if m:
54 cur_suite = m.group(1)
60 m = re.match(rf'Running (\d+) {cur_suite} tests', line)
61 if m:
62 exp_test_count[cur_suite] = int(m.group(1))
63 m = re.search(r'Test: (\w*): ([-a-z0-9_]*\.c)?( .*)?', line)
64 if m:
65 test_name = m.group(1)
66 msg = m.group(3)
117 m = re.match(r'Test suites: (.*)', line)
118 if m:
119 suite_count = int(m.group(1))
120 m = re.match(r'Total tests: (.*)', line)
121 if m:
122 total_test_count = int(m.group(1))
123 m = re.match(r' *([0-9?]*) (\w*)', line)
124 if m:
125 test_count[m.group(2)] = m.group(1)