diff options
| author | Graydon Hoare <[email protected]> | 2010-07-04 22:41:57 -0700 |
|---|---|---|
| committer | Graydon Hoare <[email protected]> | 2010-07-04 22:41:57 -0700 |
| commit | 6014384a5d7ff74941c107211f90719d363915a3 (patch) | |
| tree | c6c26aeb9c49d8e0c3fa2af1e3f34519c1b8fe2c /src | |
| parent | Perform valgrind-specific timing tweaks in a platform-sensitive manner. (diff) | |
| download | rust-6014384a5d7ff74941c107211f90719d363915a3.tar.xz rust-6014384a5d7ff74941c107211f90719d363915a3.zip | |
Log completion on the many.rs test.
Diffstat (limited to 'src')
| -rw-r--r-- | src/test/run-pass/many.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/test/run-pass/many.rs b/src/test/run-pass/many.rs index 3776d38e..e300312c 100644 --- a/src/test/run-pass/many.rs +++ b/src/test/run-pass/many.rs @@ -15,5 +15,7 @@ io fn main() { let port[int] p = port(); auto child = spawn sub(chan(p), 500); let int y <- p; + log "transmission complete"; + log y; check (y == 500); } |