blob: 30a50d281b944d7f63db8a6553b5a583b58b22ae [file] [log] [blame]
/*
* Copyright (c) 2019 Nordic Semiconductor ASA
*
* SPDX-License-Identifier: Apache-2.0
*/
#include <ztest.h>
extern void test_arm_thread_swap(void);
void test_main(void)
{
ztest_test_suite(arm_thread_swap,
ztest_unit_test(test_arm_thread_swap));
ztest_run_test_suite(arm_thread_swap);
}