1# SPDX-License-Identifier: BSD-3-Clause
2
3cmocka_test(scalar_power
4	scalar_power.c
5	${PROJECT_SOURCE_DIR}/src/math/power.c
6)
7
8cmocka_test(base2_logarithm
9	base2_logarithm.c
10	${PROJECT_SOURCE_DIR}/src/math/base2log.c
11)
12
13cmocka_test(exponential
14	exponential.c
15	${PROJECT_SOURCE_DIR}/src/math/exp_fcn.c
16)
17cmocka_test(square_root
18	square_root.c
19	${PROJECT_SOURCE_DIR}/src/math/sqrt_int16.c
20)
21
22cmocka_test(base_10_logarithm
23	base_10_logarithm.c
24	${PROJECT_SOURCE_DIR}/src/math/log_10.c
25	${PROJECT_SOURCE_DIR}/src/math/base2log.c
26)
27
28cmocka_test(base_e_logarithm
29	base_e_logarithm.c
30	${PROJECT_SOURCE_DIR}/src/math/log_e.c
31	${PROJECT_SOURCE_DIR}/src/math/base2log.c
32)
33