Skip to content

Commit b032273

Browse files
committed
---
yaml --- r: 5886 b: refs/heads/master c: c10eb22 h: refs/heads/master v: v3
1 parent 45d9cba commit b032273

File tree

4 files changed

+19
-2
lines changed

4 files changed

+19
-2
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
---
2-
refs/heads/master: 5c38f7dfd7ccf2e57913500f8a7548b2b8de1932
2+
refs/heads/master: c10eb221da59f6fabe308e79d11df5b86855da5a

trunk/src/compiletest/procsrv.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ fn maybe_with_lib_path<@T>(_path: str, f: fn@() -> T) -> T {
164164
f()
165165
}
166166

167-
fn with_lib_path<@T>(path: str, f: fn() -> T) -> T {
167+
fn with_lib_path<@T>(path: str, f: fn@() -> T) -> T {
168168
let maybe_oldpath = getenv(util::lib_path_env_var());
169169
append_lib_path(path);
170170
let res = f();

trunk/src/test/run-pass/terminate-in-initializer.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// xfail-win32 leaks
12
// Issue #787
23
// Don't try to clean up uninitizaed locals
34

trunk/src/test/stdtest/task.rs

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,15 @@ import std::comm;
55
#[test]
66
fn test_sleep() { task::sleep(1000000u); }
77

8+
// FIXME: Leaks on windows
89
#[test]
10+
#[cfg(target_os = "win32")]
11+
#[ignore]
12+
fn test_unsupervise() { }
13+
14+
#[test]
15+
#[cfg(target_os = "macos")]
16+
#[cfg(target_os = "linux")]
917
fn test_unsupervise() {
1018
fn# f(&&_i: ()) { task::unsupervise(); fail; }
1119
task::spawn((), f);
@@ -38,7 +46,15 @@ fn test_join_chan() {
3846
}
3947
}
4048

49+
// FIXME: Leaks on windows
50+
#[test]
51+
#[cfg(target_os = "win32")]
52+
#[ignore]
53+
fn test_join_chan_fail() { }
54+
4155
#[test]
56+
#[cfg(target_os = "macos")]
57+
#[cfg(target_os = "linux")]
4258
fn test_join_chan_fail() {
4359
fn# failer(&&_i: ()) { task::unsupervise(); fail }
4460

0 commit comments

Comments
 (0)