From 4c54b21a6ea75cdd0c5f79e98531c7c113075e64 Mon Sep 17 00:00:00 2001 From: Brian Anderson Date: Wed, 2 May 2012 17:12:42 -0700 Subject: [PATCH] core: Ignore 2 busticated getenv tests on windows --- src/libcore/os.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/libcore/os.rs b/src/libcore/os.rs index 09617355e1a..1b07a55e81f 100644 --- a/src/libcore/os.rs +++ b/src/libcore/os.rs @@ -813,6 +813,7 @@ mod tests { } #[test] + #[ignore(cgf(target_os = "win32"))] fn test_setenv_overwrite() { let n = make_rand_name(); setenv(n, "1"); @@ -825,6 +826,7 @@ mod tests { // Windows GetEnvironmentVariable requires some extra work to make sure // the buffer the variable is copied into is the right size #[test] + #[ignore(cgf(target_os = "win32"))] fn test_getenv_big() { let mut s = ""; let mut i = 0;