We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 21ec532 commit 1cca5d4Copy full SHA for 1cca5d4
[refs]
@@ -1,2 +1,2 @@
1
---
2
-refs/heads/master: c51f5f18dd268d18d19d8b1dd5d10ec08fedd70e
+refs/heads/master: 00e017f60ee032c7d7c733c622fc62c2596e2bef
trunk/src/test/run-pass/lib-run.rs
@@ -4,12 +4,19 @@ use std;
4
import std::run;
5
6
// Regression test for memory leaks
7
+// FIXME (714) Why does this fail on win32?
8
+
9
+#[cfg(target_os = "linux")]
10
+#[cfg(target_os = "macos")]
11
fn test_leaks() {
12
run::run_program("echo", []);
13
run::start_program("echo", []);
14
run::program_output("echo", []);
15
}
16
17
+#[cfg(target_os = "win32")]
18
+fn test_leaks() {}
19
20
fn main() {
21
test_leaks();
22
0 commit comments