ref: e6224ddaa3e10d6959ae7f90a65adef93a789caf
parent: 55e4b765696908f370197900ccf67985ec50532e
parent: 7279d44a4e73c5577440c4ce60868bf211e94c5d
author: Tom Finegan <tomfinegan@google.com>
date: Thu May 8 11:54:26 EDT 2014
Merge "tools_common.sh: Fix vlog()"
--- a/test/tools_common.sh
+++ b/test/tools_common.sh
@@ -18,7 +18,9 @@
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.
--
⑨