diff --git a/src/benchmark.cc b/src/benchmark.cc index 22817851a..e1cd8fd18 100644 --- a/src/benchmark.cc +++ b/src/benchmark.cc @@ -913,7 +913,9 @@ void Initialize(int* argc, char** argv, void (*HelperPrintf)()) { // Android 12 (API level 31) introduced zeroing of allocated memory in bionic // as a hardening feature; however, this is not enabled for apps. if (__builtin_available(android 31, *)) { - BM_CHECK_EQ(mallopt(M_BIONIC_ZERO_INIT, 0), 1); + // Not asserting on the return value, as sanitizers interpose the allocator + // and always return 0 + (void)mallopt(M_BIONIC_ZERO_INIT, 0); } // The default configuration of bionic is to return pages to the OS as soon @@ -921,7 +923,7 @@ void Initialize(int* argc, char** argv, void (*HelperPrintf)()) { // delay before returning memory to avoid excessive faulting on repeated // allocation and deallocation, which is common in repeated benchmark runs. if (__builtin_available(android 27, *)) { - BM_CHECK_EQ(mallopt(M_DECAY_TIME, 1), 1); + (void)mallopt(M_DECAY_TIME, 1); } #endif internal::HelperPrintf = HelperPrintf;