Sha256: 3cfa1437f51802ebeea8ac9bf2f5793d3e6bf2057d1878611af02ef2f236cc12

Contents?: true

Size: 621 Bytes

Versions: 15

Compression:

Stored size: 621 Bytes

Contents

#![warn(rust_2018_idioms)]
#![cfg(all(feature = "full", not(target_os = "wasi")))] // Wasi doesn't support panic recovery
#![cfg(panic = "unwind")]

struct PanicsOnDrop;

impl Drop for PanicsOnDrop {
    fn drop(&mut self) {
        panic!("I told you so");
    }
}

#[tokio::test]
async fn test_panics_do_not_propagate_when_dropping_join_handle() {
    let join_handle = tokio::spawn(async move { PanicsOnDrop });

    // only drop the JoinHandle when the task has completed
    // (which is difficult to synchronize precisely)
    tokio::time::sleep(std::time::Duration::from_millis(3)).await;
    drop(join_handle);
}

Version data entries

15 entries across 15 versions & 1 rubygems

Version Path
wasmtime-30.0.2 ./ext/cargo-vendor/tokio-1.43.0/tests/join_handle_panic.rs
wasmtime-29.0.0 ./ext/cargo-vendor/tokio-1.43.0/tests/join_handle_panic.rs
wasmtime-28.0.0 ./ext/cargo-vendor/tokio-1.43.0/tests/join_handle_panic.rs
wasmtime-27.0.0 ./ext/cargo-vendor/tokio-1.41.1/tests/join_handle_panic.rs
wasmtime-26.0.0 ./ext/cargo-vendor/tokio-1.41.0/tests/join_handle_panic.rs
wasmtime-25.0.2 ./ext/cargo-vendor/tokio-1.40.0/tests/join_handle_panic.rs
wasmtime-25.0.1 ./ext/cargo-vendor/tokio-1.39.3/tests/join_handle_panic.rs
wasmtime-25.0.0 ./ext/cargo-vendor/tokio-1.39.3/tests/join_handle_panic.rs
wasmtime-24.0.0 ./ext/cargo-vendor/tokio-1.39.3/tests/join_handle_panic.rs
wasmtime-23.0.2 ./ext/cargo-vendor/tokio-1.36.0/tests/join_handle_panic.rs
wasmtime-22.0.0 ./ext/cargo-vendor/tokio-1.36.0/tests/join_handle_panic.rs
wasmtime-21.0.1 ./ext/cargo-vendor/tokio-1.36.0/tests/join_handle_panic.rs
wasmtime-20.0.2 ./ext/cargo-vendor/tokio-1.36.0/tests/join_handle_panic.rs
wasmtime-20.0.0 ./ext/cargo-vendor/tokio-1.36.0/tests/join_handle_panic.rs
wasmtime-18.0.3 ./ext/cargo-vendor/tokio-1.36.0/tests/join_handle_panic.rs