blob: b966d4e76ece46326a08bd0109c08b2f92c1ef40 [file] [log] [blame]
#![warn(rust_2018_idioms)]
#![cfg(all(feature = "full", unix, not(miri)))]
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");
}