Assert a command stderr string is equal to another.
use std::process::Command;
let mut a = Command::new("bin/printf-stderr");
a.args(["%s", "hello"]);
let mut b = Command::new("bin/printf-stderr");
b.args(["%s", "hello"]);
assert_command_stderr_eq!(a, b);