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.py98 raise error.ControlFileNotFound('No control files found.')
106 raise error.ControlFileNotFound('No control file for ' + test_name)
108 raise error.ControlFileNotFound(test_name + ' is not unique.')
191 raise error.ControlFileNotFound(msg)
254 raise error.ControlFileNotFound(e)
Dcontrol_file_getter_unittest.py75 self.assertRaises(error.ControlFileNotFound,
139 self.assertRaises(error.ControlFileNotFound,
Dreporting.py348 if isinstance(self._exception, error.ControlFileNotFound):
366 if isinstance(self._exception, error.ControlFileNotFound):
/external/autotest/client/common_lib/cros/
Dretry_unittest.py76 raise error.ControlFileNotFound()
80 self.assertRaises(error.ControlFileNotFound, fail)
/external/autotest/site_utils/suite_scheduler/
Ddeduping_scheduler.py133 except (error.ControlFileNotFound, error.ControlFileEmpty,
Ddeduping_scheduler_unittest.py266 exception = error.ControlFileNotFound(message)
/external/autotest/client/common_lib/
Derror.py592 class ControlFileNotFound(CrosDynamicSuiteException): class