blob: 012a89c1d68cd4e438339824a994325b97a47ce9 [file] [log] [blame]
/*
* Copyright (c) 2020 Stephanos Ioannidis <root@stephanos.io>
*
* SPDX-License-Identifier: Apache-2.0
*/
#include <ztest.h>
#include <zephyr.h>
extern void test_fastmath_q15(void);
extern void test_fastmath_q31(void);
extern void test_fastmath_f32(void);
void test_main(void)
{
test_fastmath_q15();
test_fastmath_q31();
test_fastmath_f32();
}