-
Notifications
You must be signed in to change notification settings - Fork 6.6k
Fix unified_exec on windows #7620
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
| } | ||
| }; | ||
| skip_if_sandbox!(Ok(())); | ||
| skip_if!(cfg!(target_os = "windows"), Ok(())); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why skipping windows on this one?
codex-rs/utils/pty/src/lib.rs
Outdated
| use tokio::sync::Mutex as TokioMutex; | ||
| use tokio::task::JoinHandle; | ||
|
|
||
| #[allow(dead_code)] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
To suppress the unused field error.
jif-oai
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Once the test are fixed and based on Slack explainations
# Conflicts: # codex-rs/core/tests/common/lib.rs
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