diff options
author | Daniel Hahler <git@thequod.de> | 2019-07-28 11:48:54 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-28 11:48:54 +0200 |
commit | 48884ac3b3b5f58b331949a6e8006af5711ce0d6 (patch) | |
tree | f5dbbead21092c71f0fc97bb63a11f7e39f84791 /ci/common | |
parent | 05fa1cb3f4630379b052dc9a6323c00c4c860dd0 (diff) | |
download | rneovim-48884ac3b3b5f58b331949a6e8006af5711ce0d6.tar.gz rneovim-48884ac3b3b5f58b331949a6e8006af5711ce0d6.tar.bz2 rneovim-48884ac3b3b5f58b331949a6e8006af5711ce0d6.zip |
ci: Travis: no need for asan_symbolize (#10627)
Having llvm-symbolizer in the $PATH is enough.
- check_logs: remove log after displaying it
Otherwise it would be displayed/symbolized again and again.
E.g. in https://api.travis-ci.org/v3/job/564477704/log.txt.
Diffstat (limited to 'ci/common')
-rw-r--r-- | ci/common/test.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ci/common/test.sh b/ci/common/test.sh index c184064236..fb2dcc077e 100644 --- a/ci/common/test.sh +++ b/ci/common/test.sh @@ -69,6 +69,7 @@ check_logs() { for log in $(find "${1}" -type f -name "${2}" -size +0); do cat "${log}" err=1 + rm "${log}" done if test -n "${err}" ; then fail 'logs' E 'Runtime errors detected.' @@ -81,7 +82,7 @@ valgrind_check() { asan_check() { if test "${CLANG_SANITIZER}" = "ASAN_UBSAN" ; then - check_logs "${1}" "*san.*" | asan_symbolize + check_logs "${1}" "*san.*" fi } |