Skip to content

Commit

Permalink
Wuh huh
Browse files Browse the repository at this point in the history
  • Loading branch information
kotauskas committed Apr 15, 2024
1 parent cb5d806 commit 67e140d
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/os/windows/named_pipe/stream.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ pub use {enums::*, error::*};

mod r#impl;
mod limbo;
#[cfg(feature = "tokio")]
pub(super) use r#impl::*;

use super::{MaybeArc, NeedsFlush};
Expand Down
1 change: 1 addition & 0 deletions src/os/windows/named_pipe/stream/impl.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ mod recv_msg;
mod send;
mod send_off;

#[cfg_attr(not(feature = "tokio"), allow(unused_imports))]
pub(crate) use send_off::{LIMBO_ERR, REBURY_ERR};

use super::*;
Expand Down
1 change: 1 addition & 0 deletions tests/named_pipe.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ mod msg;

use crate::{os::windows::named_pipe::PipeListenerOptions, tests::util::*};
use std::{
fmt::Debug,
io,
path::Path,
sync::{mpsc::Sender, Arc},
Expand Down
2 changes: 1 addition & 1 deletion tests/os/unix/local_socket_fake_ns.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ fn test_inner(iter: u32) -> TestResult {
fn local_socket_fake_ns() -> TestResult {
test_wrapper(|| {
// fucking macOS
let iterations = if cfg!(target_os = "macos") { 432 } else { 12 };
let iterations = if cfg!(target_os = "macos") { 444 } else { 6 };
for i in 0..iterations {
test_inner(i)?;
}
Expand Down

0 comments on commit 67e140d

Please sign in to comment.