From 15bf883ead2a0c79d0cbd8aeda9d7fccb26c2fda Mon Sep 17 00:00:00 2001 From: Seppo Ingalsuo Date: Wed, 26 Jan 2022 13:32:13 +0200 Subject: [PATCH] Tools: Test: Audio: Fix incorrect valgrind run control in audio test The value for VALGRIND in the run command parameters needs to be true or false. The value "no" causes an error in comp_run.sh script run. Fixes 30012d1454 Signed-off-by: Seppo Ingalsuo --- tools/test/audio/test_utils/test_run.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/test/audio/test_utils/test_run.m b/tools/test/audio/test_utils/test_run.m index 1934eac72..7ca7f58c6 100644 --- a/tools/test/audio/test_utils/test_run.m +++ b/tools/test/audio/test_utils/test_run.m @@ -85,7 +85,7 @@ if isfield(test, 'trace') end % Override defaults in comp_run.sh -fprintf(fh, 'VALGRIND=no\n', test.fs_in); +fprintf(fh, 'VALGRIND=false\n', test.fs_in); fclose(fh); arg = sprintf('-t %s', fn_config);