aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Walton <[email protected]>2010-11-05 11:25:23 -0700
committerPatrick Walton <[email protected]>2010-11-05 11:25:23 -0700
commit199ff196aa1c90c865a40c96438335f84a00de4c (patch)
treed206cf4ebb4e7422f88bd4c263d9a99b3236ea05
parentMove the option type to its own module (diff)
downloadrust-199ff196aa1c90c865a40c96438335f84a00de4c.tar.xz
rust-199ff196aa1c90c865a40c96438335f84a00de4c.zip
test_init_fn() in lib-vec.rs doesn't seem to segfault anymore. Un-XFAIL it.
-rw-r--r--src/test/run-pass/lib-vec.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/run-pass/lib-vec.rs b/src/test/run-pass/lib-vec.rs
index 6f19715d..815a3aa2 100644
--- a/src/test/run-pass/lib-vec.rs
+++ b/src/test/run-pass/lib-vec.rs
@@ -44,6 +44,6 @@ fn test_map() {
fn main() {
test_init_elt();
- //XFAIL: test_init_fn(); // Segfaults.
+ test_init_fn();
test_slice();
}