blob: 894ede6a2b540b233a7c3c0c83b55c0e123301d3 [file] [log] [blame]
/*
* Copyright (c) 2020 Stephanos Ioannidis <root@stephanos.io>
*
* SPDX-License-Identifier: Apache-2.0
*/
#include <zephyr/ztest.h>
#include <zephyr/zephyr.h>
extern void test_statistics_q7(void);
extern void test_statistics_q15(void);
extern void test_statistics_q31(void);
extern void test_statistics_f16(void);
extern void test_statistics_f32(void);
extern void test_statistics_f64(void);
void test_main(void)
{
test_statistics_q7();
test_statistics_q15();
test_statistics_q31();
#ifdef CONFIG_CMSIS_DSP_FLOAT16
test_statistics_f16();
#endif
test_statistics_f32();
test_statistics_f64();
}