Lines Matching refs:re
14 import re
211 KTAP_START = re.compile(r'\s*KTAP version ([0-9]+)$')
212 TAP_START = re.compile(r'\s*TAP version ([0-9]+)$')
213 KTAP_END = re.compile(r'\s*(List of all partitions:|'
215 EXECUTOR_ERROR = re.compile(r'\s*kunit executor: (.*)$')
303 TEST_HEADER = re.compile(r'^\s*# Subtest: (.*)$')
327 TEST_PLAN = re.compile(r'^\s*1\.\.([0-9]+)')
355 TEST_RESULT = re.compile(r'^\s*(ok|not ok) ([0-9]+) (- )?([^#]*)( # .*)?$')
357 TEST_RESULT_SKIP = re.compile(r'^\s*(ok|not ok) ([0-9]+) (- )?(.*) # SKIP(.*)$')
457 while lines and not any(re.match(lines.peek())
458 for re in non_diagnostic_lines):