Chromium Code Reviews| Index: source/libvpx/test/tools_common.sh |
| =================================================================== |
| --- source/libvpx/test/tools_common.sh (revision 271012) |
| +++ source/libvpx/test/tools_common.sh (working copy) |
| @@ -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. |