aboutsummaryrefslogtreecommitdiff
path: root/src/test/run-pass/task-comm-12.rs
diff options
context:
space:
mode:
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);