Fix unified_exec on windows (#7620)

Fix unified_exec on windows

Requires removal of PSUEDOCONSOLE_INHERIT_CURSOR flag so child processed
don't attempt to wait for cursor position response (and timeout).


https://github.com/wezterm/wezterm/compare/main...pakrym:wezterm:PSUEDOCONSOLE_INHERIT_CURSOR?expand=1

---------

Co-authored-by: pakrym-oai <pakrym@openai.com>
This commit is contained in:
Pavel Krymets
2025-12-05 12:09:43 -08:00
committed by GitHub
parent a8cbbdbc6e
commit f48d88067e
6 changed files with 128 additions and 11 deletions

View File

@@ -374,9 +374,7 @@ macro_rules! skip_if_no_network {
macro_rules! skip_if_windows {
($return_value:expr $(,)?) => {{
if cfg!(target_os = "windows") {
println!(
"Skipping test because it cannot execute when network is disabled in a Codex sandbox."
);
println!("Skipping test because it cannot execute on Windows.");
return $return_value;
}
}};