From c2f0442a2ac7a0817a58d34ac885eca6e049ca82 Mon Sep 17 00:00:00 2001 From: Josh Austin Date: Mon, 23 Nov 2015 14:08:52 -0500 Subject: [PATCH] skip check for DYLD envars in child proc --- src/libstd/process.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/libstd/process.rs b/src/libstd/process.rs index 083205e824d..40803a4bbd6 100644 --- a/src/libstd/process.rs +++ b/src/libstd/process.rs @@ -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);