mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-02-06 02:59:45 +00:00
33 lines
731 B
Rust
33 lines
731 B
Rust
|
#![cfg(feature = "full")]
|
||
|
use tokio::io::{AsyncBufReadExt, AsyncReadExt};
|
||
|
|
||
|
#[tokio::test]
|
||
|
async fn empty_read_is_cooperative() {
|
||
|
tokio::select! {
|
||
|
biased;
|
||
|
|
||
|
_ = async {
|
||
|
loop {
|
||
|
let mut buf = [0u8; 4096];
|
||
|
let _ = tokio::io::empty().read(&mut buf).await;
|
||
|
}
|
||
|
} => {},
|
||
|
_ = tokio::task::yield_now() => {}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
#[tokio::test]
|
||
|
async fn empty_buf_reads_are_cooperative() {
|
||
|
tokio::select! {
|
||
|
biased;
|
||
|
|
||
|
_ = async {
|
||
|
loop {
|
||
|
let mut buf = String::new();
|
||
|
let _ = tokio::io::empty().read_line(&mut buf).await;
|
||
|
}
|
||
|
} => {},
|
||
|
_ = tokio::task::yield_now() => {}
|
||
|
}
|
||
|
}
|