Lines Matching refs:name
16 - domain name, can be used to run only specific tests via command-line;
99 cmd is a list of strings: a command name and its arguments."""
156 def __init__(self, name, config_settings, commands):
164 command name and its arguments and is passed to subprocess.call with
166 self.name = name
176 log_line(self.name + ' PASSED', color=colors.green)
178 log_line(self.name + ' FAILED', color=colors.red)
180 log_line('starting ' + self.name, color=colors.cyan)
204 env['MBEDTLS_TEST_CONFIGURATION'] += '-' + self.name
390 # Find hash modules by name.
392 # Find elliptic curve enabling macros by name.
394 # Find key exchange enabling macros by name.
400 # Find block cipher chaining and padding mode enabling macros by name.
436 self.jobs[job.name] = job
438 def get_jobs(self, name):
439 """Return the list of jobs identified by the given name.
440 A name can either be the name of a domain or the name of one specific job."""
441 if name in self.domains:
442 return sorted(self.domains[name].jobs, key=lambda job: job.name)
444 return [self.jobs[name]]
469 for name in options.tasks:
470 jobs += domain_data.get_jobs(name)
477 failures.append(job.name)
481 successes.append(job.name)