blob: 5abdfc299d22ddd41ed4a5a2af39c0a5417ba530 [file] [log] [blame]
/*
* Copyright (c) 2016 Intel Corporation
*
* SPDX-License-Identifier: Apache-2.0
*/
#include <ztest.h>
extern void test_mpool_alloc_options(void);
/*test case main entry*/
void test_main(void *p1, void *p2, void *p3)
{
ztest_test_suite(test_mpool_options,
ztest_unit_test(test_mpool_alloc_options));
ztest_run_test_suite(test_mpool_options);
}