Skip to content

Commit c2f0442

Browse files
committed
skip check for DYLD envars in child proc
1 parent 4891c00 commit c2f0442

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/libstd/process.rs

+1
Original file line numberDiff line numberDiff line change
@@ -807,6 +807,7 @@ mod tests {
807807
// equals signs (`=`). Those do not show up in the output of the
808808
// `set` command.
809809
assert!((cfg!(windows) && k.starts_with("=")) ||
810+
k.starts_with("DYLD") ||
810811
output.contains(&format!("{}={}", *k, *v)),
811812
"output doesn't contain `{}={}`\n{}",
812813
k, v, output);

0 commit comments

Comments
 (0)