diff options
author | practicalswift <practicalswift@users.noreply.github.com> | 2018-11-06 16:17:23 +0100 |
---|---|---|
committer | practicalswift <practicalswift@users.noreply.github.com> | 2018-11-06 17:45:54 +0100 |
commit | 4773fa820784592a9d4ffb43d09f0a49a7a4ad9d (patch) | |
tree | 8f76e831f85e1d2d1189d58567e9069e86d0e3da /.travis | |
parent | 5c292dafcd54adfcd9f80c0e1fccb45c8683808f (diff) |
Add llvm-symbolizer directory to PATH. Needed to get symbolized stack traces from the sanitizers.
Diffstat (limited to '.travis')
-rwxr-xr-x | .travis/test_03_before_install.sh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.travis/test_03_before_install.sh b/.travis/test_03_before_install.sh index d091a67ca9..3c9fcf3f98 100755 --- a/.travis/test_03_before_install.sh +++ b/.travis/test_03_before_install.sh @@ -7,6 +7,8 @@ export LC_ALL=C.UTF-8 PATH=$(echo $PATH | tr ':' "\n" | sed '/\/opt\/python/d' | tr "\n" ":" | sed "s|::|:|g") +# Add llvm-symbolizer directory to PATH. Needed to get symbolized stack traces from the sanitizers. +PATH=$PATH:/usr/lib/llvm-6.0/bin/ export PATH BEGIN_FOLD () { |