Lines Matching full:re
7 import re
17 test_regex['PASSED'] = re.compile(r"^PASS:(.+)")
18 test_regex['FAILED'] = re.compile(r"^FAIL:([^(]+)")
19 test_regex['SKIPPED'] = re.compile(r"^SKIP:(.+)")
22 section_regex['begin'] = re.compile(r"^BEGIN: .*/(.+)/ptest")
23 section_regex['end'] = re.compile(r"^END: .*/(.+)/ptest")
24 section_regex['duration'] = re.compile(r"^DURATION: (.+)")
25 section_regex['exitcode'] = re.compile(r"^ERROR: Exit status is (.+)")
26 section_regex['timeout'] = re.compile(r"^TIMEOUT: .*/(.+)/ptest")
28 # Cache markers so we don't take the re.search() hit all the time.
112 test_regex['PASSED'] = re.compile(r"PASS")
113 test_regex['FAILED'] = re.compile(r"FAIL")
114 test_regex['SKIPPED'] = re.compile(r"SKIP")
138 test_regex['FAILED'] = re.compile(r"FAIL")
141 section_regex['test'] = re.compile(r"^Executing")