diff options
| author | Michael Sullivan <sully@msully.net> | 2011-08-03 17:08:23 -0700 |
|---|---|---|
| committer | Michael Sullivan <sully@msully.net> | 2011-08-03 17:08:23 -0700 |
| commit | 9bfbb2bf8368a5f46cef5848aac2e7058cf70650 (patch) | |
| tree | 32e73e6f22d58af120efcf7bcd2b896f50afbf24 /src/test/stdtest | |
| parent | 2298a2b29f5efba7b3d107b2bc86dfc4a0d56547 (diff) | |
| download | rust-9bfbb2bf8368a5f46cef5848aac2e7058cf70650.tar.gz rust-9bfbb2bf8368a5f46cef5848aac2e7058cf70650.zip | |
Remove an obsolete FIXME in stdtest/deque.rs. Closes #140.
Diffstat (limited to 'src/test/stdtest')
| -rw-r--r-- | src/test/stdtest/deque.rs | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/src/test/stdtest/deque.rs b/src/test/stdtest/deque.rs index 6d405f2eae8..7cca79eb288 100644 --- a/src/test/stdtest/deque.rs +++ b/src/test/stdtest/deque.rs @@ -176,11 +176,9 @@ fn test() { let eq3: eqfn[taggy] = taggyeq; test_parameterized[taggy](eq3, one(1), two(1, 2), three(1, 2, 3), two(17, 42)); - /* - * FIXME: Segfault. Also appears to be caused only after upcall_grow_task log "*** test parameterized: taggypar[int]"; - let eqfn[taggypar[int]] eq4 = taggypareq[int]; + let eq4: eqfn[taggypar[int]] = taggypareq[int]; test_parameterized[taggypar[int]](eq4, onepar[int](1), twopar[int](1, 2), @@ -188,8 +186,6 @@ fn test() { twopar[int](17, 42)); log "*** end test parameterized: taggypar[int]"; - */ - log "*** test parameterized: reccy"; let reccy1: reccy = {x: 1, y: 2, t: one(1)}; let reccy2: reccy = {x: 345, y: 2, t: two(1, 2)}; @@ -199,4 +195,4 @@ fn test() { test_parameterized[reccy](eq5, reccy1, reccy2, reccy3, reccy4); log "*** end test parameterized: reccy"; log "*** done"; -} \ No newline at end of file +} |
