diff options
| -rw-r--r-- | src/compiletest/procsrv.rs | 2 | ||||
| -rw-r--r-- | src/test/run-pass/terminate-in-initializer.rs | 1 | ||||
| -rw-r--r-- | src/test/stdtest/task.rs | 16 |
3 files changed, 18 insertions, 1 deletions
diff --git a/src/compiletest/procsrv.rs b/src/compiletest/procsrv.rs index 4083029c4f5..f3c7bc9406c 100644 --- a/src/compiletest/procsrv.rs +++ b/src/compiletest/procsrv.rs @@ -164,7 +164,7 @@ fn maybe_with_lib_path<@T>(_path: str, f: fn@() -> T) -> T { f() } -fn with_lib_path<@T>(path: str, f: fn() -> T) -> T { +fn with_lib_path<@T>(path: str, f: fn@() -> T) -> T { let maybe_oldpath = getenv(util::lib_path_env_var()); append_lib_path(path); let res = f(); diff --git a/src/test/run-pass/terminate-in-initializer.rs b/src/test/run-pass/terminate-in-initializer.rs index 45a61c30201..ca67e2ead6e 100644 --- a/src/test/run-pass/terminate-in-initializer.rs +++ b/src/test/run-pass/terminate-in-initializer.rs @@ -1,3 +1,4 @@ +// xfail-win32 leaks // Issue #787 // Don't try to clean up uninitizaed locals diff --git a/src/test/stdtest/task.rs b/src/test/stdtest/task.rs index bc34428e5b2..8ed8b56af3d 100644 --- a/src/test/stdtest/task.rs +++ b/src/test/stdtest/task.rs @@ -5,7 +5,15 @@ import std::comm; #[test] fn test_sleep() { task::sleep(1000000u); } +// FIXME: Leaks on windows #[test] +#[cfg(target_os = "win32")] +#[ignore] +fn test_unsupervise() { } + +#[test] +#[cfg(target_os = "macos")] +#[cfg(target_os = "linux")] fn test_unsupervise() { fn# f(&&_i: ()) { task::unsupervise(); fail; } task::spawn((), f); @@ -38,7 +46,15 @@ fn test_join_chan() { } } +// FIXME: Leaks on windows +#[test] +#[cfg(target_os = "win32")] +#[ignore] +fn test_join_chan_fail() { } + #[test] +#[cfg(target_os = "macos")] +#[cfg(target_os = "linux")] fn test_join_chan_fail() { fn# failer(&&_i: ()) { task::unsupervise(); fail } |
