From 2796ab6de9eefb3d009a410e45f5c154469c94b7 Mon Sep 17 00:00:00 2001 From: Graydon Hoare Date: Fri, 17 Feb 2012 11:28:18 -0800 Subject: [PATCH] Add a win32-ignore attribute to a should-fail test. --- src/libcore/str.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/libcore/str.rs b/src/libcore/str.rs index f79594a3023..f7a18253db2 100644 --- a/src/libcore/str.rs +++ b/src/libcore/str.rs @@ -1554,6 +1554,7 @@ mod tests { #[test] #[should_fail] + #[ignore(cfg(target_os = "win32"))] fn test_pop_char_fail() { let data = ""; let _cc3 = pop_char(data);