skip check for DYLD envars in child proc

This commit is contained in:
Josh Austin 2015-11-23 14:08:52 -05:00
parent 4891c00634
commit c2f0442a2a

View File

@ -807,6 +807,7 @@ mod tests {
// equals signs (`=`). Those do not show up in the output of the
// `set` command.
assert!((cfg!(windows) && k.starts_with("=")) ||
k.starts_with("DYLD") ||
output.contains(&format!("{}={}", *k, *v)),
"output doesn't contain `{}={}`\n{}",
k, v, output);