blob: 9ce552068fecf92d49ca363ee2161076a32044e0 [file] [log] [blame]
/*
* Copyright (c) 2021 Stephanos Ioannidis <root@stephanos.io>
*
* SPDX-License-Identifier: Apache-2.0
*/
#include <ztest.h>
#include <zephyr.h>
extern void test_distance_u32(void);
extern void test_distance_f16(void);
extern void test_distance_f32(void);
void test_main(void)
{
test_distance_u32();
#ifdef CONFIG_CMSIS_DSP_FLOAT16
test_distance_f16();
#endif
test_distance_f32();
}