From caffe127c78617b4c5eea8adaae17f20a816b651 Mon Sep 17 00:00:00 2001 From: gareth Date: Tue, 16 Apr 2013 21:23:44 +0100 Subject: [PATCH] Fix issue 2626 by un-ignoring the mysterious test_leaks, which does currently seem to work on win32 (and linux). --- src/libcore/run.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libcore/run.rs b/src/libcore/run.rs index 8e247a25012f1..9e6524c25cb29 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", []);