tests: lib: cmsis_dsp: filtering: Update FIR Q15 tests for 1.9.0

This commit updates the filtering FIR Q15 test implementations for the
CMSIS-DSP 1.9.0.

Signed-off-by: Stephanos Ioannidis <root@stephanos.io>
This commit is contained in:
Stephanos Ioannidis 2021-08-19 23:24:38 +09:00 committed by Carles Cufí
commit d3af641f7c

View file

@ -30,7 +30,7 @@ static void test_arm_fir_q15(void)
arm_fir_instance_q15 inst;
/* Allocate buffers */
state = malloc(64 * sizeof(q15_t));
state = malloc(3 * 41 * sizeof(q15_t));
zassert_not_null(state, ASSERT_MSG_BUFFER_ALLOC_FAILED);
output_buf = malloc(length * sizeof(q15_t));