Don't echo command from run_and_expect_silence. (#2405)

Some commands, like our errcheck command, are very long. When we echo these both
before and after running them, it can obscure what is often a single-line
failure message. Removing the echo after failure makes it easier to spot the
real failure message.
This commit is contained in:
Jacob Hoffman-Andrews 2016-12-08 11:22:21 -08:00 committed by Roland Bracewell Shoemaker
parent abb54bdf81
commit b22cae8cdd
1 changed files with 0 additions and 1 deletions

View File

@ -60,7 +60,6 @@ function run_and_expect_silence() {
# Fail if result_file is nonempty.
if [ -s ${result_file} ]; then
echo "[!] FAILURE: $@"
FAILURE=1
fi
rm ${result_file}