diff options
| author | Patrick Walton <[email protected]> | 2010-11-05 11:25:23 -0700 |
|---|---|---|
| committer | Patrick Walton <[email protected]> | 2010-11-05 11:25:23 -0700 |
| commit | 199ff196aa1c90c865a40c96438335f84a00de4c (patch) | |
| tree | d206cf4ebb4e7422f88bd4c263d9a99b3236ea05 /src | |
| parent | Move the option type to its own module (diff) | |
| download | rust-199ff196aa1c90c865a40c96438335f84a00de4c.tar.xz rust-199ff196aa1c90c865a40c96438335f84a00de4c.zip | |
test_init_fn() in lib-vec.rs doesn't seem to segfault anymore. Un-XFAIL it.
Diffstat (limited to 'src')
| -rw-r--r-- | src/test/run-pass/lib-vec.rs | 2 |
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(); } |