Support verbose logging during tests

This commit is contained in:
momo5502
2025-01-25 13:05:25 +01:00
parent d2b735c26e
commit d387477883
5 changed files with 28 additions and 2 deletions

View File

@@ -111,6 +111,7 @@ namespace
.registry_directory = options.registry_path,
.emulation_root = options.emulation_root,
.arguments = parse_arguments(args),
.verbose_calls = options.verbose_logging,
.silent_until_main = options.concise_logging,
};
@@ -119,7 +120,6 @@ namespace
(void)&watch_system_objects;
watch_system_objects(win_emu, options.concise_logging);
win_emu.buffer_stdout = true;
win_emu.verbose_calls = options.verbose_logging;
const auto& exe = *win_emu.process().executable;