diff options
| author | Justin M. Keyes <justinkz@gmail.com> | 2017-06-07 23:19:02 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-06-07 23:19:02 +0200 |
| commit | 16cce1ac17456e3758f95af6ce7289bade3bb285 (patch) | |
| tree | 1e5bc9c076e6a49dcc750cb686c45a0e371b3a31 /ci | |
| parent | d3d0c9a7b11cad3f277f732dee6c782d1d911b48 (diff) | |
| parent | bc025ab117c92418f890085dc13f26cb7c976772 (diff) | |
| download | rneovim-16cce1ac17456e3758f95af6ce7289bade3bb285.tar.gz rneovim-16cce1ac17456e3758f95af6ce7289bade3bb285.tar.bz2 rneovim-16cce1ac17456e3758f95af6ce7289bade3bb285.zip | |
Merge #6827 'Always enable logging'
Diffstat (limited to 'ci')
| -rw-r--r-- | ci/common/suite.sh | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/ci/common/suite.sh b/ci/common/suite.sh index 8feb642547..d3fbcd1eda 100644 --- a/ci/common/suite.sh +++ b/ci/common/suite.sh @@ -39,6 +39,13 @@ 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:" |