Move multi-heap tests out of kernel folder along side all other heap related tests. Signed-off-by: Anas Nashif <anas.nashif@intel.com>
20 lines
314 B
C
20 lines
314 B
C
/*
|
|
* Copyright (c) 2016 Intel Corporation
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#include <zephyr/ztest.h>
|
|
|
|
/**
|
|
* @brief Heap tests
|
|
*
|
|
* @defgroup kernel_heap_tests Heap Memory Tests
|
|
*
|
|
* @ingroup all_tests
|
|
* @{
|
|
* @}
|
|
*/
|
|
/*test case main entry*/
|
|
ZTEST_SUITE(mheap_api, NULL, NULL, NULL, NULL, NULL);
|