summaryrefslogtreecommitdiffstats
path: root/vendor/tokio/tests/process_arg0.rs
blob: 4fabea0fe1f6b8533c9d4b6ff72acd7212605695 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#![warn(rust_2018_idioms)]
#![cfg(all(feature = "full", unix))]

use tokio::process::Command;

#[tokio::test]
async fn arg0() {
    let mut cmd = Command::new("sh");
    cmd.arg0("test_string").arg("-c").arg("echo $0");

    let output = cmd.output().await.unwrap();
    assert_eq!(output.stdout, b"test_string\n");
}