| /* | |
| * 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(&k_mem_domain_default, &k_mbedtls_partition); | |
| #endif | |
| ztest_test_suite(test_mbedtls_fn, | |
| ztest_user_unit_test(test_mbedtls)); | |
| ztest_run_test_suite(test_mbedtls_fn); | |
| } |