20974117 gmake *test output could be slightly less wall-of-text scary
authorStacy Yeh <stacy.yeh@oracle.com>
Wed, 13 May 2015 15:49:01 -0700
changeset 4288 cac9ddca8925
parent 4287 aba3ed31b37a
child 4289 a8f2d3273985
20974117 gmake *test output could be slightly less wall-of-text scary
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) \