# HG changeset patch # User Stacy Yeh # Date 1431557341 25200 # Node ID cac9ddca892539daf5c94fea5312c82e459ddcd3 # Parent aba3ed31b37aa0498b0731fc79270b11a4be5283 20974117 gmake *test output could be slightly less wall-of-text scary diff -r aba3ed31b37a -r cac9ddca8925 make-rules/shared-macros.mk --- a/make-rules/shared-macros.mk Wed May 13 14:39:42 2015 -0600 +++ b/make-rules/shared-macros.mk Wed May 13 15:49:01 2015 -0700 @@ -267,7 +267,7 @@ # set the default commands used to generate the file containing the set # of transforms to be applied to the test results to try to normalize them. COMPONENT_TEST_CREATE_TRANSFORMS = \ - if [ -e $(COMPONENT_TEST_MASTER) ]; \ + @if [ -e $(COMPONENT_TEST_MASTER) ]; \ then \ print "\#!/bin/sh" > $(COMPONENT_TEST_TRANSFORM_CMD); \ print '$(COMPONENT_TEST_TRANSFORMER) ' \ @@ -287,7 +287,7 @@ # set the default operation to run to perform test result normalization COMPONENT_TEST_PERFORM_TRANSFORM = \ - if [ -e $(COMPONENT_TEST_MASTER) ]; \ + @if [ -e $(COMPONENT_TEST_MASTER) ]; \ then \ $(SHELL) $(COMPONENT_TEST_TRANSFORM_CMD); \ else \ @@ -300,7 +300,7 @@ # set the default way that master and snapshot test results are compared COMPONENT_TEST_COMPARE = \ - if [ -e $(COMPONENT_TEST_MASTER) ]; \ + @if [ -e $(COMPONENT_TEST_MASTER) ]; \ then \ $(COMPONENT_TEST_COMPARE_CMD) \ $(COMPONENT_TEST_MASTER) $(COMPONENT_TEST_SNAPSHOT) \