From 3acdbfd2c843ff2be79652df34a2a1959d18685d Mon Sep 17 00:00:00 2001 From: James Miller Date: Thu, 20 Jun 2013 22:43:21 +1200 Subject: [PATCH] ignore inherited environment test under valgrind r=snapshot --- src/libstd/run.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/libstd/run.rs b/src/libstd/run.rs index 7a96bf35218..060de3f4d5d 100644 --- a/src/libstd/run.rs +++ b/src/libstd/run.rs @@ -1160,6 +1160,7 @@ mod tests { #[test] fn test_inherit_env() { + if running_on_valgrind() { return; } let mut prog = run_env(None); let output = str::from_bytes(prog.finish_with_output().output);