aboutsummaryrefslogtreecommitdiff
path: root/src/test/run-pass/task-comm-12.rs
diff options
context:
space:
mode:
authorMichael Bebenita <[email protected]>2010-09-07 18:01:35 -0700
committerMichael Bebenita <[email protected]>2010-09-07 18:41:07 -0700
commit79e3856d7d4e159eae84093c6b5b5009b121cd8c (patch)
tree862f752a2dfdf613faf59ae919f528f860d15a7e /src/test/run-pass/task-comm-12.rs
parentAdded a few utility classes, cleaned up the include order of .h files, and st... (diff)
downloadrust-79e3856d7d4e159eae84093c6b5b5009b121cd8c.tar.xz
rust-79e3856d7d4e159eae84093c6b5b5009b121cd8c.zip
Small updates to test cases.
Diffstat (limited to 'src/test/run-pass/task-comm-12.rs')
-rw-r--r--src/test/run-pass/task-comm-12.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/run-pass/task-comm-12.rs b/src/test/run-pass/task-comm-12.rs
index ab7c25e8..ceb6ba01 100644
--- a/src/test/run-pass/task-comm-12.rs
+++ b/src/test/run-pass/task-comm-12.rs
@@ -11,7 +11,7 @@ fn start(int task_number) {
fn test00() {
let int i = 0;
- let task t = spawn thread start(i);
+ let task t = spawn thread "child" start(i);
// Sleep long enough for the task to finish.
_task.sleep(10000u);