summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Finegan <tomfinegan@google.com>2014-05-08 15:54:26 -0700
committerGerrit Code Review <gerrit@gerrit.golo.chromium.org>2014-05-08 15:54:26 -0700
commite6224ddaa3e10d6959ae7f90a65adef93a789caf (patch)
tree7e2f2fe3a7e91b22e0bf113938b7654a99c9cca2
parent55e4b765696908f370197900ccf67985ec50532e (diff)
parent7279d44a4e73c5577440c4ce60868bf211e94c5d (diff)
downloadlibvpx-e6224ddaa3e10d6959ae7f90a65adef93a789caf.tar
libvpx-e6224ddaa3e10d6959ae7f90a65adef93a789caf.tar.gz
libvpx-e6224ddaa3e10d6959ae7f90a65adef93a789caf.tar.bz2
libvpx-e6224ddaa3e10d6959ae7f90a65adef93a789caf.zip
Merge "tools_common.sh: Fix vlog()"
-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.