From 0319b1a43fc7a809812c8eef36f8ec6c8d10f97a Mon Sep 17 00:00:00 2001 From: Seppo Ingalsuo Date: Tue, 29 Oct 2024 12:29:28 +0200 Subject: [PATCH] Scripts: Add ARIA and ASRC to sof-testbench4 test run This patch adds the two components to this script and into tests done by the CI test system. The quick test includes check for sane componnet output with chirp signal input and tests for memory violations with Valgrind. Signed-off-by: Seppo Ingalsuo --- scripts/host-testbench.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/scripts/host-testbench.sh b/scripts/host-testbench.sh index 90a1c2ce81b5..81119c960035 100755 --- a/scripts/host-testbench.sh +++ b/scripts/host-testbench.sh @@ -113,4 +113,10 @@ test_component src 24 24 48000 "$FullTest" # test with tdfb test_component tdfb 32 32 48000 "$FullTest" +# test with aria +test_component aria 24 24 48000 "$FullTest" + +# test with asrc +test_component asrc 32 32 48000 "$FullTest" + echo "All tests are done!"