//===-- Unittests for memset ----------------------------------------------===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// #include "memory_utils/memory_check_utils.h" #include "src/__support/macros/config.h" #include "src/__support/macros/properties/os.h" // LIBC_TARGET_OS_IS_LINUX #include "src/string/memset.h" #include "test/UnitTest/Test.h" #if !defined(LIBC_FULL_BUILD) && defined(LIBC_TARGET_OS_IS_LINUX) #include "memory_utils/protected_pages.h" #endif // !defined(LIBC_FULL_BUILD) && defined(LIBC_TARGET_OS_IS_LINUX) namespace LIBC_NAMESPACE_DECL { // Adapt CheckMemset signature to memset. static inline void Adaptor(cpp::span<char> p1, uint8_t value, size_t size) { … } TEST(LlvmLibcMemsetTest, SizeSweep) { … } #if !defined(LIBC_FULL_BUILD) && defined(LIBC_TARGET_OS_IS_LINUX) TEST(LlvmLibcMemsetTest, CheckAccess) { … } #endif // !defined(LIBC_FULL_BUILD) && defined(LIBC_TARGET_OS_IS_LINUX) } // namespace LIBC_NAMESPACE_DECL