diff options
| author | Josh Austin <josh.austin@gmail.com> | 2015-11-23 14:08:52 -0500 |
|---|---|---|
| committer | Josh Austin <josh.austin@gmail.com> | 2015-11-23 14:08:52 -0500 |
| commit | c2f0442a2ac7a0817a58d34ac885eca6e049ca82 (patch) | |
| tree | 911e1f9500401d78c30681911eef02c0a348b974 /src/libstd | |
| parent | 4891c00634f209bcc66d7f00bc507eb35a0fe6a8 (diff) | |
| download | rust-c2f0442a2ac7a0817a58d34ac885eca6e049ca82.tar.gz rust-c2f0442a2ac7a0817a58d34ac885eca6e049ca82.zip | |
skip check for DYLD envars in child proc
Diffstat (limited to 'src/libstd')
| -rw-r--r-- | src/libstd/process.rs | 1 |
1 files changed, 1 insertions, 0 deletions
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); |
