dsp: move cmsis_dsp basicmath tests

Move the tests to tests/subsys/dsp/ as they'll be a part of the Zephyr
dsp subsystem.

Signed-off-by: Yuval Peress <peress@google.com>
This commit is contained in:
Yuval Peress 2022-10-11 21:58:36 -06:00 committed by Carles Cufí
parent 8fb0f3e3f1
commit 0433965982
14 changed files with 8 additions and 5 deletions

View file

@ -334,6 +334,7 @@ CMSIS-DSP integration:
- modules/Kconfig.cmsis_dsp
- tests/benchmarks/cmsis_dsp/
- tests/lib/cmsis_dsp/
- tests/subsys/dsp/
labels:
- "area: CMSIS-DSP"

View file

@ -12,3 +12,5 @@ target_sources(app PRIVATE
)
target_sources_ifdef(CONFIG_CMSIS_DSP_FLOAT16 app PRIVATE src/f16.c)
target_include_directories(app PRIVATE ${ZEPHYR_BASE}/tests/lib/cmsis_dsp)

View file

@ -9,7 +9,7 @@
#include <zephyr/kernel.h>
#include <stdlib.h>
#include <arm_math_f16.h>
#include "../../common/test_common.h"
#include "common/test_common.h"
#include "f16.pat"

View file

@ -9,7 +9,7 @@
#include <zephyr/kernel.h>
#include <stdlib.h>
#include <arm_math.h>
#include "../../common/test_common.h"
#include "common/test_common.h"
#include "f32.pat"

View file

@ -9,7 +9,7 @@
#include <zephyr/kernel.h>
#include <stdlib.h>
#include <arm_math.h>
#include "../../common/test_common.h"
#include "common/test_common.h"
#include "q15.pat"

View file

@ -9,7 +9,7 @@
#include <zephyr/kernel.h>
#include <stdlib.h>
#include <arm_math.h>
#include "../../common/test_common.h"
#include "common/test_common.h"
#include "q31.pat"

View file

@ -9,7 +9,7 @@
#include <zephyr/kernel.h>
#include <stdlib.h>
#include <arm_math.h>
#include "../../common/test_common.h"
#include "common/test_common.h"
#include "q7.pat"