Lines Matching refs:msg
43 msg = 'Run command is empty, please verify if it was generated properly.'
44 logger.error(msg)
45 raise TwisterHarnessException(msg)
50 msg = f'Running subprocess failed due to SubprocessError {exc}'
51 logger.error(msg)
52 raise TwisterHarnessException(msg) from exc
54 msg = f'Running subprocess failed due to file not found: {exc.filename}'
55 logger.error(msg)
56 raise TwisterHarnessException(msg) from exc
58 msg = f'Running subprocess failed {exc}'
59 logger.error(msg)
60 raise TwisterHarnessException(msg) from exc