Lines Matching full:name
30 - domain name, can be used to run only specific tests via command-line;
113 cmd is a list of strings: a command name and its arguments."""
169 def __init__(self, name, config_settings, commands): argument
177 command name and its arguments and is passed to subprocess.call with
179 self.name = name
189 log_line(self.name + ' PASSED', color=colors.green)
191 log_line(self.name + ' FAILED', color=colors.red)
193 log_line('starting ' + self.name, color=colors.cyan)
398 # Find hash modules by name.
400 # Find elliptic curve enabling macros by name.
402 # Find key exchange enabling macros by name.
408 # Find block cipher chaining and padding mode enabling macros by name.
443 self.jobs[job.name] = job
445 def get_jobs(self, name): argument
446 """Return the list of jobs identified by the given name.
447 A name can either be the name of a domain or the name of one specific job."""
448 if name in self.domains:
449 return sorted(self.domains[name].jobs, key=lambda job: job.name)
451 return [self.jobs[name]]
476 for name in options.tasks:
477 jobs += domain_data.get_jobs(name)
484 failures.append(job.name)
488 successes.append(job.name)