HomeSort by relevance Sort by last modified time
    Searched refs:bug_template (Results 1 - 8 of 8) sorted by null

  /external/autotest/server/cros/dynamic_suite/
reporting_utils.py 99 def __init__(self, bug_template):
102 @param bug_template: initial bug template, e.g., bug template from suite
105 self.bug_template = self.cleanup_bug_template(bug_template)
109 def validate_bug_template(cls, bug_template):
112 @param bug_template: bug template to be verified.
117 if not type(bug_template) is dict:
122 for key, value in bug_template.iteritems():
139 def cleanup_bug_template(cls, bug_template):
142 @param bug_template: bug template to be verified
    [all...]
reporting_unittest.py 40 bug_template = { variable in class:ReportingTest
152 Checks to see if the options specified in bug_template reflect in
159 for k, v in self.bug_template.iteritems():
182 self.bug_template)
493 bug_template= {}
494 bug_template['owner'] = 'someone@company.com'
495 reporting_utils.BugTemplate.validate_bug_template(bug_template)
501 bug_template = ['test']
504 bug_template)
507 bug_template= {'no-owner': 'user1'
    [all...]
dynamic_suite.py 266 bug_template=None,
321 @param bug_template: A template dictionary specifying the default bug
375 self.bug_template = {} if bug_template is None else bug_template
607 suite.wait(spec.job.record_entry, spec.bug_template)
reporting.py 514 configuration when one is specified in the suite's bug_template.
515 The bug_template is specified in the suite control file. After
560 def _create_bug_report(self, bug, bug_template={}, sheriffs=[]):
565 @param bug_template: A template of options to use for filing bugs.
577 issue = self._format_issue_options(bug_template, title=bug.title(),
    [all...]
suite.py     [all...]
fakes.py 31 self.bug_template = {}
  /external/autotest/client/common_lib/
control_data_unittest.py 90 self.bug_template = {
110 @return: The control file string with the BUG_TEMPLATE line.
112 bug_template_line = 'BUG_TEMPLATE = %s' % json.dumps(self.bug_template)
123 doesn't match the value in self.bug_template.
127 self.assertEqual(value, self.bug_template[key])
134 self.verify_bug_template(cd.bug_template)
139 self.bug_template['labels'].append({'foo': 'bar'})
142 self.verify_bug_template(cd.bug_template)
147 self.bug_template = 'foobarbug_template
    [all...]
  /external/autotest/site_utils/presubmit_hooks/
check_control_files.py 252 ctrl_data.bug_template)

Completed in 1865 milliseconds