Lines Matching refs:suite
233 of a suite. If for some reason it cannot retrieve the bug_id it will
245 @param keyvals Keyvals associated with a suite job.
247 @param testname Name of a test from the suite.
263 def create_job_name(build, suite, test_name):
264 """Create the name of a test job based on given build, suite, and test_name.
267 @param suite: name of the suite, e.g., bvt.
272 return '/'.join([build, suite, test_name])
275 def get_test_name(build, suite, test_job_name):
278 Name of test job may contain information like build and suite. This method
282 @param suite: name of the suite, e.g., bvt.
289 return test_job_name.replace('%s/%s/' % (build, suite), '')