From: Nikolaus Rath Date: Sun, 5 Jun 2016 20:20:07 +0000 (-0400) Subject: Automatically run CI tests with clang X-Git-Tag: fuse-3.0.0pre0~37 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=2344d62b47ae6b3d5ebcf0eff0dc2eb7d4a371d6;p=qemu-gpiodev%2Flibfuse.git Automatically run CI tests with clang Fixes: #51 --- diff --git a/.travis.yml b/.travis.yml index 565bf5e..35c4be5 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,7 +3,7 @@ language: - python - c python: "3.5" -compiler: gcc +compiler: gcc clang install: - sudo apt-get update -qq - sudo apt-get install -qq doxygen libtool automake autoconf @@ -14,3 +14,10 @@ script: - make -j4 - doxygen doc/Doxyfile - python -m pytest test/ + - make clean + - make -j4 CC=clang CFLAGS="-fsanitize=address -g -O1" + - python -m pytest test/ + - make clean + - make -j4 CC=clang CFLAGS="-fsanitize=thread,undefined -g -O1" + - python -m pytest test/ +