We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d36e486 commit debd8d2Copy full SHA for debd8d2
tests/componentize.rs
@@ -83,7 +83,9 @@ fn http_example() -> anyhow::Result<()> {
83
let mut buf = [0; 36];
84
let mut stderr = handle.stderr.take().unwrap();
85
86
- // Read until "Serving HTTP" shows up
+ // Read until "Serving HTTP" shows up on Unix
87
+ // (stderr blocks on windows)
88
+ #[cfg(unix)]
89
retry(
90
|| -> anyhow::Result<()> {
91
if stderr.read(&mut buf)? == 0 {
0 commit comments