diff --git a/constant-time/src/memcmp.rs b/constant-time/src/memcmp.rs index 1df8709..2f72a08 100644 --- a/constant-time/src/memcmp.rs +++ b/constant-time/src/memcmp.rs @@ -32,6 +32,8 @@ pub fn memcmp(a: &[u8], b: &[u8]) -> bool { /// For discussion on how to (further) ensure the constant-time execution of this function, /// see #[cfg(all(test, feature = "constant_time_tests"))] +// Stopgap measure against https://github.com/rosenpass/rosenpass/issues/634 +#[cfg(not(all(target_os = "macos", target_arch = "aarch64")))] mod tests { use super::*; use core::hint::black_box;