Lines Matching refs:msg
103 msg = 'Flash command is empty, please verify if it was generated properly.'
104 logger.error(msg)
105 raise TwisterHarnessException(msg)
120 msg = f'Timeout occurred ({self._flashing_timeout}s) during flashing.'
121 logger.error(msg)
122 raise TwisterHarnessTimeoutException(msg) from exc
124 msg = f'Flashing subprocess failed due to SubprocessError {exc}'
125 logger.error(msg)
126 raise TwisterHarnessTimeoutException(msg) from exc
137 msg = f'Could not flash device {self.device_config.id}'
138 logger.error(msg)
139 raise TwisterHarnessException(msg)
280 msg = f'Custom script failure: \n{stderr.decode(errors="ignore")}'
281 logger.error(msg)
282 raise TwisterHarnessException(msg)
287 msg = f'Timeout occurred ({timeout}s) during execution custom script: {script_path}'
288 logger.error(msg)
289 raise TwisterHarnessTimeoutException(msg) from exc