Home
last modified time | relevance | path

Searched refs:ControlFileNotFound (Results 1 – 7 of 7) sorted by relevance

/external/autotest/server/cros/dynamic_suite/
Dcontrol_file_getter.py126 raise error.ControlFileNotFound('No control files found.')
134 raise error.ControlFileNotFound('No control file for ' + test_name)
136 raise error.ControlFileNotFound(test_name + ' is not unique.')
235 raise error.ControlFileNotFound(msg)
299 raise error.ControlFileNotFound(e)
Dcontrol_file_getter_unittest.py104 self.assertRaises(error.ControlFileNotFound,
168 self.assertRaises(error.ControlFileNotFound,
Dreporting.py389 if isinstance(self._exception, error.ControlFileNotFound):
407 if isinstance(self._exception, error.ControlFileNotFound):
/external/autotest/client/common_lib/cros/
Dretry_unittest.py79 raise error.ControlFileNotFound()
80 self.assertRaises(error.ControlFileNotFound, fail)
/external/autotest/site_utils/suite_scheduler/
Ddeduping_scheduler.py257 except (error.ControlFileNotFound, error.ControlFileEmpty,
Ddeduping_scheduler_unittest.py291 exception = error.ControlFileNotFound(message)
/external/autotest/client/common_lib/
Derror.py421 class ControlFileNotFound(CrosDynamicSuiteException): class