Searched refs:log_file (Results 1 – 7 of 7) sorted by relevance
/Zephyr-latest/scripts/pylib/pytest-twister-harness/src/twister_harness/device/ |
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()
|
D | hardware_adapter.py | 127 with open(self.device_log_path, 'a+') as log_file: 128 log_file.write(stdout_decoded)
|
/Zephyr-latest/scripts/pylib/twister/twisterlib/ |
D | twister_main.py | 28 def setup_logging(outdir, log_file, log_level, timestamps): argument 30 if log_file: 31 fh = logging.FileHandler(log_file) 110 setup_logging(options.outdir, options.log_file, options.log_level, options.timestamps)
|
D | reports.py | 57 def process_log(log_file): argument 59 if os.path.exists(log_file): 60 with open(log_file, "rb") as f:
|
D | harness.py | 519 with open(self.pytest_log_file_path, 'w') as log_file: 520 log_file.write(shlex.join(cmd) + '\n\n') 521 log_file.write('\n'.join(self._output))
|
D | handlers.py | 1208 def _close_log_file(log_file): argument 1209 log_file.close()
|
/Zephyr-latest/scripts/tests/twister_blackbox/ |
D | test_report.py | 169 with open(path, "r") as log_file: 170 text_content = log_file.read()
|