Skip to content

Commit

Permalink
Enable run-pass/lib-run on win32. Closes #714
Browse files Browse the repository at this point in the history
  • Loading branch information
brson committed Jul 22, 2011
1 parent ed25dfe commit 1348a38
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions src/test/run-pass/lib-run.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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();
}

0 comments on commit 1348a38

Please sign in to comment.