Skip to content

Commit

Permalink
miri ignore
Browse files Browse the repository at this point in the history
  • Loading branch information
ryjm committed Jan 23, 2025
1 parent aecdcce commit 39b1c08
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions crown/src/drivers/npc.rs
Original file line number Diff line number Diff line change
Expand Up @@ -394,6 +394,7 @@ mod tests {
}

#[tokio::test]
#[cfg_attr(miri, ignore)]
async fn test_write_message_format() {
let (server, mut client) = setup_socket_pair().await;
let (_, mut writer) = split(server);
Expand Down Expand Up @@ -423,6 +424,7 @@ mod tests {
}

#[tokio::test]
#[cfg_attr(miri, ignore)]
async fn test_write_message_empty() {
let (server, mut client) = setup_socket_pair().await;
let (_, mut writer) = split(server);
Expand All @@ -439,6 +441,7 @@ mod tests {
}

#[tokio::test]
#[cfg_attr(miri, ignore)]
async fn test_read_message_eof() {
let (server, client) = setup_socket_pair().await;
drop(client);
Expand All @@ -450,6 +453,7 @@ mod tests {

#[tokio::test]
#[traced_test]
#[cfg_attr(miri, ignore)]
async fn test_npc_driver() {
// Setup
let dir = tempdir().unwrap();
Expand Down

0 comments on commit 39b1c08

Please sign in to comment.