This commit adds the test application for the CMSIS-DSP 'complex math' functions. This test application is loosely based on the C++ test suite included in the upstream CMSIS-DSP distribution. Signed-off-by: Stephanos Ioannidis <root@stephanos.io>
20 lines
373 B
C
20 lines
373 B
C
/*
|
|
* Copyright (c) 2020 Stephanos Ioannidis <root@stephanos.io>
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#include <ztest.h>
|
|
#include <zephyr.h>
|
|
|
|
extern void test_complexmath_q15(void);
|
|
extern void test_complexmath_q31(void);
|
|
extern void test_complexmath_f32(void);
|
|
|
|
void test_main(void)
|
|
{
|
|
test_complexmath_q15();
|
|
test_complexmath_q31();
|
|
test_complexmath_f32();
|
|
}
|