Home | History | Annotate | Download | only in layout_tests

Lines Matching defs:Bug

19 from bug import Bug
118 # Bug 107773 - when we increase the number of tests,
172 (BUGWK or BUGCR, bug number, the test expectation entry,
185 matches = re.match(r'(BUG(CR|WK))(\d+)', bug_txt)
229 return_str += '<ul>%s' % Bug(bug_txt)
302 a mapping from bug modifier text (e.g., BUGCR1111) to a test name and
304 This is used for grouping test names by bug.
314 for bug in te_info['Bugs']:
315 if bug not in bug_map:
316 bug_map[bug] = []
317 bug_map[bug].append((name, main_te_info))
439 # Find bug text and replace it with the link to the bug.
440 bug = Bug(line)
441 if bug.bug_txt:
442 line = '<li>%s</li>\n' % line.replace(bug.bug_txt, str(bug))