Skip to content

Commit 7a065f2

Browse files
committed
libcore: Fix some more coretest bustage. rs=bustage
1 parent 1282fc8 commit 7a065f2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/libcore/task/mod.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -785,7 +785,7 @@ fn test_spawn_linked_sup_fail_up() { // child fails; parent fails
785785
let b1 = TaskBuilder {
786786
opts: move opts,
787787
can_not_copy: None,
788-
.. *b0
788+
.. b0
789789
};
790790
do b1.spawn { fail; }
791791
comm::recv(po); // We should get punted awake
@@ -805,7 +805,7 @@ fn test_spawn_linked_sup_fail_down() { // parent fails; child fails
805805
let b1 = TaskBuilder {
806806
opts: move opts,
807807
can_not_copy: None,
808-
.. *b0
808+
.. b0
809809
};
810810
do b1.spawn { loop { task::yield(); } }
811811
fail; // *both* mechanisms would be wrong if this didn't kill the child...

0 commit comments

Comments
 (0)