1 /*
2  * Copyright (c) 2016 Linaro Ltd.
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  */
6 
7 #include <zephyr.h>
8 #include <errno.h>
9 #include <tc_util.h>
10 #include <ztest.h>
11 /**
12  * @addtogroup kernel_common_tests
13  * @{
14  */
15 
16 /**
17  * @brief Test if correct multilib is selected
18  *
19  */
test_multilib(void)20 void test_multilib(void)
21 {
22 	volatile long long a = 100;
23 	volatile long long b = 3;
24 	volatile long long c = a / b;
25 
26 	zassert_equal(c, 33, "smoke-test failed: wrong multilib selected");
27 }
28 
29 /**
30  * @}
31  */
32