about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--src/test/run-pass/lib-run.rs7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/test/run-pass/lib-run.rs b/src/test/run-pass/lib-run.rs
index ffaa61721c2..71c1559c165 100644
--- a/src/test/run-pass/lib-run.rs
+++ b/src/test/run-pass/lib-run.rs
@@ -4,19 +4,12 @@ use std;
 import std::run;
 
 // Regression test for memory leaks
-// FIXME (714) Why does this fail on win32?
-
-#[cfg(target_os = "linux")]
-#[cfg(target_os = "macos")]
 fn test_leaks() {
   run::run_program("echo", []);
   run::start_program("echo", []);
   run::program_output("echo", []);
 }
 
-#[cfg(target_os = "win32")]
-fn test_leaks() {}
-
 fn main() {
   test_leaks();
 }
\ No newline at end of file