aboutsummaryrefslogtreecommitdiff
path: root/ci/common
diff options
context:
space:
mode:
Diffstat (limited to 'ci/common')
-rw-r--r--ci/common/build.sh2
-rw-r--r--ci/common/suite.sh7
2 files changed, 1 insertions, 8 deletions
diff --git a/ci/common/build.sh b/ci/common/build.sh
index f4313578c9..7c27d61586 100644
--- a/ci/common/build.sh
+++ b/ci/common/build.sh
@@ -7,7 +7,7 @@ _stat() {
}
top_make() {
- echo '================================================================================'
+ printf '%78s\n' | tr ' ' '='
# Travis has 1.5 virtual cores according to:
# http://docs.travis-ci.com/user/speeding-up-the-build/#Paralellizing-your-build-on-one-VM
ninja "$@"
diff --git a/ci/common/suite.sh b/ci/common/suite.sh
index d3fbcd1eda..8feb642547 100644
--- a/ci/common/suite.sh
+++ b/ci/common/suite.sh
@@ -39,13 +39,6 @@ enter_suite() {
exit_suite() {
set +x
- if test -f "$NVIM_LOG_FILE" ; then
- printf "===============================================================================\n"
- printf "NVIM_LOG_FILE: $NVIM_LOG_FILE\n"
- cat "$NVIM_LOG_FILE" 2>/dev/null || printf '(empty)'
- printf "\n"
- rm -rf "$NVIM_LOG_FILE"
- fi
travis_fold end "${NVIM_TEST_CURRENT_SUITE}"
if test $FAILED -ne 0 ; then
echo "Suite ${NVIM_TEST_CURRENT_SUITE} failed, summary:"