Log completion on the many.rs test.

This commit is contained in:
Graydon Hoare 2010-07-04 22:41:57 -07:00
parent 75f0c36931
commit 6014384a5d

View file

@ -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);
}