1 /* 2 * Copyright (c) 2006-2023, RT-Thread Development Team 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 * 6 * Change Logs: 7 * Date Author Notes 8 * 2023-03-17 WangXiaoyao cache API unit test 9 */ 10 #include <rtthread.h> 11 12 #ifdef ARCH_RISCV64 13 #include "test_cache_rv64.h" 14 #elif defined(ARCH_ARMV8) 15 #include "test_cache_aarch64.h" 16 #endif 17