blob: 29d38e90504fee5eb8121ed8ed12661111ffcb5c [file] [log] [blame]
/*
* Copyright (c) 2017 Intel Corporation
*
* SPDX-License-Identifier: Apache-2.0
*/
#include <ztest.h>
extern void test_globals(void);
/**test case main entry*/
void test_main(void)
{
ztest_test_suite(test_xip,
ztest_unit_test(test_globals));
ztest_run_test_suite(test_xip);
}