diff options
author | Jason Gross <jgross@mit.edu> | 2017-06-09 17:33:01 -0400 |
---|---|---|
committer | Jason Gross <jgross@mit.edu> | 2017-06-09 17:33:55 -0400 |
commit | a8381e022cf2a967c7c213ec60c5c5252c799332 (patch) | |
tree | be4277d473b7203baa77c3d02d69e5b6f6b704b6 /test-suite/Makefile | |
parent | dffba98368b5b1156e1933dc7377317281c57491 (diff) |
Better sectioning on travis log printing in test-suite
Diffstat (limited to 'test-suite/Makefile')
-rw-r--r-- | test-suite/Makefile | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/test-suite/Makefile b/test-suite/Makefile index e15094ccf..81a99cad4 100644 --- a/test-suite/Makefile +++ b/test-suite/Makefile @@ -169,9 +169,7 @@ summary.log: # local build, and downloadable on GitLab) report: summary.log $(HIDE)./save-logs.sh - $(HIDE)if [ -n "${TRAVIS}" ]; then echo 'travis_fold:start:coq.logs'; fi - $(HIDE)if [ -n "${TRAVIS}" ]; then find logs/ -name '*.log' -not -name 'summary.log' -exec cat '{}' ';'; fi - $(HIDE)if [ -n "${TRAVIS}" ]; then echo 'travis_fold:end:coq.logs'; fi + $(HIDE)if [ -n "${TRAVIS}" ]; then find logs/ -name '*.log' -not -name 'summary.log' -exec echo 'travis_fold:start:coq.logs.{}' ';' -exec cat '{}' ';' -exec echo 'travis_fold:end:coq.logs.{}' ';'; fi $(HIDE)if grep -q -F 'Error!' summary.log ; then echo FAILURES; grep -F 'Error!' summary.log; false; else echo NO FAILURES; fi ####################################################################### |