Lines Matching refs:control_name
321 def _control_path_on_disk(control_name):
324 @param control_name: NAME attribute of the control file to fetch.
329 '^%s$' % control_name)
333 'Failed to find any control files with NAME %s' % control_name)
336 control_name, [t.path for t in tests])
338 'Found more than one control file with NAME %s' % control_name)
342 def _stage_control_file(control_name, results_dir):
345 @param control_name: Name of the control file to stage.
349 control_path = _control_path_on_disk(control_name)
481 if parser.options.control_name:
489 control = _stage_control_file(parser.options.control_name,
493 control = parser.options.control_name
660 def _require_ssp_from_control(control_name):
675 if not control_name:
678 path = _control_path_on_disk(control_name)
735 use_ssp = _require_ssp_from_control(parser.options.control_name)