Sha256: 9b4bf8a73769fb268ef3687141e8df6122814855d3bbc4e63295c66b0ee6cff7

Contents?: true

Size: 1.04 KB

Versions: 29

Compression:

Stored size: 1.04 KB

Contents

#![cfg(all(unix, feature = "process"))]
#![warn(rust_2018_idioms)]

use std::io::ErrorKind;
use std::process::Stdio;
use std::time::Duration;
use tokio::io::AsyncReadExt;
use tokio::process::Command;
use tokio::time::sleep;
use tokio_test::assert_ok;

#[tokio::test]
async fn kill_on_drop() {
    let mut cmd = Command::new("bash");
    cmd.args([
        "-c",
        "
       # Fork another child that won't get killed
       sh -c 'sleep 1; echo child ran' &
       disown -a

       # Await our death
       sleep 5
       echo hello from beyond the grave
    ",
    ]);

    let e = cmd.kill_on_drop(true).stdout(Stdio::piped()).spawn();
    if e.is_err() && e.as_ref().unwrap_err().kind() == ErrorKind::NotFound {
        println!("bash not available; skipping test");
        return;
    }
    let mut child = e.unwrap();

    sleep(Duration::from_secs(2)).await;

    let mut out = child.stdout.take().unwrap();
    drop(child);

    let mut msg = String::new();
    assert_ok!(out.read_to_string(&mut msg).await);

    assert_eq!("child ran\n", msg);
}

Version data entries

29 entries across 29 versions & 1 rubygems

Version Path
wasmtime-25.0.2 ./ext/cargo-vendor/tokio-1.40.0/tests/process_kill_on_drop.rs
wasmtime-25.0.1 ./ext/cargo-vendor/tokio-1.39.3/tests/process_kill_on_drop.rs
wasmtime-25.0.0 ./ext/cargo-vendor/tokio-1.39.3/tests/process_kill_on_drop.rs
wasmtime-24.0.0 ./ext/cargo-vendor/tokio-1.39.3/tests/process_kill_on_drop.rs
wasmtime-23.0.2 ./ext/cargo-vendor/tokio-1.36.0/tests/process_kill_on_drop.rs
wasmtime-22.0.0 ./ext/cargo-vendor/tokio-1.36.0/tests/process_kill_on_drop.rs
wasmtime-21.0.1 ./ext/cargo-vendor/tokio-1.36.0/tests/process_kill_on_drop.rs
wasmtime-20.0.2 ./ext/cargo-vendor/tokio-1.36.0/tests/process_kill_on_drop.rs
wasmtime-20.0.0 ./ext/cargo-vendor/tokio-1.36.0/tests/process_kill_on_drop.rs
wasmtime-18.0.3 ./ext/cargo-vendor/tokio-1.36.0/tests/process_kill_on_drop.rs
wasmtime-17.0.1 ./ext/cargo-vendor/tokio-1.35.1/tests/process_kill_on_drop.rs
wasmtime-17.0.0 ./ext/cargo-vendor/tokio-1.35.1/tests/process_kill_on_drop.rs
wasmtime-16.0.0 ./ext/cargo-vendor/tokio-1.35.1/tests/process_kill_on_drop.rs
wasmtime-15.0.1 ./ext/cargo-vendor/tokio-1.35.1/tests/process_kill_on_drop.rs
wasmtime-15.0.0 ./ext/cargo-vendor/tokio-1.35.1/tests/process_kill_on_drop.rs
wasmtime-14.0.4 ./ext/cargo-vendor/tokio-1.33.0/tests/process_kill_on_drop.rs
wasmtime-14.0.3 ./ext/cargo-vendor/tokio-1.33.0/tests/process_kill_on_drop.rs
wasmtime-14.0.1 ./ext/cargo-vendor/tokio-1.33.0/tests/process_kill_on_drop.rs
wasmtime-14.0.0 ./ext/cargo-vendor/tokio-1.33.0/tests/process_kill_on_drop.rs
wasmtime-13.0.0 ./ext/cargo-vendor/tokio-1.32.0/tests/process_kill_on_drop.rs