diff --git a/src/libgreen/sched.rs b/src/libgreen/sched.rs index e214797d4f84..dd9df8063f03 100644 --- a/src/libgreen/sched.rs +++ b/src/libgreen/sched.rs @@ -1035,10 +1035,10 @@ mod test { fn sched_id() -> uint { let mut task = Local::borrow(None::); - match task.get().maybe_take_runtime::() { + match task.maybe_take_runtime::() { Some(green) => { let ret = green.sched.get_ref().sched_id(); - task.get().put_runtime(green); + task.put_runtime(green); return ret; } None => fail!() diff --git a/src/librustuv/lib.rs b/src/librustuv/lib.rs index 8f5d4a725140..4f2b7103b793 100644 --- a/src/librustuv/lib.rs +++ b/src/librustuv/lib.rs @@ -462,7 +462,7 @@ fn local_loop() -> &'static mut uvio::UvIoFactory { unsafe { cast::transmute({ let mut task = Local::borrow(None::); - let mut io = task.get().local_io().unwrap(); + let mut io = task.local_io().unwrap(); let (_vtable, uvio): (uint, &'static mut uvio::UvIoFactory) = cast::transmute(io.get()); uvio diff --git a/src/test/run-pass/smallest-hello-world.rs b/src/test/run-pass/smallest-hello-world.rs index 0ec1ec79a60c..65288cf0416f 100644 --- a/src/test/run-pass/smallest-hello-world.rs +++ b/src/test/run-pass/smallest-hello-world.rs @@ -8,7 +8,9 @@ // option. This file may not be copied, modified, or distributed // except according to those terms. -// Smallest hello world with no runtime +// ignore-android + +// Smallest "hello world" with a libc runtime #![no_std]