From f1bafebefd11e4c42ce68363c5f86b77ab4a49d1 Mon Sep 17 00:00:00 2001 From: Tom Kaitchuck Date: Sun, 28 Apr 2024 11:53:30 -0700 Subject: [PATCH] Apply flag to test also Signed-off-by: Tom Kaitchuck --- src/hash_quality_test.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hash_quality_test.rs b/src/hash_quality_test.rs index f2fab16..f85e18a 100644 --- a/src/hash_quality_test.rs +++ b/src/hash_quality_test.rs @@ -441,7 +441,7 @@ mod fallback_tests { ///Basic sanity tests of the cypto properties of aHash. #[cfg(any( all(any(target_arch = "x86", target_arch = "x86_64"), target_feature = "aes", not(miri)), - all(target_arch = "aarch64", target_feature = "aes", not(miri)), + all(feature = "nightly-arm-aes", target_arch = "aarch64", target_feature = "aes", not(miri)), all(feature = "nightly-arm-aes", target_arch = "arm", target_feature = "aes", not(miri)), ))] #[cfg(test)]