From 5e3bc9c11c343a9c0d481a78a88d4f2f07eb5431 Mon Sep 17 00:00:00 2001 From: Marc Herbert Date: Fri, 3 Apr 2020 21:16:51 -0700 Subject: [PATCH] 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 aa6c0f2ad11f ("topology: cmake: silence super chatty alsatplg unless VERBOSE=1") Signed-off-by: Marc Herbert --- tools/test/topology/tplg-build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/test/topology/tplg-build.sh b/tools/test/topology/tplg-build.sh index 66ec3cfdc..a5ec7bf76 100755 --- a/tools/test/topology/tplg-build.sh +++ b/tools/test/topology/tplg-build.sh @@ -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