blob: 3e22024e1a0c7da19e69e525c82d69840e164c01 [file] [log] [blame]
/*
* Copyright (c) 2021 Stephanos Ioannidis <root@stephanos.io>
*
* SPDX-License-Identifier: Apache-2.0
*/
#include <zephyr/ztest.h>
#include <zephyr/zephyr.h>
extern void test_interpolation_q7(void);
extern void test_interpolation_q15(void);
extern void test_interpolation_q31(void);
extern void test_interpolation_f16(void);
extern void test_interpolation_f32(void);
void test_main(void)
{
test_interpolation_q7();
test_interpolation_q15();
test_interpolation_q31();
#ifdef CONFIG_CMSIS_DSP_FLOAT16
test_interpolation_f16();
#endif
test_interpolation_f32();
}