From 5434af0fd624e90ba0e4ff2e73a6becba4dda88b Mon Sep 17 00:00:00 2001 From: Alexander Gordeev Date: Sat, 10 Mar 2018 05:36:53 +0700 Subject: [PATCH] Reduced verbosity of makefiles to prevent travic job termination because of log size --- regression/Makefile | 8 ++++---- regression/deep-expressions/Makefile | 6 +++--- regression/expressions/Makefile | 6 +++--- 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/regression/Makefile b/regression/Makefile index 021bea2d6..007d15046 100644 --- a/regression/Makefile +++ b/regression/Makefile @@ -4,12 +4,12 @@ RC=../src/rc.opt .PHONY: check $(TESTS) -check: $(TESTS) +check: $(TESTS) $(TESTS): %: %.expr - $(RC) $< && cat $@.input | ./$@ > $@.log && diff $@.log orig/$@.log - cat $@.input | $(RC) -i $< > $@.log && diff $@.log orig/$@.log - cat $@.input | $(RC) -s $< > $@.log && diff $@.log orig/$@.log + @$(RC) $< && cat $@.input | ./$@ > $@.log && diff $@.log orig/$@.log + @cat $@.input | $(RC) -i $< > $@.log && diff $@.log orig/$@.log + @cat $@.input | $(RC) -s $< > $@.log && diff $@.log orig/$@.log clean: rm -f test*.log *.s *~ $(TESTS) diff --git a/regression/deep-expressions/Makefile b/regression/deep-expressions/Makefile index eb36d1702..fe0e5468b 100644 --- a/regression/deep-expressions/Makefile +++ b/regression/deep-expressions/Makefile @@ -7,9 +7,9 @@ RC = ../../src/rc.opt check: $(TESTS) $(TESTS): %: %.expr - RC_RUNTIME=../../runtime $(RC) $< && cat $@.input | ./$@ > $@.log && diff $@.log orig/$@.log - cat $@.input | $(RC) -i $< > $@.log && diff $@.log orig/$@.log - cat $@.input | $(RC) -s $< > $@.log && diff $@.log orig/$@.log + @RC_RUNTIME=../../runtime $(RC) $< && cat $@.input | ./$@ > $@.log && diff $@.log orig/$@.log + @cat $@.input | $(RC) -i $< > $@.log && diff $@.log orig/$@.log + @cat $@.input | $(RC) -s $< > $@.log && diff $@.log orig/$@.log clean: rm -f *.log *.s *~ $(TESTS) diff --git a/regression/expressions/Makefile b/regression/expressions/Makefile index eb36d1702..fe0e5468b 100644 --- a/regression/expressions/Makefile +++ b/regression/expressions/Makefile @@ -7,9 +7,9 @@ RC = ../../src/rc.opt check: $(TESTS) $(TESTS): %: %.expr - RC_RUNTIME=../../runtime $(RC) $< && cat $@.input | ./$@ > $@.log && diff $@.log orig/$@.log - cat $@.input | $(RC) -i $< > $@.log && diff $@.log orig/$@.log - cat $@.input | $(RC) -s $< > $@.log && diff $@.log orig/$@.log + @RC_RUNTIME=../../runtime $(RC) $< && cat $@.input | ./$@ > $@.log && diff $@.log orig/$@.log + @cat $@.input | $(RC) -i $< > $@.log && diff $@.log orig/$@.log + @cat $@.input | $(RC) -s $< > $@.log && diff $@.log orig/$@.log clean: rm -f *.log *.s *~ $(TESTS)