blob: 4d6a4afe17eeb02c5e621b93c9b04af80d13bf06 [file] [log] [blame]
/*
* Copyright (c) 2016 Intel Corporation
*
* SPDX-License-Identifier: Apache-2.0
*/
#include <ztest.h>
extern void test_mheap_malloc_free(void);
extern void test_mheap_malloc_align4(void);
extern void test_mheap_min_block_size(void);
extern void test_mheap_block_desc(void);
extern void test_mheap_calloc(void);
/*test case main entry*/
void test_main(void)
{
ztest_test_suite(test_mheap_api,
ztest_unit_test(test_mheap_malloc_free),
ztest_unit_test(test_mheap_calloc),
ztest_unit_test(test_mheap_malloc_align4),
ztest_unit_test(test_mheap_min_block_size),
ztest_unit_test(test_mheap_block_desc));
ztest_run_test_suite(test_mheap_api);
}