X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=.travis.yml;h=ba20fdc86430cb5db1c9adbfd3042f2923946231;hp=87a3e7dc7437f095d30cddd265080cf2c61ceed9;hb=05513a66410f96959f3a6e70be9aea72425cf7c7;hpb=332b5013b551b5fbfe32f1a8ac447fc8fcb244b9 diff --git a/.travis.yml b/.travis.yml index 87a3e7dc..ba20fdc8 100644 --- a/.travis.yml +++ b/.travis.yml @@ -54,6 +54,8 @@ script: # verify against reference - make clean && make ARCH=x86-64 build > /dev/null && ../tests/signature.sh $benchref - make clean && make ARCH=x86-32 build > /dev/null && ../tests/signature.sh $benchref + - make clean && make ARCH=x86-64 optimize=no debug=yes build > /dev/null && ../tests/signature.sh $benchref + - make clean && make ARCH=x86-32 optimize=no debug=yes build > /dev/null && ../tests/signature.sh $benchref # # perft # @@ -70,4 +72,5 @@ script: # sanitizer # # use g++-6 as a proxy for having sanitizers, might need revision as they become available for more recent versions of clang/gcc - - if [[ "$COMPILER" == "g++-6" ]]; then make clean && make ARCH=x86-64 sanitize=yes build > /dev/null && ../tests/instrumented.sh --sanitizer; fi + - if [[ "$COMPILER" == "g++-6" ]]; then make clean && make ARCH=x86-64 sanitize=undefined optimize=no debug=yes build > /dev/null && ../tests/instrumented.sh --sanitizer-undefined; fi + - if [[ "$COMPILER" == "g++-6" ]]; then make clean && make ARCH=x86-64 sanitize=thread optimize=no debug=yes build > /dev/null && ../tests/instrumented.sh --sanitizer-thread; fi