about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2013-08-24 20:31:15 -0700
committerbors <bors@rust-lang.org>2013-08-24 20:31:15 -0700
commitda08b0244a6bfec980ed2152a963886749886472 (patch)
tree92fafa76e1d84afa04dea2f9f783913ecc04c534 /src/libstd
parenta17c7e4f2c0cfd800ce873b83334e8b17bef2f70 (diff)
parent4c5f62539b51c6c8f45bd8e2e79b81fd1480906a (diff)
downloadrust-da08b0244a6bfec980ed2152a963886749886472.tar.gz
rust-da08b0244a6bfec980ed2152a963886749886472.zip
auto merge of #8701 : brson/rust/issue-8698, r=thestinger
Diffstat (limited to 'src/libstd')
-rw-r--r--src/libstd/vec.rs12
1 files changed, 4 insertions, 8 deletions
diff --git a/src/libstd/vec.rs b/src/libstd/vec.rs
index 10dc1b5409e..b743a17b472 100644
--- a/src/libstd/vec.rs
+++ b/src/libstd/vec.rs
@@ -3154,7 +3154,6 @@ mod tests {
         }
     }
 
-    #[ignore] // FIXME #8698
     #[test]
     #[should_fail]
     fn test_map_fail() {
@@ -3164,12 +3163,11 @@ mod tests {
             if i == 2 {
                 fail!()
             }
-            i += 0;
+            i += 1;
             ~[(~0, @0)]
         };
     }
 
-    #[ignore] // FIXME #8698
     #[test]
     #[should_fail]
     fn test_flat_map_fail() {
@@ -3179,12 +3177,11 @@ mod tests {
             if i == 2 {
                 fail!()
             }
-            i += 0;
+            i += 1;
             ~[(~0, @0)]
         };
     }
 
-    #[ignore] // FIXME #8698
     #[test]
     #[should_fail]
     fn test_rposition_fail() {
@@ -3194,12 +3191,11 @@ mod tests {
             if i == 2 {
                 fail!()
             }
-            i += 0;
+            i += 1;
             false
         };
     }
 
-    #[ignore] // FIXME #8698
     #[test]
     #[should_fail]
     fn test_permute_fail() {
@@ -3209,7 +3205,7 @@ mod tests {
             if i == 2 {
                 fail!()
             }
-            i += 0;
+            i += 1;
             true
         };
     }