blob: e0ac51d2dbb74b019147ec2dca2db3c9eb51cd3d [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_support_q7(void);
extern void test_support_q15(void);
extern void test_support_q31(void);
extern void test_support_f16(void);
extern void test_support_f32(void);
extern void test_support_barycenter_f16(void);
extern void test_support_barycenter_f32(void);
void test_main(void)
{
test_support_q7();
test_support_q15();
test_support_q31();
#ifdef CONFIG_CMSIS_DSP_FLOAT16
test_support_f16();
#endif
test_support_f32();
#ifdef CONFIG_CMSIS_DSP_FLOAT16
test_support_barycenter_f16();
#endif
test_support_barycenter_f32();
}