From 66617f3785571ffdb133ddcb24c8b8fe01994be0 Mon Sep 17 00:00:00 2001 From: Stephanos Ioannidis Date: Thu, 19 Aug 2021 23:22:53 +0900 Subject: [PATCH] tests: lib: cmsis_dsp: filtering: Update FIR Q7 tests for 1.9.0 This commit updates the filtering FIR Q7 test implementations for the CMSIS-DSP 1.9.0. Signed-off-by: Stephanos Ioannidis --- tests/lib/cmsis_dsp/filtering/src/fir_q7.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/lib/cmsis_dsp/filtering/src/fir_q7.c b/tests/lib/cmsis_dsp/filtering/src/fir_q7.c index 2dbc1456c45..e2eea601e52 100644 --- a/tests/lib/cmsis_dsp/filtering/src/fir_q7.c +++ b/tests/lib/cmsis_dsp/filtering/src/fir_q7.c @@ -30,7 +30,7 @@ static void test_arm_fir_q7(void) arm_fir_instance_q7 inst; /* Allocate buffers */ - state = malloc(64 * sizeof(q7_t)); + state = malloc(47 * sizeof(q7_t)); zassert_not_null(state, ASSERT_MSG_BUFFER_ALLOC_FAILED); output_buf = malloc(length * sizeof(q7_t));