Remove extra output from generator and mocha tests (#5196)

* Remove extra output from generator tests

* Fix test

* Update loglevel for both tests
This commit is contained in:
alschmiedt
2021-07-27 11:03:16 -07:00
parent 0b16c9da9a
commit e7709cbd1f
3 changed files with 4 additions and 2 deletions

View File

@@ -18,7 +18,7 @@ check_result() {
if [ -f $tmp_filename ]; then
local golden_filename="${GOLDEN_DIR}generated.$suffix"
if [ -f $golden_filename ]; then
if cmp --silent $tmp_filename $golden_filename; then
if cmp $tmp_filename $golden_filename; then
echo -e "$SUCCESS_PREFIX $suffix: $tmp_filename matches $golden_filename"
else
echo -e "$FAILURE_PREFIX $suffix: $tmp_filename does not match $golden_filename"