From ceeffa1ec662f4c1e214f3762ac116a21886078e Mon Sep 17 00:00:00 2001 From: gareth Date: Tue, 23 Apr 2013 20:02:47 +0100 Subject: [PATCH] Oops, the should_fail test needs to be ignored on windows. --- src/libcore/run.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/libcore/run.rs b/src/libcore/run.rs index 701ab1c59df5..2ca0449cb59f 100644 --- a/src/libcore/run.rs +++ b/src/libcore/run.rs @@ -617,6 +617,7 @@ mod tests { #[test] #[should_fail] + #[ignore(cfg(windows))] fn waitpid_non_existant_pid() { run::waitpid(123456789); // assume that this pid doesn't exist }