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 <seppo.ingalsuo@linux.intel.com>
This commit is contained in:
Seppo Ingalsuo 2022-01-26 13:32:13 +02:00 committed by Liam Girdwood
parent 182f6eedf7
commit 15bf883ead
1 changed files with 1 additions and 1 deletions

View File

@ -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);