66 lines
1.6 KiB
C
66 lines
1.6 KiB
C
|
/*
|
||
|
* Copyright (c) 2006-2023, RT-Thread Development Team
|
||
|
*
|
||
|
* SPDX-License-Identifier: Apache-2.0
|
||
|
*
|
||
|
* Change Logs:
|
||
|
* Date Author Notes
|
||
|
* 2023-03-20 WangXiaoyao Complete testcase for mm_aspace.c
|
||
|
*/
|
||
|
#ifndef __TEST_MM_COMMON_H__
|
||
|
#define __TEST_MM_COMMON_H__
|
||
|
|
||
|
#include <stddef.h>
|
||
|
#include <stdint.h>
|
||
|
#include <string.h>
|
||
|
|
||
|
#include <utest.h>
|
||
|
|
||
|
#include <board.h>
|
||
|
#include <rtthread.h>
|
||
|
#include <rthw.h>
|
||
|
#include <lwp_arch.h>
|
||
|
#include <mmu.h>
|
||
|
#include <tlb.h>
|
||
|
|
||
|
#include <ioremap.h>
|
||
|
#include <mm_aspace.h>
|
||
|
#include <mm_flag.h>
|
||
|
#include <mm_page.h>
|
||
|
#include <mm_private.h>
|
||
|
|
||
|
extern rt_base_t rt_heap_lock(void);
|
||
|
extern void rt_heap_unlock(rt_base_t level);
|
||
|
|
||
|
/**
|
||
|
* @brief During the operations, is heap still the same;
|
||
|
*/
|
||
|
#define CONSIST_HEAP(statement) do { \
|
||
|
rt_size_t total, used, max_used; \
|
||
|
rt_size_t totala, useda, max_useda; \
|
||
|
rt_ubase_t level = rt_heap_lock(); \
|
||
|
rt_memory_info(&total, &used, &max_used); \
|
||
|
statement; \
|
||
|
rt_memory_info(&totala, &useda, &max_useda); \
|
||
|
rt_heap_unlock(level); \
|
||
|
uassert_true(total == totala); \
|
||
|
uassert_true(used == useda); \
|
||
|
uassert_true(max_used == max_useda); \
|
||
|
} while (0)
|
||
|
|
||
|
rt_inline int memtest(volatile char *buf, int value, size_t buf_sz)
|
||
|
{
|
||
|
int ret = 0;
|
||
|
for (size_t i = 0; i < buf_sz; i++)
|
||
|
{
|
||
|
if (buf[i] != value)
|
||
|
{
|
||
|
ret = -1;
|
||
|
break;
|
||
|
}
|
||
|
}
|
||
|
return ret;
|
||
|
}
|
||
|
|
||
|
#endif /* __TEST_MM_COMMON_H__ */
|