Skip to content

Commit

Permalink
Revert "Enable run-pass/lib-run on win32. Closes rust-lang#714"
Browse files Browse the repository at this point in the history
This reverts commit 1348a38.

Seems that this test is still broken on win.
  • Loading branch information
marijnh committed Jul 22, 2011
1 parent 93ffed4 commit bc33897
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/test/run-pass/lib-run.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,19 @@ 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();
}

0 comments on commit bc33897

Please sign in to comment.