tools/test: silence alsatplg in tlpg-build.sh unless VERBOSE=1

With this commit:
                  ./scripts/build-tools.sh -t -f | wc -l
     525
VERBOSE=anything  ./scripts/build-tools.sh -t -f | wc -l
  137030

This a followup to commit aa6c0f2ad1 ("topology: cmake: silence super
chatty alsatplg unless VERBOSE=1")

Signed-off-by: Marc Herbert <marc.herbert@intel.com>
This commit is contained in:
Marc Herbert 2020-04-03 21:16:51 -07:00 committed by Liam Girdwood
parent b2b4abffb3
commit 5e3bc9c11c
1 changed files with 1 additions and 1 deletions

View File

@ -264,6 +264,6 @@ then
#execute alsatplg to create topology binary
TEST_STRINGS=${TEST_STRINGS%?}
echo $TEST_STRINGS | tr '\n' ',' |\
xargs -d ',' -P0 -n1 -I string alsatplg -v 1 -c\
xargs -d ',' -P0 -n1 -I string alsatplg ${VERBOSE:+-v 1} -c\
string".conf" -o string".tplg"
fi