summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rwxr-xr-xtest/tools_common.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/tools_common.sh b/test/tools_common.sh
index 30f0faea9..9c10d48f0 100755
--- a/test/tools_common.sh
+++ b/test/tools_common.sh
@@ -18,7 +18,9 @@ set -e
devnull='> /dev/null 2>&1'
vlog() {
- [ "${VPX_TEST_VERBOSE_OUTPUT}" = "yes" ] && echo "$@"
+ if [ "${VPX_TEST_VERBOSE_OUTPUT}" = "yes" ]; then
+ echo "$@"
+ fi
}
# Sets $VPX_TOOL_TEST to the name specified by positional parameter one.