Revert "Enable run-pass/lib-run on win32. Closes #714"
This reverts commit 1348a383c3.
Seems that this test is still broken on win.
This commit is contained in:
parent
93ffed4c16
commit
bc33897525
1 changed files with 7 additions and 0 deletions
|
|
@ -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();
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue