diff options
| author | gareth <gareth@gareth-N56VM.(none)> | 2013-04-16 21:23:44 +0100 |
|---|---|---|
| committer | gareth <gareth@gareth-N56VM.(none)> | 2013-04-16 21:23:44 +0100 |
| commit | caffe127c78617b4c5eea8adaae17f20a816b651 (patch) | |
| tree | af013f173c05e895d0d7ab20643317815b2ee668 | |
| parent | 7cacd87efd34f8b8c3c0db5e5b2192ddd32a6ec5 (diff) | |
| download | rust-caffe127c78617b4c5eea8adaae17f20a816b651.tar.gz rust-caffe127c78617b4c5eea8adaae17f20a816b651.zip | |
Fix issue 2626 by un-ignoring the mysterious test_leaks,
which does currently seem to work on win32 (and linux).
| -rw-r--r-- | src/libcore/run.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcore/run.rs b/src/libcore/run.rs index 8e247a25012..9e6524c25cb 100644 --- a/src/libcore/run.rs +++ b/src/libcore/run.rs @@ -520,7 +520,7 @@ mod tests { use run; // Regression test for memory leaks - #[ignore(cfg(windows))] // FIXME (#2626) + #[test] fn test_leaks() { run::run_program("echo", []); run::start_program("echo", []); |
