Searched refs:log_file (Results 1 – 10 of 10) sorted by relevance
/scripts/pylib/twister/twisterlib/ |
A D | log_helper.py | 35 def setup_logging(outdir, log_file, log_level, timestamps): argument 40 if log_file: 41 file_handler = logging.FileHandler(log_file)
|
A D | harness.py | 531 with open(self.pytest_log_file_path, 'w') as log_file: 532 log_file.write(shlex.join(cmd) + '\n\n') 533 log_file.write('\n'.join(self._output)) 1108 with open(self.ctest_log_file_path, 'w') as log_file: 1109 log_file.write(shlex.join(cmd) + '\n\n') 1110 log_file.write('\n'.join(self._output))
|
A D | twister_main.py | 78 setup_logging(options.outdir, options.log_file, options.log_level, options.timestamps)
|
A D | reports.py | 64 def process_log(log_file): argument 66 if os.path.exists(log_file): 67 with open(log_file, "rb") as f:
|
A D | handlers.py | 1204 def _close_log_file(log_file): argument 1205 log_file.close()
|
A D | runner.py | 966 setup_logging(options.outdir, options.log_file, options.log_level, options.timestamps)
|
/scripts/pylib/pytest-twister-harness/src/twister_harness/device/ |
A D | device_adapter.py | 228 with open(log_file_path, 'a+') as log_file: 229 log_file.write(f'\n==== Test {test_name} started at {datetime.now()} ====\n') 240 with open(self.handler_log_path, 'a+') as log_file: 246 log_file.write(f'{output}\n') 247 log_file.flush()
|
A D | hardware_adapter.py | 130 with open(self.device_log_path, 'a+') as log_file: 131 log_file.write(stdout_decoded)
|
/scripts/tests/twister_blackbox/ |
A D | test_report.py | 168 with open(path, "r") as log_file: 169 text_content = log_file.read()
|
/scripts/tests/twister/ |
A D | test_runner.py | 1520 pb.options.log_file = None
|
Completed in 23 milliseconds