mirror of
https://github.com/google/blockly.git
synced 2026-01-10 10:27:08 +01:00
Merge pull request #5295 from alschmiedt/fix_generator_tests
Remove extra output from generator and mocha tests (#5196)
This commit is contained in:
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user