blob: b3c52708ed77fe89df06dec164805e9a50eae07c [file] [log] [blame]
/*
* Copyright (c) 2017 Intel Corporation
*
* SPDX-License-Identifier: Apache-2.0
*/
#include <ztest.h>
#include <app_memory/partitions.h>
extern void test_mbedtls(void);
/**test case main entry*/
void test_main(void)
{
#ifdef CONFIG_USERSPACE
k_mem_domain_add_partition(&ztest_mem_domain, &k_mbedtls_partition);
#endif
ztest_test_suite(test_mbedtls_fn,
ztest_user_unit_test(test_mbedtls));
ztest_run_test_suite(test_mbedtls_fn);
}