mirror of
https://github.com/openai/codex.git
synced 2026-04-28 08:34:54 +00:00
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:
@@ -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;
|
||||
}
|
||||
}};
|
||||
|
||||
Reference in New Issue
Block a user