zephyr/tests/kernel/threads_customdata/cdata_api/src/main.c
David B. Kinder 516e155bb5 tests: update to Apache 2.0 SPDX tags on new tests
Some new tests were added that had the Apache 2.0 boilerplate licensing
instead of the SPDX licensing tag.

Change-Id: I4bde8c9c6e7a6d44bceeffb6bbcff9f62d417648
Signed-off-by: David B. Kinder <david.b.kinder@intel.com>
2017-01-21 01:21:21 +00:00

29 lines
568 B
C

/*
* Copyright (c) 2016 Intel Corporation
*
* SPDX-License-Identifier: Apache-2.0
*/
#include <ztest.h>
#include "test_cdata.h"
/**
* @addtogroup t_threads_customdata
* @{
* @defgroup t_threads_customdata_api test_threads_customdata_api
* @}
*/
/*test case main entry*/
void test_main(void *p1, void *p2, void *p3)
{
ARG_UNUSED(p1);
ARG_UNUSED(p2);
ARG_UNUSED(p3);
ztest_test_suite(test_customdata_api,
ztest_unit_test(test_customdata_get_set_coop),
ztest_unit_test(test_customdata_get_set_preempt));
ztest_run_test_suite(test_customdata_api);
}