about summary refs log tree commit diff
diff options
context:
space:
mode:
authorgareth <gareth@gareth-N56VM.(none)>2013-04-23 20:02:47 +0100
committergareth <gareth@gareth-N56VM.(none)>2013-04-23 21:23:16 +0100
commitceeffa1ec662f4c1e214f3762ac116a21886078e (patch)
tree8d8d831fc2d96132ded98b7fb16c208a3a41e9ec
parent690120d6bc217338afc9b34cb458b086ab3f86d9 (diff)
downloadrust-ceeffa1ec662f4c1e214f3762ac116a21886078e.tar.gz
rust-ceeffa1ec662f4c1e214f3762ac116a21886078e.zip
Oops, the should_fail test needs to be ignored on windows.
-rw-r--r--src/libcore/run.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libcore/run.rs b/src/libcore/run.rs
index 701ab1c59df..2ca0449cb59 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
     }