diff --git a/bin_tests/tests/crashtracker_bin_test.rs b/bin_tests/tests/crashtracker_bin_test.rs index 5c70bdb5a9..0a0ab71210 100644 --- a/bin_tests/tests/crashtracker_bin_test.rs +++ b/bin_tests/tests/crashtracker_bin_test.rs @@ -299,6 +299,8 @@ fn test_crash_tracking_errors_intake_uds_socket() { // This test is disabled for now on x86_64 musl and macos // It seems that on aarch64 musl, libc has CFI which allows // unwinding passed the signal frame. +// Don't forget to update the ignore condition for this and also +// `test_crash_tracking_callstack` when this is revisited. #[test] #[cfg(not(any(all(target_arch = "x86_64", target_env = "musl"), target_os = "macos")))] #[cfg_attr(miri, ignore)] @@ -306,6 +308,8 @@ fn test_crasht_tracking_validate_callstack() { test_crash_tracking_callstack() } +// This test is disabled for now on x86_64 musl and macos for the reason mentioned above. +#[cfg(not(any(all(target_arch = "x86_64", target_env = "musl"), target_os = "macos")))] fn test_crash_tracking_callstack() { use bin_tests::test_runner::run_custom_crash_test;