1diff --git a/src/lib.rs b/src/lib.rs 2index d33c2b6..39f5026 100644 3--- a/src/lib.rs 4+++ b/src/lib.rs 5@@ -500,6 +500,7 @@ mod tests { 6 7 #[cfg(feature = "use_std")] 8 #[test] 9+ #[ignore = "Android uses panic_abort"] 10 fn test_defer_success_2() { 11 let drops = Cell::new(0); 12 let _ = catch_unwind(AssertUnwindSafe(|| { 13@@ -511,6 +512,7 @@ mod tests { 14 15 #[cfg(feature = "use_std")] 16 #[test] 17+ #[ignore = "Android uses panic_abort"] 18 fn test_defer_unwind_1() { 19 let drops = Cell::new(0); 20 let _ = catch_unwind(AssertUnwindSafe(|| { 21