1diff --git a/tests/task_abort.rs b/tests/task_abort.rs 2index cdaa405..ec0eed7 100644 3--- a/tests/task_abort.rs 4+++ b/tests/task_abort.rs 5@@ -180,6 +180,7 @@ fn test_abort_wakes_task_3964() { 6 /// Checks that aborting a task whose destructor panics does not allow the 7 /// panic to escape the task. 8 #[test] 9+#[cfg(not(target_os = "android"))] 10 fn test_abort_task_that_panics_on_drop_contained() { 11 let rt = Builder::new_current_thread().enable_time().build().unwrap(); 12 13@@ -204,6 +205,7 @@ fn test_abort_task_that_panics_on_drop_contained() { 14 15 /// Checks that aborting a task whose destructor panics has the expected result. 16 #[test] 17+#[cfg(not(target_os = "android"))] 18 fn test_abort_task_that_panics_on_drop_returned() { 19 let rt = Builder::new_current_thread().enable_time().build().unwrap(); 20 21