1diff --git a/src/mutex/spin.rs b/src/mutex/spin.rs 2index 60be1e8..36d65fd 100644 3--- a/src/mutex/spin.rs 4+++ b/src/mutex/spin.rs 5@@ -432,6 +432,7 @@ mod tests { 6 } 7 8 #[test] 9+ #[ignore = "Android uses panic_abort"] 10 fn test_mutex_arc_access_in_unwind() { 11 let arc = Arc::new(SpinMutex::new(1)); 12 let arc2 = arc.clone(); 13diff --git a/src/mutex/ticket.rs b/src/mutex/ticket.rs 14index df36e95..4186fb8 100644 15--- a/src/mutex/ticket.rs 16+++ b/src/mutex/ticket.rs 17@@ -428,6 +428,7 @@ mod tests { 18 } 19 20 #[test] 21+ #[ignore = "Android uses panic_abort"] 22 fn test_mutex_arc_access_in_unwind() { 23 let arc = Arc::new(TicketMutex::new(1)); 24 let arc2 = arc.clone(); 25diff --git a/src/once.rs b/src/once.rs 26index 5d4b451..ad60405 100644 27--- a/src/once.rs 28+++ b/src/once.rs 29@@ -384,6 +384,7 @@ mod tests { 30 } 31 32 #[test] 33+ #[ignore = "Android uses panic_abort"] 34 fn panic() { 35 use ::std::panic; 36 37diff --git a/src/rw_lock.rs b/src/rw_lock.rs 38index 5c009cf..ed50407 100644 39--- a/src/rw_lock.rs 40+++ b/src/rw_lock.rs 41@@ -932,6 +932,7 @@ mod tests { 42 } 43 44 #[test] 45+ #[ignore = "Android uses panic_abort"] 46 fn test_rw_access_in_unwind() { 47 let arc = Arc::new(RwLock::new(1)); 48 let arc2 = arc.clone(); 49