diff options
| author | Michael Bebenita <[email protected]> | 2010-08-16 15:04:33 -0700 |
|---|---|---|
| committer | Michael Bebenita <[email protected]> | 2010-08-16 15:05:57 -0700 |
| commit | 14f5b5750d6509ca69180341b82e99f7fbf9fddb (patch) | |
| tree | d00b9655c4bc6517b32273411d1962722363b379 /src/test | |
| parent | Pulled rust_srv in its own file. Some cleanup, and added varargs to assertion... (diff) | |
| download | rust-14f5b5750d6509ca69180341b82e99f7fbf9fddb.tar.xz rust-14f5b5750d6509ca69180341b82e99f7fbf9fddb.zip | |
Un-xfailed working tests.
Diffstat (limited to 'src/test')
| -rw-r--r-- | src/test/run-pass/acyclic-unwind.rs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/test/run-pass/acyclic-unwind.rs b/src/test/run-pass/acyclic-unwind.rs index c9ed2ae3..38de9082 100644 --- a/src/test/run-pass/acyclic-unwind.rs +++ b/src/test/run-pass/acyclic-unwind.rs @@ -13,6 +13,11 @@ io fn f(chan[int] c) while (true) { // spin waiting for the parent to kill us. log "child waiting to die..."; + + // while waiting to die, the messages we are + // sending to the channel are never received + // by the parent, therefore this test cases drops + // messages on the floor c <| 1; } } |