Compare commits

...
Author SHA1 Message Date
Alice Ryhl 6fef0fd047 add loom-util run 2023-07-10 10:58:18 +02:00
Alice Ryhl 5cd8b5823e WIP make loom work in tokio-util 2023-07-06 16:34:59 +02:00
8 changed files with 45 additions and 2 deletions
+20
View File
@@ -52,3 +52,23 @@ jobs:
LOOM_MAX_PREEMPTIONS: ${{ matrix.max_preemptions }}
LOOM_MAX_BRANCHES: 10000
SCOPE: ${{ matrix.scope }}
loom-util:
name: loom on tokio-util
# base_ref is null when it's not a pull request
if: github.repository_owner == 'tokio-rs' && (contains(github.event.pull_request.labels.*.name, 'R-loom') || (github.base_ref == null))
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Rust ${{ env.rust_stable }}
uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ env.rust_stable }}
- uses: Swatinem/rust-cache@v2
- name: loom tokio-util
run: cargo test --lib --release --features full -- --nocapture $SCOPE
working-directory: tokio-util
env:
RUSTFLAGS: --cfg loom --cfg tokio_unstable -Dwarnings -C debug-assertions
LOOM_MAX_PREEMPTIONS: ${{ matrix.max_preemptions }}
LOOM_MAX_BRANCHES: 10000
SCOPE: ${{ matrix.scope }}
+3
View File
@@ -58,6 +58,9 @@ futures-test = "0.3.5"
parking_lot = "0.12.0"
tempfile = "3.1.0"
[target.'cfg(loom)'.dev-dependencies]
loom = { version = "0.5.2", features = ["futures", "checkpoint"] }
[package.metadata.docs.rs]
all-features = true
# enable unstable features in the documentation
+1 -1
View File
@@ -164,7 +164,7 @@ where
}
}
#[cfg(test)]
#[cfg(all(test, not(loom)))]
mod tests {
use super::*;
use tokio::io::{repeat, AsyncReadExt, Repeat};
+4
View File
@@ -1 +1,5 @@
#[cfg(not(loom))]
pub(crate) use std::sync;
#[cfg(loom)]
pub(crate) use loom::sync;
@@ -298,12 +298,15 @@ pub(crate) fn cancel(node: &Arc<TreeNode>) {
if locked_node.is_cancelled {
return;
}
println!("a");
// One by one, adopt grandchildren and then cancel and detach the child
while let Some(child) = locked_node.children.pop() {
println!("b1");
// This can't deadlock because the mutex we are already
// holding is the parent of child.
let mut locked_child = child.inner.lock().unwrap();
println!("b2");
// Detach the child from node
// No need to modify node.children, as the child already got removed with `.pop`
@@ -356,10 +359,12 @@ pub(crate) fn cancel(node: &Arc<TreeNode>) {
// Now the child is cancelled and detached and all its children are adopted.
// Just continue until all (including adopted) children are cancelled and detached.
}
println!("c");
// Cancel the node itself.
locked_node.is_cancelled = true;
locked_node.children = Vec::new();
drop(locked_node);
node.waker.notify_waiters();
println!("d");
}
+3
View File
@@ -13,3 +13,6 @@ pub use poll_semaphore::PollSemaphore;
mod reusable_box;
pub use reusable_box::ReusableBoxFuture;
#[cfg(loom)]
mod tests;
@@ -48,6 +48,7 @@ fn cancel_token_owned() {
#[test]
fn cancel_with_child() {
loom::model(|| {
println!("FOO");
let token = CancellationToken::new();
let token1 = token.clone();
let token2 = token.clone();
@@ -153,20 +154,27 @@ fn drop_and_cancel_token() {
#[test]
fn cancel_parent_and_child() {
loom::model(|| {
println!("FOO");
let token1 = CancellationToken::new();
let token2 = token1.clone();
let child_token = token1.child_token();
let th1 = thread::spawn(move || {
println!("drop parent");
drop(token1);
println!("drop parent done");
});
let th2 = thread::spawn(move || {
println!("cancel parent");
token2.cancel();
println!("cancel parent done");
});
let th3 = thread::spawn(move || {
println!("cancel child");
child_token.cancel();
println!("cancel child done");
});
assert_ok!(th1.join());
+1 -1
View File
@@ -1 +1 @@
mod loom_cancellation_token;