aboutsummaryrefslogtreecommitdiffhomepage
path: root/test-suite
diff options
context:
space:
mode:
authorGravatar Maxime Dénès <mail@maximedenes.fr>2017-06-13 10:32:57 +0200
committerGravatar Maxime Dénès <mail@maximedenes.fr>2017-06-13 10:32:57 +0200
commit5b932123c05c6ef75333dec4d5b91cce403e935e (patch)
treea7b0fa9fc82ffcf43e064b790b7b04a2389ae132 /test-suite
parent423d3202fa0f244db36a0b1b45edfa61829201e6 (diff)
parent5b6aaca42550715300fbd376c2fc0934da554939 (diff)
Merge PR#757: Better sectioning on travis log printing in test-suite
Diffstat (limited to 'test-suite')
-rw-r--r--test-suite/Makefile4
1 files changed, 1 insertions, 3 deletions
diff --git a/test-suite/Makefile b/test-suite/Makefile
index e15094ccf..5ab4cacda 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 'bash' '-c' 'echo "travis_fold:start:coq.logs.$$(echo '{}' | sed s,/,.,g)"' ';' -exec cat '{}' ';' -exec 'bash' '-c' 'echo "travis_fold:end:coq.logs.$$(echo '{}' | sed s,/,.,g)"' ';'; fi
$(HIDE)if grep -q -F 'Error!' summary.log ; then echo FAILURES; grep -F 'Error!' summary.log; false; else echo NO FAILURES; fi
#######################################################################